diff --git a/docs/doxygen/doxy_1.8.9/Doxyfile b/docs/doxygen/doxy_1.8.9/Doxyfile new file mode 100644 index 0000000000000000000000000000000000000000..37ab18ffe84c651f1352a6801cf66b6451f6c764 --- /dev/null +++ b/docs/doxygen/doxy_1.8.9/Doxyfile @@ -0,0 +1,2410 @@ +# Doxyfile 1.8.9.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "MOOSE - Multiscale Object Oriented Simulation Environment" + +# The PROJECT_NUMBER +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = moose_log.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./cpp + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = YES + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = YES + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = YES + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = YES + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = YES + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = YES + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = NO + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = NO + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if <section_label> ... \endif and \cond <section_label> +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = cpp/doxygen-logfile + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = ../../moose-core/basecode \ + ../../moose-core/biophysics \ + ../../moose-core/builtins \ + ../../moose-core/device \ + ../../moose-core/diffusion \ + ../../moose-core/hsolve \ + ../../moose-core/intfire \ + ../../moose-core/kinetics \ + ../../moose-core/ksolve \ + ../../moose-core/mesh \ + ../../moose-core/mpi \ + ../../moose-core/msg \ + ../../moose-core/randnum \ + ../../moose-core/pymoose \ + ../../moose-core/scheduling \ + ../../moose-core/shell \ + ../../moose-core/signeur \ + ../../moose-core/synapse \ + ../../moose-core/utility + + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = *.cpp \ + *.hpp \ + *.c \ + *.h \ + *.cc \ + *.hh \ + *.cxx \ + *.hxx + + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# <filter> <input-file> +# +# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = YES + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# compiled with the --with-libclang option. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = -std=c++11 + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = YES + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = YES + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use <access key> + S +# (what the <access key> is depends on the OS and browser, but it is typically +# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down +# key> to jump into the search results window, the results can be navigated +# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel +# the search. The filter options can be selected when the cursor is inside the +# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> +# to select a filter and <Enter> or <escape> to activate or cancel the filter +# option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a web server instead of a web client using Javascript. There +# are two flavors of web server based searching depending on the EXTERNAL_SEARCH +# setting. When disabled, doxygen will generate a PHP script for searching and +# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing +# and searching needs to be provided by external tools. See the section +# "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP +# script for searching. Instead the search results are written to an XML file +# which needs to be processed by an external indexer. Doxygen will invoke an +# external search engine pointed to by the SEARCHENGINE_URL option to obtain the +# search results. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). +# +# See the section "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will return the search results when EXTERNAL_SEARCH is enabled. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). See the section "External Indexing and +# Searching" for details. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHENGINE_URL = + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed +# search data is written to a file for indexing by an external tool. With the +# SEARCHDATA_FILE tag the name of this file can be specified. +# The default file is: searchdata.xml. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHDATA_FILE = searchdata.xml + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the +# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is +# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple +# projects and redirect the results back to the right project. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH_ID = + +# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen +# projects other than the one defined by this configuration file, but that are +# all added to the same external search index. Each project needs to have a +# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of +# to a relative location where the documentation can be found. The format is: +# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTRA_SEARCH_MAPPINGS = + +#--------------------------------------------------------------------------- +# Configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. +# The default value is: YES. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. +# +# Note that when enabling USE_PDFLATEX this option is only used for generating +# bitmaps for formulas in the HTML output, but not in the Makefile that is +# written to the output directory. +# The default file is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate +# index for LaTeX. +# The default file is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used by the +# printer. +# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x +# 14 inches) and executive (7.25 x 10.5 inches). +# The default value is: a4. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names +# that should be included in the LaTeX output. To get the times font for +# instance you can specify +# EXTRA_PACKAGES=times +# If left blank no extra packages will be included. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the +# generated LaTeX document. The header should contain everything until the first +# chapter. If it is left blank doxygen will generate a standard header. See +# section "Doxygen usage" for information on how to let doxygen write the +# default header to a separate file. +# +# Note: Only use a user-defined header if you know what you are doing! The +# following commands have a special meaning inside the header: $title, +# $datetime, $date, $doxygenversion, $projectname, $projectnumber, +# $projectbrief, $projectlogo. Doxygen will replace $title with the empty +# string, for the replacement values of the other commands the user is referred +# to HTML_HEADER. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the +# generated LaTeX document. The footer should contain everything after the last +# chapter. If it is left blank doxygen will generate a standard footer. See +# LATEX_HEADER for more information on how to generate a default footer and what +# special commands can be used inside the footer. +# +# Note: Only use a user-defined footer if you know what you are doing! +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_FOOTER = + +# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# LaTeX style sheets that are included after the standard style sheets created +# by doxygen. Using this option one can overrule certain style aspects. Doxygen +# will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_STYLESHEET = + +# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the LATEX_OUTPUT output +# directory. Note that the files will be copied as-is; there are no commands or +# markers available. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_FILES = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is +# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will +# contain links (just like the HTML output) instead of page references. This +# makes the output suitable for online browsing using a PDF viewer. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate +# the PDF file directly from the LaTeX files. Set this option to YES, to get a +# higher quality PDF documentation. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode +# command to the generated LaTeX files. This will instruct LaTeX to keep running +# if errors occur, instead of asking the user for help. This option is also used +# when generating formulas in HTML. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BATCHMODE = NO + +# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the +# index chapters (such as File Index, Compound Index, etc.) in the output. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HIDE_INDICES = NO + +# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source +# code with syntax highlighting in the LaTeX output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. See +# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# The default value is: plain. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# Configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The +# RTF output is optimized for Word 97 and may not look too pretty with other RTF +# readers/editors. +# The default value is: NO. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: rtf. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will +# contain hyperlink fields. The RTF file will contain links (just like the HTML +# output) instead of page references. This makes the output suitable for online +# browsing using Word or some other Word compatible readers that support those +# fields. +# +# Note: WordPad (write) and others do not support links. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's config +# file, i.e. a series of assignments. You only have to provide replacements, +# missing definitions are set to their default value. +# +# See also section "Doxygen usage" for information on how to generate the +# default style sheet that doxygen normally uses. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an RTF document. Syntax is +# similar to doxygen's config file. A template extensions file can be generated +# using doxygen -e rtf extensionFile. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_EXTENSIONS_FILE = + +# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code +# with syntax highlighting in the RTF output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for +# classes and files. +# The default value is: NO. + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. A directory man3 will be created inside the directory specified by +# MAN_OUTPUT. +# The default directory is: man. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to the generated +# man pages. In case the manual section does not start with a number, the number +# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is +# optional. +# The default value is: .3. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_EXTENSION = .3 + +# The MAN_SUBDIR tag determines the name of the directory created within +# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by +# MAN_EXTENSION with the initial . removed. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_SUBDIR = + +# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it +# will generate one additional man file for each entity documented in the real +# man page(s). These additional files only source the real man page, but without +# them the man command would be unable to find the correct page. +# The default value is: NO. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that +# captures the structure of the code including all documentation. +# The default value is: NO. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: xml. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_OUTPUT = xml + +# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program +# listings (including syntax highlighting and cross-referencing information) to +# the XML output. Note that enabling this will significantly increase the size +# of the XML output. +# The default value is: YES. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- + +# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files +# that can be used to generate PDF. +# The default value is: NO. + +GENERATE_DOCBOOK = NO + +# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in +# front of it. +# The default directory is: docbook. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_OUTPUT = docbook + +# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the +# program listings (including syntax highlighting and cross-referencing +# information) to the DOCBOOK output. Note that enabling this will significantly +# increase the size of the DOCBOOK output. +# The default value is: NO. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_PROGRAMLISTING = NO + +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an +# AutoGen Definitions (see http://autogen.sf.net) file that captures the +# structure of the code including all documentation. Note that this feature is +# still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module +# file that captures the structure of the code including all documentation. +# +# Note that this feature is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary +# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI +# output from the Perl module output. +# The default value is: NO. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely +# formatted so it can be parsed by a human reader. This is useful if you want to +# understand what is going on. On the other hand, if this tag is set to NO, the +# size of the Perl module output will be much smaller and Perl will parse it +# just the same. +# The default value is: YES. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file are +# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful +# so different doxyrules.make files included by the same Makefile don't +# overwrite each other's variables. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all +# C-preprocessor directives found in the sources and include files. +# The default value is: YES. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names +# in the source code. If set to NO, only conditional compilation will be +# performed. Macro expansion can be done in a controlled way by setting +# EXPAND_ONLY_PREDEF to YES. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then +# the macro expansion is limited to the macros specified with the PREDEFINED and +# EXPAND_AS_DEFINED tags. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES, the include files in the +# INCLUDE_PATH will be searched if a #include is found. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by the +# preprocessor. +# This tag requires that the tag SEARCH_INCLUDES is set to YES. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will be +# used. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that are +# defined before the preprocessor is started (similar to the -D option of e.g. +# gcc). The argument of the tag is a list of macros of the form: name or +# name=definition (no spaces). If the definition and the "=" are omitted, "=1" +# is assumed. To prevent a macro definition from being undefined via #undef or +# recursively expanded use the := operator instead of the = operator. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this +# tag can be used to specify a list of macro names that should be expanded. The +# macro definition that is found in the sources will be used. Use the PREDEFINED +# tag if you want to use a different macro definition that overrules the +# definition found in the source code. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will +# remove all references to function-like macros that are alone on a line, have +# an all uppercase name, and do not end with a semicolon. Such function macros +# are typically used for boiler-plate code, and will confuse the parser if not +# removed. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tag files. For each tag +# file the location of the external documentation should be added. The format of +# a tag file without this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where loc1 and loc2 can be relative or absolute paths or URLs. See the +# section "Linking to external documentation" for more information about the use +# of tag files. +# Note: Each tag file must have a unique name (where the name does NOT include +# the path). If a tag file is not located in the directory in which doxygen is +# run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create a +# tag file that is based on the input files it reads. See section "Linking to +# external documentation" for more information about the usage of tag files. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES, all external class will be listed in +# the class index. If set to NO, only the inherited external classes will be +# listed. +# The default value is: NO. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will be +# listed. +# The default value is: YES. + +EXTERNAL_GROUPS = YES + +# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in +# the related pages index. If set to NO, only the current project's pages will +# be listed. +# The default value is: YES. + +EXTERNAL_PAGES = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of 'which perl'). +# The default file (with absolute path) is: /usr/bin/perl. + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram +# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to +# NO turns the diagrams off. Note that this option also works with HAVE_DOT +# disabled, but it is recommended to install and use dot, since it yields more +# powerful graphs. +# The default value is: YES. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see: +# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# If set to YES the inheritance and collaboration graphs will hide inheritance +# and usage relations if the target is undocumented or is not a class. +# The default value is: YES. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz (see: +# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# Bell Labs. The other options in this section have no effect if this option is +# set to NO +# The default value is: YES. + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed +# to run in parallel. When set to 0 doxygen will base this on the number of +# processors available in the system. You can set it explicitly to a value +# larger than 0 to get control over the balance between CPU load and processing +# speed. +# Minimum value: 0, maximum value: 32, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NUM_THREADS = 0 + +# When you want a differently looking font in the dot files that doxygen +# generates you can specify the font name using DOT_FONTNAME. You need to make +# sure dot is able to find the font, which can be done by putting it in a +# standard location or by setting the DOTFONTPATH environment variable or by +# setting DOT_FONTPATH to the directory containing the font. +# The default value is: Helvetica. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTNAME = Ubuntu Mono + +# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of +# dot graphs. +# Minimum value: 4, maximum value: 24, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the default font as specified with +# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set +# the path where dot can find it using this tag. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for +# each documented class showing the direct and indirect inheritance relations. +# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = YES + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = YES + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = YES + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, +# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, +# gif:cairo:gd, gif:gd, gif:gd:gd and svg. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = svg + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = YES + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file. If left blank, it is assumed +# PlantUML is not used or called during a preprocessing step. Doxygen will +# generate a warning when it encounters a \startuml command in this case and +# will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not seem +# to support this out of the box. +# +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = YES + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# files that are used to generate the various graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_CLEANUP = YES diff --git a/docs/doxygen/doxy_1.8.9/Doxyfile.full b/docs/doxygen/doxy_1.8.9/Doxyfile.full new file mode 100644 index 0000000000000000000000000000000000000000..ab7cf523dedbb56db6740e3624f24d786a389298 --- /dev/null +++ b/docs/doxygen/doxy_1.8.9/Doxyfile.full @@ -0,0 +1,2410 @@ +# Doxyfile 1.8.9.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "MOOSE - Multiscale Object Oriented Simulation Environment" + +# The PROJECT_NUMBER +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = moose_log.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./cpp + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = YES + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = YES + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = YES + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = YES + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = YES + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = YES + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = NO + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = NO + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if <section_label> ... \endif and \cond <section_label> +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = cpp/doxygen-logfile + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = ../../moose-core/basecode \ + ../../moose-core/biophysics \ + ../../moose-core/builtins \ + ../../moose-core/device \ + ../../moose-core/diffusion \ + ../../moose-core/hsolve \ + ../../moose-core/intfire \ + ../../moose-core/kinetics \ + ../../moose-core/ksolve \ + ../../moose-core/mesh \ + ../../moose-core/mpi \ + ../../moose-core/msg \ + ../../moose-core/randnum \ + ../../moose-core/pymoose \ + ../../moose-core/scheduling \ + ../../moose-core/shell \ + ../../moose-core/signeur \ + ../../moose-core/synapse \ + ../../moose-core/utility + + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = *.cpp \ + *.hpp \ + *.c \ + *.h \ + *.cc \ + *.hh \ + *.cxx \ + *.hxx + + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# <filter> <input-file> +# +# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = YES + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# compiled with the --with-libclang option. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = -std=c++11 + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = YES + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = YES + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use <access key> + S +# (what the <access key> is depends on the OS and browser, but it is typically +# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down +# key> to jump into the search results window, the results can be navigated +# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel +# the search. The filter options can be selected when the cursor is inside the +# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> +# to select a filter and <Enter> or <escape> to activate or cancel the filter +# option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a web server instead of a web client using Javascript. There +# are two flavors of web server based searching depending on the EXTERNAL_SEARCH +# setting. When disabled, doxygen will generate a PHP script for searching and +# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing +# and searching needs to be provided by external tools. See the section +# "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP +# script for searching. Instead the search results are written to an XML file +# which needs to be processed by an external indexer. Doxygen will invoke an +# external search engine pointed to by the SEARCHENGINE_URL option to obtain the +# search results. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). +# +# See the section "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will return the search results when EXTERNAL_SEARCH is enabled. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). See the section "External Indexing and +# Searching" for details. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHENGINE_URL = + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed +# search data is written to a file for indexing by an external tool. With the +# SEARCHDATA_FILE tag the name of this file can be specified. +# The default file is: searchdata.xml. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHDATA_FILE = searchdata.xml + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the +# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is +# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple +# projects and redirect the results back to the right project. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH_ID = + +# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen +# projects other than the one defined by this configuration file, but that are +# all added to the same external search index. Each project needs to have a +# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of +# to a relative location where the documentation can be found. The format is: +# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTRA_SEARCH_MAPPINGS = + +#--------------------------------------------------------------------------- +# Configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. +# The default value is: YES. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. +# +# Note that when enabling USE_PDFLATEX this option is only used for generating +# bitmaps for formulas in the HTML output, but not in the Makefile that is +# written to the output directory. +# The default file is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate +# index for LaTeX. +# The default file is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used by the +# printer. +# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x +# 14 inches) and executive (7.25 x 10.5 inches). +# The default value is: a4. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names +# that should be included in the LaTeX output. To get the times font for +# instance you can specify +# EXTRA_PACKAGES=times +# If left blank no extra packages will be included. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the +# generated LaTeX document. The header should contain everything until the first +# chapter. If it is left blank doxygen will generate a standard header. See +# section "Doxygen usage" for information on how to let doxygen write the +# default header to a separate file. +# +# Note: Only use a user-defined header if you know what you are doing! The +# following commands have a special meaning inside the header: $title, +# $datetime, $date, $doxygenversion, $projectname, $projectnumber, +# $projectbrief, $projectlogo. Doxygen will replace $title with the empty +# string, for the replacement values of the other commands the user is referred +# to HTML_HEADER. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the +# generated LaTeX document. The footer should contain everything after the last +# chapter. If it is left blank doxygen will generate a standard footer. See +# LATEX_HEADER for more information on how to generate a default footer and what +# special commands can be used inside the footer. +# +# Note: Only use a user-defined footer if you know what you are doing! +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_FOOTER = + +# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# LaTeX style sheets that are included after the standard style sheets created +# by doxygen. Using this option one can overrule certain style aspects. Doxygen +# will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_STYLESHEET = + +# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the LATEX_OUTPUT output +# directory. Note that the files will be copied as-is; there are no commands or +# markers available. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_FILES = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is +# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will +# contain links (just like the HTML output) instead of page references. This +# makes the output suitable for online browsing using a PDF viewer. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate +# the PDF file directly from the LaTeX files. Set this option to YES, to get a +# higher quality PDF documentation. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode +# command to the generated LaTeX files. This will instruct LaTeX to keep running +# if errors occur, instead of asking the user for help. This option is also used +# when generating formulas in HTML. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BATCHMODE = NO + +# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the +# index chapters (such as File Index, Compound Index, etc.) in the output. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HIDE_INDICES = NO + +# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source +# code with syntax highlighting in the LaTeX output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. See +# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# The default value is: plain. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# Configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The +# RTF output is optimized for Word 97 and may not look too pretty with other RTF +# readers/editors. +# The default value is: NO. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: rtf. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will +# contain hyperlink fields. The RTF file will contain links (just like the HTML +# output) instead of page references. This makes the output suitable for online +# browsing using Word or some other Word compatible readers that support those +# fields. +# +# Note: WordPad (write) and others do not support links. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's config +# file, i.e. a series of assignments. You only have to provide replacements, +# missing definitions are set to their default value. +# +# See also section "Doxygen usage" for information on how to generate the +# default style sheet that doxygen normally uses. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an RTF document. Syntax is +# similar to doxygen's config file. A template extensions file can be generated +# using doxygen -e rtf extensionFile. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_EXTENSIONS_FILE = + +# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code +# with syntax highlighting in the RTF output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for +# classes and files. +# The default value is: NO. + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. A directory man3 will be created inside the directory specified by +# MAN_OUTPUT. +# The default directory is: man. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to the generated +# man pages. In case the manual section does not start with a number, the number +# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is +# optional. +# The default value is: .3. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_EXTENSION = .3 + +# The MAN_SUBDIR tag determines the name of the directory created within +# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by +# MAN_EXTENSION with the initial . removed. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_SUBDIR = + +# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it +# will generate one additional man file for each entity documented in the real +# man page(s). These additional files only source the real man page, but without +# them the man command would be unable to find the correct page. +# The default value is: NO. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that +# captures the structure of the code including all documentation. +# The default value is: NO. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: xml. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_OUTPUT = xml + +# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program +# listings (including syntax highlighting and cross-referencing information) to +# the XML output. Note that enabling this will significantly increase the size +# of the XML output. +# The default value is: YES. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- + +# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files +# that can be used to generate PDF. +# The default value is: NO. + +GENERATE_DOCBOOK = NO + +# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in +# front of it. +# The default directory is: docbook. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_OUTPUT = docbook + +# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the +# program listings (including syntax highlighting and cross-referencing +# information) to the DOCBOOK output. Note that enabling this will significantly +# increase the size of the DOCBOOK output. +# The default value is: NO. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_PROGRAMLISTING = NO + +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an +# AutoGen Definitions (see http://autogen.sf.net) file that captures the +# structure of the code including all documentation. Note that this feature is +# still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module +# file that captures the structure of the code including all documentation. +# +# Note that this feature is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary +# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI +# output from the Perl module output. +# The default value is: NO. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely +# formatted so it can be parsed by a human reader. This is useful if you want to +# understand what is going on. On the other hand, if this tag is set to NO, the +# size of the Perl module output will be much smaller and Perl will parse it +# just the same. +# The default value is: YES. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file are +# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful +# so different doxyrules.make files included by the same Makefile don't +# overwrite each other's variables. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all +# C-preprocessor directives found in the sources and include files. +# The default value is: YES. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names +# in the source code. If set to NO, only conditional compilation will be +# performed. Macro expansion can be done in a controlled way by setting +# EXPAND_ONLY_PREDEF to YES. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then +# the macro expansion is limited to the macros specified with the PREDEFINED and +# EXPAND_AS_DEFINED tags. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES, the include files in the +# INCLUDE_PATH will be searched if a #include is found. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by the +# preprocessor. +# This tag requires that the tag SEARCH_INCLUDES is set to YES. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will be +# used. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that are +# defined before the preprocessor is started (similar to the -D option of e.g. +# gcc). The argument of the tag is a list of macros of the form: name or +# name=definition (no spaces). If the definition and the "=" are omitted, "=1" +# is assumed. To prevent a macro definition from being undefined via #undef or +# recursively expanded use the := operator instead of the = operator. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this +# tag can be used to specify a list of macro names that should be expanded. The +# macro definition that is found in the sources will be used. Use the PREDEFINED +# tag if you want to use a different macro definition that overrules the +# definition found in the source code. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will +# remove all references to function-like macros that are alone on a line, have +# an all uppercase name, and do not end with a semicolon. Such function macros +# are typically used for boiler-plate code, and will confuse the parser if not +# removed. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tag files. For each tag +# file the location of the external documentation should be added. The format of +# a tag file without this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where loc1 and loc2 can be relative or absolute paths or URLs. See the +# section "Linking to external documentation" for more information about the use +# of tag files. +# Note: Each tag file must have a unique name (where the name does NOT include +# the path). If a tag file is not located in the directory in which doxygen is +# run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create a +# tag file that is based on the input files it reads. See section "Linking to +# external documentation" for more information about the usage of tag files. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES, all external class will be listed in +# the class index. If set to NO, only the inherited external classes will be +# listed. +# The default value is: NO. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will be +# listed. +# The default value is: YES. + +EXTERNAL_GROUPS = YES + +# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in +# the related pages index. If set to NO, only the current project's pages will +# be listed. +# The default value is: YES. + +EXTERNAL_PAGES = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of 'which perl'). +# The default file (with absolute path) is: /usr/bin/perl. + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram +# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to +# NO turns the diagrams off. Note that this option also works with HAVE_DOT +# disabled, but it is recommended to install and use dot, since it yields more +# powerful graphs. +# The default value is: YES. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see: +# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# If set to YES the inheritance and collaboration graphs will hide inheritance +# and usage relations if the target is undocumented or is not a class. +# The default value is: YES. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz (see: +# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# Bell Labs. The other options in this section have no effect if this option is +# set to NO +# The default value is: YES. + +HAVE_DOT = YES + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed +# to run in parallel. When set to 0 doxygen will base this on the number of +# processors available in the system. You can set it explicitly to a value +# larger than 0 to get control over the balance between CPU load and processing +# speed. +# Minimum value: 0, maximum value: 32, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NUM_THREADS = 0 + +# When you want a differently looking font in the dot files that doxygen +# generates you can specify the font name using DOT_FONTNAME. You need to make +# sure dot is able to find the font, which can be done by putting it in a +# standard location or by setting the DOTFONTPATH environment variable or by +# setting DOT_FONTPATH to the directory containing the font. +# The default value is: Helvetica. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTNAME = Ubuntu Mono + +# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of +# dot graphs. +# Minimum value: 4, maximum value: 24, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the default font as specified with +# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set +# the path where dot can find it using this tag. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for +# each documented class showing the direct and indirect inheritance relations. +# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = YES + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = YES + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = YES + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, +# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, +# gif:cairo:gd, gif:gd, gif:gd:gd and svg. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = svg + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = YES + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file. If left blank, it is assumed +# PlantUML is not used or called during a preprocessing step. Doxygen will +# generate a warning when it encounters a \startuml command in this case and +# will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not seem +# to support this out of the box. +# +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = YES + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# files that are used to generate the various graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_CLEANUP = YES diff --git a/docs/doxygen/doxy_1.8.9/Doxyfile.intermediate b/docs/doxygen/doxy_1.8.9/Doxyfile.intermediate new file mode 100644 index 0000000000000000000000000000000000000000..5e2634d0c45e6f10ac79a63ed24a38063ef3daea --- /dev/null +++ b/docs/doxygen/doxy_1.8.9/Doxyfile.intermediate @@ -0,0 +1,2410 @@ +# Doxyfile 1.8.9.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "MOOSE - Multiscale Object Oriented Simulation Environment" + +# The PROJECT_NUMBER +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = moose_log.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./cpp + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = YES + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = YES + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = YES + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = YES + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = YES + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = YES + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = NO + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = NO + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if <section_label> ... \endif and \cond <section_label> +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = cpp/doxygen-logfile + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = ../../moose-core/basecode \ + ../../moose-core/biophysics \ + ../../moose-core/builtins \ + ../../moose-core/device \ + ../../moose-core/diffusion \ + ../../moose-core/hsolve \ + ../../moose-core/intfire \ + ../../moose-core/kinetics \ + ../../moose-core/ksolve \ + ../../moose-core/mesh \ + ../../moose-core/mpi \ + ../../moose-core/msg \ + ../../moose-core/randnum \ + ../../moose-core/pymoose \ + ../../moose-core/scheduling \ + ../../moose-core/shell \ + ../../moose-core/signeur \ + ../../moose-core/synapse \ + ../../moose-core/utility + + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = *.cpp \ + *.hpp \ + *.c \ + *.h \ + *.cc \ + *.hh \ + *.cxx \ + *.hxx + + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# <filter> <input-file> +# +# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = YES + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# compiled with the --with-libclang option. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = -std=c++11 + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = YES + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = YES + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use <access key> + S +# (what the <access key> is depends on the OS and browser, but it is typically +# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down +# key> to jump into the search results window, the results can be navigated +# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel +# the search. The filter options can be selected when the cursor is inside the +# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> +# to select a filter and <Enter> or <escape> to activate or cancel the filter +# option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a web server instead of a web client using Javascript. There +# are two flavors of web server based searching depending on the EXTERNAL_SEARCH +# setting. When disabled, doxygen will generate a PHP script for searching and +# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing +# and searching needs to be provided by external tools. See the section +# "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP +# script for searching. Instead the search results are written to an XML file +# which needs to be processed by an external indexer. Doxygen will invoke an +# external search engine pointed to by the SEARCHENGINE_URL option to obtain the +# search results. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). +# +# See the section "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will return the search results when EXTERNAL_SEARCH is enabled. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). See the section "External Indexing and +# Searching" for details. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHENGINE_URL = + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed +# search data is written to a file for indexing by an external tool. With the +# SEARCHDATA_FILE tag the name of this file can be specified. +# The default file is: searchdata.xml. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHDATA_FILE = searchdata.xml + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the +# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is +# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple +# projects and redirect the results back to the right project. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH_ID = + +# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen +# projects other than the one defined by this configuration file, but that are +# all added to the same external search index. Each project needs to have a +# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of +# to a relative location where the documentation can be found. The format is: +# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTRA_SEARCH_MAPPINGS = + +#--------------------------------------------------------------------------- +# Configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. +# The default value is: YES. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. +# +# Note that when enabling USE_PDFLATEX this option is only used for generating +# bitmaps for formulas in the HTML output, but not in the Makefile that is +# written to the output directory. +# The default file is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate +# index for LaTeX. +# The default file is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used by the +# printer. +# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x +# 14 inches) and executive (7.25 x 10.5 inches). +# The default value is: a4. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names +# that should be included in the LaTeX output. To get the times font for +# instance you can specify +# EXTRA_PACKAGES=times +# If left blank no extra packages will be included. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the +# generated LaTeX document. The header should contain everything until the first +# chapter. If it is left blank doxygen will generate a standard header. See +# section "Doxygen usage" for information on how to let doxygen write the +# default header to a separate file. +# +# Note: Only use a user-defined header if you know what you are doing! The +# following commands have a special meaning inside the header: $title, +# $datetime, $date, $doxygenversion, $projectname, $projectnumber, +# $projectbrief, $projectlogo. Doxygen will replace $title with the empty +# string, for the replacement values of the other commands the user is referred +# to HTML_HEADER. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the +# generated LaTeX document. The footer should contain everything after the last +# chapter. If it is left blank doxygen will generate a standard footer. See +# LATEX_HEADER for more information on how to generate a default footer and what +# special commands can be used inside the footer. +# +# Note: Only use a user-defined footer if you know what you are doing! +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_FOOTER = + +# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# LaTeX style sheets that are included after the standard style sheets created +# by doxygen. Using this option one can overrule certain style aspects. Doxygen +# will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_STYLESHEET = + +# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the LATEX_OUTPUT output +# directory. Note that the files will be copied as-is; there are no commands or +# markers available. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_FILES = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is +# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will +# contain links (just like the HTML output) instead of page references. This +# makes the output suitable for online browsing using a PDF viewer. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate +# the PDF file directly from the LaTeX files. Set this option to YES, to get a +# higher quality PDF documentation. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode +# command to the generated LaTeX files. This will instruct LaTeX to keep running +# if errors occur, instead of asking the user for help. This option is also used +# when generating formulas in HTML. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BATCHMODE = NO + +# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the +# index chapters (such as File Index, Compound Index, etc.) in the output. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HIDE_INDICES = NO + +# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source +# code with syntax highlighting in the LaTeX output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. See +# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# The default value is: plain. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# Configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The +# RTF output is optimized for Word 97 and may not look too pretty with other RTF +# readers/editors. +# The default value is: NO. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: rtf. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will +# contain hyperlink fields. The RTF file will contain links (just like the HTML +# output) instead of page references. This makes the output suitable for online +# browsing using Word or some other Word compatible readers that support those +# fields. +# +# Note: WordPad (write) and others do not support links. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's config +# file, i.e. a series of assignments. You only have to provide replacements, +# missing definitions are set to their default value. +# +# See also section "Doxygen usage" for information on how to generate the +# default style sheet that doxygen normally uses. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an RTF document. Syntax is +# similar to doxygen's config file. A template extensions file can be generated +# using doxygen -e rtf extensionFile. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_EXTENSIONS_FILE = + +# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code +# with syntax highlighting in the RTF output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for +# classes and files. +# The default value is: NO. + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. A directory man3 will be created inside the directory specified by +# MAN_OUTPUT. +# The default directory is: man. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to the generated +# man pages. In case the manual section does not start with a number, the number +# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is +# optional. +# The default value is: .3. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_EXTENSION = .3 + +# The MAN_SUBDIR tag determines the name of the directory created within +# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by +# MAN_EXTENSION with the initial . removed. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_SUBDIR = + +# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it +# will generate one additional man file for each entity documented in the real +# man page(s). These additional files only source the real man page, but without +# them the man command would be unable to find the correct page. +# The default value is: NO. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that +# captures the structure of the code including all documentation. +# The default value is: NO. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: xml. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_OUTPUT = xml + +# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program +# listings (including syntax highlighting and cross-referencing information) to +# the XML output. Note that enabling this will significantly increase the size +# of the XML output. +# The default value is: YES. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- + +# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files +# that can be used to generate PDF. +# The default value is: NO. + +GENERATE_DOCBOOK = NO + +# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in +# front of it. +# The default directory is: docbook. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_OUTPUT = docbook + +# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the +# program listings (including syntax highlighting and cross-referencing +# information) to the DOCBOOK output. Note that enabling this will significantly +# increase the size of the DOCBOOK output. +# The default value is: NO. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_PROGRAMLISTING = NO + +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an +# AutoGen Definitions (see http://autogen.sf.net) file that captures the +# structure of the code including all documentation. Note that this feature is +# still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module +# file that captures the structure of the code including all documentation. +# +# Note that this feature is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary +# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI +# output from the Perl module output. +# The default value is: NO. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely +# formatted so it can be parsed by a human reader. This is useful if you want to +# understand what is going on. On the other hand, if this tag is set to NO, the +# size of the Perl module output will be much smaller and Perl will parse it +# just the same. +# The default value is: YES. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file are +# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful +# so different doxyrules.make files included by the same Makefile don't +# overwrite each other's variables. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all +# C-preprocessor directives found in the sources and include files. +# The default value is: YES. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names +# in the source code. If set to NO, only conditional compilation will be +# performed. Macro expansion can be done in a controlled way by setting +# EXPAND_ONLY_PREDEF to YES. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then +# the macro expansion is limited to the macros specified with the PREDEFINED and +# EXPAND_AS_DEFINED tags. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES, the include files in the +# INCLUDE_PATH will be searched if a #include is found. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by the +# preprocessor. +# This tag requires that the tag SEARCH_INCLUDES is set to YES. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will be +# used. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that are +# defined before the preprocessor is started (similar to the -D option of e.g. +# gcc). The argument of the tag is a list of macros of the form: name or +# name=definition (no spaces). If the definition and the "=" are omitted, "=1" +# is assumed. To prevent a macro definition from being undefined via #undef or +# recursively expanded use the := operator instead of the = operator. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this +# tag can be used to specify a list of macro names that should be expanded. The +# macro definition that is found in the sources will be used. Use the PREDEFINED +# tag if you want to use a different macro definition that overrules the +# definition found in the source code. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will +# remove all references to function-like macros that are alone on a line, have +# an all uppercase name, and do not end with a semicolon. Such function macros +# are typically used for boiler-plate code, and will confuse the parser if not +# removed. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tag files. For each tag +# file the location of the external documentation should be added. The format of +# a tag file without this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where loc1 and loc2 can be relative or absolute paths or URLs. See the +# section "Linking to external documentation" for more information about the use +# of tag files. +# Note: Each tag file must have a unique name (where the name does NOT include +# the path). If a tag file is not located in the directory in which doxygen is +# run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create a +# tag file that is based on the input files it reads. See section "Linking to +# external documentation" for more information about the usage of tag files. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES, all external class will be listed in +# the class index. If set to NO, only the inherited external classes will be +# listed. +# The default value is: NO. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will be +# listed. +# The default value is: YES. + +EXTERNAL_GROUPS = YES + +# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in +# the related pages index. If set to NO, only the current project's pages will +# be listed. +# The default value is: YES. + +EXTERNAL_PAGES = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of 'which perl'). +# The default file (with absolute path) is: /usr/bin/perl. + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram +# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to +# NO turns the diagrams off. Note that this option also works with HAVE_DOT +# disabled, but it is recommended to install and use dot, since it yields more +# powerful graphs. +# The default value is: YES. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see: +# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# If set to YES the inheritance and collaboration graphs will hide inheritance +# and usage relations if the target is undocumented or is not a class. +# The default value is: YES. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz (see: +# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# Bell Labs. The other options in this section have no effect if this option is +# set to NO +# The default value is: YES. + +HAVE_DOT = YES + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed +# to run in parallel. When set to 0 doxygen will base this on the number of +# processors available in the system. You can set it explicitly to a value +# larger than 0 to get control over the balance between CPU load and processing +# speed. +# Minimum value: 0, maximum value: 32, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NUM_THREADS = 0 + +# When you want a differently looking font in the dot files that doxygen +# generates you can specify the font name using DOT_FONTNAME. You need to make +# sure dot is able to find the font, which can be done by putting it in a +# standard location or by setting the DOTFONTPATH environment variable or by +# setting DOT_FONTPATH to the directory containing the font. +# The default value is: Helvetica. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTNAME = Ubuntu Mono + +# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of +# dot graphs. +# Minimum value: 4, maximum value: 24, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the default font as specified with +# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set +# the path where dot can find it using this tag. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for +# each documented class showing the direct and indirect inheritance relations. +# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +CLASS_GRAPH = NO + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = YES + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = YES + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = YES + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, +# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, +# gif:cairo:gd, gif:gd, gif:gd:gd and svg. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = svg + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = YES + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file. If left blank, it is assumed +# PlantUML is not used or called during a preprocessing step. Doxygen will +# generate a warning when it encounters a \startuml command in this case and +# will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not seem +# to support this out of the box. +# +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = YES + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# files that are used to generate the various graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_CLEANUP = YES diff --git a/docs/doxygen/doxy_1.8.9/Doxyfile.minimal b/docs/doxygen/doxy_1.8.9/Doxyfile.minimal new file mode 100644 index 0000000000000000000000000000000000000000..37ab18ffe84c651f1352a6801cf66b6451f6c764 --- /dev/null +++ b/docs/doxygen/doxy_1.8.9/Doxyfile.minimal @@ -0,0 +1,2410 @@ +# Doxyfile 1.8.9.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "MOOSE - Multiscale Object Oriented Simulation Environment" + +# The PROJECT_NUMBER +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = moose_log.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./cpp + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = YES + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = YES + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = YES + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = YES + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = YES + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = YES + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = NO + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = NO + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if <section_label> ... \endif and \cond <section_label> +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = cpp/doxygen-logfile + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = ../../moose-core/basecode \ + ../../moose-core/biophysics \ + ../../moose-core/builtins \ + ../../moose-core/device \ + ../../moose-core/diffusion \ + ../../moose-core/hsolve \ + ../../moose-core/intfire \ + ../../moose-core/kinetics \ + ../../moose-core/ksolve \ + ../../moose-core/mesh \ + ../../moose-core/mpi \ + ../../moose-core/msg \ + ../../moose-core/randnum \ + ../../moose-core/pymoose \ + ../../moose-core/scheduling \ + ../../moose-core/shell \ + ../../moose-core/signeur \ + ../../moose-core/synapse \ + ../../moose-core/utility + + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = *.cpp \ + *.hpp \ + *.c \ + *.h \ + *.cc \ + *.hh \ + *.cxx \ + *.hxx + + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# <filter> <input-file> +# +# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = YES + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# compiled with the --with-libclang option. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = -std=c++11 + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = YES + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = YES + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use <access key> + S +# (what the <access key> is depends on the OS and browser, but it is typically +# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down +# key> to jump into the search results window, the results can be navigated +# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel +# the search. The filter options can be selected when the cursor is inside the +# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> +# to select a filter and <Enter> or <escape> to activate or cancel the filter +# option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a web server instead of a web client using Javascript. There +# are two flavors of web server based searching depending on the EXTERNAL_SEARCH +# setting. When disabled, doxygen will generate a PHP script for searching and +# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing +# and searching needs to be provided by external tools. See the section +# "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP +# script for searching. Instead the search results are written to an XML file +# which needs to be processed by an external indexer. Doxygen will invoke an +# external search engine pointed to by the SEARCHENGINE_URL option to obtain the +# search results. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). +# +# See the section "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will return the search results when EXTERNAL_SEARCH is enabled. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). See the section "External Indexing and +# Searching" for details. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHENGINE_URL = + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed +# search data is written to a file for indexing by an external tool. With the +# SEARCHDATA_FILE tag the name of this file can be specified. +# The default file is: searchdata.xml. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHDATA_FILE = searchdata.xml + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the +# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is +# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple +# projects and redirect the results back to the right project. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH_ID = + +# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen +# projects other than the one defined by this configuration file, but that are +# all added to the same external search index. Each project needs to have a +# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of +# to a relative location where the documentation can be found. The format is: +# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTRA_SEARCH_MAPPINGS = + +#--------------------------------------------------------------------------- +# Configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. +# The default value is: YES. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. +# +# Note that when enabling USE_PDFLATEX this option is only used for generating +# bitmaps for formulas in the HTML output, but not in the Makefile that is +# written to the output directory. +# The default file is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate +# index for LaTeX. +# The default file is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used by the +# printer. +# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x +# 14 inches) and executive (7.25 x 10.5 inches). +# The default value is: a4. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names +# that should be included in the LaTeX output. To get the times font for +# instance you can specify +# EXTRA_PACKAGES=times +# If left blank no extra packages will be included. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the +# generated LaTeX document. The header should contain everything until the first +# chapter. If it is left blank doxygen will generate a standard header. See +# section "Doxygen usage" for information on how to let doxygen write the +# default header to a separate file. +# +# Note: Only use a user-defined header if you know what you are doing! The +# following commands have a special meaning inside the header: $title, +# $datetime, $date, $doxygenversion, $projectname, $projectnumber, +# $projectbrief, $projectlogo. Doxygen will replace $title with the empty +# string, for the replacement values of the other commands the user is referred +# to HTML_HEADER. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the +# generated LaTeX document. The footer should contain everything after the last +# chapter. If it is left blank doxygen will generate a standard footer. See +# LATEX_HEADER for more information on how to generate a default footer and what +# special commands can be used inside the footer. +# +# Note: Only use a user-defined footer if you know what you are doing! +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_FOOTER = + +# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# LaTeX style sheets that are included after the standard style sheets created +# by doxygen. Using this option one can overrule certain style aspects. Doxygen +# will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_STYLESHEET = + +# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the LATEX_OUTPUT output +# directory. Note that the files will be copied as-is; there are no commands or +# markers available. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_FILES = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is +# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will +# contain links (just like the HTML output) instead of page references. This +# makes the output suitable for online browsing using a PDF viewer. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate +# the PDF file directly from the LaTeX files. Set this option to YES, to get a +# higher quality PDF documentation. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode +# command to the generated LaTeX files. This will instruct LaTeX to keep running +# if errors occur, instead of asking the user for help. This option is also used +# when generating formulas in HTML. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BATCHMODE = NO + +# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the +# index chapters (such as File Index, Compound Index, etc.) in the output. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HIDE_INDICES = NO + +# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source +# code with syntax highlighting in the LaTeX output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. See +# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# The default value is: plain. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# Configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The +# RTF output is optimized for Word 97 and may not look too pretty with other RTF +# readers/editors. +# The default value is: NO. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: rtf. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will +# contain hyperlink fields. The RTF file will contain links (just like the HTML +# output) instead of page references. This makes the output suitable for online +# browsing using Word or some other Word compatible readers that support those +# fields. +# +# Note: WordPad (write) and others do not support links. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's config +# file, i.e. a series of assignments. You only have to provide replacements, +# missing definitions are set to their default value. +# +# See also section "Doxygen usage" for information on how to generate the +# default style sheet that doxygen normally uses. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an RTF document. Syntax is +# similar to doxygen's config file. A template extensions file can be generated +# using doxygen -e rtf extensionFile. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_EXTENSIONS_FILE = + +# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code +# with syntax highlighting in the RTF output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for +# classes and files. +# The default value is: NO. + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. A directory man3 will be created inside the directory specified by +# MAN_OUTPUT. +# The default directory is: man. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to the generated +# man pages. In case the manual section does not start with a number, the number +# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is +# optional. +# The default value is: .3. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_EXTENSION = .3 + +# The MAN_SUBDIR tag determines the name of the directory created within +# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by +# MAN_EXTENSION with the initial . removed. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_SUBDIR = + +# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it +# will generate one additional man file for each entity documented in the real +# man page(s). These additional files only source the real man page, but without +# them the man command would be unable to find the correct page. +# The default value is: NO. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that +# captures the structure of the code including all documentation. +# The default value is: NO. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: xml. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_OUTPUT = xml + +# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program +# listings (including syntax highlighting and cross-referencing information) to +# the XML output. Note that enabling this will significantly increase the size +# of the XML output. +# The default value is: YES. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- + +# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files +# that can be used to generate PDF. +# The default value is: NO. + +GENERATE_DOCBOOK = NO + +# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in +# front of it. +# The default directory is: docbook. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_OUTPUT = docbook + +# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the +# program listings (including syntax highlighting and cross-referencing +# information) to the DOCBOOK output. Note that enabling this will significantly +# increase the size of the DOCBOOK output. +# The default value is: NO. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_PROGRAMLISTING = NO + +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an +# AutoGen Definitions (see http://autogen.sf.net) file that captures the +# structure of the code including all documentation. Note that this feature is +# still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module +# file that captures the structure of the code including all documentation. +# +# Note that this feature is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary +# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI +# output from the Perl module output. +# The default value is: NO. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely +# formatted so it can be parsed by a human reader. This is useful if you want to +# understand what is going on. On the other hand, if this tag is set to NO, the +# size of the Perl module output will be much smaller and Perl will parse it +# just the same. +# The default value is: YES. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file are +# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful +# so different doxyrules.make files included by the same Makefile don't +# overwrite each other's variables. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all +# C-preprocessor directives found in the sources and include files. +# The default value is: YES. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names +# in the source code. If set to NO, only conditional compilation will be +# performed. Macro expansion can be done in a controlled way by setting +# EXPAND_ONLY_PREDEF to YES. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then +# the macro expansion is limited to the macros specified with the PREDEFINED and +# EXPAND_AS_DEFINED tags. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES, the include files in the +# INCLUDE_PATH will be searched if a #include is found. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by the +# preprocessor. +# This tag requires that the tag SEARCH_INCLUDES is set to YES. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will be +# used. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that are +# defined before the preprocessor is started (similar to the -D option of e.g. +# gcc). The argument of the tag is a list of macros of the form: name or +# name=definition (no spaces). If the definition and the "=" are omitted, "=1" +# is assumed. To prevent a macro definition from being undefined via #undef or +# recursively expanded use the := operator instead of the = operator. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this +# tag can be used to specify a list of macro names that should be expanded. The +# macro definition that is found in the sources will be used. Use the PREDEFINED +# tag if you want to use a different macro definition that overrules the +# definition found in the source code. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will +# remove all references to function-like macros that are alone on a line, have +# an all uppercase name, and do not end with a semicolon. Such function macros +# are typically used for boiler-plate code, and will confuse the parser if not +# removed. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tag files. For each tag +# file the location of the external documentation should be added. The format of +# a tag file without this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where loc1 and loc2 can be relative or absolute paths or URLs. See the +# section "Linking to external documentation" for more information about the use +# of tag files. +# Note: Each tag file must have a unique name (where the name does NOT include +# the path). If a tag file is not located in the directory in which doxygen is +# run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create a +# tag file that is based on the input files it reads. See section "Linking to +# external documentation" for more information about the usage of tag files. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES, all external class will be listed in +# the class index. If set to NO, only the inherited external classes will be +# listed. +# The default value is: NO. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will be +# listed. +# The default value is: YES. + +EXTERNAL_GROUPS = YES + +# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in +# the related pages index. If set to NO, only the current project's pages will +# be listed. +# The default value is: YES. + +EXTERNAL_PAGES = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of 'which perl'). +# The default file (with absolute path) is: /usr/bin/perl. + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram +# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to +# NO turns the diagrams off. Note that this option also works with HAVE_DOT +# disabled, but it is recommended to install and use dot, since it yields more +# powerful graphs. +# The default value is: YES. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see: +# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# If set to YES the inheritance and collaboration graphs will hide inheritance +# and usage relations if the target is undocumented or is not a class. +# The default value is: YES. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz (see: +# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# Bell Labs. The other options in this section have no effect if this option is +# set to NO +# The default value is: YES. + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed +# to run in parallel. When set to 0 doxygen will base this on the number of +# processors available in the system. You can set it explicitly to a value +# larger than 0 to get control over the balance between CPU load and processing +# speed. +# Minimum value: 0, maximum value: 32, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NUM_THREADS = 0 + +# When you want a differently looking font in the dot files that doxygen +# generates you can specify the font name using DOT_FONTNAME. You need to make +# sure dot is able to find the font, which can be done by putting it in a +# standard location or by setting the DOTFONTPATH environment variable or by +# setting DOT_FONTPATH to the directory containing the font. +# The default value is: Helvetica. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTNAME = Ubuntu Mono + +# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of +# dot graphs. +# Minimum value: 4, maximum value: 24, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the default font as specified with +# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set +# the path where dot can find it using this tag. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for +# each documented class showing the direct and indirect inheritance relations. +# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = YES + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = YES + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = YES + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, +# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, +# gif:cairo:gd, gif:gd, gif:gd:gd and svg. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = svg + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = YES + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file. If left blank, it is assumed +# PlantUML is not used or called during a preprocessing step. Doxygen will +# generate a warning when it encounters a \startuml command in this case and +# will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not seem +# to support this out of the box. +# +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = YES + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# files that are used to generate the various graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_CLEANUP = YES diff --git a/docs/user/Rdesigneur/index.rst b/docs/user/Rdesigneur/index.rst index 09de598b62bccf166d52bfb2c67c8870820fc2a9..9e352b4596f13ed290638789797619066167b26e 100644 --- a/docs/user/Rdesigneur/index.rst +++ b/docs/user/Rdesigneur/index.rst @@ -3,11 +3,10 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Gui documentation for MOOSE -============================ +Reaction Diffusion and Electrical SIGnaling in NEURons +======================================================= +Rdesigneur (Reaction Diffusion and Electrical SIGnaling in NEURons) is an interface to the multiscale modeling capabilities in MOOSE. -MOOSE is the Multiscale Object-Oriented Simulation Environment. It can do all these calculations together. One of its major uses is to make biologically detailed models that combine electrical and chemical signaling. -This document describes the salient features of the Rdesigneur, a interface to the multiscale modeling capabilities in MOOSE Contents: .. toctree:: diff --git a/docs/user/html/Kkit12Documentation.html b/docs/user/html/Kkit12Documentation.html deleted file mode 100644 index 95abd860d0b0947c8b02bc6cdb5eb2a261e87d2b..0000000000000000000000000000000000000000 --- a/docs/user/html/Kkit12Documentation.html +++ /dev/null @@ -1,311 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta http-equiv="Content-Style-Type" content="text/css" /> - <meta name="generator" content="pandoc" /> - <title></title> - <style type="text/css">code{white-space: pre;}</style> - <link rel="stylesheet" href="css/moosedocs.css" type="text/css" /> -</head> -<body> -<div id="TOC"> -<ul> -<li><a href="#kinetikit-12-interface-for-chemical-kinetic-models-in-moosegui">Kinetikit 12: Interface for chemical kinetic models in MOOSEGUI</a><ul> -<li><a href="#upi-bhalla">Upi Bhalla</a></li> -<li><a href="#harsha-rani">Harsha Rani</a><ul> -<li><a href="#dec-27-2014">Dec 27, 2014</a></li> -</ul></li> -</ul></li> -<li><a href="#introduction"><a href="#TOC">Introduction</a></a><ul> -<li><a href="#todo-what-are-chemical-kinetic-models"><a href="#TOC"><strong>TODO</strong> What are chemical kinetic models?</a></a></li> -<li><a href="#levels-of-model"><a href="#TOC">Levels of model</a></a></li> -<li><a href="#numerical-methods"><a href="#TOC">Numerical methods</a></a></li> -</ul></li> -<li><a href="#using-kinetikit-12"><a href="#TOC">Using Kinetikit 12</a></a><ul> -<li><a href="#overview"><a href="#TOC">Overview</a></a></li> -<li><a href="#model-layout-and-icons"><a href="#TOC">Model layout and icons</a></a><ul> -<li><a href="#compartment"><a href="#TOC">Compartment</a></a></li> -<li><a href="#pool"><a href="#TOC">Pool</a></a></li> -<li><a href="#buffered-pools"><a href="#TOC">Buffered pools</a></a></li> -<li><a href="#reaction"><a href="#TOC">Reaction</a></a></li> -<li><a href="#mass-action-enzymes"><a href="#TOC">Mass-action enzymes</a></a></li> -<li><a href="#michaelis-menten-enzymes"><a href="#TOC">Michaelis-Menten Enzymes</a></a></li> -<li><a href="#function"><a href="#TOC">Function</a></a></li> -</ul></li> -<li><a href="#model-operations"><a href="#TOC">Model operations</a></a></li> -<li><a href="#model-building"><a href="#TOC">Model building</a></a></li> -</ul></li> -</ul> -</div> -<h1 id="kinetikit-12-interface-for-chemical-kinetic-models-in-moosegui"><a href="#kinetikit-12-interface-for-chemical-kinetic-models-in-moosegui">Kinetikit 12: Interface for chemical kinetic models in MOOSEGUI</a></h1> -<h2 id="upi-bhalla"><a href="#upi-bhalla">Upi Bhalla</a></h2> -<h2 id="harsha-rani"><a href="#harsha-rani">Harsha Rani</a></h2> -<h3 id="dec-27-2014"><a href="#dec-27-2014">Dec 27, 2014</a></h3> -<ul> -<li><p><a href="#introduction">Introduction</a></p></li> -<li><a href="#todo-what-are-chemical-kinetic-models"><strong>TODO</strong> What are chemical kinetic models?</a> -<ul> -<li><a href="#levels-of-model">Levels of model</a></li> -<li><a href="#numerical-methods">Numerical methods</a></li> -</ul></li> -<li><p><a href="#using-kinetikit-12">Using Kinetikit 12</a></p> -<pre><code>* [Overview](#overview)</code></pre> -<ul> -<li><p><a href="#model-layout-and-icons">Model layout and icons</a></p> -<pre><code> * [Compartment](#compartment)</code></pre> -<ul> -<li><a href="#pool">Pool</a></li> -<li><a href="#buffered-pools">Buffered pools</a></li> -<li><a href="#reaction">Reaction</a></li> -<li><a href="#mass-action-enzymes">Mass-action enzymes</a></li> -<li><a href="#michaelis-menten-enzymes">Michaelis-Menten Enzymes</a></li> -<li><a href="#function">Function</a></li> -</ul></li> -<li><a href="#model-operations">Model operations</a></li> -<li><p><a href="#model-building">Model Building</a></p></li> -</ul></li> -</ul> -<h1 id="introduction"><a href="#introduction"><a href="#TOC">Introduction</a></a></h1> -<p>Kinetikit 12 is a graphical interface for doing chemical kinetic modeling in MOOSE. It is derived in part from Kinetikit, which was the graphical interface used in GENESIS for similar models. Kinetikit, also known as kkit, was at version 11 with GENESIS. Here we start with Kinetikit 12.</p> -<h2 id="todo-what-are-chemical-kinetic-models"><a href="#todo-what-are-chemical-kinetic-models"><a href="#TOC"><strong>TODO</strong> What are chemical kinetic models?</a></a></h2> -<p>Much of neuronal computation occurs through chemical signaling. For example, many forms of synaptic plasticity begin with calcium influx into the synapse, followed by calcium binding to calmodulin, and then calmodulin activation of numerous enzymes. These events can be represented in chemical terms:</p> -<blockquote> -<p>4 Ca<sup>2+</sup> + CaM <===> Ca<sub>4</sub>.CaM</p> -</blockquote> -<p>Such chemical equations can be modeled through standard Ordinary Differential Equations, if we ignore space:</p> -<blockquote> -<p>d[Ca]/dt = −4K<sub>f</sub> ∗ [Ca]<sup>4</sup> ∗ [CaM] + 4K<sub>b</sub> ∗ [Ca<sub>4</sub>.CaM] d[CaM]/dt = −K<sub>f</sub> ∗ [Ca]<sup>4</sup> ∗ [CaM] + K<sub>b</sub> ∗ [Ca<sub>4</sub>.CaM] d[Ca4.CaM]/dt = K<sub>f</sub> ∗ [Ca]<sup>4</sup> ∗ [CaM] − K<sub>b</sub> ∗ [Ca<sub>4</sub>.CaM]</p> -</blockquote> -<p>MOOSE models these chemical systems. This help document describes how to do such modelling using the graphical interface, Kinetikit 12.</p> -<h2 id="levels-of-model"><a href="#levels-of-model"><a href="#TOC">Levels of model</a></a></h2> -<p>Chemical kinetic models can be simple well-stirred (or point) models, or they could have multiple interacting compartments, or they could include space explicitly using reaction-diffusion. In addition such models could be solved either deterministically, or using a stochastic formulation. At present Kinetikit handles compartmental models but does not compute diffusion within the compartments, though MOOSE itself can do this at the script level. Kkit12 will do deterministic as well as stochastic chemical calculations.</p> -<h2 id="numerical-methods"><a href="#numerical-methods"><a href="#TOC">Numerical methods</a></a></h2> -<ul> -<li><strong>Deterministic</strong>: Adaptive timestep 5th order Runge-Kutta-Fehlberg from the GSL (GNU Scientific Library).</li> -<li><strong>Stochastic</strong>: Optimized Gillespie Stochastic Systems Algorithm, custom implementation.</li> -</ul> -<h1 id="using-kinetikit-12"><a href="#using-kinetikit-12"><a href="#TOC">Using Kinetikit 12</a></a></h1> -<h2 id="overview"><a href="#overview"><a href="#TOC">Overview</a></a></h2> -<ul> -<li>Load models using <strong><code>File -> Load model</code></strong>. A reaction schematic for the chemical system appears in the <strong><code>Editor view</code></strong> tab.</li> -<li>View parameters in <strong><code>Editor view</code></strong> tab by clicking on icons, and looking at entries in <strong><code>Properties</code></strong> table to the right.</li> -<li>Edit parameters by changing their values in the <strong><code>Properties</code></strong> table.</li> -<li>From Run View, Pools can be plotted by clicking on their icons and dragging the icons onto the plot Window. Presently only concentration is plottable.</li> -<li>Run models using <strong><code>Run</code></strong> button.</li> -<li>Select numerical method using options under <strong><code>Preferences</code></strong> button in simulation control.</li> -</ul> -<p><!--* Save plots using the icons at the bottom of the <strong><code>Plot Window</code></strong>.</p> -<p>Most of these operations are detailed in other sections, and are shared with other aspects of the MOOSE simulation interface. Here we focus on the Kinetikit-specific items.</p> -<h2 id="model-layout-and-icons"><a href="#model-layout-and-icons"><a href="#TOC">Model layout and icons</a></a></h2> -<p>When you are in the <strong><code>Model View</code></strong> tab you will see a collection of icons, arrows, and grey boxes surrounding these. This is a schematic of the reaction scheme being modeled. You can view and change parameters, and change the layout of the model.</p> -<div class="figure"> -<img src="../../images/Moose1.png" /> -</div> -<p>Resizing the model layout and icons:</p> -<ul> -<li><strong>Zoom</strong>: Comma and period keys. Alternatively, the mouse scroll wheel or vertical scroll line on the track pad will cause the display to zoom in and out.</li> -<li><strong>Pan</strong>: The arrow keys move the display left, right, up, and down.</li> -<li><strong>Entire Model View</strong>: Pressing the <strong><code>a</code></strong> key will fit the entire model into the entire field of view.</li> -<li><strong>Resize Icons</strong>: Angle bracket keys, that is, <strong><code><</code></strong> and <strong><code>></code></strong> or <strong><code>+</code></strong> and <strong><code>-</code></strong>. This resizes the icons while leaving their positions on the screen layout more or less the same.</li> -<li><strong>Original Model View</strong>: Presing the <strong><code>A</code></strong> key (capital <code>A</code>) will revert to the original model view including the original icon scaling.</li> -</ul> -<h3 id="compartment"><a href="#compartment"><a href="#TOC">Compartment</a></a></h3> -<p>The <em>compartment</em> in moose is usually a contiguous domain in which a certain set of chemical reactions and molecular species occur. The definition is very closely related to that of a cell-biological compartment. Examples include the extracellular space, the cell membrane, the cytosol, and the nucleus. Compartments can be nested, but of course you cannot put a bigger compartment into a smaller one.</p> -<ul> -<li><strong>Icon</strong>: Grey boundary around a set of reactions.</li> -<li><strong>Moving Compartments</strong>: Click and drag on the boundary.</li> -<li><strong>Resizing Compartment boundary</strong>: Happens automatically when contents are repositioned, so that the boundary just contains contents.</li> -<li><p><strong>Compartment editable parameters</strong>:</p> -<ul> -<li><strong><code>name</code></strong>: The name of the compartment.</li> -<li><strong><code>size</code></strong>: This is the volume, surface area or length of the compartment, depending on its type.</li> -</ul></li> -<li><p><strong>Compartment fixed parameters</strong>:</p> -<ul> -<li><strong><code>numDimensions</code></strong>: This specifies whether the compartment is a volume, a 2-D surface, or if it is just being represented as a length.</li> -</ul></li> -</ul> -<h3 id="pool"><a href="#pool"><a href="#TOC">Pool</a></a></h3> -<p>This is the set of molecules of a given species within a compartment. Different chemical states of the same molecule are in different pools.</p> -<ul> -<li><strong>Icon</strong>: <img src="../../images/Pool.png" /> Colored rectangle with pool name in it.</li> -<li><strong>Moving pools</strong>: Click and drag.</li> -<li><p><strong>Pool editable parameters</strong>:</p> -<ul> -<li><strong><code>name</code></strong>: Name of the pool</li> -<li><strong><code>n</code></strong>: Number of molecules in the pool</li> -<li><strong><code>nInit</code></strong>: Initial number of molecules in the pool. <code>n</code> gets set to this value when the <code>reinit</code> operation is done.</li> -<li><p><strong><code>conc</code></strong>: Concentration of the molecules in the pool.</p> -<blockquote> -<p>conc = n * unit_scale_factor / (N<sub>A</sub> * vol)</p> -</blockquote></li> -<li><p><strong><code>concInit</code></strong>: Initial concentration of the molecules in the pool.</p> -<blockquote> -<p>concInit = nInit * unit_scale_factor / (N<sub>A</sub> * vol) <code>conc</code> is set to this value when the <code>reinit</code> operation is done.</p> -</blockquote></li> -</ul></li> -<li><p><strong>Pool fixed parameters</strong></p> -<ul> -<li><strong><code>size</code></strong>: Derived from the compartment that holds the pool. Specifies volume, surface area or length of the holding compartment.</li> -</ul></li> -</ul> -<h3 id="buffered-pools"><a href="#buffered-pools"><a href="#TOC">Buffered pools</a></a></h3> -<p>Some pools are set to a fixed <code>n</code>, that is number of molecules, and therefore a fixed concentration, throughout a simulation. These are buffered pools.</p> -<ul> -<li><strong>Icon</strong>: <img src="../../images/BufPool.png" /> Colored rectangle with pool name in it.</li> -<li><strong>Moving Buffered pools</strong>: Click and drag.</li> -<li><p><strong>Buffered Pool editable parameters</strong></p> -<ul> -<li><strong><code>name</code></strong>: Name of the pool</li> -<li><strong><code>nInit</code></strong>: Fixed number of molecules in the pool. <code>n</code> gets set to this value throughout the run.</li> -<li><p><strong><code>concInit</code></strong>: Fixed concentration of the molecules in the pool.</p> -<blockquote> -<p>concInit = nInit * unit_scale_factor / (N<sub>A</sub> * vol) <code>conc</code> is set to this value throughout the run.</p> -</blockquote></li> -</ul></li> -<li><p><strong>Pool fixed parameters</strong>:</p> -<ul> -<li><strong><code>n</code></strong>: Number of molecules in the pool. Derived from <code>nInit</code>.</li> -<li><strong><code>conc</code></strong>: Concentration of molecules in the pool. Derived from <code>concInit</code>.</li> -<li><strong><code>size</code></strong>: Derived from the compartment that holds the pool. Specifies volume, surface area or length of the holding compartment.</li> -</ul></li> -</ul> -<h3 id="reaction"><a href="#reaction"><a href="#TOC">Reaction</a></a></h3> -<p>These are conversion reactions between sets of pools. They are reversible, but you can set either of the rates to zero to get irreversibility. In the illustration below, <strong><code>D</code></strong> and <strong><code>A</code></strong> are substrates, and <strong><code>B</code></strong> is the product of the reaction. This is indicated by the direction of the green arrow.</p> -<div class="figure"> -<img src="../../images/KkitReaction.png" /> -</div> -<ul> -<li><strong>Icon</strong>: <img src="../../images/KkitReacIcon.png" /> Reversible reaction arrow.</li> -<li><strong>Moving Reactions</strong>: Click and drag.</li> -<li><p><strong>Reaction editable parameters</strong>:</p> -<ul> -<li><strong><code>name</code></strong>: Name of reaction</li> -<li><strong><code>K</code><sub><code>f</code></sub></strong>: Forward rate of reaction, in <code>concentration/time</code> units. This is the normal way to express and manipulate the reaction rate.</li> -<li><strong><code>k</code><sub><code>f</code></sub></strong>: Forward rate of reaction, in <code>number/time</code> units. This is used internally for computations, but is volume-dependent and should not be used to manipulate the reaction rate unless you really know what you are doing.</li> -<li><strong><code>K</code><sub><code>b</code></sub></strong>: Backward rate of reaction, in <code>concentration/time</code> units. This is the normal way to express and manipulate the reaction rate.</li> -<li><strong><code>k</code><sub><code>b</code></sub></strong>: Backward rate of reaction, in <code>number/time</code> units. This is used internally for computations, but is volume-dependent and should not be used to manipulate the reaction rate unless you really know what you are doing.</li> -</ul></li> -<li><p><strong>Reaction fixed parameters</strong>:</p> -<ul> -<li><strong><code>numProducts</code></strong>: Number of product molecules.</li> -<li><strong><code>numSubstrates</code></strong>: Number of substrates molecules.</li> -</ul></li> -</ul> -<h3 id="mass-action-enzymes"><a href="#mass-action-enzymes"><a href="#TOC">Mass-action enzymes</a></a></h3> -<p>These are enzymes that model the chemical equations</p> -<blockquote> -<p>E + S <===> E.S —> E + P</p> -</blockquote> -<p>Note that the second reaction is irreversible. Note also that mass-action enzymes include a pool to represent the <strong><code>E.S</code></strong> (enzyme-substrate) complex. In the example below, the enzyme pool is named <strong><code>MassActionEnz</code></strong>, the substrate is <strong><code>C</code></strong>, and the product is <strong><code>E</code></strong>. The direction of the enzyme reaction is indicated by the red arrows.</p> -<div class="figure"> -<img src="../../images/MassActionEnzReac.png" /> -</div> -<ul> -<li><p><strong>Icon</strong>: <img src="../../images/MassActionEnzIcon.png" /> Colored ellipse atop a small square. The ellipse represents the enzyme. The small square represents <strong><code>E.S</code></strong>, the enzyme-substrate complex. The ellipse icon has the same color as the enzyme pool <strong><code>E</code></strong>. It is connected to the enzyme pool <strong><code>E</code></strong> with a straight line of the same color.</p> -<p>The ellipse icon sits on a continuous, typically curved arrow in red, from the substrate to the product.</p> -<p>A given enzyme pool can have any number of enzyme activities, since the same enzyme might catalyze many reactions.</p></li> -<li><strong>Moving Enzymes</strong>: Click and drag on the ellipse.</li> -<li><p><strong>Enzyme editable parameters</strong></p> -<ul> -<li><strong><code>name</code></strong>: Name of enzyme.</li> -<li><strong><code>K</code><sub><code>m</code></sub></strong>: Michaelis-Menten value for enzyme, in <code>concentration</code> units.</li> -<li><strong><code>k</code><sub><code>cat</code></sub></strong>: Production rate of enzyme, in <code>1/time</code> units. Equal to <code>k</code><sub><code>3</code></sub>, the rate of the second, irreversible reaction.</li> -<li><strong><code>k</code><sub><code>1</code></sub></strong>: Forward rate of the <strong><code>E+S</code></strong> reaction, in number and <code>1/time</code> units. This is what is used in the internal calculations.</li> -<li><strong><code>k</code><sub><code>2</code></sub></strong>: Backward rate of the <strong><code>E+S</code></strong> reaction, in <code>1/time</code> units. Used in internal calculations.</li> -<li><strong><code>k</code><sub><code>3</code></sub></strong>: Forward rate of the <strong><code>E.S —> E + P</code></strong> reaction, in <code>1/time</code> units. Equivalent to <code>k</code><sub><code>cat</code></sub>. Used in internal calculations.</li> -<li><strong><code>ratio</code></strong>: This is equal to <code>k</code><sub><code>2</code></sub><code>/k</code><sub><code>3</code></sub>. Needed to define the internal rates in terms of <code>K</code><sub><code>m</code></sub> and <code>k</code><sub><code>cat</code></sub>. I usually use a value of 4.</li> -</ul></li> -<li><p><strong>Enzyme-substrate-complex editable parameters</strong>: These are identical to those of any other pool.</p> -<ul> -<li><strong><code>name</code></strong>: Name of the <strong><code>E.S</code></strong> complex. Defaults to <strong><code><enzymeName>_cplx</code></strong>.</li> -<li><strong><code>n</code></strong>: Number of molecules in the pool</li> -<li><strong><code>nInit</code></strong>: Initial number of molecules in the complex. <code>n</code> gets set to this value when the <code>reinit</code> operation is done.</li> -<li><p><strong><code>conc</code></strong>: Concentration of the molecules in the pool.</p> -<blockquote> -<p>conc = n * unit_scale_factor / (N<sub>A</sub> * vol)</p> -</blockquote></li> -<li><p><strong><code>concInit</code></strong>: Initial concentration of the molecules in the pool.</p> -<blockquote> -<p>concInit = nInit * unit_scale_factor / (N<sub>A</sub> * vol) <code>conc</code> is set to this value when the <code>reinit</code> operation is done.</p> -</blockquote></li> -</ul></li> -<li><p><strong>Enzyme-substrate-complex fixed parameters</strong>:</p> -<ul> -<li><strong><code>size</code></strong>: Derived from the compartment that holds the pool. Specifies volume, surface area or length of the holding compartment. Note that the Enzyme-substrate-complex is assumed to be in the same compartment as the enzyme molecule.</li> -</ul></li> -</ul> -<h3 id="michaelis-menten-enzymes"><a href="#michaelis-menten-enzymes"><a href="#TOC">Michaelis-Menten Enzymes</a></a></h3> -<p>These are enzymes that obey the Michaelis-Menten equation</p> -<blockquote> -<p>V = V<sub>max</sub> * [S] / ( K<sub>m</sub> + [S] ) = k<sub>cat</sub> * [Etot] * [S] / ( K<sub>m</sub> + [S] )</p> -</blockquote> -<p>where</p> -<ul> -<li><code>V</code><sub><code>max</code></sub> is the maximum rate of the enzyme</li> -<li><code>[Etot]</code> is the total amount of the enzyme</li> -<li><code>K</code><sub><code>m</code></sub> is the Michaelis-Menten constant</li> -<li><code>S</code> is the substrate.</li> -</ul> -<p>Nominally these enzymes model the same chemical equation as the mass-action enzyme:</p> -<blockquote> -<p>E + S <===> E.S —> E + P</p> -</blockquote> -<p>but they make the assumption that the <strong><code>E.S</code></strong> is in a quasi-steady-state with <strong><code>E</code></strong> and <strong><code>S</code></strong>, and they also ignore sequestration of the enzyme into the complex. So there is no representation of the <strong><code>E.S</code></strong> complex. In the example below, the enzyme pool is named <strong><code>MM_Enz</code></strong>, the substrate is <strong><code>E</code></strong>, and the product is <strong><code>F</code></strong>. The direction of the enzyme reaction is indicated by the red arrows.</p> -<div class="figure"> -<img src="../../images/MM_EnzReac.png" /> -</div> -<ul> -<li><strong>Icon</strong>: <img src="../../images/MM_EnzIcon.png" /> Colored ellipse. The ellipse represents the enzyme The ellipse icon has the same color as the enzyme <strong><code>MM_Enz</code></strong>. It is connected to the enzyme pool <strong><code>MM_Enz</code></strong> with a straight line of the same color. The ellipse icon sits on a continuous, typically curved arrow in red, from the substrate to the product. A given enzyme pool can have any number of enzyme activities, since the same enzyme might catalyze many reactions.</li> -<li><strong>Moving Enzymes</strong>: Click and drag.</li> -<li><p><strong>Enzyme editable parameters</strong>:</p> -<ul> -<li><strong><code>name</code></strong>: Name of enzyme.</li> -<li><strong><code>K</code><sub><code>m</code></sub></strong>: Michaelis-Menten value for enzyme, in <code>concentration</code> units.</li> -<li><strong><code>k</code><sub><code>cat</code></sub></strong>: Production rate of enzyme, in <code>1/time</code> units. Equal to <code>k</code><sub><code>3</code></sub>, the rate of the second, irreversible reaction.</li> -</ul></li> -</ul> -<h3 id="function"><a href="#function"><a href="#TOC">Function</a></a></h3> -<p>Function objects can be used to evaluate expressions with arbitrary number of variables and constants. We can assign expression of the form:</p> -<p>f(c0, c1, ..., cM, x0, x1, ..., xN, y0,..., yP )</p> -<p>where ci‘s are constants and xi‘s and yi‘s are variables.</p> -<p>It can parse mathematical expression defining a function and evaluate it and/or its derivative for specified variable values. The variables can be input from other moose objects. In case of arbitrary variable names, the source message must have the variable name as the first argument.</p> -<ul> -<li><strong>Icon</strong>: Colored rectangle with pool name. This is <strong><code>ƒ</code></strong> in the example image below. The input pools <strong><code>A</code></strong> and <strong><code>B</code></strong> connect to the <strong>ƒ</strong> with blue arrows. The function ouput's to BuffPool</li> -</ul> -<h2 id="model-operations"><a href="#model-operations"><a href="#TOC">Model operations</a></a></h2> -<ul> -<li><strong>Loading models</strong>: <strong><code>File -> Load Model -> select from dialog</code></strong>. This operation makes the previously loaded model disable and loads newly selected models in <strong><code>Model View</code></strong></li> -<li><strong>New</strong>: <strong><code>File -> New -> Model name</code></strong>. This opens a empty widget for model building</li> -<li><strong>Saving models</strong>: <strong><code>File -> Save Model -> select from dialog</code></strong>.</li> -<li><p><strong>Changing numerical methods</strong>: <strong><code>Preference->Chemical tab</code></strong> item from Simulation Control. Currently supports:</p> -<ul> -<li>Runge Kutta: This is the Runge-Kutta-Fehlberg implementation from the GNU Scientific Library (GSL). It is a fifth order variable timestep explicit method. Works well for most reaction systems except if they have very stiff reactions.</li> -<li>Gillespie: Optimized Gillespie stochastic systems algorithm, custom implementation. This uses variable timesteps internally. Note that it slows down with increasing numbers of molecules in each pool. It also slows down, but not so badly, if the number of reactions goes up.</li> -<li>Exponential Euler:This methods computes the solution of partial and ordinary differential equations.</li> -</ul></li> -</ul> -<h2 id="model-building"><a href="#model-building"><a href="#TOC">Model building</a></a></h2> -<div class="figure"> -<img src="../../images/chemical_CS.png" /> -</div> -<ul> -<li><p>The Edit Widget includes various menu options and model icons on the top.* Use the mouse buttton to click and drag icons from toolbar to Edit Widget, two things will happen, icon will appear in the editor widget and a object editor will pop up with lots of parameters with respect to moose object. Rules:</p> -<pre><code>* Compartment has to be created firstly (At present only single compartment model is allowed)</code></pre> -<ul> -<li>Enzyme should be dropped on a pool as parent and function should be dropped on buffPool for output -<li> -Drag in pool's and reaction on to the editor widget, now one can set up a reaction.Click on mooseObject one can find a little arrow on the top right corner of the object, drag from this little arrow to any object for connection.E.g pool to reaction and reaction to pool. Specific connection type gets specific colored arrow. E.g. Green color arrow for specifying connection between reactant and product for reaction. Clicking on the object one can rearrange object for clean layout. Second order reaction can also be done by repeating the connection over again</li> -</ul></li> -<li><p>Each connection can be deleted and using rubberband selection each moose object can be deleted</p></li> -</ul> -<div class="figure"> -<img src="../../images/Chemical_run.png" /> -</div> -<ul> -<li>From run widget, pools are draggable to plot window for plotting. (Currently <strong><code>conc</code></strong> is plotted as default field) Plots are color-coded as per in model.</li> -<li>Model can be run by clicking start button. One can stop button in mid-stream and start up again without affectiong the calculations. The reset button clears the simulation.</li> -</ul> -</body> -</html> diff --git a/docs/user/html/MooseGuiDocs.html b/docs/user/html/MooseGuiDocs.html deleted file mode 100644 index f1cb9434744d7409f496184451c48ef7b1f04617..0000000000000000000000000000000000000000 --- a/docs/user/html/MooseGuiDocs.html +++ /dev/null @@ -1,167 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta http-equiv="Content-Style-Type" content="text/css" /> - <meta name="generator" content="pandoc" /> - <title></title> - <style type="text/css">code{white-space: pre;}</style> - <link rel="stylesheet" href="css/moosedocs.css" type="text/css" /> -</head> -<body> -<div id="TOC"> -<ul> -<li><a href="#moose-gui"><strong>MOOSE GUI</strong></a><ul> -<li><a href="#contents">Contents</a></li> -<li><a href="#introduction">Introduction</a></li> -<li><a href="#interface">Interface</a><ul> -<li><a href="#menu-bar">Menu Bar</a></li> -<li><a href="#editor-view">Editor View</a></li> -<li><a href="#run-view">Run View</a></li> -</ul></li> -</ul></li> -</ul> -</div> -<h1 id="moose-gui"><a href="#moose-gui"><strong>MOOSE GUI</strong></a></h1> -<p><strong>Graphical interface for MOOSE</strong></p> -<p><em>Harsha Rani, Aviral Goel, Upinder S. Bhalla</em></p> -<hr /> -<h2 id="contents"><a href="#contents">Contents</a></h2> -<ul> -<li><a href="#introduction">Introduction</a></li> -<li><a href="#interface">Interface</a> -<ul> -<li><a href="#menu-bar">Menu Bar</a> -<ul> -<li><a href="#menu-file">File</a> -<ul> -<li><a href="#file-new">New</a></li> -<li><a href="#file-load-model">Load Model</a></li> -<li><a href="#file-connect-biomodels">Connect BioModels</a></li> -<li><a href="#file-quit">Quit</a></li> -</ul></li> -<li><a href="#menu-view">View</a> -<ul> -<li><a href="#editor-view">Editor View</a></li> -<li><a href="#run-view">Run View</a></li> -<li><a href="#dock-widgets">Dock Widgets</a></li> -<li><a href="#subwindows">SubWindows</a></li> -</ul></li> -<li><a href="#menu-help">Help</a> -<ul> -<li><a href="#about-moose">About MOOSE</a></li> -<li><a href="#built-in-documentation">Built-in Documentation</a></li> -<li><a href="#report-a-bug">Report a bug</a></li> -</ul></li> -</ul></li> -<li><a href="#editor-view">Editor View</a> -<ul> -<li><a href="#model-editor">Model Editor</a></li> -<li><a href="#property-editor">Property Editor</a></li> -</ul></li> -<li><a href="#run-view">Run View</a> -<ul> -<li><a href="#simulation-controls">Simulation Controls</a></li> -<li><a href="#plot-widget">Plot Widget</a> -<ul> -<li><a href="#plot-widget-toolbar">Toolbar</a></li> -<li><a href="#plot-widget-context-menu">Context Menu</a></li> -</ul></li> -</ul></li> -</ul></li> -</ul> -<h2 id="introduction"><a href="#introduction">Introduction</a></h2> -<p>The Moose GUI lets you work on both <a href="Kkit12Documentation.html">chemical</a> and <a href="Nkit2Documentation.html">compartmental/electrical</a> neuronal models using a common interface. This document describes the salient features of the GUI</p> -<h2 id="interface"><a href="#interface">Interface</a></h2> -<p>The common interface layout consists of a a <a href="#menu-bar">menu bar</a> and two views, <a href="#editor-view">editor view</a> and <a href="#run-view">run view</a>.</p> -<h3 id="menu-bar"><a href="#menu-bar">Menu Bar</a></h3> -<div class="figure"> -<img src="../../images/MooseGuiMenuImage.png" /> -</div> -<p>The menu bar appears at the top of the top of the main window. In Ubuntu 12.04, the menu bar appears only when the mouse is in the top menu strip of the screen. It consists of the following options -</p> -<h4 id="file"><a href="#file">File</a></h4> -<p>The File menu option provides the following sub options -</p> -<ul> -<li><a href="#file-new">New</a> - Create a new chemical signalling model.</li> -<li><a href="#file-load-model">Load Model</a> - Load a chemical signalling or compartmental neuronal model from a file.</li> -<li><a href="#recently-loaded-models">Recently Loaded Models</a> - List of models loaded in MOOSE.</li> -<li><a href="#file-connect-biomodels">Connect BioModels</a> - Load chemical signaling models from the BioModels database.</li> -<li><a href="#file-quit">Quit</a> - Quit the interface.</li> -</ul> -<h4 id="view"><a href="#view">View</a></h4> -<p>View menu option provides the following sub options -</p> -<ul> -<li><a href="#editor-view">Editor View</a> - Switch to the editor view for editing models.</li> -<li><a href="#run-view">Run View</a> - Switch to run view for running models.</li> -<li><a href="#dock-widgets">Dock Widgets</a> - Following dock widgets are provided - -<ul> -<li><a href="#dock-widget-python">Python</a> - Brings up a full fledged python interpreter integrated with MOOSE GUI. You can interact with loaded models and load new models through the PyMoose API. The entire power of python language is accessible, as well as MOOSE-specific functions and classes.</li> -<li><a href="#dock-widget-edit">Edit</a> - A property editor for viewing and editing the fields of a selected object such as a pool, enzyme, function or compartment. Editable field values can be changed by clicking on them and overwriting the new values. Please be sure to press enter once the editing is complete, in order to save your changes.</li> -</ul></li> -<li><a href="#subwindows">SubWindows</a> - This allows you to tile or tabify the run and editor views.</li> -</ul> -<h4 id="help"><a href="#help">Help</a></h4> -<ul> -<li><a href="#about-moose">About Moose</a> - Version and general information about MOOSE.</li> -<li><a href="#butilt-in-documentation">Built-in documentation</a> - Documentation of MOOSE GUI.</li> -<li><a href="#report-a-bug">Report a bug</a> - Directs to the SourceForge bug tracker for reporting bugs.</li> -</ul> -<h3 id="editor-view"><a href="#editor-view">Editor View</a></h3> -<p>The editor view provides two windows -</p> -<ul> -<li><a href="#model-editor">Model Editor</a> - The model editor is a workspace to edit and create models. Using click-and-drag from the icons in the menu bar, you can create model entities such as chemical pools, reactions, and so on. A click on any object brings its property editor on screen (see below). In objects that can be interconnected, a click also brings up a special arrow icon that is used to connect objects together with messages. You can move objects around within the edit window using click-and-drag. Finally, you can delete objects by selecting one or more, and then choosing the delete option from the pop-up menu. When displaying a neuronal model, most of the editing options are disabled. However, you can still click on a dendrite in order to bring up the property editor.</li> -</ul> -<p>The Model Editor is different for chemical signalling and compartmental neuronal models. The links below the screenshots point to the details for the respective editors.</p> -<div class="figure"> -<img src="../../images/ChemicalSignallingEditor.png" alt="Chemical Signalling Model Editor" /><p class="caption">Chemical Signalling Model Editor</p> -</div> -<div class="figure"> -<img src="../../images/CompartmentalEditor.png" alt="Compartmental Model Editor" /><p class="caption">Compartmental Model Editor</p> -</div> -<ul> -<li><a href="#property-editor">Property Editor</a> - The property editor provides a way of viewing and editing the properties of objects selected in the model editor.</li> -</ul> -<div class="figure"> -<img src="../../images/PropertyEditor.png" alt="Property Editor" /><p class="caption">Property Editor</p> -</div> -<h3 id="run-view"><a href="#run-view">Run View</a></h3> -<p>The Run view, as the name suggests, puts the GUI into a mode where the model can be simulated. As a first step in this, you can click-and-drag an object to the graph window in order to create a time-series plot for that object. For example, in a chemical reaction, you could drag a pool into the graph window and subsequent simulations will display a graph of the concentration of the pool as a function of time. Within the Run View window, the time-evolution of the simulation is displayed as an animation. For chemical kinetic models, the size of the icons for reactant pools scale to indicate concentration. For neuronal models, the colour of dendritic segments changes to indicate membrane potential. Above the Run View window, there is a special tool bar with a set of simulation controls to run the simulation.</p> -<h4 id="simulation-controls"><a href="#simulation-controls">Simulation Controls</a></h4> -<div class="figure"> -<img src="../../images/SimulationControl.png" alt="Simulation Control" /><p class="caption">Simulation Control</p> -</div> -<p>This panel allows you to control the various aspects of the simulation.</p> -<ul> -<li><a href="#run-time">Run Time</a> - Determines duration for which simulation is to run. A simulation which has already run, runs further for the specified additional period.</li> -<li><a href="#reset">Reset</a> - Restores simulation to its initial state; re-initializes all variables to t = 0.</li> -<li><a href="#stop">Stop</a> - This button halts an ongoing simulation.</li> -<li><a href="#current-time">Current time</a> - This reports the current simulation time.</li> -<li><a href="#preferences">Preferences</a> - Allows you to set simulation and visualization related preferences.</li> -</ul> -<h4 id="plot-widget"><a href="#plot-widget">Plot Widget</a></h4> -<h5 id="toolbar"><a href="#toolbar">Toolbar</a></h5> -<p>On top of plot window there is a little row of icons:</p> -<div class="figure"> -<img src="../../images/PlotWindowIcons.png" /> -</div> -<p>These are the plot controls. If you hover the mouse over them for a few seconds, a tooltip pops up. The icons represent the following functions:</p> -<ul> -<li><p><img src="../../images/Addgraph.png" /> - Add a new plot window</p></li> -<li><p><img src="../../images/delgraph.png" /> - Deletes current plot window</p></li> -<li><p><img src="../../images/grid.png" /> - Toggle X-Y axis grid</p></li> -<li><p><img src="../../images/MatPlotLibHomeIcon.png" /> - Returns the plot display to its default position</p></li> -<li><p><img src="../../images/MatPlotLibDoUndo.png" /> - Undoes or re-does manipulations you have done to the display.</p></li> -<li><p><img src="../../images/MatPlotLibPan.png" /> - The plots will pan around with the mouse when you hold the left button down. The plots will zoom with the mouse when you hold the right button down.</p></li> -<li><p><img src="../../images/MatPlotLibZoom.png" /> - With the <strong><code>left mouse button</code></strong>, this will zoom in to the specified rectangle so that the plots become bigger. With the <strong><code>right mouse button</code></strong>, the entire plot display will be shrunk to fit into the specified rectangle.</p></li> -<li><p><img src="../../images/MatPlotLibConfigureSubplots.png" /> - You don't want to mess with these .</p></li> -<li><p><img src="../../images/MatPlotLibSave.png" /> - Save the plot.</p></li> -</ul> -<h5 id="context-menu"><a href="#context-menu">Context Menu</a></h5> -<p>The context menu is enabled by right clicking on the plot window. It has the following options -</p> -<ul> -<li><strong>Export to CSV</strong> - Exports the plotted data to CSV format</li> -<li><strong>Toggle Legend</strong> - Toggles the plot legend</li> -<li><strong>Remove</strong> - Provides a list of plotted entities. The selected entity will not be plotted.</li> -</ul> -</body> -</html> diff --git a/docs/user/html/Nkit2Documentation.html b/docs/user/html/Nkit2Documentation.html deleted file mode 100644 index 0338697ccf34ec8e34a39495acd9b5e331d2e891..0000000000000000000000000000000000000000 --- a/docs/user/html/Nkit2Documentation.html +++ /dev/null @@ -1,119 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta http-equiv="Content-Style-Type" content="text/css" /> - <meta name="generator" content="pandoc" /> - <title></title> - <style type="text/css">code{white-space: pre;}</style> - <link rel="stylesheet" href="css/moosedocs.css" type="text/css" /> -</head> -<body> -<div id="TOC"> -<ul> -<li><a href="#introduction">Introduction</a></li> -<li><a href="#neuronal-models">Neuronal models</a></li> -<li><a href="#neuronal-simulations-in-moosegui">Neuronal simulations in MOOSEGUI</a><ul> -<li><a href="#quick-start">Quick start</a><ul> -<li><a href="#editor-view">Editor View</a></li> -<li><a href="#run-view">Run View</a></li> -</ul></li> -<li><a href="#modeling-details">Modeling details</a></li> -<li><a href="#demos">Demos</a></li> -</ul></li> -</ul> -</div> -<h1 id="introduction"><a href="#introduction">Introduction</a></h1> -<p>Neuronal models in NeuroML 1.8 format can be loaded and simulated in the <strong>MOOSE Graphical User Interface</strong>. The GUI displays the neurons in 3D, and allows visual selection and editing of neuronal properties. Plotting and visualization of activity proceeds concurrently with the simulation. Support for creating and editing channels, morphology and networks is planned for the future.</p> -<h1 id="neuronal-models"><a href="#neuronal-models">Neuronal models</a></h1> -<p>Neurons are modeled as equivalent electrical circuits. The morphology of a neuron can be broken into isopotential compartments connected by axial resistances <code>R</code><sub><code>a</code></sub> denoting the cytoplasmic resistance. In each compartment, the neuronal membrane is represented as a capacitance <code>C</code><sub><code>m</code></sub> with a shunt leak resistance <code>R</code><sub><code>m</code></sub>. Electrochemical gradient (due to ion pumps) across the leaky membrane causes a voltage drive <code>E</code><sub><code>m</code></sub>, that hyperpolarizes the inside of the cell membrane compared to the outside.</p> -<p>Each voltage dependent ion channel, present on the membrane, is modeled as a voltage dependent conductance <code>G</code><sub><code>k</code></sub> with gating kinetics, in series with an electrochemical voltage drive (battery) <code>E</code><sub><code>k</code></sub>, across the membrane capacitance <code>C</code><sub><code>m</code></sub>, as in the figure below.</p> -<hr /> -<div class="figure"> -<img src="../../images/neuroncompartment.png" alt="Equivalent circuit of neuronal compartments" /><p class="caption"><strong>Equivalent circuit of neuronal compartments</strong></p> -</div> -<hr /> -<p>Neurons fire action potentials / spikes (sharp rise and fall of membrane potential <code>V</code><sub><code>m</code></sub>) due to voltage dependent channels. These result in opening of excitatory / inhibitory synaptic channels (conductances with batteries, similar to voltage gated channels) on other connected neurons in the network.</p> -<p>MOOSE can handle large networks of detailed neurons, each with complicated channel dynamics. Further, MOOSE can integrate chemical signaling with electrical activity. Presently, creating and simulating these requires PyMOOSE scripting, but these will be incorporated into the GUI in the future.</p> -<p>To understand channel kinetics and neuronal action potentials, run the Squid Axon demo installed along with MOOSEGUI and consult its help/tutorial.</p> -<p>Read more about compartmental modeling in the first few chapters of the <a href="http://www.genesis-sim.org/GENESIS/iBoG/iBoGpdf/index.html">Book of Genesis</a>.</p> -<p>Models can be defined in <a href="http://www.neuroml.org">NeuroML</a>, an XML format which is well supported across simulators. Channels, neuronal morphology (compartments), and networks can be specified using various levels of NeuroML, namely ChannelML, MorphML and NetworkML. Importing of cell models in the <a href="http://www.genesis-sim.org/GENESIS">GENESIS</a> <code>.p</code> format is supported for backwards compatibitility.</p> -<h1 id="neuronal-simulations-in-moosegui"><a href="#neuronal-simulations-in-moosegui">Neuronal simulations in MOOSEGUI</a></h1> -<h2 id="quick-start"><a href="#quick-start">Quick start</a></h2> -<ul> -<li>MOOSEGUI provides a few neuronal models in moose/Demos directory in user's home folder. For example, <em>File->Load</em> <code>~/moose/Demos/neuroml/PurkinjeCellPassive/PurkinjePassive.net.xml</code>, which is a model of the purkinje cell. A 3D rendering of the neuron appears in <strong><code>Editor</code></strong> tab.</li> -<li>Click and drag to rotate, scroll wheel to zoom, and arrow keys to pan the 3D rendering.</li> -<li>Click to select a compartment on the 3D model. The selected compartment is colored green.</li> -<li>An editor will appear on the right hand side where the properties of the compartment can be edited.</li> -<li>The 3D view of the model provided by the editor allows only editing of the compartment parameters.</li> -<li>In the <strong><code>Run</code></strong> tab you can see two subwindows. The one on the left provides a dynamic visualization of the compartment Vm as the simulation progresses. The one on the right is the plot window where you can plot the Vm of the various compartments.</li> -<li>Press <code>Ctrl</code> and click and drag a compartment from the visualizer to the plot window.</li> -<li>Run the model using <strong><code>Run</code></strong> button. You can see the colors of the compartments changing as the simulation progresses. The graphs gets updated simultaneously with the visualizer.</li> -</ul> -<h3 id="editor-view"><a href="#editor-view">Editor View</a></h3> -<div class="figure"> -<img src="../../images/NeurokitEditor.png" alt="Editor View" /><p class="caption"><strong>Editor View</strong></p> -</div> -<h3 id="run-view"><a href="#run-view">Run View</a></h3> -<div class="figure"> -<img src="../../images/NeurokitRunner.png" alt="Run View" /><p class="caption"><strong>Run View</strong></p> -</div> -<h2 id="modeling-details"><a href="#modeling-details">Modeling details</a></h2> -<p>MOOSE uses SI units throughout.</p> -<p>Some salient properties of neuronal building blocks in MOOSE are described below. Variables that are updated at every simulation time step are are listed <strong>dynamical</strong>. Rest are parameters.</p> -<ul> -<li><p><strong>Compartment</strong><br /> When you select a compartment, you can view and edit its properties in the right pane. <code>V</code><sub><code>m</code></sub> and <code>I</code><sub><code>m</code></sub> are plot-able.</p> -<ul> -<li><strong><code>V</code><sub><code>m</code></sub></strong> : <strong>dynamical</strong> membrane potential (across <code>C</code><sub><code>m</code></sub>) in Volts.</li> -<li><strong><code>C</code><sub><code>m</code></sub></strong> : membrane capacitance in Farads.</li> -<li><strong><code>E</code><sub><code>m</code></sub></strong> : membrane leak potential in Volts due to the electrochemical gradient setup by ion pumps.</li> -<li><strong><code>I</code><sub><code>m</code></sub></strong> : <strong>dynamical</strong> current in Amperes across the membrane via leak resistance <code>R</code><sub><code>m</code></sub>.</li> -<li><strong><code>inject</code></strong> : current in Amperes injected externally into the compartment.</li> -<li><strong><code>initVm</code></strong> : initial <code>V</code><sub><code>m</code></sub> in Volts.</li> -<li><strong><code>R</code><sub><code>m</code></sub></strong> : membrane leak resistance in Ohms due to leaky channels.</li> -<li><strong><code>diameter</code></strong> : diameter of the compartment in metres.</li> -<li><strong><code>length</code></strong> : length of the compartment in metres.</li> -</ul> -<p>After selecting a compartment, you can click <strong><code>See children</code></strong> on the right pane to list its membrane channels, Ca pool, etc.</p></li> -<li><p><strong>HHChannel</strong><br /> Hodgkin-Huxley channel with voltage dependent dynamical gates.</p> -<ul> -<li><strong><code>Gbar</code></strong> : peak channel conductance in Siemens.</li> -<li><strong><code>E</code><sub><code>k</code></sub></strong> : reversal potential of the channel, due to electrochemical gradient of the ion(s) it allows.</li> -<li><p><strong><code>G</code><sub><code>k</code></sub></strong> : <strong>dynamical</strong> conductance of the channel in Siemens.</p> -<blockquote> -<p>G<sub>k</sub>(t) = Gbar × X(t)<sup>Xpower</sup> × Y(t)<sup>Ypower</sup> × Z(t)<sup>Zpower</sup></p> -</blockquote></li> -<li><p><strong><code>I</code><sub><code>k</code></sub></strong> : <strong>dynamical</strong> current through the channel into the neuron in Amperes.</p> -<blockquote> -<p>I<sub>k</sub>(t) = G<sub>k</sub>(t) × (E<sub>k</sub>-V<sub>m</sub>(t))</p> -</blockquote></li> -<li><p><strong><code>X</code></strong>, <strong><code>Y</code></strong>, <strong><code>Z</code></strong> : <strong>dynamical</strong> gating variables (range <code>0.0</code> to <code>1.0</code>) that may turn on or off as voltage increases with different time constants.</p> -<blockquote> -<p>dX(t)/dt = X<sub>inf</sub>/τ - X(t)/τ</p> -</blockquote> -Here, <code>X</code><sub><code>inf</code></sub> and <code>τ</code> are typically sigmoidal/linear/linear-sigmoidal functions of membrane potential <code>V</code><sub><code>m</code></sub>, which are described in a ChannelML file and presently not editable from MOOSEGUI. Thus, a gate may open <code>(X</code><sub><code>inf</code></sub><code>(V</code><sub><code>m</code></sub><code>) → 1)</code> or close <code>(X</code><sub><code>inf</code></sub><code>(V</code><sub><code>m</code></sub><code>) → 0)</code> on increasing <code>V</code><sub><code>m</code></sub>, with time constant <code>τ(V</code><sub><code>m</code></sub><code>)</code>.</li> -<li><p><strong><code>Xpower</code></strong>, <strong><code>Ypower</code></strong>, <strong><code>Zpower</code></strong> : powers to which gates are raised in the <code>G</code><sub><code>k</code></sub><code>(t)</code> formula above.</p></li> -</ul></li> -<li><p><strong>HHChannel2D</strong><br /> The Hodgkin-Huxley channel2D can have the usual voltage dependent dynamical gates, and also gates that dependent on voltage and an ionic concentration, as for say Ca-dependent K conductance. It has the properties of HHChannel above, and a few more like <code>Xindex</code> as in the <a href="http://www.genesis-sim.org/GENESIS/Hyperdoc/Manual-26.html#ss26.61">GENESIS tab2Dchannel reference</a>.</p></li> -<li><strong>CaConc</strong><br /> This is a pool of Ca ions in each compartment, in a shell volume under the cell membrane. The dynamical Ca concentration increases when Ca channels open, and decays back to resting with a specified time constant τ. Its concentration controls Ca-dependent K channels, etc. -<ul> -<li><p><code>Ca</code> : <strong>dynamical</strong> Ca concentration in the pool in units <code>mM</code> ( i.e., <code>mol/m</code><sup><code>3</code></sup>).</p> -<blockquote> -<p>d[Ca<sup>2+</sup>]/dt = B × I<sub>Ca</sub> - [Ca<sup>2+</sup>]/τ</p> -</blockquote></li> -<li><code>CaBasal</code>/<code>Ca_base</code> : Base Ca concentration to which the Ca decays</li> -<li><code>tau</code> : time constant with which the Ca concentration decays to the base Ca level.</li> -<li><code>B</code> : constant in the <code>[Ca</code><sup><code>2+</code></sup><code>]</code> equation above.</li> -<li><p><code>thick</code> : thickness of the Ca shell within the cell membrane which is used to calculate <code>B</code> (see Chapter 19 of <a href="http://www.genesis-sim.org/GENESIS/iBoG/iBoGpdf/index.html">Book of GENESIS</a>.)</p></li> -</ul></li> -</ul> -<h2 id="demos"><a href="#demos">Demos</a></h2> -<ul> -<li><p><strong>Cerebellar granule cell</strong><br /> <strong><code>File -> Load -></code></strong> <code>~/moose/Demos/neuroml/GranuleCell/GranuleCell.net.xml</code><br /> This is a single compartment Cerebellar granule cell with a variety of channels <a href="http://www.tnb.ua.ac.be/models/network.shtml">Maex, R. and De Schutter, E., 1997</a> (exported from <a href="http://www.neuroconstruct.org/">http://www.neuroconstruct.org/</a>). Click on its soma, and <strong>See children</strong> for its list of channels. Vary the <code>Gbar</code> of these channels to obtain regular firing, adapting and bursty behaviour (may need to increase tau of the Ca pool).</p></li> -<li><p><strong>Purkinje cell</strong><br /> <strong><code>File -> Load -></code></strong> <code>~/moose/Demos/neuroml/PurkinjeCell/Purkinje.net.xml</code><br /> This is a purely passive cell, but with extensive morphology [De Schutter, E. and Bower, J. M., 1994] (exported from <a href="http://www.neuroconstruct.org/">http://www.neuroconstruct.org/</a>). The channel specifications are in an obsolete ChannelML format which MOOSE does not support.</p></li> -<li><p><strong>Olfactory bulb subnetwork</strong><br /> <strong><code>File -> Load -></code></strong> <code>~/moose/Demos/neuroml/OlfactoryBulb/numgloms2_seed100.0_decimated.xml</code><br /> This is a pruned and decimated version of a detailed network model of the Olfactory bulb [Gilra A. and Bhalla U., in preparation] without channels and synaptic connections. We hope to post the ChannelML specifications of the channels and synapses soon.</p></li> -<li><p><strong>All channels cell</strong><br /> <strong><code>File -> Load -></code></strong> <code>~/moose/Demos/neuroml/allChannelsCell/allChannelsCell.net.xml</code><br /> This is the Cerebellar granule cell as above, but with loads of channels from various cell types (exported from <a href="http://www.neuroconstruct.org/">http://www.neuroconstruct.org/</a>). Play around with the channel properties to see what they do. You can also edit the ChannelML files in <code>~/moose/Demos/neuroml/allChannelsCell/cells_channels/</code> to experiment further.</p></li> -<li><p><strong>NeuroML python scripts</strong><br /> In directory <code>~/moose/Demos/neuroml/GranuleCell</code>, you can run <code>python FvsI_Granule98.py</code> which plots firing rate vs injected current for the granule cell. Consult this python script to see how to read in a NeuroML model and to set up simulations. There are ample snippets in <code>~/moose/Demos/snippets</code> too.</p></li> -</ul> -</body> -</html> diff --git a/docs/user/html/css/moosebuiltindocs.css b/docs/user/html/css/moosebuiltindocs.css deleted file mode 100644 index 211c84f34d188b8c3acf7b8819413f3b46337ecc..0000000000000000000000000000000000000000 --- a/docs/user/html/css/moosebuiltindocs.css +++ /dev/null @@ -1,16 +0,0 @@ -#index-for-moose-classes > table, #index-for-moose-functions > table { - table-layout: fixed; -} - -th:nth-child( 1 ) { - width: 15%; -} - -th:nth-child( 2 ) { - width: 30%; -} - -/* - * Shows table-of-contents only 2 levels deep, and hides beyond that. - */ -div#TOC > ul > li > ul > li ul { display: none; } diff --git a/docs/user/html/css/moosedocs.css b/docs/user/html/css/moosedocs.css deleted file mode 100644 index 8b5cd22792dbce02d06d2936969329a246e84b46..0000000000000000000000000000000000000000 --- a/docs/user/html/css/moosedocs.css +++ /dev/null @@ -1,163 +0,0 @@ -body { - /* - max-width: 70em; - border-left: 1px solid black; - border-right: 1px solid black; - */ - - margin: auto; - padding-right: 1em; - padding-left: 1em; - color: black; - font-family: Verdana, sans-serif; - font-size: 100%; - line-height: 140%; - color: #333; -} - -pre { - background-color: #EFC; - color: #333; - line-height: 120%; - border: 1px solid #AC9; - border-left: none; - border-right: none; - max-width: 80em; - - /* - border: 1px dotted gray; - background-color: #ececec; - */ - - color: #1111111; - padding: 0.5em; -} - -blockquote { - /* - background-color: #EFC; - color: #333; - line-height: 120%; - border: 1px solid #AC9; - border-left: none; - border-right: none; - */ - - border: 1px dotted gray; - background-color: #ececec; - max-width: 70em; - font-family: monospace; - color: #1111111; - padding: 0.5em; -} - -code { - font-family: monospace; -} - -h1 a, h2 a, h3 a, h4 a, h5 a { - text-decoration: none; - color: #7a5ada; -} - -h1, h2, h3, h4, h5 { - font-family: verdana; - font-weight: bold; - border-bottom: 1px dotted black; - color: #7a5ada; -} - -h1 { - font-size: 130%; -} - -h2 { - font-size: 110%; -} - -h3 { - font-size: 95%; -} - -h4 { - font-size: 90%; - font-style: italic; -} - -h5 { - font-size: 90%; - font-style: italic; -} - -h1.title { - font-size: 200%; - font-weight: bold; - padding-top: 0.2em; - padding-bottom: 0.2em; - text-align: left; - border: none; -} - -dt code { - font-weight: bold; -} - -dd p { - margin-top: 0; -} - -#footer { - padding-top: 1em; - font-size: 70%; - color: gray; - text-align: center; -} - -table { - width: 80%; - border: 1px solid #B099FF; - border-collapse: collapse; -} - -td { - border: 1px solid #B099FF; - padding: 4px; -} - -th { - color: white; - background-color: #C5B3FF; - border: 1px solid #B099FF; - - /* Padding: top-bottom and left-right */ - padding: 6px 4px; -} - -tr:nth-child( odd ) { - background-color: #FFFFFF; -} - -tr:nth-child( even ) { - background-color: #E7E0FF; -} - -#nav_image { - #background-color:#aaeeee; - width:35%; - float:left; - padding:5px; -} -#section { - #background-color:#aaeebb; - width:55%; - float:left; - padding:5px; -} -#header { - - clear:both; - text-align:left; - padding:5px; - } -img[drawing] { width: 10px; background-color: #cccccc;} - diff --git a/docs/user/html/moosebuiltindocs.html b/docs/user/html/moosebuiltindocs.html deleted file mode 100644 index a326ccd40bf49647b8f8e0cfeb61ca02bc18812e..0000000000000000000000000000000000000000 --- a/docs/user/html/moosebuiltindocs.html +++ /dev/null @@ -1,24939 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta http-equiv="Content-Style-Type" content="text/css" /> - <meta name="generator" content="pandoc" /> - <meta name="author" content="As visible in the Python module" /> - <title>Documentation for all MOOSE classes and functions</title> - <style type="text/css">code{white-space: pre;}</style> - <link rel="stylesheet" href="css/moosedocs.css" type="text/css" /> - <link rel="stylesheet" href="css/moosebuiltindocs.css" type="text/css" /> -</head> -<body> -<div id="header"> -<h1 class="title">Documentation for all MOOSE classes and functions</h1> -<h2 class="author">As visible in the Python module</h2> -<h3 class="date">Auto-generated on January 07, 2013</h3> -</div> -<h1 id="index-for-moose-classes">Index for MOOSE Classes</h1> -<table> -<tbody> -<tr class="odd"> -<td align="left"><strong>A</strong></td> -<td align="left"><a href="#enz"><code>Enz</code></a></td> -<td align="left"><a href="#interpol2d"><code>Interpol2D</code></a></td> -<td align="left"><a href="#nmdachan"><code>NMDAChan</code></a></td> -<td align="left"><a href="#species"><code>Species</code></a></td> -<td align="left"><a href="#vectortable"><code>VectorTable</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#adaptor"><code>Adaptor</code></a></td> -<td align="left"><a href="#enzbase"><code>EnzBase</code></a></td> -<td align="left"><a href="#intfire"><code>IntFire</code></a></td> -<td align="left"><strong>O</strong></td> -<td align="left"><a href="#spherepanel"><code>SpherePanel</code></a></td> -<td align="left"><strong>Z</strong></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#annotator"><code>Annotator</code></a></td> -<td align="left"><strong>F</strong></td> -<td align="left"><a href="#izhikevichnrn"><code>IzhikevichNrn</code></a></td> -<td align="left"><a href="#onetoallmsg"><code>OneToAllMsg</code></a></td> -<td align="left"><a href="#spikegen"><code>SpikeGen</code></a></td> -<td align="left"><a href="#zbufpool"><code>ZBufPool</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#arith"><code>Arith</code></a></td> -<td align="left"><a href="#finfo"><code>Finfo</code></a></td> -<td align="left"><strong>L</strong></td> -<td align="left"><a href="#onetoonemsg"><code>OneToOneMsg</code></a></td> -<td align="left"><a href="#stats"><code>Stats</code></a></td> -<td align="left"><a href="#zenz"><code>ZEnz</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><strong>B</strong></td> -<td align="left"><a href="#funcbase"><code>FuncBase</code></a></td> -<td align="left"><a href="#leakyiaf"><code>LeakyIaF</code></a></td> -<td align="left"><strong>P</strong></td> -<td align="left"><a href="#stimulustable"><code>StimulusTable</code></a></td> -<td align="left"><a href="#zfuncpool"><code>ZFuncPool</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#boundary"><code>Boundary</code></a></td> -<td align="left"><a href="#funcpool"><code>FuncPool</code></a></td> -<td align="left"><strong>M</strong></td> -<td align="left"><a href="#panel"><code>Panel</code></a></td> -<td align="left"><a href="#stoich"><code>Stoich</code></a></td> -<td align="left"><a href="#zmmenz"><code>ZMMenz</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#bufpool"><code>BufPool</code></a></td> -<td align="left"><strong>G</strong></td> -<td align="left"><a href="#markovchannel"><code>MarkovChannel</code></a></td> -<td align="left"><a href="#pidcontroller"><code>PIDController</code></a></td> -<td align="left"><a href="#stoichcore"><code>StoichCore</code></a></td> -<td align="left"><a href="#zombiebufpool"><code>ZombieBufPool</code></a></td> -</tr> -<tr class="even"> -<td align="left"><strong>C</strong></td> -<td align="left"><a href="#geometry"><code>Geometry</code></a></td> -<td align="left"><a href="#markovgslsolver"><code>MarkovGslSolver</code></a></td> -<td align="left"><a href="#pool"><code>Pool</code></a></td> -<td align="left"><a href="#stoichpools"><code>StoichPools</code></a></td> -<td align="left"><a href="#zombiecaconc"><code>ZombieCaConc</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#caconc"><code>CaConc</code></a></td> -<td align="left"><a href="#ghk"><code>GHK</code></a></td> -<td align="left"><a href="#markovratetable"><code>MarkovRateTable</code></a></td> -<td align="left"><a href="#poolbase"><code>PoolBase</code></a></td> -<td align="left"><a href="#sumfunc"><code>SumFunc</code></a></td> -<td align="left"><a href="#zombiecompartment"><code>ZombieCompartment</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#chanbase"><code>ChanBase</code></a></td> -<td align="left"><a href="#group"><code>Group</code></a></td> -<td align="left"><a href="#markovsolver"><code>MarkovSolver</code></a></td> -<td align="left"><a href="#port"><code>Port</code></a></td> -<td align="left"><a href="#surface"><code>Surface</code></a></td> -<td align="left"><a href="#zombieenz"><code>ZombieEnz</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#chemmesh"><code>ChemMesh</code></a></td> -<td align="left"><a href="#gslintegrator"><code>GslIntegrator</code></a></td> -<td align="left"><a href="#markovsolverbase"><code>MarkovSolverBase</code></a></td> -<td align="left"><a href="#pulsegen"><code>PulseGen</code></a></td> -<td align="left"><a href="#symcompartment"><code>SymCompartment</code></a></td> -<td align="left"><a href="#zombiefuncpool"><code>ZombieFuncPool</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#cinfo"><code>Cinfo</code></a></td> -<td align="left"><a href="#gslstoich"><code>GslStoich</code></a></td> -<td align="left"><a href="#mathfunc"><code>MathFunc</code></a></td> -<td align="left"><strong>R</strong></td> -<td align="left"><a href="#synapse"><code>Synapse</code></a></td> -<td align="left"><a href="#zombiehhchannel"><code>ZombieHHChannel</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#clock"><code>Clock</code></a></td> -<td align="left"><a href="#gssastoich"><code>GssaStoich</code></a></td> -<td align="left"><a href="#mdouble"><code>Mdouble</code></a></td> -<td align="left"><a href="#rc"><code>RC</code></a></td> -<td align="left"><a href="#synbase"><code>SynBase</code></a></td> -<td align="left"><a href="#zombiemmenz"><code>ZombieMMenz</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#compartment"><code>Compartment</code></a></td> -<td align="left"><strong>H</strong></td> -<td align="left"><a href="#meshentry"><code>MeshEntry</code></a></td> -<td align="left"><a href="#reac"><code>Reac</code></a></td> -<td align="left"><a href="#synchan"><code>SynChan</code></a></td> -<td align="left"><a href="#zombiepool"><code>ZombiePool</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#cplxenzbase"><code>CplxEnzBase</code></a></td> -<td align="left"><a href="#hdf5datawriter"><code>HDF5DataWriter</code></a></td> -<td align="left"><a href="#mgblock"><code>MgBlock</code></a></td> -<td align="left"><a href="#reacbase"><code>ReacBase</code></a></td> -<td align="left"><a href="#synchanbase"><code>SynChanBase</code></a></td> -<td align="left"><a href="#zombiereac"><code>ZombieReac</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#cubemesh"><code>CubeMesh</code></a></td> -<td align="left"><a href="#hdf5writerbase"><code>HDF5WriterBase</code></a></td> -<td align="left"><a href="#mmenz"><code>MMenz</code></a></td> -<td align="left"><a href="#rectpanel"><code>RectPanel</code></a></td> -<td align="left"><strong>T</strong></td> -<td align="left"><a href="#zombiesumfunc"><code>ZombieSumFunc</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#cylmesh"><code>CylMesh</code></a></td> -<td align="left"><a href="#hemispherepanel"><code>HemispherePanel</code></a></td> -<td align="left"><a href="#msg"><code>Msg</code></a></td> -<td align="left"><a href="#reducemsg"><code>ReduceMsg</code></a></td> -<td align="left"><a href="#table"><code>Table</code></a></td> -<td align="left"><a href="#zpool"><code>ZPool</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#cylpanel"><code>CylPanel</code></a></td> -<td align="left"><a href="#hhchannel"><code>HHChannel</code></a></td> -<td align="left"><a href="#mstring"><code>Mstring</code></a></td> -<td align="left"><strong>S</strong></td> -<td align="left"><a href="#tablebase"><code>TableBase</code></a></td> -<td align="left"><a href="#zreac"><code>ZReac</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><strong>D</strong></td> -<td align="left"><a href="#hhchannel2d"><code>HHChannel2D</code></a></td> -<td align="left"><strong>N</strong></td> -<td align="left"><a href="#shell"><code>Shell</code></a></td> -<td align="left"><a href="#tableentry"><code>TableEntry</code></a></td> -<td align="left"></td> -</tr> -<tr class="even"> -<td align="left"><a href="#diagonalmsg"><code>DiagonalMsg</code></a></td> -<td align="left"><a href="#hhgate"><code>HHGate</code></a></td> -<td align="left"><a href="#nernst"><code>Nernst</code></a></td> -<td align="left"><a href="#simmanager"><code>SimManager</code></a></td> -<td align="left"><a href="#testsched"><code>testSched</code></a></td> -<td align="left"></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#diffamp"><code>DiffAmp</code></a></td> -<td align="left"><a href="#hhgate2d"><code>HHGate2D</code></a></td> -<td align="left"><a href="#neuromesh"><code>NeuroMesh</code></a></td> -<td align="left"><a href="#singlemsg"><code>SingleMsg</code></a></td> -<td align="left"><a href="#tick"><code>Tick</code></a></td> -<td align="left"></td> -</tr> -<tr class="even"> -<td align="left"><a href="#diskpanel"><code>DiskPanel</code></a></td> -<td align="left"><a href="#hsolve"><code>HSolve</code></a></td> -<td align="left"><a href="#neuron"><code>Neuron</code></a></td> -<td align="left"><a href="#solverjunction"><code>SolverJunction</code></a></td> -<td align="left"><a href="#tripanel"><code>TriPanel</code></a></td> -<td align="left"></td> -</tr> -<tr class="odd"> -<td align="left"><strong>E</strong></td> -<td align="left"><strong>I</strong></td> -<td align="left"><a href="#neutral"><code>Neutral</code></a></td> -<td align="left"><a href="#sparsemsg"><code>SparseMsg</code></a></td> -<td align="left"><strong>V</strong></td> -<td align="left"></td> -</tr> -</tbody> -</table> -<h1 id="index-for-moose-functions">Index for MOOSE Functions</h1> -<table> -<tbody> -<tr class="odd"> -<td align="left"><strong>C</strong></td> -<td align="left"><a href="#element"><code>element</code></a></td> -<td align="left"><a href="#getmoosedoc"><code>getmoosedoc</code></a></td> -<td align="left"><a href="#move"><code>move</code></a></td> -<td align="left"><a href="#savemodel"><code>saveModel</code></a></td> -<td align="left"><a href="#stop"><code>stop</code></a></td> -</tr> -<tr class="even"> -<td align="left"><a href="#ce"><code>ce</code></a></td> -<td align="left"><a href="#exists"><code>exists</code></a></td> -<td align="left"><strong>I</strong></td> -<td align="left"><strong>P</strong></td> -<td align="left"><a href="#seed"><code>seed</code></a></td> -<td align="left"><a href="#syncdatahandler"><code>syncDataHandler</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#connect"><code>connect</code></a></td> -<td align="left"><strong>G</strong></td> -<td align="left"><a href="#isrunning"><code>isRunning</code></a></td> -<td align="left"><a href="#pwe"><code>pwe</code></a></td> -<td align="left"><a href="#setclock"><code>setClock</code></a></td> -<td align="left"><strong>U</strong></td> -</tr> -<tr class="even"> -<td align="left"><a href="#copy"><code>copy</code></a></td> -<td align="left"><a href="#getcwe"><code>getCwe</code></a></td> -<td align="left"><strong>L</strong></td> -<td align="left"><strong>Q</strong></td> -<td align="left"><a href="#setcwe"><code>setCwe</code></a></td> -<td align="left"><a href="#useclock"><code>useClock</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><strong>D</strong></td> -<td align="left"><a href="#getfield"><code>getField</code></a></td> -<td align="left"><a href="#le"><code>le</code></a></td> -<td align="left"><a href="#quit"><code>quit</code></a></td> -<td align="left"><a href="#showfield"><code>showfield</code></a></td> -<td align="left"><strong>W</strong></td> -</tr> -<tr class="even"> -<td align="left"><a href="#delete"><code>delete</code></a></td> -<td align="left"><a href="#getfielddict"><code>getFieldDict</code></a></td> -<td align="left"><a href="#listmsg"><code>listmsg</code></a></td> -<td align="left"><strong>R</strong></td> -<td align="left"><a href="#showfields"><code>showfields</code></a></td> -<td align="left"><a href="#wildcardfind"><code>wildcardFind</code></a></td> -</tr> -<tr class="odd"> -<td align="left"><a href="#doc"><code>doc</code></a></td> -<td align="left"><a href="#getfielddoc"><code>getfielddoc</code></a></td> -<td align="left"><a href="#loadmodel"><code>loadModel</code></a></td> -<td align="left"><a href="#reinit"><code>reinit</code></a></td> -<td align="left"><a href="#showmsg"><code>showmsg</code></a></td> -<td align="left"><a href="#writesbml"><code>writeSBML</code></a></td> -</tr> -<tr class="even"> -<td align="left"><strong>E</strong></td> -<td align="left"><a href="#getfieldnames"><code>getFieldNames</code></a></td> -<td align="left"><strong>M</strong></td> -<td align="left"><strong>S</strong></td> -<td align="left"><a href="#start"><code>start</code></a></td> -<td align="left"></td> -</tr> -</tbody> -</table> -<h1 id="moose-classes">MOOSE Classes</h1> -<h2 id="adaptor">Adaptor</h2> -<p><strong>Author</strong>: Upinder S. Bhalla, 2008, NCBS</p> -<p><strong>Description</strong>: Averages and rescales values to couple different kinds of simulation</p> -<h4 id="value-fields">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>inputOffset</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Offset to apply to input message, before scaling</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputOffset</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Offset to apply at output, after scaling</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>scale</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Scaling factor to apply to input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">This is the linearly transformed output.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputSrc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends the output value every timestep.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestInput</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Sends out the request. Issued from the process call.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Input message to the adaptor. If multiple inputs are received, the system averages the inputs.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'process' call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'reinit' call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleInput</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handle the returned value.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from the scheduler.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>inputRequest</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to request and handle value messages from fields.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="annotator">Annotator</h2> -<h4 id="value-fields-1">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">x field. Typically display coordinate x</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">y field. Typically display coordinate y</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">z field. Typically display coordinate z</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>notes</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">A string to hold some text notes about parent object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>color</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">A string to hold a text string specifying display color.Can be a regular English color name, or an rgb code rrrgggbbb</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>textColor</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">A string to hold a text string specifying color for text labelthat might be on the display for this object.Can be a regular English color name, or an rgb code rrrgggbbb</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>icon</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">A string to specify icon to use for display</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-1">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-1">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-1">Shared message fields</h4> -<h4 id="lookup-fields-1">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="arith">Arith</h2> -<h4 id="value-fields-2">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>function</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Arithmetic function to perform on inputs.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputValue</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Value of output as computed last timestep.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>arg1Value</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Value of arg1 as computed last timestep.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-2">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out the computed value</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-2">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>arg1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles argument 1. This just assigns it</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>arg2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles argument 2. This just assigns it</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>arg3</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles argument 3. This sums in each input, and clears each clock tick.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>arg1x2</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Store the product of the two arguments in output_</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-2">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-2">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>anyValue</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Value of any of the internal fields, output, arg1, arg2, arg3,as specified by the index argument from 0 to 3.</td> -</tr> -</tbody> -</table> -<h2 id="boundary">Boundary</h2> -<h4 id="value-fields-3">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reflectivity</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">What happens to a molecule hitting it: bounces, absorbed, diffused?</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-3">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toAdjacent</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Dummy message going to adjacent compartment.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toInside</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Dummy message going to surrounded compartment.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-3">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>adjacent</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Dummy message coming from adjacent compartment to current oneImplies that compts are peers: do not surround each other</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>outside</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Dummy message coming from surrounding compartment to this one.Implies that the originating compartment surrounds this one</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-3">Shared message fields</h4> -<h4 id="lookup-fields-3">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="bufpool">BufPool</h2> -<h4 id="value-fields-4">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-4">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-4">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>increment</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Increments mol numbers by specified amount. Can be +ve or -ve</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>decrement</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Decrements mol numbers by specified amount. Can be +ve or -ve</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-4">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-4">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="caconc">CaConc</h2> -<h4 id="value-fields-5">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ca</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Calcium concentration.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>CaBasal</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Basal Calcium concentration.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ca_base</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Basal Calcium concentration, synonym for CaBasal</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tau</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Settling time for Ca concentration</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>B</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Volume scaling factor</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>thick</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Thickness of Ca shell.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ceiling</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ceiling value for Ca concentration. If Ca > ceiling, Ca = ceiling. If ceiling <= 0.0, there is no upper limit on Ca concentration value.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>floor</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Floor value for Ca concentration. If Ca < floor, Ca = floor</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-5">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>concOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of Ca in pool</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-5">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>current</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Calcium Ion current, due to be converted to conc.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>currentFraction</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Fraction of total Ion current, that is carried by Ca2+.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>increase</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Any input current that increases the concentration.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>decrease</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Any input current that decreases the concentration.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>basal</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Synonym for assignment of basal conc.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-5">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message to receive Process message from scheduler</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-5">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="chanbase">ChanBase</h2> -<h4 id="value-fields-6">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-6">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-6">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-6">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-6">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="chemmesh">ChemMesh</h2> -<h4 id="value-fields-7">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of entire chemical domain.Assigning this assumes that the geometry is that of the default mesh, which may not be what you want. If so, usea more specific mesh assignment function.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numDimensions</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of spatial dimensions of this compartment. Usually 3 or 2</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-7">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshSplit</code></strong></td> -<td align="left"><code>double,vector<double>,vector<unsigned int>,vector< vector<unsigned int> >,vector< vector<unsigned int> ></code></td> -<td align="left">Defines how meshEntries communicate between nodes.Args: oldVol, volListOfAllEntries, localEntryList, outgoingDiffusion[node#][entry#], incomingDiffusion[node#][entry#]This message is meant to go to the SimManager and Stoich.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>meshStats</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">Basic statistics for mesh: Total # of entries, and a vector ofunique volumes of voxels</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-7">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>buildDefaultMesh</code></strong></td> -<td align="left"><code>double,unsigned int</code></td> -<td align="left">Tells ChemMesh derived class to build a default mesh with thespecified size and number of meshEntries.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleRequestMeshStats</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles request from SimManager for mesh stats</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleNodeInfo</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Tells ChemMesh how many nodes and threads per node it is allowed to use. Triggers a return meshSplit message.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-7">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>nodeMeshing</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to SimManager to coordinate meshing with paralleldecomposition and with the Stoich</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-7">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="cinfo">Cinfo</h2> -<p><strong>Author</strong>: Upi Bhalla</p> -<p><strong>Description</strong>: Class information object.</p> -<h4 id="value-fields-8">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>docs</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Documentation</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>baseClass</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of base class</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-8">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-8">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-8">Shared message fields</h4> -<h4 id="lookup-fields-8">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="clock">Clock</h2> -<h4 id="value-fields-9">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>runTime</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Duration to run the simulation</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>currentTime</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current simulation time</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nsteps</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of steps to advance the simulation, in units of the smallest timestep on the clock ticks</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numTicks</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of clock ticks</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>currentStep</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Current simulation step</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>dts</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Utility function returning the dt (timestep) of all ticks.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>isRunning</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Utility function to report if simulation is in progress.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-9">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>childTick</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Parent of Tick element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>finished</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Signal for completion of run</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ack</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Acknowledgement signal for receipt/completion of function.Goes back to Shell on master node</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-9">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>start</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sets off the simulation for the specified duration</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>step</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Sets off the simulation for the specified # of steps</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>stop</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Halts the simulation, with option to restart seamlessly</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>setupTick</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Sets up a specific clock tick: args tick#, dt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Zeroes out all ticks, starts at t = 0</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-9">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>clockControl</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Controls all scheduling aspects of Clock, usually from Shell</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-9">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="compartment">Compartment</h2> -<p><strong>Author</strong>: Upi Bhalla</p> -<p><strong>Description</strong>: Compartment object, for branching neuron models.</p> -<h4 id="value-fields-10">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">membrane potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Cm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane capacitance</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Em</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Resting membrane potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Im</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current going through membrane</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>inject</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current injection to deliver into compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value for membrane potential</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Rm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane resistance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ra</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Axial resistance of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diameter</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diameter of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>length</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Length of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>x0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">X coordinate of start of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Y coordinate of start of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Z coordinate of start of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">x coordinate of end of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">y coordinate of end of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">z coordinate of end of compartment</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-10">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>VmOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm value of compartment on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>axialOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm value of compartment to adjacent compartments,on each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>raxialOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Raxial information on each timestep, fields are Ra and Vm</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-10">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectMsg</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the 'inject' field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>randInject</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends a random injection current to the compartment. Must beupdated each timestep.Arguments to randInject are probability and current.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectMsg</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the 'inject' field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cable</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message for organizing compartments into groups, calledcables. Doesn't do anything.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'process' call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'reinit' call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initProc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles Process call for the 'init' phase of the Compartment calculations. These occur as a separate Tick cycle from the regular proc cycle, and should be called before the proc msg.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initReinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles Reinit call for the 'init' phase of the Compartment calculations.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleChannel</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles conductance and Reversal potential arguments from Channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleRaxial</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles Raxial info: arguments are Ra and Vm.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleAxial</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Axial information. Argument is just Vm.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-10">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process messages from the scheduler objects. The Process should be called <em>second</em> in each clock tick, after the Init message.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Init messages from the scheduler objects. Its job is to separate the compartmental calculations from the message passing. It doesn't really need to be shared, as it does not use the reinit part, but the scheduler objects expect this form of message for all scheduled output. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a dummy MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message from a compartment to channels. The first entry is a MsgDest for the info coming from the channel. It expects Gk and Ek from the channel as args. The second entry is a MsgSrc sending Vm</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>axial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message between asymmetric compartments. axial messages (this kind) connect up to raxial messages (defined below). The soma should use raxial messages to connect to the axial message of all the immediately adjacent dendritic compartments.This puts the (low) somatic resistance in series with these dendrites. Dendrites should then use raxial messages toconnect on to more distal dendrites. In other words, raxial messages should face outward from the soma. The first entry is a MsgSrc sending Vm to the axialFuncof the target compartment. The second entry is a MsgDest for the info coming from the other compt. It expects Ra and Vm from the other compt as args. Note that the message is named after the source type.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>raxial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial shared message between asymmetric compartments. The first entry is a MsgDest for the info coming from the other compt. It expects Vm from the other compt as an arg. The second is a MsgSrc sending Ra and Vm to the raxialFunc of the target compartment.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-10">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="cplxenzbase">CplxEnzBase</h2> -<p><strong>Author</strong>: Upi Bhalla</p> -<p><strong>Description</strong>:: Base class for mass-action enzymes in which there is an explicit pool for the enzyme-substrate complex. It models the reaction: E + S <===> E.S ----> E + P</p> -<h4 id="value-fields-11">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward reaction from enz + sub to complex</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>k2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse reaction from complex to enz + sub</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k3</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant from complex to product + enz</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ratio</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ratio of k2/k3</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concK1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">K1 expressed in concentration (1/millimolar.sec) units</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-11">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toEnz</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toCplx</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-11">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplxDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of enz-sub complex</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-11">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enz</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enzyme pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplx</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enz-sub complex pool</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-11">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="cubemesh">CubeMesh</h2> -<h4 id="value-fields-12">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of entire chemical domain.Assigning this assumes that the geometry is that of the default mesh, which may not be what you want. If so, usea more specific mesh assignment function.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numDimensions</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of spatial dimensions of this compartment. Usually 3 or 2</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>isToroid</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag. True when the mesh should be toroidal, that is,when going beyond the right face brings us around to theleft-most mesh entry, and so on. If we have nx, ny, nzentries, this rule means that the coordinate (x, ny, z)will map onto (x, 0, z). Similarly,(-1, y, z) -> (nx-1, y, z)Default is false</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>preserveNumEntries</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag. When it is true, the numbers nx, ny, nz remainunchanged when x0, x1, y0, y1, z0, z1 are altered. Thusdx, dy, dz would change instead. When it is false, thendx, dy, dz remain the same and nx, ny, nz are altered.Default is true</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>x0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">X coord of one end</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Y coord of one end</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Z coord of one end</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">X coord of other end</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Y coord of other end</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Z coord of other end</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>dx</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">X size for mesh</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>dy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Y size for mesh</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>dz</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Z size for mesh</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nx</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of subdivisions in mesh in X</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ny</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of subdivisions in mesh in Y</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nz</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of subdivisions in mesh in Z</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Set all the coords of the cuboid at once. Order is:x0 y0 z0 x1 y1 z1 dx dy dz</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshToSpace</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array in which each mesh entry stores spatial (cubic) index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>spaceToMesh</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array in which each space index (obtained by linearizing the xyz coords) specifies which meshIndex is present.In many cases the index will store the EMPTY flag if there isno mesh entry at that spatial location</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>surface</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array specifying surface of arbitrary volume within the CubeMesh. All entries must fall within the cuboid. Each entry of the array is a spatial index obtained by linearizing the ix, iy, iz coordinates within the cuboid. So, each entry == ( iz * ny + iy ) * nx + ixNote that the voxels listed on the surface are WITHIN the volume of the CubeMesh object</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-12">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshSplit</code></strong></td> -<td align="left"><code>double,vector<double>,vector<unsigned int>,vector< vector<unsigned int> >,vector< vector<unsigned int> ></code></td> -<td align="left">Defines how meshEntries communicate between nodes.Args: oldVol, volListOfAllEntries, localEntryList, outgoingDiffusion[node#][entry#], incomingDiffusion[node#][entry#]This message is meant to go to the SimManager and Stoich.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>meshStats</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">Basic statistics for mesh: Total # of entries, and a vector ofunique volumes of voxels</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-12">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>buildDefaultMesh</code></strong></td> -<td align="left"><code>double,unsigned int</code></td> -<td align="left">Tells ChemMesh derived class to build a default mesh with thespecified size and number of meshEntries.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleRequestMeshStats</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles request from SimManager for mesh stats</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleNodeInfo</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Tells ChemMesh how many nodes and threads per node it is allowed to use. Triggers a return meshSplit message.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-12">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>nodeMeshing</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to SimManager to coordinate meshing with paralleldecomposition and with the Stoich</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-12">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="cylmesh">CylMesh</h2> -<h4 id="value-fields-13">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of entire chemical domain.Assigning this assumes that the geometry is that of the default mesh, which may not be what you want. If so, usea more specific mesh assignment function.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numDimensions</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of spatial dimensions of this compartment. Usually 3 or 2</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>x0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">x coord of one end</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">y coord of one end</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">z coord of one end</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>r0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Radius of one end</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>x1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">x coord of other end</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">y coord of other end</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">z coord of other end</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>r1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Radius of other end</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>lambda</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Length constant to use for subdivisionsThe system will attempt to subdivide using compartments oflength lambda on average. If the cylinder has different enddiameters r0 and r1, it will scale to smaller lengthsfor the smaller diameter end and vice versa.Once the value is set it will recompute lambda as totLength/numEntries</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coords as a single vector: x0 y0 z0 x1 y1 z1 r0 r1 lambda</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>totLength</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Total length of cylinder</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-13">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshSplit</code></strong></td> -<td align="left"><code>double,vector<double>,vector<unsigned int>,vector< vector<unsigned int> >,vector< vector<unsigned int> ></code></td> -<td align="left">Defines how meshEntries communicate between nodes.Args: oldVol, volListOfAllEntries, localEntryList, outgoingDiffusion[node#][entry#], incomingDiffusion[node#][entry#]This message is meant to go to the SimManager and Stoich.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>meshStats</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">Basic statistics for mesh: Total # of entries, and a vector ofunique volumes of voxels</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-13">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>buildDefaultMesh</code></strong></td> -<td align="left"><code>double,unsigned int</code></td> -<td align="left">Tells ChemMesh derived class to build a default mesh with thespecified size and number of meshEntries.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleRequestMeshStats</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles request from SimManager for mesh stats</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleNodeInfo</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Tells ChemMesh how many nodes and threads per node it is allowed to use. Triggers a return meshSplit message.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-13">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>nodeMeshing</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to SimManager to coordinate meshing with paralleldecomposition and with the Stoich</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-13">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="cylpanel">CylPanel</h2> -<h4 id="value-fields-14">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nPts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of points used by panel to specify geometry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nDims</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Dimensions used by panel to specify geometry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numNeighbors</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Neighbors of panel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>shapeId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Identifier for shape type, as used by Smoldyn</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coordinates for the panel. X vector, then Y, then ZZ can be left out for 2-D panels.Z and Y can be left out for 1-D panels.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-14">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toNeighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Identifies neighbors of the current panel</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-14">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles incoming message from neighbor</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-14">Shared message fields</h4> -<h4 id="lookup-fields-14">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">x coordinate identified by index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">y coordinate identified by index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">z coordinate identified by index</td> -</tr> -</tbody> -</table> -<h2 id="diagonalmsg">DiagonalMsg</h2> -<h4 id="value-fields-15">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>e1</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e2</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>stride</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">The stride is the increment to the src DataId that gives thedest DataId. It can be positive or negative, but bounds checkingtakes place and it does not wrap around.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-15">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-15">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-15">Shared message fields</h4> -<h4 id="lookup-fields-15">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="diffamp">DiffAmp</h2> -<h4 id="value-fields-16">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>gain</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Gain of the amplifier. The output of the amplifier is the difference between the totals in plus and minus inputs multiplied by the gain. Defaults to 1</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>saturation</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Saturation is the bound on the output. If output goes beyond the +/-saturation range, it is truncated to the closer of +saturation and -saturation. Defaults to the maximum double precision floating point number representable on the system.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Output of the amplifier, i.e. gain * (plus - minus).</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-16">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current output level.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-16">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>gainIn</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Destination message to control gain dynamically.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>plusIn</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Positive input terminal of the amplifier. All the messages connected here are summed up to get total positive input.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>minusIn</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Negative input terminal of the amplifier. All the messages connected here are summed up to get total positive input.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call, updates internal time stamp.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-16">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-16">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="diskpanel">DiskPanel</h2> -<h4 id="value-fields-17">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nPts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of points used by panel to specify geometry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nDims</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Dimensions used by panel to specify geometry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numNeighbors</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Neighbors of panel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>shapeId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Identifier for shape type, as used by Smoldyn</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coordinates for the panel. X vector, then Y, then ZZ can be left out for 2-D panels.Z and Y can be left out for 1-D panels.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-17">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toNeighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Identifies neighbors of the current panel</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-17">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles incoming message from neighbor</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-17">Shared message fields</h4> -<h4 id="lookup-fields-17">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">x coordinate identified by index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">y coordinate identified by index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">z coordinate identified by index</td> -</tr> -</tbody> -</table> -<h2 id="enz">Enz</h2> -<h4 id="value-fields-18">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward reaction from enz + sub to complex</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>k2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse reaction from complex to enz + sub</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k3</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant from complex to product + enz</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ratio</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ratio of k2/k3</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concK1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">K1 expressed in concentration (1/millimolar.sec) units</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-18">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toEnz</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toCplx</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-18">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplxDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of enz-sub complex</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-18">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enz</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enzyme pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplx</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enz-sub complex pool</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-18">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="enzbase">EnzBase</h2> -<h4 id="value-fields-19">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-19">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-19">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-19">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-19">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="finfo">Finfo</h2> -<h4 id="value-fields-20">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of Finfo</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>docs</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Documentation for Finfo</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>type</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">RTTI type info for this Finfo</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>src</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Subsidiary SrcFinfos. Useful for SharedFinfos</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>dest</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Subsidiary DestFinfos. Useful for SharedFinfos</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-20">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-20">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-20">Shared message fields</h4> -<h4 id="lookup-fields-20">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="funcbase">FuncBase</h2> -<h4 id="value-fields-21">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>result</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Outcome of function computation</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-21">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out sum on each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-21">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles input values. This generic message works only in cases where the inputs are commutative, so ordering does not matter. In due course will implement a synapse type extendable, identified system of inputs so that arbitrary numbers of inputs can be unambiguaously defined.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-21">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-21">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="funcpool">FuncPool</h2> -<h4 id="value-fields-22">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-22">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-22">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>increment</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Increments mol numbers by specified amount. Can be +ve or -ve</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>decrement</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Decrements mol numbers by specified amount. Can be +ve or -ve</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles input to control value of n_</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-22">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-22">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="ghk">GHK</h2> -<h4 id="value-fields-23">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane current</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal Potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>T</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Temperature of system</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>p</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Permeability of channel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane potential</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Cin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Internal concentration</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Cout</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">External ion concentration</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>valency</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Valence of ion</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-23">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>VmOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Relay of membrane potential Vm.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">MembraneCurrent.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-23">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>addPermeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles permeability message coming in from channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>CinDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Alias for set_Cin</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>CoutDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Alias for set_Cout</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>addPermeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles permeability message coming in from channel</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-23">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message from channel to current Goldman-Hodgkin-Katz objectThis shared message connects to an HHChannel. The first entry is a MsgSrc which relays the Vm received from a compartment. The second entry is a MsgDest which receives channel conductance, and interprets it as permeability.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-23">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="geometry">Geometry</h2> -<h4 id="value-fields-24">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>epsilon</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">epsilon is the max deviation of surface-point from surface.I think it refers to when the molecule is stuck to the surface. Need to check with Steven.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighdist</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">neighdist is capture distance from one panel to another.When a molecule diffuses off one panel and is within neighdist of the other, it is captured by the second.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-24">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>returnSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Return size of compartment</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-24">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleSizeRequest</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles a request for size. Part of SharedMsg to ChemCompt.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-24">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>compt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to compartment(s) to specify geometry.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-24">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="group">Group</h2> -<h4 id="value-fields-25">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-25">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-25">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-25">Shared message fields</h4> -<h4 id="lookup-fields-25">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="gslintegrator">GslIntegrator</h2> -<h4 id="value-fields-26">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>isInitialized</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">True if the Stoich message has come in to set parms</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>method</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Numerical method to use.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>relativeAccuracy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Accuracy criterion</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>absoluteAccuracy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Another accuracy criterion</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-26">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-26">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>stoich</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Handle data from Stoich</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-26">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-26">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="gslstoich">GslStoich</h2> -<h4 id="value-fields-27">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>isInitialized</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">True if the Stoich message has come in to set parms</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>method</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Numerical method to use.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>relativeAccuracy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Accuracy criterion</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>absoluteAccuracy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Another accuracy criterion</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>compartment</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">This is the Id of the compartment, which must be derived fromthe ChemMesh baseclass. The GslStoich needsthe ChemMesh Id only for diffusion, and one can pass in Id() instead if there is no diffusion, or just leave it unset.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-27">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-27">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>addJunction</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Add a junction between the current solver and the one whose Id is passed in.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>dropJunction</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Drops a junction between the current solver and the one whose Id is passed in. Ignores if no junction.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>stoich</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Assign the StoichCore and ChemMesh Ids. The GslStoich needsthe StoichCore pointer in all cases, in order to perform allcalculations.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initProc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles init call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initReinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles initReinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-27">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for init and initReinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-27">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="gssastoich">GssaStoich</h2> -<p><strong>Author</strong>: Upinder S. Bhalla, 2008, 2011, NCBS</p> -<p><strong>Description</strong>: GssaStoich: Gillespie Stochastic Simulation Algorithm object.Closely based on the Stoich object and inherits its handling functions for constructing the matrix. Sets up stoichiometry matrix based calculations from a</p> -<p>wildcard path for the reaction system.Knows how to compute derivatives for most common things, also knows how to handle special cases where the object will have to do its own computation.Generates a stoichiometry matrix, which is useful for lots of other operations as well.</p> -<h4 id="value-fields-28">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>useOneWayReacs</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag: use bidirectional or one-way reacs. One-way is neededfor Gillespie type stochastic calculations. Two-way islikely to be margninally more efficient in ODE calculations</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nVarPools</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of variable molecule pools in the reac system</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numMeshEntries</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of meshEntries in reac-diff system</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>estimatedDt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Estimate of fastest (smallest) timescale in system.This is fallible because it depends on instantaneous concs,which of course change over the course of the simulation.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Path of reaction system to take over</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Path of reaction system to take over and solve</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>method</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Numerical method to use for the GssaStoich. The defaultand currently the only method is Gillespie1.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-28">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>plugin</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Sends out Stoich Id so that plugins can directly access fields and functions</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nodeDiffBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Sends mol #s across boundary between nodes, to calculate diffusionterms. arg1 is originating node, arg2 is list of meshIndices forwhich data is being transferred, and arg3 are the 'n' values forall the pools on the specified meshIndices, to be plugged intothe appropriate place on the recipient node's S_ matrix</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>poolsReactingAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">A vector of mol counts (n) of those pools that react across a boundary. Sent over to another Stoich every sync timestep so that the target Stoich has both sides of the boundary reaction. Assumes that the mesh encolosing the target Stoich also encloses the reaction object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacRollbacksAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">Occasionally, a Gillespie advance will cause the mol conc on the target stoich side to become negative. If so, this message does a patch up job by telling the originating Stoich to roll back to the specified number of reac firings, which is the max that the target was able to handle. This is probably numerically naughty, but it is better than negative concentrations</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reacRatesAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">A vector of reac rates (V) of each reaction crossing the boundary between compartments. Sent over to another Stoich every sync timestep so that the target Stoich has both sides of the boundary reaction. In the case of Gillespie calculations <em>V</em> is the integer # of transitions (firings) of each reaction. Assumes that the mesh encolosing the target Stoich also encloses the reaction object.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-28">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshSplit</code></strong></td> -<td align="left"><code>double,vector<double>,vector<unsigned int>,vector< vector<unsigned int> >,vector< vector<unsigned int> ></code></td> -<td align="left">Handles message from ChemMesh that defines how meshEntries are decomposed on this node, and how they communicate between nodes.Args: (oldVol, volumeVectorForAllEntries, localEntryList, outgoingDiffusion[node#][entry#], incomingDiffusion[node#][entry#])</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleReacRatesAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">When we have reactions that cross compartment boundaries, we may have different solvers and meshes on either side. This message handle info for two things: Arg 1: An identifier for the boundary. Arg 2: A vector of reaction rates for every reaction across the boundary, in every mesh entry.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handlePoolsReactingAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">When we have reactions that cross compartment boundaries, we may have different solvers and meshes on either side. This message handle info for two things: Arg 1: An identifier for the boundary. Arg 2: A vector of pool #s for every pool that reacts across the boundary, in every mesh entry. that reacts across a boundary, in every mesh entry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleReacRollbacksAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">When we have reactions that cross compartment boundaries, we may have different solvers and meshes on either side. Only one side does the calculations to assure mass conservation. There are rare cases when the calculations of one solver, typically a Gillespie one, gives such a large change that the concentrations on the other side would become negative in one or more molecules This message handles such cases on the Gillespie side, by telling the solver to roll back its recent calculation and instead use the specified vector for the rates, that is the # of mols changed in the latest timestep. This message handle info for two things: Arg 1: An identifier for the boundary. Arg 2: A vector of reaction rates for every reaction across the boundary, in every mesh entry.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinint call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-28">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>boundaryReacOut</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message between Stoichs to handle reactions taking molecules between the pools handled by the two Stoichs.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>boundaryReacIn</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message between Stoichs to handle reactions taking molecules between the pools handled by the two Stoichs.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-28">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="hdf5datawriter">HDF5DataWriter</h2> -<p><strong>Author</strong>: Subhasis Ray</p> -<p><strong>Description</strong>: HDF5 file writer for saving data tables. It saves the tables connected to it via <code>requestData</code> field into an HDF5 file. The path of the table is maintained in the HDF5 file, with a HDF5 group for each element above the table.</p> -<p>Thus, if you have a table <code>/data/VmTable</code> in MOOSE, then it will be written as an HDF5 table called <code>VmTable</code> inside an HDF5 Group called <code>data</code>.</p> -<p>However Table inside Table is considered a pathological case and is not handled.</p> -<p>At every process call it writes the contents of the tables to the file and clears the table vectors. You can explicitly force writing of the data via the <code>flush</code> function.</p> -<h4 id="value-fields-29">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>filename</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of the file associated with this HDF5 writer object.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>isOpen</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">True if this object has an open file handle.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>mode</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Depending on mode, if file already exists, if mode=1, data will be appended to existing file, if mode=2, file will be truncated, if mode=4, no writing will happen.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-29">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestData</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Sends request for a field to target object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>clear</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Send request to clear a Table vector.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-29">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>flush</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Write all buffer contents to file and clear the buffers.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>recvData</code></strong></td> -<td align="left"><code>bad</code></td> -<td align="left">Handles data sent back following request</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle process calls. Write data to file and clear all Table objects associated with this. Hence you want to keep it on a slow clock 1000 times or more slower than that for the tables.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Reinitialize the object. If the current file handle is valid, it tries to close that and open the file specified in current filename field.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-29">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message to receive process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-29">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="hdf5writerbase">HDF5WriterBase</h2> -<p><strong>Author</strong>: Subhasis Ray</p> -<p><strong>Description</strong>: HDF5 file writer base class. This is not to be used directly. Instead, it should be subclassed to provide specific data writing functions. This class provides most basic properties like filename, file opening mode, file open status.</p> -<h4 id="value-fields-30">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>filename</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of the file associated with this HDF5 writer object.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>isOpen</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">True if this object has an open file handle.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>mode</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Depending on mode, if file already exists, if mode=1, data will be appended to existing file, if mode=2, file will be truncated, if mode=4, no writing will happen.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-30">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-30">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>flush</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Write all buffer contents to file and clear the buffers.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-30">Shared message fields</h4> -<h4 id="lookup-fields-30">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="hhchannel">HHChannel</h2> -<h4 id="value-fields-31">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Xpower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for X gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ypower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for Y gate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Zpower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for Z gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>instant</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Bitmapped flag: bit 0 = Xgate, bit 1 = Ygate, bit 2 = ZgateWhen true, specifies that the lookup table value should beused directly as the state of the channel, rather than usedas a rate term for numerical integration for the state</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>X</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for X gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Y</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for Y gate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Z</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for Y gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>useConcentration</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Flag: when true, use concentration message rather than Vm tocontrol Z gate</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-31">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-31">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>concen</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Incoming message from Concen object to specific conc to usein the Z gate calculations</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>createGate</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Function to create specified gate.Argument: Gate type [X Y Z]</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-31">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on.</td> -</tr> -<tr class="even"> -<td align="left"></td> -<td align="left"></td> -<td align="left">The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-31">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="hhchannel2d">HHChannel2D</h2> -<h4 id="value-fields-32">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Xindex</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">String for setting X index.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Yindex</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">String for setting Y index.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Zindex</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">String for setting Z index.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Xpower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for X gate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ypower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for Y gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Zpower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for Z gate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>instant</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Bitmapped flag: bit 0 = Xgate, bit 1 = Ygate, bit 2 = ZgateWhen true, specifies that the lookup table value should beused directly as the state of the channel, rather than usedas a rate term for numerical integration for the state</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>X</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for X gate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Y</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for Y gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Z</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for Y gate</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-32">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-32">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>concen</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Incoming message from Concen object to specific conc to useas the first concen variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concen2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Incoming message from Concen object to specific conc to useas the second concen variable</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-32">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on.</td> -</tr> -<tr class="even"> -<td align="left"></td> -<td align="left"></td> -<td align="left">The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-32">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="hhgate">HHGate</h2> -<h4 id="value-fields-33">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>alpha</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Parameters for voltage-dependent rates, alpha:Set up alpha term using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>beta</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Parameters for voltage-dependent rates, beta:Set up beta term using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tau</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Parameters for voltage-dependent rates, tau:Set up tau curve using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mInfinity</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Parameters for voltage-dependent rates, mInfinity:Set up mInfinity curve using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>min</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum range for lookup</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>max</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum range for lookup</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>divs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Divisions for lookup. Zero means to use linear interpolation</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tableA</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Table of A entries</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tableB</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Table of alpha + beta entries</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>useInterpolation</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag: use linear interpolation if true, else direct lookup</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-33">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-33">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>setupAlpha</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Set up both gates using 13 parameters, as follows:setupAlpha AA AB AC AD AF BA BB BC BD BF xdivs xmin xmaxHere AA-AF are Coefficients A to F of the alpha (forward) termHere BA-BF are Coefficients A to F of the beta (reverse) termHere xdivs is the number of entries in the table,xmin and xmax define the range for lookup.Outside this range the returned value will be the low [high]entry of the table.The equation describing each table is:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>setupTau</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Identical to setupAlpha, except that the forms specified bythe 13 parameters are for the tau and m-infinity curves ratherthan the alpha and beta terms. So the parameters are:setupTau TA TB TC TD TF MA MB MC MD MF xdivs xmin xmaxAs before, the equation describing each curve is:y(x) = (A + B * x) / (C + exp((x + D) / F))</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tweakAlpha</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Dummy function for backward compatibility. It used to convertthe tables from alpha, beta values to alpha, alpha+betabecause the internal calculations used these forms. Notneeded now, deprecated.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tweakTau</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Dummy function for backward compatibility. It used to convertthe tables from tau, minf values to alpha, alpha+betabecause the internal calculations used these forms. Notneeded now, deprecated.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>setupGate</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Sets up one gate at a time using the alpha/beta form.Has 9 parameters, as follows:setupGate A B C D F xdivs xmin xmax is_betaThis sets up the gate using the equation:y(x) = (A + B * x) / (C + exp((x + D) / F))Deprecated.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-33">Shared message fields</h4> -<h4 id="lookup-fields-33">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>A</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">lookupA: Look up the A gate value from a double. Usually doesso by direct scaling and offset to an integer lookup, usinga fine enough table granularity that there is little error.Alternatively uses linear interpolation.The range of the double is predefined based on knowledge ofvoltage or conc ranges, and the granularity is specified bythe xmin, xmax, and dV fields.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>B</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">lookupB: Look up the B gate value from a double.Note that this looks up the raw tables, which are transformedfrom the reference parameters.</td> -</tr> -</tbody> -</table> -<h2 id="hhgate2d">HHGate2D</h2> -<h4 id="value-fields-34">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-34">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-34">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-34">Shared message fields</h4> -<h4 id="lookup-fields-34">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>A</code></strong></td> -<td align="left"><code>vector<double>,double</code></td> -<td align="left">lookupA: Look up the A gate value from two doubles, passedin as a vector. Uses linear interpolation in the 2D tableThe range of the lookup doubles is predefined based on knowledge of voltage or conc ranges, and the granularity is specified by the xmin, xmax, and dx field, and their y-axis counterparts.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>B</code></strong></td> -<td align="left"><code>vector<double>,double</code></td> -<td align="left">lookupB: Look up B gate value from two doubles in a vector.</td> -</tr> -</tbody> -</table> -<h2 id="hsolve">HSolve</h2> -<h4 id="value-fields-35">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>seed</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Use this field to specify path to a 'seed' compartment, that is, any compartment within a neuron. The HSolve object uses this seed as a handle to discover the rest of the neuronal model, which means all the remaining compartments, channels, synapses, etc.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>target</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Specifies the path to a compartmental model to be taken over. This can be the path to any container object that has the model under it (found by performing a deep search). Alternatively, this can also be the path to any compartment within the neuron. This compartment will be used as a handle to discover the rest of the model, which means all the remaining compartments, channels, synapses, etc.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>dt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The time-step for this solver.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>caAdvance</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">This flag determines how current flowing into a calcium pool is computed. A value of 0 means that the membrane potential at the beginning of the time-step is used for the calculation. This is how GENESIS does its computations. A value of 1 means the membrane potential at the middle of the time-step is used. This is the correct way of integration, and is the default way.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>vDiv</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Specifies number of divisions for lookup tables of voltage-sensitive channels.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>vMin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Specifies the lower bound for lookup tables of voltage-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>vMax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Specifies the upper bound for lookup tables of voltage-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>caDiv</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Specifies number of divisions for lookup tables of calcium-sensitive channels.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>caMin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Specifies the lower bound for lookup tables of calcium-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>caMax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Specifies the upper bound for lookup tables of calcium-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-35">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-35">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'process' call: Solver advances by one time-step.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'reinit' call: Solver reads in model.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-35">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'reinit' and 'process' calls from a clock.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-35">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="hemispherepanel">HemispherePanel</h2> -<h4 id="value-fields-36">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nPts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of points used by panel to specify geometry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nDims</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Dimensions used by panel to specify geometry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numNeighbors</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Neighbors of panel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>shapeId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Identifier for shape type, as used by Smoldyn</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coordinates for the panel. X vector, then Y, then ZZ can be left out for 2-D panels.Z and Y can be left out for 1-D panels.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-36">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toNeighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Identifies neighbors of the current panel</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-36">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles incoming message from neighbor</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-36">Shared message fields</h4> -<h4 id="lookup-fields-36">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">x coordinate identified by index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">y coordinate identified by index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">z coordinate identified by index</td> -</tr> -</tbody> -</table> -<h2 id="intfire">IntFire</h2> -<h4 id="value-fields-37">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSynapses</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of synapses on SynBase</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane potential</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tau</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">charging time-course</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>thresh</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">firing threshold</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>refractoryPeriod</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum time between successive spikes</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-37">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>spike</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out spike events</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-37">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-37">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-37">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="interpol2d">Interpol2D</h2> -<h4 id="value-fields-38">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>xmin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum value for x axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xmax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value for x axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>xdivs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of divisions on x axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>dx</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Increment on x axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ymin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum value for y axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ymax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value for y axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ydivs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of divisions on y axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>dy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Increment on y axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tableVector2D</code></strong></td> -<td align="left"><code>vector< vector<double> ></code></td> -<td align="left">Get the entire table.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-38">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>trig</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">respond to a request for a value lookup</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-38">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lookup</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Looks up table value based on indices v1 and v2, and sendsvalue back using the 'trig' message</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-38">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>lookupReturn2D</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message for doing lookups on the table. Receives 2 doubles: x, y. Sends back a double with the looked-up z value.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-38">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>table</code></strong></td> -<td align="left"><code>vector<unsigned int>,double</code></td> -<td align="left">Lookup an entry on the table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>vector<double>,double</code></td> -<td align="left">Interpolated value for specified x and y. This is provided for debugging. Normally other objects will retrieve interpolated values via lookup message.</td> -</tr> -</tbody> -</table> -<h2 id="izhikevichnrn">IzhikevichNrn</h2> -<h4 id="value-fields-39">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vmax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum membrane potential. Membrane potential is reset to c whenever it reaches Vmax. NOTE: Izhikevich model specifies the PEAK voltage, rather than THRSHOLD voltage. The threshold depends on the previous history.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>c</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reset potential. Membrane potential is reset to c whenever it reaches Vmax.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>d</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Parameter d in Izhikevich model. Unit is V/s.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>a</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Parameter a in Izhikevich model. Unit is s^{-1}</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>b</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Parameter b in Izhikevich model. Unit is s^{-1}</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>u</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Parameter u in Izhikevich equation. Unit is V/s</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane potential, equivalent to v in Izhikevich equation.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Im</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Total current going through the membrane. Unit is A.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Rm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Hidden cefficient of input current term (I) in Izhikevich model. Defaults to 1e6 Ohm.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial membrane potential. Unit is V.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initU</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of u.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>alpha</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Coefficient of v^2 in Izhikevich equation. Defaults to 0.04 in physiological unit. In SI it should be 40000.0. Unit is V^-1 s^{-1}</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>beta</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Coefficient of v in Izhikevich model. Defaults to 5 in physiological unit, 5000.0 for SI units. Unit is s^{-1}</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>gamma</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Constant term in Izhikevich model. Defaults to 140 in both physiological and SI units. unit is V/s.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-39">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>VmOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>spike</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out spike events</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-39">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Injection current into the neuron.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Destination message to modify parameter c at runtime.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>dDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Destination message to modify parameter d at runtime.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>bDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Destination message to modify parameter b at runtime</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>aDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Destination message modify parameter a at runtime.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-39">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message to receive Process message from scheduler</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-39">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="leakyiaf">LeakyIaF</h2> -<h4 id="value-fields-40">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Cm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane capacitance.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Rm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane resistance, inverse of leak-conductance.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Em</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Leak reversal potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane potential</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Inital value of membrane potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vreset</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reset potnetial after firing.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vthreshold</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">firing threshold</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>refractoryPeriod</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum time between successive spikes</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>inject</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Injection current.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tSpike</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Time of the last spike</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-40">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>spike</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out spike events</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>VmOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-40">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Destination for current input.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-40">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-40">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="mmenz">MMenz</h2> -<h4 id="value-fields-41">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-41">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-41">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-41">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-41">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="markovchannel">MarkovChannel</h2> -<h4 id="value-fields-42">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ligandconc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ligand concentration.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane voltage.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numstates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">The number of states that the channel can occupy.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numopenstates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">The number of states which are open/conducting.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>state</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">This is a row vector that contains the probabilities of finding the channel in each state.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initialstate</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">This is a row vector that contains the probabilities of finding the channel in each state at t = 0. The state of the channel is reset to this value during a call to reinit()</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>labels</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Labels for each state.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>gbar</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">A row vector containing the conductance associated with each of the open/conducting states.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-42">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-42">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleligandconc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Deals with incoming messages containing information of ligand concentration</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handlestate</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Deals with incoming message from MarkovSolver object containing state information of the channel.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-42">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-42">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="markovgslsolver">MarkovGslSolver</h2> -<h4 id="value-fields-43">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>isInitialized</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">True if the message has come in to set solver parameters.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>method</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Numerical method to use.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>relativeAccuracy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Accuracy criterion</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>absoluteAccuracy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Another accuracy criterion</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>internalDt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">internal timestep to use.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-43">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>stateOut</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Sends updated state to the MarkovChannel class.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-43">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Initialize solver parameters.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleQ</code></strong></td> -<td align="left"><code>vector< vector<double> ></code></td> -<td align="left">Handles information regarding the instantaneous rate matrix from the MarkovRateTable class.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-43">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-43">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="markovratetable">MarkovRateTable</h2> -<h4 id="value-fields-44">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane voltage.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ligandconc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ligand concentration.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Q</code></strong></td> -<td align="left"><code>vector< vector<double> ></code></td> -<td align="left">Instantaneous rate matrix.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Dimension of the families of lookup tables. Is always equal to the number of states in the model.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-44">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>instratesOut</code></strong></td> -<td align="left"><code>vector< vector<double> ></code></td> -<td align="left">Sends out instantaneous rate information of varying transition rates at each time step.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-44">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles incoming message containing voltage information.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Initialization of the class. Allocates memory for all the tables.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleLigandConc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles incoming message containing ligand concentration.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>set1d</code></strong></td> -<td align="left"><code>unsigned int,unsigned int,Id,unsigned int</code></td> -<td align="left">Setting up of 1D lookup table for the (i,j)'th rate.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>set2d</code></strong></td> -<td align="left"><code>unsigned int,unsigned int,Id</code></td> -<td align="left">Setting up of 2D lookup table for the (i,j)'th rate.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>setconst</code></strong></td> -<td align="left"><code>unsigned int,unsigned int,double</code></td> -<td align="left">Setting a constant value for the (i,j)'th rate. Internally, this is stored as a 1-D rate with a lookup table containing 1 entry.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-44">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This message couples the rate table to the compartment. The rate table needs updates on voltage in order to compute the rate table.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-44">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="markovsolver">MarkovSolver</h2> -<h4 id="value-fields-45">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Q</code></strong></td> -<td align="left"><code>vector< vector<double> ></code></td> -<td align="left">Instantaneous rate matrix.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>state</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Current state of the channel.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initialstate</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Initial state of the channel.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xmin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum value for x axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>xmax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value for x axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xdivs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of divisions on x axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>invdx</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reciprocal of increment on x axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ymin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum value for y axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ymax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value for y axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ydivs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of divisions on y axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>invdy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reciprocal of increment on y axis of lookup table</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-45">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>stateOut</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Sends updated state to the MarkovChannel class.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-45">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles incoming message containing voltage information.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ligandconc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles incoming message containing ligand concentration.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>Id,double</code></td> -<td align="left">Setups the table of matrix exponentials associated with the solver object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-45">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This message couples the MarkovSolverBase to the Compartment. The compartment needs Vm in order to look up the correct matrix exponential for computing the state.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-45">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="markovsolverbase">MarkovSolverBase</h2> -<h4 id="value-fields-46">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Q</code></strong></td> -<td align="left"><code>vector< vector<double> ></code></td> -<td align="left">Instantaneous rate matrix.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>state</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Current state of the channel.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initialstate</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Initial state of the channel.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xmin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum value for x axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>xmax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value for x axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xdivs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of divisions on x axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>invdx</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reciprocal of increment on x axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ymin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum value for y axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ymax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value for y axis of lookup table</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ydivs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of divisions on y axis of lookup table</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>invdy</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reciprocal of increment on y axis of lookup table</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-46">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>stateOut</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Sends updated state to the MarkovChannel class.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-46">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles incoming message containing voltage information.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ligandconc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles incoming message containing ligand concentration.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>Id,double</code></td> -<td align="left">Setups the table of matrix exponentials associated with the solver object.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-46">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This message couples the MarkovSolverBase to the Compartment. The compartment needs Vm in order to look up the correct matrix exponential for computing the state.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-46">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="mathfunc">MathFunc</h2> -<h4 id="value-fields-47">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>mathML</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">MathML version of expression to compute</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>function</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">function is for functions of form f(x, y) = x + y</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>result</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">result value</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-47">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out result of computation</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-47">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>arg1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handle arg1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>arg2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handle arg2</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>arg3</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handle arg3</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>arg4</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handle arg4</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-47">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-47">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="mdouble">Mdouble</h2> -<h4 id="value-fields-48">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Access function for entire Mdouble object.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>value</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Access function for value field of Mdouble object,which happens also to be the entire contents of the object.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-48">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-48">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-48">Shared message fields</h4> -<h4 id="lookup-fields-48">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="meshentry">MeshEntry</h2> -<h4 id="value-fields-49">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Volume of this MeshEntry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>dimensions</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">number of dimensions of this MeshEntry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>meshType</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">The MeshType defines the shape of the mesh entry. 0: Not assigned 1: cuboid 2: cylinder 3. cylindrical shell 4: cylindrical shell segment 5: sphere 6: spherical shell 7: spherical shell segment 8: Tetrahedral</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Coordinates</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Coordinates that define current MeshEntry. Depend on MeshType.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>neighbors</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Indices of other MeshEntries that this one connects to</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>DiffusionArea</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Diffusion area for geometry of interface</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>DiffusionScaling</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Diffusion scaling for geometry of interface</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-49">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Tells the target pool or other entity that the compartment subdivision(meshing) has changed, and that it has to redo its volume and memory allocation accordingly.Arguments are: oldvol, numTotalEntries, startEntry, localIndices, volsThe vols specifies volumes of each local mesh entry. It also specifieshow many meshEntries are present on the local node.The localIndices vector is used for general load balancing only.It has a list of the all meshEntries on current node.If it is empty, we assume block load balancing. In this secondcase the contents of the current node go from startEntry to startEntry + vols.size().</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remeshReacs</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells connected enz or reac that the compartment subdivision(meshing) has changed, and that it has to redo its volume-dependent rate terms like numKf_ accordingly.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-49">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-49">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for updating mesh volumes and subdivisions,typically controls pool sizes</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-49">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="mgblock">MgBlock</h2> -<h4 id="value-fields-50">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>KMg_A</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">1/eta</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>KMg_B</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">1/gamma</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>CMg</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">[Mg] in mM</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current through MgBlock</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Zk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Charge on ion</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-50">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-50">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>origChannel</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left"></td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-50">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-50">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="msg">Msg</h2> -<h4 id="value-fields-51">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>e1</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e2</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-51">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-51">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-51">Shared message fields</h4> -<h4 id="lookup-fields-51">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="mstring">Mstring</h2> -<h4 id="value-fields-52">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Access function for entire Mstring object.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>value</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Access function for value field of Mstring object,which happens also to be the entire contents of the object.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-52">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-52">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-52">Shared message fields</h4> -<h4 id="lookup-fields-52">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="nmdachan">NMDAChan</h2> -<p><strong>Author</strong>: Subhasis Ray, 2010, NCBS</p> -<p><strong>Description</strong>: NMDAChan: Extracellular [Mg2+] dependent NMDA channel.This channel has four states as described by Jahr and Stevens (J. Neurosci. 1990, 10(9)) This implementation is based on equation 4(a) in that article. The channel conductance is defined as : k * g(V, [Mg2+]o) * S(t) where k is a scaling constant. S(t) is the legand gated component of the conductance. It rises linearly for t = tau2. Then decays exponentially with time constant t = tau1. g is a function of voltage and the extracellular [Mg2+] defined as: 1 / { 1 + (a1 + a2) * (a1 * B1 + a2 * B2)/ [A * a1 * (b1 + B1) + A * a2 * (b2 + B2)]}</p> -<p>a1 = 1e3 * exp( - c0 * V - c1) s^{-1}, c0 = 16.0 / V, c1 = 2.91</p> -<p>a2 = 1e-3 * [Mg2+] * exp( -c2 * V - c3) mM^{-1} s, c2 = 45.0 / V, c3 = 6.97</p> -<p>b1 = 1e3 * exp(c4 * V + c5) s^{-1}, c4 = 9.0 / V, c5 = 1.22</p> -<p>b2 = 1e3 * exp(c6 * V + c7) s^{-1}, c6 = 17.0 / V, c7 = 0.96</p> -<p>A = 1e3 * exp(-c8) s^{-1}, c8 = 2.847</p> -<p>B1 = 1e3 * exp(-c9) s^{-1}, c9 = 0.693 s^{-1}</p> -<p>B2 = 1e3 * exp(-c10) s^{-1}, c10 = 3.101.</p> -<p>The behaviour of S(t) is as follows:</p> -<p>If a spike arrives, then the slope of the linear rise of S(t) is incremented by weight / tau2.</p> -<p>After tau2 time, this component is removed from the slope (reduced by weight/tau) and added over to the rate of decay of S(t).</p> -<h4 id="value-fields-53">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSynapses</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of synapses on SynBase</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tau1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Decay time constant for the synaptic conductance, tau1 >= tau2.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tau2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Rise time constant for the synaptic conductance, tau1 >= tau2.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>normalizeWeights</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag. If true, the overall conductance is normalized by the number of individual synapses in this SynChan object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>unblocked</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Fraction of channels recovered from Mg2+ block. This is an intermediate variable which corresponds to g(V, [Mg2+]o) in the equation for conductance: k * g(V, [Mg2+]o) * S(t) where k is a constant.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>MgConc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">External Mg2+ concentration</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>unblocked</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Fraction of channels recovered from Mg2+ block. This is an intermediate variable which corresponds to g(V, [Mg2+]o) in the equation for conductance: k * g(V, [Mg2+]o) * S(t) where k is a constant.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>saturation</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Upper limit on the NMDA conductance.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-53">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-53">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>activation</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sometimes we want to continuously activate the channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>modulator</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Modulate channel response</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>MgConcDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Update [Mg2+] from other sources at every time step.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-53">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message to receive Process message from scheduler</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-53">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>c</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Transition parameters c0 to c10 in the Mg2+ dependentstate transitions.</td> -</tr> -</tbody> -</table> -<h2 id="nernst">Nernst</h2> -<h4 id="value-fields-54">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>E</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Computed reversal potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Temperature</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Temperature of cell</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>valence</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Valence of ion in Nernst calculation</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Cin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Internal conc of ion</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Cout</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">External conc of ion</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>scale</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Voltage scale factor</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-54">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Eout</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Computed reversal potential</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-54">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ci</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Set internal conc of ion, and immediately send out the updated E</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>co</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Set external conc of ion, and immediately send out the updated E</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-54">Shared message fields</h4> -<h4 id="lookup-fields-54">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="neuromesh">NeuroMesh</h2> -<h4 id="value-fields-55">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of entire chemical domain.Assigning this assumes that the geometry is that of the default mesh, which may not be what you want. If so, usea more specific mesh assignment function.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numDimensions</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of spatial dimensions of this compartment. Usually 3 or 2</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cell</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id for base element of cell model. Uses this to traverse theentire tree of the cell to build the mesh.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>subTree</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">Set of compartments to model. If they happen to be contiguousthen also set up diffusion between the compartments. Can alsohandle cases where the same cell is divided into multiplenon-diffusively-coupled compartments</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>skipSpines</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag: when skipSpines is true, the traversal does not includeany compartment with the string 'spine' or 'neck' in its name,and also then skips compartments below this skipped one.Allows to set up separate mesh for spines, based on the same cell model.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSegments</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of cylindrical/spherical segments in model</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numDiffCompts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of diffusive compartments in model</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>diffLength</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusive length constant to use for subdivisions. The system willattempt to subdivide cell using diffusive compartments ofthe specified diffusion lengths as a maximum.In order to get integral numbersof compartments in each segment, it may subdivide more finely.Uses default of 0.5 microns, that is, half typical lambda.For default, consider a tau of about 1 second for mostreactions, and a diffusion const of about 1e-12 um^2/sec.This gives lambda of 1 micron</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>geometryPolicy</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Policy for how to interpret electrical model geometry (which is a branching 1-dimensional tree) in terms of 3-D constructslike spheres, cylinders, and cones.There are three options, default, trousers, and cylinder:default mode: - Use frustrums of cones. Distal diameter is always from compt dia. - For linear dendrites (no branching), proximal diameter is diameter of the parent compartment - For branching dendrites and dendrites emerging from soma, proximal diameter is from compt dia. Don't worry about overlap. - Place somatic dendrites on surface of spherical soma, or at ends of cylindrical soma - Place dendritic spines on surface of cylindrical dendrites, not emerging from their middle.trousers mode: - Use frustrums of cones. Distal diameter is always from compt dia. - For linear dendrites (no branching), proximal diameter is diameter of the parent compartment - For branching dendrites, use a trouser function. Avoid overlap. - For soma, use some variant of trousers. Here we must avoid overlap - For spines, use a way to smoothly merge into parent dend. Radius of curvature should be similar to that of the spine neck. - Place somatic dendrites on surface of spherical soma, or at ends of cylindrical soma - Place dendritic spines on surface of cylindrical dendrites, not emerging from their middle.cylinder mode: - Use cylinders. Diameter is just compartment dia. - Place somatic dendrites on surface of spherical soma, or at ends of cylindrical soma - Place dendritic spines on surface of cylindrical dendrites, not emerging from their middle. - Ignore spatial overlap.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-55">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshSplit</code></strong></td> -<td align="left"><code>double,vector<double>,vector<unsigned int>,vector< vector<unsigned int> >,vector< vector<unsigned int> ></code></td> -<td align="left">Defines how meshEntries communicate between nodes.Args: oldVol, volListOfAllEntries, localEntryList, outgoingDiffusion[node#][entry#], incomingDiffusion[node#][entry#]This message is meant to go to the SimManager and Stoich.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>meshStats</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">Basic statistics for mesh: Total # of entries, and a vector ofunique volumes of voxels</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-55">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>buildDefaultMesh</code></strong></td> -<td align="left"><code>double,unsigned int</code></td> -<td align="left">Tells ChemMesh derived class to build a default mesh with thespecified size and number of meshEntries.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleRequestMeshStats</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles request from SimManager for mesh stats</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleNodeInfo</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Tells ChemMesh how many nodes and threads per node it is allowed to use. Triggers a return meshSplit message.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>setCellPortion</code></strong></td> -<td align="left"><code>Id,vector<Id></code></td> -<td align="left">Tells NeuroMesh to mesh up a subpart of a cell. For nowassumed contiguous.The first argument is the cell Id. The second is the vectorof Ids to consider in meshing up the subpart.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-55">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>nodeMeshing</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to SimManager to coordinate meshing with paralleldecomposition and with the Stoich</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-55">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="neuron">Neuron</h2> -<p><strong>Author</strong>: C H Chaitanya</p> -<p><strong>Description</strong>: Neuron - A compartment container</p> -<h4 id="value-fields-56">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-56">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-56">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-56">Shared message fields</h4> -<h4 id="lookup-fields-56">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="neutral">Neutral</h2> -<p><strong>Author</strong>: Upinder S. Bhalla, 2007, NCBS</p> -<p><strong>Description</strong>: Neutral: Base class for all MOOSE classes. Providesaccess functions for housekeeping fields and operations, messagetraversal, and so on.</p> -<h4 id="value-fields-57">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-57">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-57">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-57">Shared message fields</h4> -<h4 id="lookup-fields-57">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="onetoallmsg">OneToAllMsg</h2> -<h4 id="value-fields-58">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>e1</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e2</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>i1</code></strong></td> -<td align="left"><code>DataId</code></td> -<td align="left">DataId of source Element.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-58">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-58">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-58">Shared message fields</h4> -<h4 id="lookup-fields-58">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="onetoonemsg">OneToOneMsg</h2> -<h4 id="value-fields-59">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>e1</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e2</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-59">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-59">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-59">Shared message fields</h4> -<h4 id="lookup-fields-59">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="pidcontroller">PIDController</h2> -<h4 id="value-fields-60">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>gain</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">This is the proportional gain (Kp). This tuning parameter scales the proportional term. Larger gain usually results in faster response, but too much will lead to instability and oscillation.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>saturation</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Bound on the permissible range of output. Defaults to maximum double value.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>command</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The command (desired) value of the sensed parameter. In control theory this is commonly known as setpoint(SP).</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sensed</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sensed (measured) value. This is commonly known as process variable(PV) in control theory.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tauI</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The integration time constant, typically = dt. This is actually proportional gain divided by integral gain (Kp/Ki)). Larger Ki (smaller tauI) usually leads to fast elimination of steady state errors at the cost of larger overshoot.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tauD</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The differentiation time constant, typically = dt / 4. This is derivative gain (Kd) times proportional gain (Kp). Larger Kd (tauD) decreases overshoot at the cost of slowing down transient response and may lead to instability.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Output of the PIDController. This is given by: gain * ( error + INTEGRAL[ error dt ] / tau_i + tau_d * d(error)/dt )</td> -</tr> -<tr class="even"> -<td align="left"></td> -<td align="left"></td> -<td align="left">Where gain = proportional gain (Kp), tau_i = integral gain (Kp/Ki) and tau_d = derivative gain (Kd/Kp). In control theory this is also known as the manipulated variable (MV)</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>error</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The error term, which is the difference between command and sensed value.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>integral</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The integral term. It is calculated as INTEGRAL(error dt) = previous_integral + dt * (error + e_previous)/2.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>derivative</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The derivative term. This is (error - e_previous)/dt.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e_previous</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The error term for previous step.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-60">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends the output of the PIDController. This is known as manipulated variable (MV) in control theory. This should be fed into the process which we are trying to control.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-60">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>commandIn</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Command (desired value) input. This is known as setpoint (SP) in control theory.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>sensedIn</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sensed parameter - this is the one to be tuned. This is known as process variable (PV) in control theory. This comes from the process we are trying to control.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>gainDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Destination message to control the PIDController gain dynamically.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle process calls.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Reinitialize the object.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-60">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-60">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="panel">Panel</h2> -<h4 id="value-fields-61">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nPts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of points used by panel to specify geometry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nDims</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Dimensions used by panel to specify geometry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numNeighbors</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Neighbors of panel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>shapeId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Identifier for shape type, as used by Smoldyn</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coordinates for the panel. X vector, then Y, then ZZ can be left out for 2-D panels.Z and Y can be left out for 1-D panels.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-61">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toNeighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Identifies neighbors of the current panel</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-61">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles incoming message from neighbor</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-61">Shared message fields</h4> -<h4 id="lookup-fields-61">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">x coordinate identified by index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">y coordinate identified by index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">z coordinate identified by index</td> -</tr> -</tbody> -</table> -<h2 id="pool">Pool</h2> -<h4 id="value-fields-62">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-62">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-62">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>increment</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Increments mol numbers by specified amount. Can be +ve or -ve</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>decrement</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Decrements mol numbers by specified amount. Can be +ve or -ve</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-62">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-62">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="poolbase">PoolBase</h2> -<h4 id="value-fields-63">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-63">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-63">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-63">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-63">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="port">Port</h2> -<h4 id="value-fields-64">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>scaleOutRate</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Scaling factor for outgoing rates. Applies to the RateTermscontrolled by this port. Represents a diffusion related term,or the permeability of the port</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>inStart</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Start index to S_ vector into which incoming molecules should add.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>inEnd</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">End index to S_ vector into which incoming molecules should add.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outStart</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Start index to S_ vector from where outgoing molecules come.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>outEnd</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">End index to S_ vector from where outgoing molecules come.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-64">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>availableMolsAtPort</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">Sends out the full set of molecule Ids that are available for data transfer</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>efflux</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Molecule #s going out</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>matchedMolsAtPort</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">Sends out the set of molecule Ids that match between both ports</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>efflux</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Molecule #s going out</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-64">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMatchedMolsAtPort</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Handles list of matched molecules worked out by the other port</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>influx</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Molecule #s coming back in</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleAvailableMolsAtPort</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Handles list of all species that the other port cares about</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>influx</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Molecule #s coming back in</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-64">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>port1</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for port. This one initiates the request forsetting up the communications between the portsThe shared message also handles the runtime data transfer</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>port2</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for port. This one responds to the request forsetting up the communications between the portsThe shared message also handles the runtime data transfer</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-64">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="pulsegen">PulseGen</h2> -<h4 id="value-fields-65">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Output amplitude</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>baseLevel</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Basal level of the stimulus</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>firstLevel</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Amplitude of the first pulse in a sequence</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>firstWidth</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Width of the first pulse in a sequence</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>firstDelay</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Delay to start of the first pulse in a sequence</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>secondLevel</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Amplitude of the second pulse in a sequence</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>secondWidth</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Width of the second pulse in a sequence</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>secondDelay</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Delay to start of of the second pulse in a sequence</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>count</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of pulses in a sequence</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>trigMode</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Trigger mode for pulses in the sequence.</td> -</tr> -<tr class="odd"> -<td align="left"></td> -<td align="left"></td> -<td align="left">0 : free-running mode where it keeps looping its output</td> -</tr> -<tr class="even"> -<td align="left"></td> -<td align="left"></td> -<td align="left">1 : external trigger, where it is triggered by an external input (and stops after creating the first train of pulses)</td> -</tr> -<tr class="odd"> -<td align="left"></td> -<td align="left"></td> -<td align="left">2 : external gate mode, where it keeps generating the pulses in a loop as long as the input is high.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-65">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current output level.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-65">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handle incoming input that determines gating/triggering onset.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>levelIn</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Handle level value coming from other objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>widthIn</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Handle width value coming from other objects</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>delayIn</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Handle delay value coming from other objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call, updates internal time stamp.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-65">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-65">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>level</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Level of the pulse at specified index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>width</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Width of the pulse at specified index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>delay</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Delay of the pulse at specified index</td> -</tr> -</tbody> -</table> -<h2 id="rc">RC</h2> -<h4 id="value-fields-66">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>V0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of 'state'</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>R</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Series resistance of the RC circuit.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>C</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Parallel capacitance of the RC circuit.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>state</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Output value of the RC circuit. This is the voltage across the capacitor.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>inject</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Input value to the RC circuit.This is handled as an input current to the circuit.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-66">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current output level.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-66">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectIn</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Receives input to the RC circuit. All incoming messages are summed up to give the total input current.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle reinitialization</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-66">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-66">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="reac">Reac</h2> -<h4 id="value-fields-67">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in # units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in # units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in concentration units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in concentration units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates of reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numProducts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of products of reaction</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-67">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-67">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the reac to recompute its numRates, as remeshing has happened</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-67">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-67">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="reacbase">ReacBase</h2> -<h4 id="value-fields-68">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in # units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in # units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in concentration units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in concentration units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates of reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numProducts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of products of reaction</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-68">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-68">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the reac to recompute its numRates, as remeshing has happened</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-68">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-68">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="rectpanel">RectPanel</h2> -<h4 id="value-fields-69">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nPts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of points used by panel to specify geometry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nDims</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Dimensions used by panel to specify geometry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numNeighbors</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Neighbors of panel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>shapeId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Identifier for shape type, as used by Smoldyn</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coordinates for the panel. X vector, then Y, then ZZ can be left out for 2-D panels.Z and Y can be left out for 1-D panels.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-69">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toNeighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Identifies neighbors of the current panel</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-69">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles incoming message from neighbor</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-69">Shared message fields</h4> -<h4 id="lookup-fields-69">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">x coordinate identified by index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">y coordinate identified by index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">z coordinate identified by index</td> -</tr> -</tbody> -</table> -<h2 id="reducemsg">ReduceMsg</h2> -<h4 id="value-fields-70">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>e1</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e2</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>i1</code></strong></td> -<td align="left"><code>DataId</code></td> -<td align="left">DataId of source Element.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-70">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-70">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-70">Shared message fields</h4> -<h4 id="lookup-fields-70">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="shell">Shell</h2> -<h4 id="value-fields-71">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-71">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reduceArraySize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Look up maximum value of an index, here ragged array size,across many nodes, and assign uniformly to all nodes. Normallyfollowed by an operation to assign the size to the object thatwas resized.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestCreate</code></strong></td> -<td align="left"><code>string,Id,Id,string,vector<int></code></td> -<td align="left">requestCreate( class, parent, newElm, name, dimensions ): creates a new Element on all nodes with the specified Id. Initiates a callback to indicate completion of operation. Goes to all nodes including self.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestDelete</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">requestDelete( doomedElement ):Deletes specified Element on all nodes.Initiates a callback to indicate completion of operation.Goes to all nodes including self.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestAddMsg</code></strong></td> -<td align="left"><code>string,unsigned int,ObjId,string,ObjId,string</code></td> -<td align="left">requestAddMsg( type, src, srcField, dest, destField );Creates specified Msg between specified Element on all nodes.Initiates a callback to indicate completion of operation.Goes to all nodes including self.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestQuit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">requestQuit():Emerges from the inner loop, and wraps up. No return value.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>move</code></strong></td> -<td align="left"><code>Id,Id</code></td> -<td align="left">move( origId, newParent);Moves origId to become a child of newParent</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>copy</code></strong></td> -<td align="left"><code>vector<Id>,string,unsigned int,bool,bool</code></td> -<td align="left">copy( origId, newParent, numRepeats, toGlobal, copyExtMsg );Copies origId to become a child of newParent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>useClock</code></strong></td> -<td align="left"><code>string,string,unsigned int</code></td> -<td align="left">useClock( path, field, tick# );Specifies which clock tick to use for all elements in Path.The 'field' is typically process, but some cases need to sendupdates to the 'init' field.Tick # specifies which tick to be attached to the objects.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sync</code></strong></td> -<td align="left"><code>Id,unsigned int</code></td> -<td align="left">sync( ElementId, FuncId );Synchronizes Element data indexing across all nodes.Used when distributed ops like message setup might set updifferent #s of data entries on Elements on different nodes.The ElementId is the element being synchronized.The FuncId is the 'get' function for the synchronized field.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestReMesh</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">requestReMesh( meshId );Chops up specified mesh.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSetParserIdleFlag</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">SetParserIdleFlag( bool isParserIdle );When True, the main ProcessLoop waits a little each cycleso as to avoid pounding on the CPU.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ack</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">ack( unsigned int node#, unsigned int status ):Acknowledges receipt and completion of a command on a worker node.Goes back only to master node.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestStart</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">requestStart( runtime ):Starts a simulation. Goes to all nodes including self.Initiates a callback to indicate completion of run.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestStep</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">requestStep():Advances a simulation for the specified # of steps.Goes to all nodes including self.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestStop</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">requestStop():Gently stops a simulation after completing current ops.After this op it is save to do 'start' again, and it willresume where it left offGoes to all nodes including self.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestSetupTick</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">requestSetupTick():Asks the Clock to coordinate the assignment of a specificclock tick. Args: Tick#, dt.Goes to all nodes including self.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestReinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">requestReinit():Reinits a simulation: sets to time 0.If simulation is running it stops it first.Goes to all nodes including self.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-71">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>receiveGet</code></strong></td> -<td align="left"><code>bad</code></td> -<td align="left">receiveGet( Uint node#, Uint status, PrepackedBuffer data )Function on master shell that handles the value relayed from worker.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>setclock</code></strong></td> -<td align="left"><code>unsigned int,double,bool</code></td> -<td align="left">Assigns clock ticks. Args: tick#, dt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleAck</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Keeps track of # of acks to a blocking shell command. Arg: Source node num.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>create</code></strong></td> -<td align="left"><code>string,Id,Id,string,vector<int></code></td> -<td align="left">create( class, parent, newElm, name, dimensions )</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>delete</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Destroys Element, all its messages, and all its children. Args: Id</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleAddMsg</code></strong></td> -<td align="left"><code>string,unsigned int,ObjId,string,ObjId,string</code></td> -<td align="left">Makes a msg</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleQuit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Stops simulation running and quits the simulator</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>move</code></strong></td> -<td align="left"><code>Id,Id</code></td> -<td align="left">handleMove( Id orig, Id newParent ): moves an Element to a new parent</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleCopy</code></strong></td> -<td align="left"><code>vector<Id>,string,unsigned int,bool,bool</code></td> -<td align="left">handleCopy( vector< Id > args, string newName, unsigned int nCopies, bool toGlobal, bool copyExtMsgs ): The vector< Id > has Id orig, Id newParent, Id newElm. This function copies an Element and all its children to a new parent. May also expand out the original into nCopies copies. Normally all messages within the copy tree are also copied. If the flag copyExtMsgs is true, then all msgs going out are also copied.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleUseClock</code></strong></td> -<td align="left"><code>string,string,unsigned int</code></td> -<td align="left">Deals with assignment of path to a given clock.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleSync</code></strong></td> -<td align="left"><code>Id,unsigned int</code></td> -<td align="left">handleSync( Id Element): Synchronizes DataHandler indexing across nodesThe ElementId is the element being synchronized.The FuncId is the 'get' function for the synchronized field.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleReMesh</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">handleReMesh( Id BaseMesh): Deals with outcome of resizing the meshing in a cellularcompartment (the ChemMesh class). The mesh change has topropagate down to the molecules and reactions managed by this.Mesh. The ElementId is the mesh being synchronized.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleSetParserIdleFlag</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">handleSetParserIdleFlag( bool isParserIdle ): When True, tells the ProcessLoop to wait as the Parser is idle.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleAck</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Keeps track of # of acks to a blocking shell command. Arg: Source node num.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-71">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>master</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Issues commands from master shell to worker shells located on different nodes. Also handles acknowledgements from them.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>worker</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles commands arriving from master shell on node 0.Sends out acknowledgements from them.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>clockControl</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Controls the system Clock</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-71">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="simmanager">SimManager</h2> -<h4 id="value-fields-72">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>syncTime</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">SyncTime is the interval between synchronizing solvers5 msec is a typical value</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>autoPlot</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">When the autoPlot flag is true, the simManager guesses whichplots are of interest, and builds them.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>plotDt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">plotDt is the timestep for plotting variables. As most will bechemical, a default of 1 sec is reasonable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>runTime</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">runTime is the requested duration of the simulation that is stored in some kinds of model definition files.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>method</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">method is the numerical method used for the calculations.This will set up or even replace the solver with one ableto use the specified method. Currently works only with two solvers: GSL and GSSA.The GSL solver has a variety of ODE methods, by defaultRunge-Kutta-Fehlberg.The GSSA solver currently uses the Gillespie StochasticSystems Algorithm, somewhat optimized over the originalmethod.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>version</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Numerical version number. Used by kkit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>modelFamily</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Family classification of model: <em>kinetic, and </em>neuron are the options so far. In due course expect to see thingslike detailedNetwork, intFireNetwork, sigNeur and so on.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-72">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestMeshStats</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Asks for basic stats for mesh:Total # of entries, and a vector of unique volumes of voxels</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nodeInfo</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Sends out # of nodes to use for meshing, and # of threads to use on each node, to the ChemMesh. These numbers sometimesdiffer from the total # of nodes and threads, because the SimManager may have other portions of the model to allocate.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-72">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>build</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Sets up model, with the specified method. The method may beempty if the intention is that methods be set up through hints in the ChemMesh compartments.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>makeStandardElements</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Sets up the usual infrastructure for a model, with theChemMesh, Stoich, solver and suitable messaging.The argument is the MeshClass to use.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshSplit</code></strong></td> -<td align="left"><code>double,vector<unsigned int>,vector<unsigned int>,vector<unsigned int>,vector<unsigned int></code></td> -<td align="left">Handles message from ChemMesh that defines howmeshEntries communicate between nodes.First arg is oldvol, next is list of other nodes, third arg is list number ofmeshEntries to be transferred for each of these nodes, fourth arg is catenated list of meshEntries indices onmy node going to each of the other connected nodes, andlast arg is matching list of meshEntries on other nodes</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>meshStats</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">Basic statistics for mesh: Total # of entries, and a vectorof unique volumes of voxels</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-72">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>nodeMeshing</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to ChemMesh to coordinate meshing with paralleldecomposition and with the Stoich</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-72">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="singlemsg">SingleMsg</h2> -<h4 id="value-fields-73">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>e1</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e2</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>i1</code></strong></td> -<td align="left"><code>DataId</code></td> -<td align="left">Index of source object.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>i2</code></strong></td> -<td align="left"><code>DataId</code></td> -<td align="left">Index of dest object.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-73">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-73">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-73">Shared message fields</h4> -<h4 id="lookup-fields-73">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="solverjunction">SolverJunction</h2> -<h4 id="value-fields-74">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numReacs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of cross-compartment reactions on this Junction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numDiffMols</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of molecule species diffusing across this Junction</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numMeshEntries</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of voxels (mesh entries) handled by Junction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>otherCompartment</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of compartment on other side of this Junction. Readily obtained by message traversal, just a utility field.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-74">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>junctionPoolNum</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Sends out vector of all mol #s needed to compute junction rates.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>junctionPoolDelta</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Sends out vector of all mol # changes going across junction.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>junctionPoolNum</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Sends out vector of all mol #s needed to compute junction rates.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-74">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleJunctionPoolNum</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Handles vector of doubles specifying pool num, that arrive at the Junction, by redirecting up to parent StoichPools object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleJunctionPoolNum</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Handles vector of doubles specifying pool num, that arrive at the Junction, by redirecting up to parent StoichPools object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleJunctionPoolDelta</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">Handles vector of doubles with pool num changes that arrive at the Junction, by redirecting up to parent StoichPools object</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-74">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>symJunction</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Symmetric shared message between SolverJunctions to handle cross-solver reactions and diffusion. This variant sends only pool mol#s, and is symmetric.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>masterJunction</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message between SolverJunctions to handle cross-solver reactions and diffusion. This sends the change in pool #, of abutting voxels, and receives the pool# of the same abutting voxels. Thus it operates on the solver that is doing the diffusion calculations. This will typically be the solver that operates at a finer level of detail. The order of detail is Smoldyn > Gillespie > deterministic. For two identical solvers we would typically have one with the finer grid size become the master Junction.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>followerJunction</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message between SolverJunctions to handle cross-solver reactions and diffusion. This sends the pool #, of its boundary voxels, and receives back changes in the pool# of the same boundary voxels voxels. Thus it operates on the solver that is just tracking the diffusion calculations that the other (master) solver is doing</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-74">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="sparsemsg">SparseMsg</h2> -<h4 id="value-fields-75">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>e1</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>e2</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Id of source Element.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>srcFieldsOnE2</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>destFieldsOnE1</code></strong></td> -<td align="left"><code>vector<string></code></td> -<td align="left">Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numRows</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of rows in matrix.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numColumns</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of columns in matrix.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numEntries</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Entries in matrix.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>probability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">connection probability for random connectivity.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>seed</code></strong></td> -<td align="left"><code>long</code></td> -<td align="left">Random number seed for generating probabilistic connectivity.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-75">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-75">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>setRandomConnectivity</code></strong></td> -<td align="left"><code>double,long</code></td> -<td align="left">Assigns connectivity with specified probability and seed</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>setEntry</code></strong></td> -<td align="left"><code>unsigned int,unsigned int,unsigned int</code></td> -<td align="left">Assigns single row,column value</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>unsetEntry</code></strong></td> -<td align="left"><code>unsigned int,unsigned int</code></td> -<td align="left">Clears single row,column entry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>clear</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Clears out the entire matrix</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>transpose</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Transposes the sparse matrix</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-75">Shared message fields</h4> -<h4 id="lookup-fields-75">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="species">Species</h2> -<h4 id="value-fields-76">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>molWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Molecular weight of species</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-76">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sendMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">returns molWt.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-76">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWtRequest</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle requests for molWt.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-76">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>pool</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to pools of this Species type</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-76">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="spherepanel">SpherePanel</h2> -<h4 id="value-fields-77">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nPts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of points used by panel to specify geometry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nDims</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Dimensions used by panel to specify geometry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numNeighbors</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Neighbors of panel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>shapeId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Identifier for shape type, as used by Smoldyn</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coordinates for the panel. X vector, then Y, then ZZ can be left out for 2-D panels.Z and Y can be left out for 1-D panels.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-77">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toNeighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Identifies neighbors of the current panel</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-77">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles incoming message from neighbor</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-77">Shared message fields</h4> -<h4 id="lookup-fields-77">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">x coordinate identified by index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">y coordinate identified by index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">z coordinate identified by index</td> -</tr> -</tbody> -</table> -<h2 id="spikegen">SpikeGen</h2> -<h4 id="value-fields-78">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>threshold</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Spiking threshold, must cross it going up</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>refractT</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Refractory Time.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>abs_refract</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Absolute refractory time. Synonym for refractT.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>hasFired</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">True if SpikeGen has just fired</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>edgeTriggered</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">When edgeTriggered = 0, the SpikeGen will fire an event in each timestep while incoming Vm is > threshold and at least abs_refracttime has passed since last event. This may be problematic if the incoming Vm remains above threshold for longer than abs_refract. Setting edgeTriggered to 1 resolves this as the SpikeGen generatesan event only on the rising edge of the incoming Vm and will remain idle unless the incoming Vm goes below threshold.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-78">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>event</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out a trigger for an event.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-78">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-78">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message to receive Process message from scheduler</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-78">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="stats">Stats</h2> -<h4 id="value-fields-79">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>mean</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Mean of all sampled values.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sdev</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Standard Deviation of all sampled values.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>sum</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sum of all sampled values.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>num</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of all sampled values.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-79">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reduce</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Execute statistics reduction operation on all targets andplace results in this object</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-79">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>trig</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Triggers Reduction operation.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-79">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-79">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="stimulustable">StimulusTable</h2> -<h4 id="value-fields-80">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>vec</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">vector with all table entries</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputValue</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Output value holding current table entry or output of a calculation</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">size of table. Note that this is the number of x divisions +1since it must represent the largest value as well as thesmallest</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>startTime</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Start time used when table is emitting values. For lookupvalues below this, the table just sends out its zero entry.Corresponds to zeroth entry of table.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>stopTime</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Time to stop emitting values.If time exceeds this, then the table sends out its last entry.The stopTime corresponds to the last entry of table.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>loopTime</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">If looping, this is the time between successive cycle starts.Defaults to the difference between stopTime and startTime, so that the output waveform cycles with precisely the same duration as the table contents.If larger than stopTime - startTime, then it pauses at the last table value till it is time to go around again.If smaller than stopTime - startTime, then it begins the next cycle even before the first one has reached the end of the table.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>stepSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Increment in lookup (x) value on every timestep. If it isless than or equal to zero, the StimulusTable uses the current timeas the lookup value.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>stepPosition</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current value of lookup (x) value.If stepSize is less than or equal to zero, this is set tothe current time to use as the lookup value.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>doLoop</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag: Should it loop around to startTime once it has reachedstopTime. Default (zero) is to do a single pass.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-80">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out tabulated data according to lookup parameters.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-80">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>linearTransform</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Linearly scales and offsets data. Scale first, then offset.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xplot</code></strong></td> -<td align="left"><code>string,string</code></td> -<td align="left">Dumps table contents to xplot-format file. Argument 1 is filename, argument 2 is plotname</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>plainPlot</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Dumps table contents to single-column ascii file. Uses scientific notation. Argument 1 is filename</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>loadCSV</code></strong></td> -<td align="left"><code>string,int,int,char</code></td> -<td align="left">Reads a single column from a CSV file. Arguments: filename, column#, starting row#, separator</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>loadXplot</code></strong></td> -<td align="left"><code>string,string</code></td> -<td align="left">Reads a single plot from an xplot file. Arguments: filename, plotnameWhen the file has 2 columns, the 2nd column is loaded.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>loadXplotRange</code></strong></td> -<td align="left"><code>string,string,unsigned int,unsigned int</code></td> -<td align="left">Reads a single plot from an xplot file, and selects a subset of points from it. Arguments: filename, plotname, startindex, endindexUses C convention: startindex included, endindex not included.When the file has 2 columns, the 2nd column is loaded.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>compareXplot</code></strong></td> -<td align="left"><code>string,string,string</code></td> -<td align="left">Reads a plot from an xplot file and compares with contents of TableBase.Result is put in 'output' field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: filename, plotname, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>compareVec</code></strong></td> -<td align="left"><code>vector<double>,string</code></td> -<td align="left">Compares contents of TableBase with a vector of doubles.Result is put in 'output' field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: Other vector, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>clearVec</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles request to clear the data vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call, updates internal time stamp.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-80">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-80">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Value of table at specified index</td> -</tr> -</tbody> -</table> -<h2 id="stoich">Stoich</h2> -<h4 id="value-fields-81">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>useOneWayReacs</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag: use bidirectional or one-way reacs. One-way is neededfor Gillespie type stochastic calculations. Two-way islikely to be margninally more efficient in ODE calculations</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nVarPools</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of variable molecule pools in the reac system</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numMeshEntries</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of meshEntries in reac-diff system</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>estimatedDt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Estimate of fastest (smallest) timescale in system.This is fallible because it depends on instantaneous concs,which of course change over the course of the simulation.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Path of reaction system to take over</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-81">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>plugin</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Sends out Stoich Id so that plugins can directly access fields and functions</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nodeDiffBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Sends mol #s across boundary between nodes, to calculate diffusionterms. arg1 is originating node, arg2 is list of meshIndices forwhich data is being transferred, and arg3 are the 'n' values forall the pools on the specified meshIndices, to be plugged intothe appropriate place on the recipient node's S_ matrix</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>poolsReactingAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">A vector of mol counts (n) of those pools that react across a boundary. Sent over to another Stoich every sync timestep so that the target Stoich has both sides of the boundary reaction. Assumes that the mesh encolosing the target Stoich also encloses the reaction object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacRollbacksAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">Occasionally, a Gillespie advance will cause the mol conc on the target stoich side to become negative. If so, this message does a patch up job by telling the originating Stoich to roll back to the specified number of reac firings, which is the max that the target was able to handle. This is probably numerically naughty, but it is better than negative concentrations</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reacRatesAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">A vector of reac rates (V) of each reaction crossing the boundary between compartments. Sent over to another Stoich every sync timestep so that the target Stoich has both sides of the boundary reaction. In the case of Gillespie calculations <em>V</em> is the integer # of transitions (firings) of each reaction. Assumes that the mesh encolosing the target Stoich also encloses the reaction object.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-81">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>meshSplit</code></strong></td> -<td align="left"><code>double,vector<double>,vector<unsigned int>,vector< vector<unsigned int> >,vector< vector<unsigned int> ></code></td> -<td align="left">Handles message from ChemMesh that defines how meshEntries are decomposed on this node, and how they communicate between nodes.Args: (oldVol, volumeVectorForAllEntries, localEntryList, outgoingDiffusion[node#][entry#], incomingDiffusion[node#][entry#])</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleReacRatesAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">When we have reactions that cross compartment boundaries, we may have different solvers and meshes on either side. This message handle info for two things: Arg 1: An identifier for the boundary. Arg 2: A vector of reaction rates for every reaction across the boundary, in every mesh entry.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handlePoolsReactingAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">When we have reactions that cross compartment boundaries, we may have different solvers and meshes on either side. This message handle info for two things: Arg 1: An identifier for the boundary. Arg 2: A vector of pool #s for every pool that reacts across the boundary, in every mesh entry. that reacts across a boundary, in every mesh entry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleReacRollbacksAcrossBoundary</code></strong></td> -<td align="left"><code>unsigned int,vector<double></code></td> -<td align="left">When we have reactions that cross compartment boundaries, we may have different solvers and meshes on either side. Only one side does the calculations to assure mass conservation. There are rare cases when the calculations of one solver, typically a Gillespie one, gives such a large change that the concentrations on the other side would become negative in one or more molecules This message handles such cases on the Gillespie side, by telling the solver to roll back its recent calculation and instead use the specified vector for the rates, that is the # of mols changed in the latest timestep. This message handle info for two things: Arg 1: An identifier for the boundary. Arg 2: A vector of reaction rates for every reaction across the boundary, in every mesh entry.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-81">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>boundaryReacOut</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message between Stoichs to handle reactions taking molecules between the pools handled by the two Stoichs.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>boundaryReacIn</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message between Stoichs to handle reactions taking molecules between the pools handled by the two Stoichs.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-81">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="stoichcore">StoichCore</h2> -<h4 id="value-fields-82">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>useOneWayReacs</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag: use bidirectional or one-way reacs. One-way is neededfor Gillespie type stochastic calculations. Two-way islikely to be margninally more efficient in ODE calculations</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nVarPools</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of variable molecule pools in the reac system</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>estimatedDt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Estimate of fastest (smallest) timescale in system.This is fallible because it depends on instantaneous concs,which of course change over the course of the simulation.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Path of reaction system to take over</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-82">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-82">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-82">Shared message fields</h4> -<h4 id="lookup-fields-82">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="stoichpools">StoichPools</h2> -<p><strong>Author</strong>: Upinder S. Bhalla, 2012, NCBS</p> -<p><strong>Description</strong>: Pure virtual base class for handling reaction pools. GslStoich is derived from this.</p> -<h4 id="value-fields-83">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-83">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-83">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>addJunction</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Add a junction between the current solver and the one whose Id is passed in.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>dropJunction</code></strong></td> -<td align="left"><code>Id</code></td> -<td align="left">Drops a junction between the current solver and the one whose Id is passed in. Ignores if no junction.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-83">Shared message fields</h4> -<h4 id="lookup-fields-83">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="sumfunc">SumFunc</h2> -<p><strong>Author</strong>: Upi Bhalla</p> -<p><strong>Description</strong>: SumFunc object. Adds up all inputs</p> -<h4 id="value-fields-84">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>result</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Outcome of function computation</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-84">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out sum on each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-84">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles input values. This generic message works only in cases where the inputs are commutative, so ordering does not matter. In due course will implement a synapse type extendable, identified system of inputs so that arbitrary numbers of inputs can be unambiguaously defined.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-84">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-84">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="surface">Surface</h2> -<h4 id="value-fields-85">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>volume</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">This is something I'll need to write a function to compute.Perhaps have an update routine as it may be hard to compute but is needed often by the molecules.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-85">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>absorb</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">these help the system define non-standard operations for what a molecule does when it hits a surface.The default is reflect.As a molecule may interact with multiple surfaces, it isn't enough to confer a property on the molecule itself. We have to use messages. Perhaps we don't need these, but instead put entities on the surface which the molecule interacts with if it doesn't do the basic reflect operation.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>transmit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Surface lets molecules through</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>jump</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">dunno</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>mixture</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">dunno</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>surface</code></strong></td> -<td align="left"><code>double,double,double</code></td> -<td align="left">Connects up to a compartment, either as interior or exterior Args are volume, area, perimeter</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-85">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-85">Shared message fields</h4> -<h4 id="lookup-fields-85">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="symcompartment">SymCompartment</h2> -<h4 id="value-fields-86">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">membrane potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Cm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane capacitance</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Em</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Resting membrane potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Im</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current going through membrane</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>inject</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current injection to deliver into compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value for membrane potential</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Rm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane resistance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ra</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Axial resistance of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diameter</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diameter of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>length</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Length of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>x0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">X coordinate of start of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Y coordinate of start of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Z coordinate of start of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">x coordinate of end of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">y coordinate of end of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">z coordinate of end of compartment</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-86">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>VmOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm value of compartment on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>axialOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm value of compartment to adjacent compartments,on each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>raxialOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Raxial information on each timestep, fields are Ra and Vm</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>raxialOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Ra and Vm on each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sumRaxialOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Ra</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestSumAxial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Sends out request for Ra.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>raxialOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Ra and Vm on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>sumRaxialOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Ra</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSumAxial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Sends out request for Ra.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Raxial2Out</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Ra and Vm</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sumRaxial2Out</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Ra</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestSumAxial2</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Sends out request for Ra.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Raxial2Out</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Ra and Vm</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>sumRaxial2Out</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Ra</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSumAxial2</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Sends out request for Ra.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Raxial2Out</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Ra and Vm</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sumRaxial2Out</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Ra</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestSumAxial2</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Sends out request for Ra.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-86">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectMsg</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the 'inject' field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>randInject</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends a random injection current to the compartment. Must beupdated each timestep.Arguments to randInject are probability and current.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectMsg</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the 'inject' field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cable</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message for organizing compartments into groups, calledcables. Doesn't do anything.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'process' call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'reinit' call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initProc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles Process call for the 'init' phase of the Compartment calculations. These occur as a separate Tick cycle from the regular proc cycle, and should be called before the proc msg.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initReinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles Reinit call for the 'init' phase of the Compartment calculations.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleChannel</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles conductance and Reversal potential arguments from Channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleRaxial</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles Raxial info: arguments are Ra and Vm.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleAxial</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Axial information. Argument is just Vm.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>raxialSym</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Expects Ra and Vm from other compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>sumRaxial</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Expects Ra from other compartment.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleSumRaxialRequest</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle request to send back Ra to originating compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-86">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process messages from the scheduler objects. The Process should be called <em>second</em> in each clock tick, after the Init message.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Init messages from the scheduler objects. Its job is to separate the compartmental calculations from the message passing. It doesn't really need to be shared, as it does not use the reinit part, but the scheduler objects expect this form of message for all scheduled output. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a dummy MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message from a compartment to channels. The first entry is a MsgDest for the info coming from the channel. It expects Gk and Ek from the channel as args. The second entry is a MsgSrc sending Vm</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>axial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message between asymmetric compartments. axial messages (this kind) connect up to raxial messages (defined below). The soma should use raxial messages to connect to the axial message of all the immediately adjacent dendritic compartments.This puts the (low) somatic resistance in series with these dendrites. Dendrites should then use raxial messages toconnect on to more distal dendrites. In other words, raxial messages should face outward from the soma. The first entry is a MsgSrc sending Vm to the axialFuncof the target compartment. The second entry is a MsgDest for the info coming from the other compt. It expects Ra and Vm from the other compt as args. Note that the message is named after the source type.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>raxial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial shared message between asymmetric compartments. The first entry is a MsgDest for the info coming from the other compt. It expects Vm from the other compt as an arg. The second is a MsgSrc sending Ra and Vm to the raxialFunc of the target compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>raxial1</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial shared message between symmetric compartments.It goes from the tail of the current compartment to one closer to the soma.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>CONNECTTAIL</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial shared message between symmetric compartments.It is an alias for raxial1.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>raxial2</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial2 shared message between symmetric compartments.It goes from the head of the current compartment to a compartment further away from the soma</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>CONNECTHEAD</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial2 shared message between symmetric compartments.It is an alias for raxial2.It goes from the current compartment to one further from the soma</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>CONNECTCROSS</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial2 shared message between symmetric compartments.It is an alias for raxial2.Conceptually, this goes from the tail of the current compartment to the tail of a sibling compartment. However,this works out to the same as CONNECTHEAD in terms of equivalentcircuit.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-86">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="synbase">SynBase</h2> -<h4 id="value-fields-87">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSynapses</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of synapses on SynBase</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-87">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-87">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-87">Shared message fields</h4> -<h4 id="lookup-fields-87">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="synchan">SynChan</h2> -<h4 id="value-fields-88">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSynapses</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of synapses on SynBase</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tau1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Decay time constant for the synaptic conductance, tau1 >= tau2.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>tau2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Rise time constant for the synaptic conductance, tau1 >= tau2.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>normalizeWeights</code></strong></td> -<td align="left"><code>bool</code></td> -<td align="left">Flag. If true, the overall conductance is normalized by the number of individual synapses in this SynChan object.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-88">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-88">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>activation</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sometimes we want to continuously activate the channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>modulator</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Modulate channel response</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-88">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message to receive Process message from scheduler</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-88">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="synchanbase">SynChanBase</h2> -<h4 id="value-fields-89">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSynapses</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of synapses on SynBase</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-89">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-89">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-89">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-89">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="synapse">Synapse</h2> -<h4 id="value-fields-90">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>weight</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Synaptic weight</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>delay</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Axonal propagation delay to this synapse</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-90">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-90">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>addSpike</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles arriving spike messages, by redirecting up to parent SynBase object</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-90">Shared message fields</h4> -<h4 id="lookup-fields-90">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="table">Table</h2> -<h4 id="value-fields-91">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>vec</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">vector with all table entries</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputValue</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Output value holding current table entry or output of a calculation</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">size of table. Note that this is the number of x divisions +1since it must represent the largest value as well as thesmallest</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>threshold</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">threshold used when Table acts as a buffer for spikes</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-91">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestData</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Sends request for a field to target object</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-91">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>linearTransform</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Linearly scales and offsets data. Scale first, then offset.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xplot</code></strong></td> -<td align="left"><code>string,string</code></td> -<td align="left">Dumps table contents to xplot-format file. Argument 1 is filename, argument 2 is plotname</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>plainPlot</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Dumps table contents to single-column ascii file. Uses scientific notation. Argument 1 is filename</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>loadCSV</code></strong></td> -<td align="left"><code>string,int,int,char</code></td> -<td align="left">Reads a single column from a CSV file. Arguments: filename, column#, starting row#, separator</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>loadXplot</code></strong></td> -<td align="left"><code>string,string</code></td> -<td align="left">Reads a single plot from an xplot file. Arguments: filename, plotnameWhen the file has 2 columns, the 2nd column is loaded.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>loadXplotRange</code></strong></td> -<td align="left"><code>string,string,unsigned int,unsigned int</code></td> -<td align="left">Reads a single plot from an xplot file, and selects a subset of points from it. Arguments: filename, plotname, startindex, endindexUses C convention: startindex included, endindex not included.When the file has 2 columns, the 2nd column is loaded.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>compareXplot</code></strong></td> -<td align="left"><code>string,string,string</code></td> -<td align="left">Reads a plot from an xplot file and compares with contents of TableBase.Result is put in 'output' field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: filename, plotname, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>compareVec</code></strong></td> -<td align="left"><code>vector<double>,string</code></td> -<td align="left">Compares contents of TableBase with a vector of doubles.Result is put in 'output' field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: Other vector, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>clearVec</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles request to clear the data vector</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Fills data into the Table.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>spike</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Fills spike timings into the Table. Signal has to exceed thresh</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>recvData</code></strong></td> -<td align="left"><code>bad</code></td> -<td align="left">Handles data sent back following request</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call, updates internal time stamp.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-91">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-91">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Value of table at specified index</td> -</tr> -</tbody> -</table> -<h2 id="tablebase">TableBase</h2> -<h4 id="value-fields-92">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>vec</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">vector with all table entries</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>outputValue</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Output value holding current table entry or output of a calculation</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">size of table. Note that this is the number of x divisions +1since it must represent the largest value as well as thesmallest</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-92">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-92">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>linearTransform</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Linearly scales and offsets data. Scale first, then offset.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xplot</code></strong></td> -<td align="left"><code>string,string</code></td> -<td align="left">Dumps table contents to xplot-format file. Argument 1 is filename, argument 2 is plotname</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>plainPlot</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Dumps table contents to single-column ascii file. Uses scientific notation. Argument 1 is filename</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>loadCSV</code></strong></td> -<td align="left"><code>string,int,int,char</code></td> -<td align="left">Reads a single column from a CSV file. Arguments: filename, column#, starting row#, separator</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>loadXplot</code></strong></td> -<td align="left"><code>string,string</code></td> -<td align="left">Reads a single plot from an xplot file. Arguments: filename, plotnameWhen the file has 2 columns, the 2nd column is loaded.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>loadXplotRange</code></strong></td> -<td align="left"><code>string,string,unsigned int,unsigned int</code></td> -<td align="left">Reads a single plot from an xplot file, and selects a subset of points from it. Arguments: filename, plotname, startindex, endindexUses C convention: startindex included, endindex not included.When the file has 2 columns, the 2nd column is loaded.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>compareXplot</code></strong></td> -<td align="left"><code>string,string,string</code></td> -<td align="left">Reads a plot from an xplot file and compares with contents of TableBase.Result is put in 'output' field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: filename, plotname, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>compareVec</code></strong></td> -<td align="left"><code>vector<double>,string</code></td> -<td align="left">Compares contents of TableBase with a vector of doubles.Result is put in 'output' field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: Other vector, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>clearVec</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles request to clear the data vector</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-92">Shared message fields</h4> -<h4 id="lookup-fields-92">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Value of table at specified index</td> -</tr> -</tbody> -</table> -<h2 id="tableentry">TableEntry</h2> -<h4 id="value-fields-93">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>value</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Data value in this entry</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-93">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-93">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-93">Shared message fields</h4> -<h4 id="lookup-fields-93">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="tick">Tick</h2> -<h4 id="value-fields-94">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>dt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Timestep for this tick</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>localdt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Timestep for this tick</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-94">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process0</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 0</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit0</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 0</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process1</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit1</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 1</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process2</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 2</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit2</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 2</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process3</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 3</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit3</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 3</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process4</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 4</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit4</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 4</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process5</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 5</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit5</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 5</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process6</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 6</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit6</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 6</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process7</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 7</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit7</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 7</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process8</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 8</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit8</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 8</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process9</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Process for Tick 9</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit9</code></strong></td> -<td align="left"><code>PK8ProcInfo</code></td> -<td align="left">Reinit for Tick 9</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-94">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-94">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc0</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc1</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc2</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc3</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc4</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc5</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc6</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc7</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc8</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc9</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared proc/reinit message</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-94">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="tripanel">TriPanel</h2> -<h4 id="value-fields-95">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>nPts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of points used by panel to specify geometry</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nDims</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Dimensions used by panel to specify geometry</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numNeighbors</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of Neighbors of panel</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>shapeId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Identifier for shape type, as used by Smoldyn</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>coords</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">All the coordinates for the panel. X vector, then Y, then ZZ can be left out for 2-D panels.Z and Y can be left out for 1-D panels.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-95">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toNeighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Identifies neighbors of the current panel</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-95">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>neighbor</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles incoming message from neighbor</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-95">Shared message fields</h4> -<h4 id="lookup-fields-95">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">x coordinate identified by index</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">y coordinate identified by index</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">z coordinate identified by index</td> -</tr> -</tbody> -</table> -<h2 id="vectortable">VectorTable</h2> -<h4 id="value-fields-96">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>xdivs</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of divisions.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>xmin</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Minimum value in table.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>xmax</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value in table.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>invdx</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximum value in table.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>table</code></strong></td> -<td align="left"><code>vector<double></code></td> -<td align="left">The lookup table.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-96">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-96">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-96">Shared message fields</h4> -<h4 id="lookup-fields-96">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lookupvalue</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Lookup function that performs interpolation to return a value.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>lookupindex</code></strong></td> -<td align="left"><code>unsigned int,double</code></td> -<td align="left">Lookup function that returns value by index.</td> -</tr> -</tbody> -</table> -<h2 id="zbufpool">ZBufPool</h2> -<h4 id="value-fields-97">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-97">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-97">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-97">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-97">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zenz">ZEnz</h2> -<h4 id="value-fields-98">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward reaction from enz + sub to complex</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>k2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse reaction from complex to enz + sub</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k3</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant from complex to product + enz</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ratio</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ratio of k2/k3</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concK1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">K1 expressed in concentration (1/millimolar.sec) units</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-98">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toEnz</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toCplx</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-98">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplxDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of enz-sub complex</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-98">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enz</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enzyme pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplx</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enz-sub complex pool</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-98">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zfuncpool">ZFuncPool</h2> -<h4 id="value-fields-99">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-99">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-99">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles input to control value of n_</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-99">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-99">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zmmenz">ZMMenz</h2> -<h4 id="value-fields-100">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-100">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-100">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-100">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-100">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zpool">ZPool</h2> -<h4 id="value-fields-101">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-101">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-101">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-101">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-101">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zreac">ZReac</h2> -<h4 id="value-fields-102">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in # units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in # units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in concentration units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in concentration units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates of reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numProducts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of products of reaction</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-102">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-102">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the reac to recompute its numRates, as remeshing has happened</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-102">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-102">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiebufpool">ZombieBufPool</h2> -<h4 id="value-fields-103">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-103">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-103">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-103">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-103">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiecaconc">ZombieCaConc</h2> -<h4 id="value-fields-104">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ca</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Calcium concentration.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>CaBasal</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Basal Calcium concentration.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Ca_base</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Basal Calcium concentration, synonym for CaBasal</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>tau</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Settling time for Ca concentration</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>B</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Volume scaling factor</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>thick</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Thickness of Ca shell.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>ceiling</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ceiling value for Ca concentration. If Ca > ceiling, Ca = ceiling. If ceiling <= 0.0, there is no upper limit on Ca concentration value.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>floor</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Floor value for Ca concentration. If Ca < floor, Ca = floor</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-104">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>concOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of Ca in pool</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-104">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>current</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Calcium Ion current, due to be converted to conc.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>currentFraction</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Fraction of total Ion current, that is carried by Ca2+.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>increase</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Any input current that increases the concentration.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>decrease</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Any input current that decreases the concentration.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>basal</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Synonym for assignment of basal conc.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-104">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message to receive Process message from scheduler</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-104">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiecompartment">ZombieCompartment</h2> -<h4 id="value-fields-105">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">membrane potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Cm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane capacitance</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Em</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Resting membrane potential</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Im</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current going through membrane</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>inject</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Current injection to deliver into compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initVm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value for membrane potential</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Rm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Membrane resistance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ra</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Axial resistance of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diameter</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diameter of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>length</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Length of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>x0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">X coordinate of start of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>y0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Y coordinate of start of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>z0</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Z coordinate of start of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>x</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">x coordinate of end of compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>y</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">y coordinate of end of compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>z</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">z coordinate of end of compartment</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-105">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>VmOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm value of compartment on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>axialOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out Vm value of compartment to adjacent compartments,on each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>raxialOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out Raxial information on each timestep, fields are Ra and Vm</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-105">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectMsg</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the 'inject' field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>randInject</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends a random injection current to the compartment. Must beupdated each timestep.Arguments to randInject are probability and current.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>injectMsg</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the 'inject' field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cable</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message for organizing compartments into groups, calledcables. Doesn't do anything.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'process' call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles 'reinit' call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>initProc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles Process call for the 'init' phase of the Compartment calculations. These occur as a separate Tick cycle from the regular proc cycle, and should be called before the proc msg.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>initReinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles Reinit call for the 'init' phase of the Compartment calculations.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleChannel</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles conductance and Reversal potential arguments from Channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>handleRaxial</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles Raxial info: arguments are Ra and Vm.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleAxial</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Axial information. Argument is just Vm.</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-105">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process messages from the scheduler objects. The Process should be called <em>second</em> in each clock tick, after the Init message.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>init</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Init messages from the scheduler objects. Its job is to separate the compartmental calculations from the message passing. It doesn't really need to be shared, as it does not use the reinit part, but the scheduler objects expect this form of message for all scheduled output. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a dummy MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message from a compartment to channels. The first entry is a MsgDest for the info coming from the channel. It expects Gk and Ek from the channel as args. The second entry is a MsgSrc sending Vm</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>axial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message between asymmetric compartments. axial messages (this kind) connect up to raxial messages (defined below). The soma should use raxial messages to connect to the axial message of all the immediately adjacent dendritic compartments.This puts the (low) somatic resistance in series with these dendrites. Dendrites should then use raxial messages toconnect on to more distal dendrites. In other words, raxial messages should face outward from the soma. The first entry is a MsgSrc sending Vm to the axialFuncof the target compartment. The second entry is a MsgDest for the info coming from the other compt. It expects Ra and Vm from the other compt as args. Note that the message is named after the source type.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>raxial</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a raxial shared message between asymmetric compartments. The first entry is a MsgDest for the info coming from the other compt. It expects Vm from the other compt as an arg. The second is a MsgSrc sending Ra and Vm to the raxialFunc of the target compartment.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-105">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombieenz">ZombieEnz</h2> -<h4 id="value-fields-106">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward reaction from enz + sub to complex</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>k2</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse reaction from complex to enz + sub</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>k3</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant from complex to product + enz</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ratio</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Ratio of k2/k3</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concK1</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">K1 expressed in concentration (1/millimolar.sec) units</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-106">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toEnz</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toCplx</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-106">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplxDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of enz-sub complex</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-106">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enz</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enzyme pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>cplx</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to enz-sub complex pool</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-106">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiefuncpool">ZombieFuncPool</h2> -<h4 id="value-fields-107">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-107">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-107">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles input to control value of n_</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-107">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-107">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiehhchannel">ZombieHHChannel</h2> -<h4 id="value-fields-108">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gbar</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Maximal channel conductance</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ek</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reversal potential of channel</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Gk</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel conductance variable</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ik</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current variable</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Xpower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for X gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Ypower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for Y gate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Zpower</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Power for Z gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>instant</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Bitmapped flag: bit 0 = Xgate, bit 1 = Ygate, bit 2 = ZgateWhen true, specifies that the lookup table value should beused directly as the state of the channel, rather than usedas a rate term for numerical integration for the state</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>X</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for X gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Y</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for Y gate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Z</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">State variable for Y gate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>useConcentration</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Flag: when true, use concentration message rather than Vm tocontrol Z gate</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-108">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>channelOut</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends channel variables Gk and Ek to compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>permeability</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Conductance term going out to GHK object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>IkOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Channel current. This message typically goes to concenobjects that keep track of ion concentration.</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-108">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Vm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles Vm message coming in from compartment</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>concen</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Incoming message from Concen object to specific conc to usein the Z gate calculations</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>createGate</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Function to create specified gate.Argument: Gate type [X Y Z]</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-108">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>channel</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>ghk</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Message to Goldman-Hodgkin-Katz object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on.</td> -</tr> -<tr class="even"> -<td align="left"></td> -<td align="left"></td> -<td align="left">The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-108">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiemmenz">ZombieMMenz</h2> -<h4 id="value-fields-109">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Km</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in SI conc units (milliMolar)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numKm</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Michaelis-Menten constant in number units, volume dependent</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kcat</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant for enzyme, units 1/sec</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-109">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-109">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>enzDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of Enzyme</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product. Dummy.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the MMEnz to recompute its numKm after remeshing</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-109">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to product molecule</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-109">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiepool">ZombiePool</h2> -<h4 id="value-fields-110">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>n</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Number of molecules in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of number of molecules in pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>diffConst</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Diffusion constant of molecule</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>conc</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Concentration of molecules in this pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>concInit</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Initial value of molecular concentration in pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>size</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Size of compartment. Units are SI. Utility field, the actual size info is stored on a volume mesh entry in the parent compartment.This is hooked up by a message. If the message isn'tavailable size is just taken as 1</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>speciesId</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Species identifier for this mol pool. Eventually link to ontology.</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-110">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>nOut</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out # of molecules in pool on each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>requestMolWt</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Requests Species object for mol wt</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>requestSize</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Requests Size of pool from matching mesh entry</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-110">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>group</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handle for grouping. Doesn't do anything.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reacDest</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Handles reaction input</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>handleMolWt</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>double,unsigned int,unsigned int,vector<unsigned int>,vector<double></code></td> -<td align="left">Handle commands to remesh the pool. This may involve changing the number of pool entries, as well as changing their volumes</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-110">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>reac</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>species</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for connecting to species objects</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>mesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for dealing with mesh operations</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-110">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiereac">ZombieReac</h2> -<h4 id="value-fields-111">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in # units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in # units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>Kf</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Forward rate constant, in concentration units</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>Kb</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Reverse rate constant, in concentration units</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>numSubstrates</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of substrates of reaction</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>numProducts</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Number of products of reaction</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-111">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>toSub</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>toPrd</code></strong></td> -<td align="left"><code>double,double</code></td> -<td align="left">Sends out increment of molecules on product each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-111">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>subDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of substrate</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>prdDest</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles # of molecules of product</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>remesh</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Tells the reac to recompute its numRates, as remeshing has happened</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-111">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>sub</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>prd</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Connects to substrate pool</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-111">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="zombiesumfunc">ZombieSumFunc</h2> -<h4 id="value-fields-112">Value fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>this</code></strong></td> -<td align="left"><code>Neutral</code></td> -<td align="left">Access function for entire object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>name</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Name of object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>me</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">ObjId for current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>parent</code></strong></td> -<td align="left"><code>ObjId</code></td> -<td align="left">Parent ObjId for current object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>children</code></strong></td> -<td align="left"><code>vector<Id></code></td> -<td align="left">vector of ObjIds listing all children of current object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>path</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">text path for object</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>class</code></strong></td> -<td align="left"><code>string</code></td> -<td align="left">Class Name of object</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>linearSize</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left"># of entries on Element: product of all dimensions.Note that on a FieldElement this includes field entries.If field entries form a ragged array, then the linearSize may begreater than the actual number of allocated entries, since thelastDimension is at least as big as the largest ragged array.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>objectDimensions</code></strong></td> -<td align="left"><code>vector<unsigned int></code></td> -<td align="left">Array Dimensions of object on the Element.This includes the lastDimension (field dimension) if present.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>lastDimension</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">Max size of the last dimension of the object.In the case of regular objects, resizing this value resizesthe last dimensionIn the case of ragged arrays (such as synapses), resizing thisvalue resizes the upper limit of the last dimension,but cannot make it smaller than the biggest ragged array size.Normally is only assigned from Shell::doSyncDataHandler.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>localNumField</code></strong></td> -<td align="left"><code>unsigned int</code></td> -<td align="left">For a FieldElement: number of entries of self on current nodeFor a regular Element: zero.</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>pathIndices</code></strong></td> -<td align="left"><code>vector< vector<unsigned int> ></code></td> -<td align="left">Indices of the entire path hierarchy leading up to this Object.</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>msgOut</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages going out from this Element</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>msgIn</code></strong></td> -<td align="left"><code>vector<ObjId></code></td> -<td align="left">Messages coming in to this Element</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>result</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">outcome of summation</td> -</tr> -</tbody> -</table> -<h4 id="source-message-fields-112">Source message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>childMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message to child Elements</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>output</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Sends out sum on each timestep</td> -</tr> -</tbody> -</table> -<h4 id="destination-message-fields-112">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>parentMsg</code></strong></td> -<td align="left"><code>int</code></td> -<td align="left">Message from Parent Element(s)</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>input</code></strong></td> -<td align="left"><code>double</code></td> -<td align="left">Handles input values</td> -</tr> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles process call</td> -</tr> -<tr class="even"> -<td align="left"><strong><code>reinit</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Handles reinit call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-112">Shared message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>proc</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">Shared message for process and reinit</td> -</tr> -</tbody> -</table> -<h4 id="lookup-fields-112">Lookup fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>neighbours</code></strong></td> -<td align="left"><code>string,vector<Id></code></td> -<td align="left">Ids of Elements connected this Element on specified field.</td> -</tr> -</tbody> -</table> -<h2 id="testsched">testSched</h2> -<h4 id="value-fields-113">Value fields</h4> -<h4 id="source-message-fields-113">Source message fields</h4> -<h4 id="destination-message-fields-113">Destination message fields</h4> -<table> -<thead> -<tr class="header"> -<th align="left">Field</th> -<th align="left">Type</th> -<th align="left">Description</th> -</tr> -</thead> -<tbody> -<tr class="odd"> -<td align="left"><strong><code>process</code></strong></td> -<td align="left"><code>void</code></td> -<td align="left">handles process call</td> -</tr> -</tbody> -</table> -<h4 id="shared-message-fields-113">Shared message fields</h4> -<h4 id="lookup-fields-113">Lookup fields</h4> -<h1 id="moose-functions">MOOSE Functions</h1> -<h2 id="ce">ce</h2> -<p>Set the current working element. 'ce' is an alias of this function</p> -<h2 id="connect">connect</h2> -<p>connect(src, src_field, dest, dest_field, message_type) -> bool</p> -<p>Create a message between <code>src_field</code> on <code>src</code> object to <code>dest_field</code></p> -<p>on <code>dest</code> object.</p> -<h4 id="parameters">Parameters</h4> -<p>src : element</p> -<p>the source object</p> -<p>src_field : str</p> -<p>the source field name. Fields listed under <code>srcFinfo</code> and</p> -<p><code>sharedFinfo</code> qualify for this.</p> -<p>dest : element</p> -<p>the destination object.</p> -<p>dest_field : str</p> -<p>the destination field name. Fields listed under <code>destFinfo</code></p> -<p>and <code>sharedFinfo</code> qualify for this.</p> -<p>message_type : str (optional)</p> -<p>Type of the message. Can be <code>Single</code>, <code>OneToOne</code>, <code>OneToAll</code>.</p> -<p>If not specified, it defaults to <code>Single</code>.</p> -<h4 id="returns">Returns</h4> -<p>element of the message-manager for the newly created message.</p> -<h4 id="example">Example</h4> -<p>Connect the output of a pulse generator to the input of a spike</p> -<p>generator:</p> -<pre><code> ->>> pulsegen = moose.PulseGen('pulsegen') - ->>> spikegen = moose.SpikeGen('spikegen') - ->>> moose.connect(pulsegen, 'outputOut', spikegen, 'Vm') - -1 -</code></pre> -<h2 id="copy">copy</h2> -<p>copy(src, dest, name, n, toGlobal, copyExtMsg) -> bool</p> -<p>Make copies of a moose object.</p> -<h4 id="parameters-1">Parameters</h4> -<p>src : ematrix, element or str</p> -<p>source object.</p> -<p>dest : ematrix, element or str</p> -<p>Destination object to copy into.</p> -<p>name : str</p> -<p>Name of the new object. If omitted, name of the original will be used.</p> -<p>n : int</p> -<p>Number of copies to make.</p> -<p>toGlobal: int</p> -<p>Relevant for parallel environments only. If false, the copies will</p> -<p>reside on local node, otherwise all nodes get the copies.</p> -<p>copyExtMsg: int</p> -<p>If true, messages to/from external objects are also copied.</p> -<h4 id="returns-1">Returns</h4> -<p>ematrix of the copied object</p> -<h2 id="delete">delete</h2> -<p>moose.delete(id)</p> -<p>Delete the underlying moose object. This does not delete any of the</p> -<p>Python objects referring to this ematrix but does invalidate them. Any</p> -<p>attempt to access them will raise a ValueError.</p> -<p>Parameters</p> -<h4 id="section"></h4> -<p>id : ematrix</p> -<p>ematrix of the object to be deleted.</p> -<h2 id="element">element</h2> -<p>moose.element(arg) -> moose object</p> -<p>Convert a path or an object to the appropriate builtin moose class</p> -<p>instance</p> -<h4 id="parameters-2">Parameters</h4> -<p>arg: str or ematrix or moose object</p> -<p>path of the moose element to be converted or another element (possibly</p> -<p>available as a superclass instance).</p> -<h4 id="returns-2">Returns</h4> -<p>An element of the moose builtin class the specified object belongs</p> -<p>to.</p> -<h2 id="exists">exists</h2> -<p>True if there is an object with specified path.</p> -<h2 id="getcwe">getCwe</h2> -<p>Get the current working element. 'pwe' is an alias of this function.</p> -<h2 id="getfield">getField</h2> -<p>getField(element, field, fieldtype) -- Get specified field of specified type from object ematrix.</p> -<h2 id="getfielddict">getFieldDict</h2> -<p>getFieldDict(className, finfoType) -> dict</p> -<p>Get dictionary of field names and types for specified class.</p> -<h4 id="parameters-3">Parameters</h4> -<p>className : str</p> -<p>MOOSE class to find the fields of.</p> -<p>finfoType : str (optional)</p> -<p>Finfo type of the fields to find. If empty or not specified, all</p> -<p>fields will be retrieved.</p> -<p>note: This behaviour is different from <code>getFieldNames</code> where only</p> -<p><code>valueFinfo</code>s are returned when <code>finfoType</code> remains unspecified.</p> -<h4 id="example-1">Example</h4> -<p>List all the source fields on class Neutral:</p> -<pre><code> ->>> moose.getFieldDict('Neutral', 'srcFinfo') - -{'childMsg': 'int'} -</code></pre> -<h2 id="getfieldnames">getFieldNames</h2> -<p>getFieldNames(className, finfoType='valueFinfo') -> tuple</p> -<p>Get a tuple containing the name of all the fields of <code>finfoType</code></p> -<p>kind.</p> -<h4 id="parameters-4">Parameters</h4> -<p>className : string</p> -<p>Name of the class to look up.</p> -<p>finfoType : string</p> -<p>The kind of field (<code>valueFinfo</code>, <code>srcFinfo</code>, <code>destFinfo</code>,</p> -<p><code>lookupFinfo</code>, <code>fieldElementFinfo</code>.).</p> -<h2 id="isrunning">isRunning</h2> -<p>True if the simulation is currently running.</p> -<h2 id="loadmodel">loadModel</h2> -<p>loadModel(filename, modelpath, solverclass) -> moose.ematrix</p> -<p>Load model from a file to a specified path.</p> -<h4 id="parameters-5">Parameters</h4> -<p>filename : str</p> -<p>model description file.</p> -<p>modelpath : str</p> -<p>moose path for the top level element of the model to be created.</p> -<p>solverclass : str</p> -<p>(optional) solver type to be used for simulating the model.</p> -<h4 id="returns-3">Returns</h4> -<p>ematrix instance refering to the loaded model container.</p> -<h2 id="move">move</h2> -<p>Move a ematrix object to a destination.</p> -<h2 id="quit">quit</h2> -<p>Finalize MOOSE threads and quit MOOSE. This is made available for debugging purpose only. It will automatically get called when moose module is unloaded. End user should not use this function.</p> -<h2 id="reinit">reinit</h2> -<p>reinit() -> None</p> -<p>Reinitialize simulation.</p> -<p>This function (re)initializes moose simulation. It must be called</p> -<p>before you start the simulation (see moose.start). If you want to</p> -<p>continue simulation after you have called moose.reinit() and</p> -<p>moose.start(), you must NOT call moose.reinit() again. Calling</p> -<p>moose.reinit() again will take the system back to initial setting</p> -<p>(like clear out all data recording tables, set state variables to</p> -<p>their initial values, etc.</p> -<h2 id="savemodel">saveModel</h2> -<p>saveModel(source, fileame)</p> -<p>Save model rooted at <code>source</code> to file <code>filename</code>.</p> -<h4 id="parameters-6">Parameters</h4> -<p>source: ematrix or element or str</p> -<p>root of the model tree</p> -<p>filename: str</p> -<p>destination file to save the model in.</p> -<h4 id="returns-4">Returns</h4> -<p>None</p> -<h2 id="seed">seed</h2> -<p>moose.seed(seedvalue) -> None</p> -<p>Reseed MOOSE random number generator.</p> -<h4 id="parameters-7">Parameters</h4> -<p>seed: int</p> -<p>Optional value to use for seeding. If 0, a random seed is</p> -<p>automatically created using the current system time and other</p> -<p>information. If not specified, it defaults to 0.</p> -<h2 id="setclock">setClock</h2> -<p>Set the dt of a clock.</p> -<h2 id="setcwe">setCwe</h2> -<p>Set the current working element. 'ce' is an alias of this function</p> -<h2 id="start">start</h2> -<p>start(t) -> None</p> -<p>Run simulation for <code>t</code> time. Advances the simulator clock by <code>t</code></p> -<p>time.</p> -<p>After setting up a simulation, YOU MUST CALL MOOSE.REINIT() before</p> -<p>CALLING MOOSE.START() TO EXECUTE THE SIMULATION. Otherwise, the</p> -<p>simulator behaviour will be undefined. Once moose.reinit() has been</p> -<p>called, you can call moose.start(t) as many time as you like. This</p> -<p>will continue the simulation from the last state for <code>t</code> time.</p> -<h4 id="parameters-8">Parameters</h4> -<p>t : float</p> -<p>duration of simulation.</p> -<h4 id="returns-5">Returns</h4> -<p>None</p> -<h4 id="see-also">See also</h4> -<p>moose.reinit : (Re)initialize simulation</p> -<h2 id="stop">stop</h2> -<p>Stop simulation</p> -<h2 id="useclock">useClock</h2> -<p>Schedule objects on a specified clock</p> -<h2 id="wildcardfind">wildcardFind</h2> -<p>moose.wildcardFind(expression) -> tuple of ematrices.</p> -<p>Find an object by wildcard.</p> -<h4 id="parameters-9">Parameters</h4> -<p>expression: str</p> -<p>MOOSE allows wildcard expressions of the form</p> -<p>{PATH}/{WILDCARD}[{CONDITION}]</p> -<p>where {PATH} is valid path in the element tree.</p> -<p>{WILDCARD} can be <code>#</code> or <code>##</code>.</p> -<p><code>#</code> causes the search to be restricted to the children of the</p> -<p>element specified by {PATH}.</p> -<p><code>##</code> makes the search to recursively go through all the descendants</p> -<p>of the {PATH} element.</p> -<p>{CONDITION} can be</p> -<p>TYPE={CLASSNAME} : an element satisfies this condition if it is of</p> -<p>class {CLASSNAME}.</p> -<p>ISA={CLASSNAME} : alias for TYPE={CLASSNAME}</p> -<p>CLASS={CLASSNAME} : alias for TYPE={CLASSNAME}</p> -<p>FIELD({FIELDNAME}){OPERATOR}{VALUE} : compare field {FIELDNAME} with</p> -<p>{VALUE} by {OPERATOR} where {OPERATOR} is a comparison operator (=,</p> -<p>!=, >, <, >=, <=).</p> -<p>For example, /mymodel/##[FIELD(Vm)>=-65] will return a list of all</p> -<p>the objects under /mymodel whose Vm field is >= -65.</p> -<h2 id="writesbml">writeSBML</h2> -<p>Export biochemical model to an SBML file.</p> -<h2 id="doc">doc</h2> -<p>Display the documentation for class or field in a class.</p> -<h4 id="parameters-10">Parameters</h4> -<p>arg: str or moose class or instance of melement or instance of ematrix</p> -<p>argument can be a string specifying a moose class name and a field</p> -<p>name separated by a dot. e.g., 'Neutral.name'. Prepending <code>moose.</code></p> -<p>is allowed. Thus moose.doc('moose.Neutral.name') is equivalent to</p> -<p>the above.</p> -<p>argument can also be string specifying just a moose class name or</p> -<p>a moose class or a moose object (instance of melement or ematrix</p> -<p>or there subclasses). In that case, the builtin documentation for</p> -<p>the corresponding moose class is displayed.</p> -<p>paged: bool</p> -<p>Whether to display the docs via builtin pager or print and</p> -<p>exit. If not specified, it defaults to False and moose.doc(xyz)</p> -<p>will print help on xyz and return control to command line.</p> -<h2 id="getfielddoc">getfielddoc</h2> -<p>Get the documentation for field specified by</p> -<p>tokens.</p> -<p>tokens should be a two element list/tuple where first element is a</p> -<p>MOOSE class name and second is the field name.</p> -<h2 id="getmoosedoc">getmoosedoc</h2> -<p>Retrieve MOOSE builtin documentation for tokens.</p> -<p>tokens is a list or tuple containing: (classname, [fieldname])</p> -<h2 id="le">le</h2> -<p>List elements.</p> -<h4 id="parameters-11">Parameters</h4> -<p>el: str/melement/ematrix/None</p> -<p>The element or the path under which to look. If <code>None</code>, children</p> -<p>of current working element are displayed.</p> -<h2 id="listmsg">listmsg</h2> -<p>Return a list containing the incoming and outgoing messages of</p> -<p>the given object.</p> -<h2 id="pwe">pwe</h2> -<p>Print present working element. Convenience function for GENESIS</p> -<p>users.</p> -<h2 id="showfield">showfield</h2> -<p>Show the fields of the element, their data types and values in</p> -<p>human readable format. Convenience function for GENESIS users.</p> -<p>Parameters:</p> -<p>elem: str/melement instance</p> -<p>Element or path of an existing element.</p> -<p>field: str</p> -<p>Field to be displayed. If '*', all fields are displayed.</p> -<p>showtype: bool</p> -<p>If True show the data type of each field.</p> -<h2 id="showfields">showfields</h2> -<p>Convenience function. Should be deprecated if nobody uses it.</p> -<h2 id="showmsg">showmsg</h2> -<p>Prints the incoming and outgoing messages of the given object.</p> -<h2 id="syncdatahandler">syncDataHandler</h2> -<p>Synchronize data handlers for target.</p> -<p>Parameter:</p> -<p>target -- target element or path or ematrix.</p> -</body> -</html> diff --git a/docs/user/html/pymoose/_static/ajax-loader.gif b/docs/user/html/pymoose/_static/ajax-loader.gif deleted file mode 100644 index 61faf8cab23993bd3e1560bff0668bd628642330..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/ajax-loader.gif and /dev/null differ diff --git a/docs/user/html/pymoose/_static/basic.css b/docs/user/html/pymoose/_static/basic.css deleted file mode 100644 index 43e8bafaf35879a519818ef2157ad9687fb21413..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/basic.css +++ /dev/null @@ -1,540 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox input[type="text"] { - width: 170px; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - width: 30px; -} - -img { - border: 0; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable dl, table.indextable dd { - margin-top: 0; - margin-bottom: 0; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- general body styles --------------------------------------------------- */ - -a.headerlink { - visibility: hidden; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.field-list ul { - padding-left: 1em; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.field-list td, table.field-list th { - border: 0 !important; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -dl { - margin-bottom: 15px; -} - -dd p { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, .highlighted { - background-color: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.refcount { - color: #060; -} - -.optional { - font-size: 1.3em; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -tt.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -tt.descclassname { - background-color: transparent; -} - -tt.xref, a tt { - background-color: transparent; - font-weight: bold; -} - -h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/docs/user/html/pymoose/_static/comment-bright.png b/docs/user/html/pymoose/_static/comment-bright.png deleted file mode 100644 index 551517b8c83b76f734ff791f847829a760ad1903..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/comment-bright.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/comment-close.png b/docs/user/html/pymoose/_static/comment-close.png deleted file mode 100644 index 09b54be46da3f0d4a5061da289dc91d8a2cdbc9c..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/comment-close.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/comment.png b/docs/user/html/pymoose/_static/comment.png deleted file mode 100644 index 92feb52b8824c6b0f59b658b1196c61de9162a95..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/comment.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/default.css b/docs/user/html/pymoose/_static/default.css deleted file mode 100644 index 21f3f5098d74ca71c6c3f917a765fb6bf78b4dea..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/default.css +++ /dev/null @@ -1,256 +0,0 @@ -/* - * default.css_t - * ~~~~~~~~~~~~~ - * - * Sphinx stylesheet -- default theme. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -@import url("basic.css"); - -/* -- page layout ----------------------------------------------------------- */ - -body { - font-family: sans-serif; - font-size: 100%; - background-color: #11303d; - color: #000; - margin: 0; - padding: 0; -} - -div.document { - background-color: #1c4e63; -} - -div.documentwrapper { - float: left; - width: 100%; -} - -div.bodywrapper { - margin: 0 0 0 230px; -} - -div.body { - background-color: #ffffff; - color: #000000; - padding: 0 20px 30px 20px; -} - -div.footer { - color: #ffffff; - width: 100%; - padding: 9px 0 9px 0; - text-align: center; - font-size: 75%; -} - -div.footer a { - color: #ffffff; - text-decoration: underline; -} - -div.related { - background-color: #133f52; - line-height: 30px; - color: #ffffff; -} - -div.related a { - color: #ffffff; -} - -div.sphinxsidebar { -} - -div.sphinxsidebar h3 { - font-family: 'Trebuchet MS', sans-serif; - color: #ffffff; - font-size: 1.4em; - font-weight: normal; - margin: 0; - padding: 0; -} - -div.sphinxsidebar h3 a { - color: #ffffff; -} - -div.sphinxsidebar h4 { - font-family: 'Trebuchet MS', sans-serif; - color: #ffffff; - font-size: 1.3em; - font-weight: normal; - margin: 5px 0 0 0; - padding: 0; -} - -div.sphinxsidebar p { - color: #ffffff; -} - -div.sphinxsidebar p.topless { - margin: 5px 10px 10px 10px; -} - -div.sphinxsidebar ul { - margin: 10px; - padding: 0; - color: #ffffff; -} - -div.sphinxsidebar a { - color: #98dbcc; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - - - -/* -- hyperlink styles ------------------------------------------------------ */ - -a { - color: #355f7c; - text-decoration: none; -} - -a:visited { - color: #355f7c; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - - - -/* -- body styles ----------------------------------------------------------- */ - -div.body h1, -div.body h2, -div.body h3, -div.body h4, -div.body h5, -div.body h6 { - font-family: 'Trebuchet MS', sans-serif; - background-color: #f2f2f2; - font-weight: normal; - color: #20435c; - border-bottom: 1px solid #ccc; - margin: 20px -20px 10px -20px; - padding: 3px 0 3px 10px; -} - -div.body h1 { margin-top: 0; font-size: 200%; } -div.body h2 { font-size: 160%; } -div.body h3 { font-size: 140%; } -div.body h4 { font-size: 120%; } -div.body h5 { font-size: 110%; } -div.body h6 { font-size: 100%; } - -a.headerlink { - color: #c60f0f; - font-size: 0.8em; - padding: 0 4px 0 4px; - text-decoration: none; -} - -a.headerlink:hover { - background-color: #c60f0f; - color: white; -} - -div.body p, div.body dd, div.body li { - text-align: justify; - line-height: 130%; -} - -div.admonition p.admonition-title + p { - display: inline; -} - -div.admonition p { - margin-bottom: 5px; -} - -div.admonition pre { - margin-bottom: 5px; -} - -div.admonition ul, div.admonition ol { - margin-bottom: 5px; -} - -div.note { - background-color: #eee; - border: 1px solid #ccc; -} - -div.seealso { - background-color: #ffc; - border: 1px solid #ff6; -} - -div.topic { - background-color: #eee; -} - -div.warning { - background-color: #ffe4e4; - border: 1px solid #f66; -} - -p.admonition-title { - display: inline; -} - -p.admonition-title:after { - content: ":"; -} - -pre { - padding: 5px; - background-color: #eeffcc; - color: #333333; - line-height: 120%; - border: 1px solid #ac9; - border-left: none; - border-right: none; -} - -tt { - background-color: #ecf0f3; - padding: 0 1px 0 1px; - font-size: 0.95em; -} - -th { - background-color: #ede; -} - -.warning tt { - background: #efc2c2; -} - -.note tt { - background: #d6d6d6; -} - -.viewcode-back { - font-family: sans-serif; -} - -div.viewcode-block:target { - background-color: #f4debf; - border-top: 1px solid #ac9; - border-bottom: 1px solid #ac9; -} \ No newline at end of file diff --git a/docs/user/html/pymoose/_static/doctools.js b/docs/user/html/pymoose/_static/doctools.js deleted file mode 100644 index d4619fdfb10d95e06dbcb92107cc64c34f709eaf..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/doctools.js +++ /dev/null @@ -1,247 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - */ -jQuery.urldecode = function(x) { - return decodeURIComponent(x).replace(/\+/g, ' '); -} - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s == 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * small function to check if an array contains - * a given item. - */ -jQuery.contains = function(arr, item) { - for (var i = 0; i < arr.length; i++) { - if (arr[i] == item) - return true; - } - return false; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node) { - if (node.nodeType == 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { - var span = document.createElement("span"); - span.className = className; - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this); - }); - } - } - return this.each(function() { - highlight(this); - }); -}; - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated == 'undefined') - return string; - return (typeof translated == 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated == 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('<a class="headerlink">\u00B6</a>'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('<a class="headerlink">\u00B6</a>'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('<p class="highlight-link"><a href="javascript:Documentation.' + - 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) == 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this == '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/docs/user/html/pymoose/_static/down-pressed.png b/docs/user/html/pymoose/_static/down-pressed.png deleted file mode 100644 index 6f7ad782782e4f8e39b0c6e15c7344700cdd2527..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/down-pressed.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/down.png b/docs/user/html/pymoose/_static/down.png deleted file mode 100644 index 3003a88770de3977d47a2ba69893436a2860f9e7..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/down.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/file.png b/docs/user/html/pymoose/_static/file.png deleted file mode 100644 index d18082e397e7e54f20721af768c4c2983258f1b4..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/file.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/jquery.js b/docs/user/html/pymoose/_static/jquery.js deleted file mode 100644 index e2efc335e92c5ae608d55a533d11c380c651af3a..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/jquery.js +++ /dev/null @@ -1,9404 +0,0 @@ -/*! - * jQuery JavaScript Library v1.7.2 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Fri Jul 5 14:07:58 UTC 2013 - */ -(function( window, undefined ) { - -// Use the correct document accordingly with window argument (sandbox) -var document = window.document, - navigator = window.navigator, - location = window.location; -var jQuery = (function() { - -// Define a local copy of jQuery -var jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - return new jQuery.fn.init( selector, context, rootjQuery ); - }, - - // Map over jQuery in case of overwrite - _jQuery = window.jQuery, - - // Map over the $ in case of overwrite - _$ = window.$, - - // A central reference to the root jQuery(document) - rootjQuery, - - // A simple way to check for HTML strings or ID strings - // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) - quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, - - // Check if a string has a non-whitespace character in it - rnotwhite = /\S/, - - // Used for trimming whitespace - trimLeft = /^\s+/, - trimRight = /\s+$/, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, - - // JSON RegExp - rvalidchars = /^[\],:{}\s]*$/, - rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, - rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, - rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, - - // Useragent RegExp - rwebkit = /(webkit)[ \/]([\w.]+)/, - ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, - rmsie = /(msie) ([\w.]+)/, - rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, - - // Matches dashed string for camelizing - rdashAlpha = /-([a-z]|[0-9])/ig, - rmsPrefix = /^-ms-/, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return ( letter + "" ).toUpperCase(); - }, - - // Keep a UserAgent string for use with jQuery.browser - userAgent = navigator.userAgent, - - // For matching the engine and version of the browser - browserMatch, - - // The deferred used on DOM ready - readyList, - - // The ready event handler - DOMContentLoaded, - - // Save a reference to some core methods - toString = Object.prototype.toString, - hasOwn = Object.prototype.hasOwnProperty, - push = Array.prototype.push, - slice = Array.prototype.slice, - trim = String.prototype.trim, - indexOf = Array.prototype.indexOf, - - // [[Class]] -> type pairs - class2type = {}; - -jQuery.fn = jQuery.prototype = { - constructor: jQuery, - init: function( selector, context, rootjQuery ) { - var match, elem, ret, doc; - - // Handle $(""), $(null), or $(undefined) - if ( !selector ) { - return this; - } - - // Handle $(DOMElement) - if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - } - - // The body element only exists once, optimize finding it - if ( selector === "body" && !context && document.body ) { - this.context = document; - this[0] = document.body; - this.selector = selector; - this.length = 1; - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - // Are we dealing with HTML string or an ID? - if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = quickExpr.exec( selector ); - } - - // Verify a match, and that no context was specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - context = context instanceof jQuery ? context[0] : context; - doc = ( context ? context.ownerDocument || context : document ); - - // If a single string is passed in and it's a single tag - // just do a createElement and skip the rest - ret = rsingleTag.exec( selector ); - - if ( ret ) { - if ( jQuery.isPlainObject( context ) ) { - selector = [ document.createElement( ret[1] ) ]; - jQuery.fn.attr.call( selector, context, true ); - - } else { - selector = [ doc.createElement( ret[1] ) ]; - } - - } else { - ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); - selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes; - } - - return jQuery.merge( this, selector ); - - // HANDLE: $("#id") - } else { - elem = document.getElementById( match[2] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || rootjQuery ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return rootjQuery.ready( selector ); - } - - if ( selector.selector !== undefined ) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The current version of jQuery being used - jquery: "1.7.2", - - // The default length of a jQuery object is 0 - length: 0, - - // The number of elements contained in the matched element set - size: function() { - return this.length; - }, - - toArray: function() { - return slice.call( this, 0 ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this[ this.length + num ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems, name, selector ) { - // Build a new jQuery matched element set - var ret = this.constructor(); - - if ( jQuery.isArray( elems ) ) { - push.apply( ret, elems ); - - } else { - jQuery.merge( ret, elems ); - } - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - ret.context = this.context; - - if ( name === "find" ) { - ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; - } else if ( name ) { - ret.selector = this.selector + "." + name + "(" + selector + ")"; - } - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Attach the listeners - jQuery.bindReady(); - - // Add the callback - readyList.add( fn ); - - return this; - }, - - eq: function( i ) { - i = +i; - return i === -1 ? - this.slice( i ) : - this.slice( i, i + 1 ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ), - "slice", slice.call(arguments).join(",") ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[0] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( length === i ) { - target = this; - --i; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray(src) ? src : []; - - } else { - clone = src && jQuery.isPlainObject(src) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - noConflict: function( deep ) { - if ( window.$ === jQuery ) { - window.$ = _$; - } - - if ( deep && window.jQuery === jQuery ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Hold (or release) the ready event - holdReady: function( hold ) { - if ( hold ) { - jQuery.readyWait++; - } else { - jQuery.ready( true ); - } - }, - - // Handle when the DOM is ready - ready: function( wait ) { - // Either a released hold or an DOMready/load event and not yet ready - if ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready, 1 ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.fireWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.trigger ) { - jQuery( document ).trigger( "ready" ).off( "ready" ); - } - } - }, - - bindReady: function() { - if ( readyList ) { - return; - } - - readyList = jQuery.Callbacks( "once memory" ); - - // Catch cases where $(document).ready() is called after the - // browser event has already occurred. - if ( document.readyState === "complete" ) { - // Handle it asynchronously to allow scripts the opportunity to delay ready - return setTimeout( jQuery.ready, 1 ); - } - - // Mozilla, Opera and webkit nightlies currently support this event - if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", jQuery.ready, false ); - - // If IE event model is used - } else if ( document.attachEvent ) { - // ensure firing before onload, - // maybe late but safe also for iframes - document.attachEvent( "onreadystatechange", DOMContentLoaded ); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", jQuery.ready ); - - // If IE and not a frame - // continually check to see if the document is ready - var toplevel = false; - - try { - toplevel = window.frameElement == null; - } catch(e) {} - - if ( document.documentElement.doScroll && toplevel ) { - doScrollCheck(); - } - } - }, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type(obj) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, - - isWindow: function( obj ) { - return obj != null && obj == obj.window; - }, - - isNumeric: function( obj ) { - return !isNaN( parseFloat(obj) ) && isFinite( obj ); - }, - - type: function( obj ) { - return obj == null ? - String( obj ) : - class2type[ toString.call(obj) ] || "object"; - }, - - isPlainObject: function( obj ) { - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - try { - // Not own constructor property must be Object - if ( obj.constructor && - !hasOwn.call(obj, "constructor") && - !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - } catch ( e ) { - // IE8,9 Will throw exceptions on certain host objects #9897 - return false; - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - - var key; - for ( key in obj ) {} - - return key === undefined || hasOwn.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - for ( var name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw new Error( msg ); - }, - - parseJSON: function( data ) { - if ( typeof data !== "string" || !data ) { - return null; - } - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - // Attempt to parse using the native JSON parser first - if ( window.JSON && window.JSON.parse ) { - return window.JSON.parse( data ); - } - - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( rvalidchars.test( data.replace( rvalidescape, "@" ) - .replace( rvalidtokens, "]" ) - .replace( rvalidbraces, "")) ) { - - return ( new Function( "return " + data ) )(); - - } - jQuery.error( "Invalid JSON: " + data ); - }, - - // Cross-browser xml parsing - parseXML: function( data ) { - if ( typeof data !== "string" || !data ) { - return null; - } - var xml, tmp; - try { - if ( window.DOMParser ) { // Standard - tmp = new DOMParser(); - xml = tmp.parseFromString( data , "text/xml" ); - } else { // IE - xml = new ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - } catch( e ) { - xml = undefined; - } - if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; - }, - - noop: function() {}, - - // Evaluates a script in a global context - // Workarounds based on findings by Jim Driscoll - // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context - globalEval: function( data ) { - if ( data && rnotwhite.test( data ) ) { - // We use execScript on Internet Explorer - // We use an anonymous function so that context is window - // rather than jQuery in Firefox - ( window.execScript || function( data ) { - window[ "eval" ].call( window, data ); - } )( data ); - } - }, - - // Convert dashed to camelCase; used by the css and data modules - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); - }, - - // args is for internal usage only - each: function( object, callback, args ) { - var name, i = 0, - length = object.length, - isObj = length === undefined || jQuery.isFunction( object ); - - if ( args ) { - if ( isObj ) { - for ( name in object ) { - if ( callback.apply( object[ name ], args ) === false ) { - break; - } - } - } else { - for ( ; i < length; ) { - if ( callback.apply( object[ i++ ], args ) === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isObj ) { - for ( name in object ) { - if ( callback.call( object[ name ], name, object[ name ] ) === false ) { - break; - } - } - } else { - for ( ; i < length; ) { - if ( callback.call( object[ i ], i, object[ i++ ] ) === false ) { - break; - } - } - } - } - - return object; - }, - - // Use native String.trim function wherever possible - trim: trim ? - function( text ) { - return text == null ? - "" : - trim.call( text ); - } : - - // Otherwise use our own trimming functionality - function( text ) { - return text == null ? - "" : - text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); - }, - - // results is for internal usage only - makeArray: function( array, results ) { - var ret = results || []; - - if ( array != null ) { - // The window, strings (and functions) also have 'length' - // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 - var type = jQuery.type( array ); - - if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { - push.call( ret, array ); - } else { - jQuery.merge( ret, array ); - } - } - - return ret; - }, - - inArray: function( elem, array, i ) { - var len; - - if ( array ) { - if ( indexOf ) { - return indexOf.call( array, elem, i ); - } - - len = array.length; - i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; - - for ( ; i < len; i++ ) { - // Skip accessing in sparse arrays - if ( i in array && array[ i ] === elem ) { - return i; - } - } - } - - return -1; - }, - - merge: function( first, second ) { - var i = first.length, - j = 0; - - if ( typeof second.length === "number" ) { - for ( var l = second.length; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var ret = [], retVal; - inv = !!inv; - - // Go through the array, only saving the items - // that pass the validator function - for ( var i = 0, length = elems.length; i < length; i++ ) { - retVal = !!callback( elems[ i ], i ); - if ( inv !== retVal ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var value, key, ret = [], - i = 0, - length = elems.length, - // jquery objects are treated as arrays - isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; - - // Go through the array, translating each of the items to their - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - // Go through every key on the object, - } else { - for ( key in elems ) { - value = callback( elems[ key ], key, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - } - - // Flatten any nested arrays - return ret.concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - if ( typeof context === "string" ) { - var tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - var args = slice.call( arguments, 2 ), - proxy = function() { - return fn.apply( context, args.concat( slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; - - return proxy; - }, - - // Mutifunctional method to get and set values to a collection - // The value/s can optionally be executed if it's a function - access: function( elems, fn, key, value, chainable, emptyGet, pass ) { - var exec, - bulk = key == null, - i = 0, - length = elems.length; - - // Sets many values - if ( key && typeof key === "object" ) { - for ( i in key ) { - jQuery.access( elems, fn, i, key[i], 1, emptyGet, value ); - } - chainable = 1; - - // Sets one value - } else if ( value !== undefined ) { - // Optionally, function values get executed if exec is true - exec = pass === undefined && jQuery.isFunction( value ); - - if ( bulk ) { - // Bulk operations only iterate when executing function values - if ( exec ) { - exec = fn; - fn = function( elem, key, value ) { - return exec.call( jQuery( elem ), value ); - }; - - // Otherwise they run against the entire set - } else { - fn.call( elems, value ); - fn = null; - } - } - - if ( fn ) { - for (; i < length; i++ ) { - fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); - } - } - - chainable = 1; - } - - return chainable ? - elems : - - // Gets - bulk ? - fn.call( elems ) : - length ? fn( elems[0], key ) : emptyGet; - }, - - now: function() { - return ( new Date() ).getTime(); - }, - - // Use of jQuery.browser is frowned upon. - // More details: http://docs.jquery.com/Utilities/jQuery.browser - uaMatch: function( ua ) { - ua = ua.toLowerCase(); - - var match = rwebkit.exec( ua ) || - ropera.exec( ua ) || - rmsie.exec( ua ) || - ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || - []; - - return { browser: match[1] || "", version: match[2] || "0" }; - }, - - sub: function() { - function jQuerySub( selector, context ) { - return new jQuerySub.fn.init( selector, context ); - } - jQuery.extend( true, jQuerySub, this ); - jQuerySub.superclass = this; - jQuerySub.fn = jQuerySub.prototype = this(); - jQuerySub.fn.constructor = jQuerySub; - jQuerySub.sub = this.sub; - jQuerySub.fn.init = function init( selector, context ) { - if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { - context = jQuerySub( context ); - } - - return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); - }; - jQuerySub.fn.init.prototype = jQuerySub.fn; - var rootjQuerySub = jQuerySub(document); - return jQuerySub; - }, - - browser: {} -}); - -// Populate the class2type map -jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -}); - -browserMatch = jQuery.uaMatch( userAgent ); -if ( browserMatch.browser ) { - jQuery.browser[ browserMatch.browser ] = true; - jQuery.browser.version = browserMatch.version; -} - -// Deprecated, use jQuery.browser.webkit instead -if ( jQuery.browser.webkit ) { - jQuery.browser.safari = true; -} - -// IE doesn't match non-breaking spaces with \s -if ( rnotwhite.test( "\xA0" ) ) { - trimLeft = /^[\s\xA0]+/; - trimRight = /[\s\xA0]+$/; -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); - -// Cleanup functions for the document ready method -if ( document.addEventListener ) { - DOMContentLoaded = function() { - document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - jQuery.ready(); - }; - -} else if ( document.attachEvent ) { - DOMContentLoaded = function() { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( document.readyState === "complete" ) { - document.detachEvent( "onreadystatechange", DOMContentLoaded ); - jQuery.ready(); - } - }; -} - -// The DOM ready check for Internet Explorer -function doScrollCheck() { - if ( jQuery.isReady ) { - return; - } - - try { - // If IE is used, use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - document.documentElement.doScroll("left"); - } catch(e) { - setTimeout( doScrollCheck, 1 ); - return; - } - - // and execute any waiting functions - jQuery.ready(); -} - -return jQuery; - -})(); - - -// String to Object flags format cache -var flagsCache = {}; - -// Convert String-formatted flags into Object-formatted ones and store in cache -function createFlags( flags ) { - var object = flagsCache[ flags ] = {}, - i, length; - flags = flags.split( /\s+/ ); - for ( i = 0, length = flags.length; i < length; i++ ) { - object[ flags[i] ] = true; - } - return object; -} - -/* - * Create a callback list using the following parameters: - * - * flags: an optional list of space-separated flags that will change how - * the callback list behaves - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible flags: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( flags ) { - - // Convert flags from String-formatted to Object-formatted - // (we check in cache first) - flags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {}; - - var // Actual callback list - list = [], - // Stack of fire calls for repeatable lists - stack = [], - // Last fire value (for non-forgettable lists) - memory, - // Flag to know if list was already fired - fired, - // Flag to know if list is currently firing - firing, - // First callback to fire (used internally by add and fireWith) - firingStart, - // End of the loop when firing - firingLength, - // Index of currently firing callback (modified by remove if needed) - firingIndex, - // Add one or several callbacks to the list - add = function( args ) { - var i, - length, - elem, - type, - actual; - for ( i = 0, length = args.length; i < length; i++ ) { - elem = args[ i ]; - type = jQuery.type( elem ); - if ( type === "array" ) { - // Inspect recursively - add( elem ); - } else if ( type === "function" ) { - // Add if not in unique mode and callback is not in - if ( !flags.unique || !self.has( elem ) ) { - list.push( elem ); - } - } - } - }, - // Fire callbacks - fire = function( context, args ) { - args = args || []; - memory = !flags.memory || [ context, args ]; - fired = true; - firing = true; - firingIndex = firingStart || 0; - firingStart = 0; - firingLength = list.length; - for ( ; list && firingIndex < firingLength; firingIndex++ ) { - if ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) { - memory = true; // Mark as halted - break; - } - } - firing = false; - if ( list ) { - if ( !flags.once ) { - if ( stack && stack.length ) { - memory = stack.shift(); - self.fireWith( memory[ 0 ], memory[ 1 ] ); - } - } else if ( memory === true ) { - self.disable(); - } else { - list = []; - } - } - }, - // Actual Callbacks object - self = { - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - var length = list.length; - add( arguments ); - // Do we need to add the callbacks to the - // current firing batch? - if ( firing ) { - firingLength = list.length; - // With memory, if we're not firing then - // we should call right away, unless previous - // firing was halted (stopOnFalse) - } else if ( memory && memory !== true ) { - firingStart = length; - fire( memory[ 0 ], memory[ 1 ] ); - } - } - return this; - }, - // Remove a callback from the list - remove: function() { - if ( list ) { - var args = arguments, - argIndex = 0, - argLength = args.length; - for ( ; argIndex < argLength ; argIndex++ ) { - for ( var i = 0; i < list.length; i++ ) { - if ( args[ argIndex ] === list[ i ] ) { - // Handle firingIndex and firingLength - if ( firing ) { - if ( i <= firingLength ) { - firingLength--; - if ( i <= firingIndex ) { - firingIndex--; - } - } - } - // Remove the element - list.splice( i--, 1 ); - // If we have some unicity property then - // we only need to do this once - if ( flags.unique ) { - break; - } - } - } - } - } - return this; - }, - // Control if a given callback is in the list - has: function( fn ) { - if ( list ) { - var i = 0, - length = list.length; - for ( ; i < length; i++ ) { - if ( fn === list[ i ] ) { - return true; - } - } - } - return false; - }, - // Remove all callbacks from the list - empty: function() { - list = []; - return this; - }, - // Have the list do nothing anymore - disable: function() { - list = stack = memory = undefined; - return this; - }, - // Is it disabled? - disabled: function() { - return !list; - }, - // Lock the list in its current state - lock: function() { - stack = undefined; - if ( !memory || memory === true ) { - self.disable(); - } - return this; - }, - // Is it locked? - locked: function() { - return !stack; - }, - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( stack ) { - if ( firing ) { - if ( !flags.once ) { - stack.push( [ context, args ] ); - } - } else if ( !( flags.once && memory ) ) { - fire( context, args ); - } - } - return this; - }, - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - - - -var // Static reference to slice - sliceDeferred = [].slice; - -jQuery.extend({ - - Deferred: function( func ) { - var doneList = jQuery.Callbacks( "once memory" ), - failList = jQuery.Callbacks( "once memory" ), - progressList = jQuery.Callbacks( "memory" ), - state = "pending", - lists = { - resolve: doneList, - reject: failList, - notify: progressList - }, - promise = { - done: doneList.add, - fail: failList.add, - progress: progressList.add, - - state: function() { - return state; - }, - - // Deprecated - isResolved: doneList.fired, - isRejected: failList.fired, - - then: function( doneCallbacks, failCallbacks, progressCallbacks ) { - deferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks ); - return this; - }, - always: function() { - deferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments ); - return this; - }, - pipe: function( fnDone, fnFail, fnProgress ) { - return jQuery.Deferred(function( newDefer ) { - jQuery.each( { - done: [ fnDone, "resolve" ], - fail: [ fnFail, "reject" ], - progress: [ fnProgress, "notify" ] - }, function( handler, data ) { - var fn = data[ 0 ], - action = data[ 1 ], - returned; - if ( jQuery.isFunction( fn ) ) { - deferred[ handler ](function() { - returned = fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify ); - } else { - newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); - } - }); - } else { - deferred[ handler ]( newDefer[ action ] ); - } - }); - }).promise(); - }, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - if ( obj == null ) { - obj = promise; - } else { - for ( var key in promise ) { - obj[ key ] = promise[ key ]; - } - } - return obj; - } - }, - deferred = promise.promise({}), - key; - - for ( key in lists ) { - deferred[ key ] = lists[ key ].fire; - deferred[ key + "With" ] = lists[ key ].fireWith; - } - - // Handle state - deferred.done( function() { - state = "resolved"; - }, failList.disable, progressList.lock ).fail( function() { - state = "rejected"; - }, doneList.disable, progressList.lock ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( firstParam ) { - var args = sliceDeferred.call( arguments, 0 ), - i = 0, - length = args.length, - pValues = new Array( length ), - count = length, - pCount = length, - deferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ? - firstParam : - jQuery.Deferred(), - promise = deferred.promise(); - function resolveFunc( i ) { - return function( value ) { - args[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; - if ( !( --count ) ) { - deferred.resolveWith( deferred, args ); - } - }; - } - function progressFunc( i ) { - return function( value ) { - pValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; - deferred.notifyWith( promise, pValues ); - }; - } - if ( length > 1 ) { - for ( ; i < length; i++ ) { - if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) { - args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) ); - } else { - --count; - } - } - if ( !count ) { - deferred.resolveWith( deferred, args ); - } - } else if ( deferred !== firstParam ) { - deferred.resolveWith( deferred, length ? [ firstParam ] : [] ); - } - return promise; - } -}); - - - - -jQuery.support = (function() { - - var support, - all, - a, - select, - opt, - input, - fragment, - tds, - events, - eventName, - i, - isSupported, - div = document.createElement( "div" ), - documentElement = document.documentElement; - - // Preliminary tests - div.setAttribute("className", "t"); - div.innerHTML = " <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>"; - - all = div.getElementsByTagName( "*" ); - a = div.getElementsByTagName( "a" )[ 0 ]; - - // Can't get basic test support - if ( !all || !all.length || !a ) { - return {}; - } - - // First batch of supports tests - select = document.createElement( "select" ); - opt = select.appendChild( document.createElement("option") ); - input = div.getElementsByTagName( "input" )[ 0 ]; - - support = { - // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: ( div.firstChild.nodeType === 3 ), - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - tbody: !div.getElementsByTagName("tbody").length, - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - htmlSerialize: !!div.getElementsByTagName("link").length, - - // Get the style information from getAttribute - // (IE uses .cssText instead) - style: /top/.test( a.getAttribute("style") ), - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: ( a.getAttribute("href") === "/a" ), - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.55/.test( a.style.opacity ), - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - - // Make sure that if no value is specified for a checkbox - // that it defaults to "on". - // (WebKit defaults to "" instead) - checkOn: ( input.value === "on" ), - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - optSelected: opt.selected, - - // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) - getSetAttribute: div.className !== "t", - - // Tests for enctype support on a form(#6743) - enctype: !!document.createElement("form").enctype, - - // Makes sure cloning an html5 element does not cause problems - // Where outerHTML is undefined, this still works - html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>", - - // Will be defined later - submitBubbles: true, - changeBubbles: true, - focusinBubbles: false, - deleteExpando: true, - noCloneEvent: true, - inlineBlockNeedsLayout: false, - shrinkWrapBlocks: false, - reliableMarginRight: true, - pixelMargin: true - }; - - // jQuery.boxModel DEPRECATED in 1.3, use jQuery.support.boxModel instead - jQuery.boxModel = support.boxModel = (document.compatMode === "CSS1Compat"); - - // Make sure checked status is properly cloned - input.checked = true; - support.noCloneChecked = input.cloneNode( true ).checked; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as disabled) - select.disabled = true; - support.optDisabled = !opt.disabled; - - // Test to see if it's possible to delete an expando from an element - // Fails in Internet Explorer - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - - if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { - div.attachEvent( "onclick", function() { - // Cloning a node shouldn't copy over any - // bound event handlers (IE does this) - support.noCloneEvent = false; - }); - div.cloneNode( true ).fireEvent( "onclick" ); - } - - // Check if a radio maintains its value - // after being appended to the DOM - input = document.createElement("input"); - input.value = "t"; - input.setAttribute("type", "radio"); - support.radioValue = input.value === "t"; - - input.setAttribute("checked", "checked"); - - // #11217 - WebKit loses check when the name is after the checked attribute - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - fragment = document.createDocumentFragment(); - fragment.appendChild( div.lastChild ); - - // WebKit doesn't clone checked state correctly in fragments - support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - support.appendChecked = input.checked; - - fragment.removeChild( input ); - fragment.appendChild( div ); - - // Technique from Juriy Zaytsev - // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ - // We only care about the case where non-standard event systems - // are used, namely in IE. Short-circuiting here helps us to - // avoid an eval call (in setAttribute) which can cause CSP - // to go haywire. See: https://developer.mozilla.org/en/Security/CSP - if ( div.attachEvent ) { - for ( i in { - submit: 1, - change: 1, - focusin: 1 - }) { - eventName = "on" + i; - isSupported = ( eventName in div ); - if ( !isSupported ) { - div.setAttribute( eventName, "return;" ); - isSupported = ( typeof div[ eventName ] === "function" ); - } - support[ i + "Bubbles" ] = isSupported; - } - } - - fragment.removeChild( div ); - - // Null elements to avoid leaks in IE - fragment = select = opt = div = input = null; - - // Run tests that need a body at doc ready - jQuery(function() { - var container, outer, inner, table, td, offsetSupport, - marginDiv, conMarginTop, style, html, positionTopLeftWidthHeight, - paddingMarginBorderVisibility, paddingMarginBorder, - body = document.getElementsByTagName("body")[0]; - - if ( !body ) { - // Return for frameset docs that don't have a body - return; - } - - conMarginTop = 1; - paddingMarginBorder = "padding:0;margin:0;border:"; - positionTopLeftWidthHeight = "position:absolute;top:0;left:0;width:1px;height:1px;"; - paddingMarginBorderVisibility = paddingMarginBorder + "0;visibility:hidden;"; - style = "style='" + positionTopLeftWidthHeight + paddingMarginBorder + "5px solid #000;"; - html = "<div " + style + "display:block;'><div style='" + paddingMarginBorder + "0;display:block;overflow:hidden;'></div></div>" + - "<table " + style + "' cellpadding='0' cellspacing='0'>" + - "<tr><td></td></tr></table>"; - - container = document.createElement("div"); - container.style.cssText = paddingMarginBorderVisibility + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px"; - body.insertBefore( container, body.firstChild ); - - // Construct the test element - div = document.createElement("div"); - container.appendChild( div ); - - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - // (only IE 8 fails this test) - div.innerHTML = "<table><tr><td style='" + paddingMarginBorder + "0;display:none'></td><td>t</td></tr></table>"; - tds = div.getElementsByTagName( "td" ); - isSupported = ( tds[ 0 ].offsetHeight === 0 ); - - tds[ 0 ].style.display = ""; - tds[ 1 ].style.display = "none"; - - // Check if empty table cells still have offsetWidth/Height - // (IE <= 8 fail this test) - support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); - - // Check if div with explicit width and no margin-right incorrectly - // gets computed margin-right based on width of container. For more - // info see bug #3333 - // Fails in WebKit before Feb 2011 nightlies - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - if ( window.getComputedStyle ) { - div.innerHTML = ""; - marginDiv = document.createElement( "div" ); - marginDiv.style.width = "0"; - marginDiv.style.marginRight = "0"; - div.style.width = "2px"; - div.appendChild( marginDiv ); - support.reliableMarginRight = - ( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0; - } - - if ( typeof div.style.zoom !== "undefined" ) { - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - // (IE < 8 does this) - div.innerHTML = ""; - div.style.width = div.style.padding = "1px"; - div.style.border = 0; - div.style.overflow = "hidden"; - div.style.display = "inline"; - div.style.zoom = 1; - support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); - - // Check if elements with layout shrink-wrap their children - // (IE 6 does this) - div.style.display = "block"; - div.style.overflow = "visible"; - div.innerHTML = "<div style='width:5px;'></div>"; - support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); - } - - div.style.cssText = positionTopLeftWidthHeight + paddingMarginBorderVisibility; - div.innerHTML = html; - - outer = div.firstChild; - inner = outer.firstChild; - td = outer.nextSibling.firstChild.firstChild; - - offsetSupport = { - doesNotAddBorder: ( inner.offsetTop !== 5 ), - doesAddBorderForTableAndCells: ( td.offsetTop === 5 ) - }; - - inner.style.position = "fixed"; - inner.style.top = "20px"; - - // safari subtracts parent border width here which is 5px - offsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 ); - inner.style.position = inner.style.top = ""; - - outer.style.overflow = "hidden"; - outer.style.position = "relative"; - - offsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 ); - offsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop ); - - if ( window.getComputedStyle ) { - div.style.marginTop = "1%"; - support.pixelMargin = ( window.getComputedStyle( div, null ) || { marginTop: 0 } ).marginTop !== "1%"; - } - - if ( typeof container.style.zoom !== "undefined" ) { - container.style.zoom = 1; - } - - body.removeChild( container ); - marginDiv = div = container = null; - - jQuery.extend( support, offsetSupport ); - }); - - return support; -})(); - - - - -var rbrace = /^(?:\{.*\}|\[.*\])$/, - rmultiDash = /([A-Z])/g; - -jQuery.extend({ - cache: {}, - - // Please use with caution - uuid: 0, - - // Unique for each copy of jQuery on the page - // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "embed": true, - // Ban all objects except for Flash (which handle expandos) - "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", - "applet": true - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - return !!elem && !isEmptyDataObject( elem ); - }, - - data: function( elem, name, data, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var privateCache, thisCache, ret, - internalKey = jQuery.expando, - getByName = typeof name === "string", - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey, - isEvents = name === "events"; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - elem[ internalKey ] = id = ++jQuery.uuid; - } else { - id = internalKey; - } - } - - if ( !cache[ id ] ) { - cache[ id ] = {}; - - // Avoids exposing jQuery metadata on plain JS objects when the object - // is serialized using JSON.stringify - if ( !isNode ) { - cache[ id ].toJSON = jQuery.noop; - } - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" || typeof name === "function" ) { - if ( pvt ) { - cache[ id ] = jQuery.extend( cache[ id ], name ); - } else { - cache[ id ].data = jQuery.extend( cache[ id ].data, name ); - } - } - - privateCache = thisCache = cache[ id ]; - - // jQuery data() is stored in a separate object inside the object's internal data - // cache in order to avoid key collisions between internal data and user-defined - // data. - if ( !pvt ) { - if ( !thisCache.data ) { - thisCache.data = {}; - } - - thisCache = thisCache.data; - } - - if ( data !== undefined ) { - thisCache[ jQuery.camelCase( name ) ] = data; - } - - // Users should not attempt to inspect the internal events object using jQuery.data, - // it is undocumented and subject to change. But does anyone listen? No. - if ( isEvents && !thisCache[ name ] ) { - return privateCache.events; - } - - // Check for both converted-to-camel and non-converted data property names - // If a data property was specified - if ( getByName ) { - - // First Try to find as-is property data - ret = thisCache[ name ]; - - // Test for null|undefined property data - if ( ret == null ) { - - // Try to find the camelCased property - ret = thisCache[ jQuery.camelCase( name ) ]; - } - } else { - ret = thisCache; - } - - return ret; - }, - - removeData: function( elem, name, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var thisCache, i, l, - - // Reference to internal data cache key - internalKey = jQuery.expando, - - isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - - // See jQuery.data for more information - id = isNode ? elem[ internalKey ] : internalKey; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - - thisCache = pvt ? cache[ id ] : cache[ id ].data; - - if ( thisCache ) { - - // Support array or space separated string names for data keys - if ( !jQuery.isArray( name ) ) { - - // try the string as a key before any manipulation - if ( name in thisCache ) { - name = [ name ]; - } else { - - // split the camel cased version by spaces unless a key with the spaces exists - name = jQuery.camelCase( name ); - if ( name in thisCache ) { - name = [ name ]; - } else { - name = name.split( " " ); - } - } - } - - for ( i = 0, l = name.length; i < l; i++ ) { - delete thisCache[ name[i] ]; - } - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( !pvt ) { - delete cache[ id ].data; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !isEmptyDataObject(cache[ id ]) ) { - return; - } - } - - // Browsers that fail expando deletion also refuse to delete expandos on - // the window, but it will allow it on all other JS objects; other browsers - // don't care - // Ensure that `cache` is not a window object #10080 - if ( jQuery.support.deleteExpando || !cache.setInterval ) { - delete cache[ id ]; - } else { - cache[ id ] = null; - } - - // We destroyed the cache and need to eliminate the expando on the node to avoid - // false lookups in the cache for entries that no longer exist - if ( isNode ) { - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( jQuery.support.deleteExpando ) { - delete elem[ internalKey ]; - } else if ( elem.removeAttribute ) { - elem.removeAttribute( internalKey ); - } else { - elem[ internalKey ] = null; - } - } - }, - - // For internal use only. - _data: function( elem, name, data ) { - return jQuery.data( elem, name, data, true ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - if ( elem.nodeName ) { - var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; - - if ( match ) { - return !(match === true || elem.getAttribute("classid") !== match); - } - } - - return true; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var parts, part, attr, name, l, - elem = this[0], - i = 0, - data = null; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = jQuery.data( elem ); - - if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { - attr = elem.attributes; - for ( l = attr.length; i < l; i++ ) { - name = attr[i].name; - - if ( name.indexOf( "data-" ) === 0 ) { - name = jQuery.camelCase( name.substring(5) ); - - dataAttr( elem, name, data[ name ] ); - } - } - jQuery._data( elem, "parsedAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - parts = key.split( ".", 2 ); - parts[1] = parts[1] ? "." + parts[1] : ""; - part = parts[1] + "!"; - - return jQuery.access( this, function( value ) { - - if ( value === undefined ) { - data = this.triggerHandler( "getData" + part, [ parts[0] ] ); - - // Try to fetch any internally stored data first - if ( data === undefined && elem ) { - data = jQuery.data( elem, key ); - data = dataAttr( elem, key, data ); - } - - return data === undefined && parts[1] ? - this.data( parts[0] ) : - data; - } - - parts[1] = value; - this.each(function() { - var self = jQuery( this ); - - self.triggerHandler( "setData" + part, parts ); - jQuery.data( this, key, value ); - self.triggerHandler( "changeData" + part, parts ); - }); - }, null, value, arguments.length > 1, null, false ); - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - - var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); - - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - jQuery.isNumeric( data ) ? +data : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - -// checks a cache object for emptiness -function isEmptyDataObject( obj ) { - for ( var name in obj ) { - - // if the public data object is empty, the private is still empty - if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { - continue; - } - if ( name !== "toJSON" ) { - return false; - } - } - - return true; -} - - - - -function handleQueueMarkDefer( elem, type, src ) { - var deferDataKey = type + "defer", - queueDataKey = type + "queue", - markDataKey = type + "mark", - defer = jQuery._data( elem, deferDataKey ); - if ( defer && - ( src === "queue" || !jQuery._data(elem, queueDataKey) ) && - ( src === "mark" || !jQuery._data(elem, markDataKey) ) ) { - // Give room for hard-coded callbacks to fire first - // and eventually mark/queue something else on the element - setTimeout( function() { - if ( !jQuery._data( elem, queueDataKey ) && - !jQuery._data( elem, markDataKey ) ) { - jQuery.removeData( elem, deferDataKey, true ); - defer.fire(); - } - }, 0 ); - } -} - -jQuery.extend({ - - _mark: function( elem, type ) { - if ( elem ) { - type = ( type || "fx" ) + "mark"; - jQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 ); - } - }, - - _unmark: function( force, elem, type ) { - if ( force !== true ) { - type = elem; - elem = force; - force = false; - } - if ( elem ) { - type = type || "fx"; - var key = type + "mark", - count = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 ); - if ( count ) { - jQuery._data( elem, key, count ); - } else { - jQuery.removeData( elem, key, true ); - handleQueueMarkDefer( elem, type, "mark" ); - } - } - }, - - queue: function( elem, type, data ) { - var q; - if ( elem ) { - type = ( type || "fx" ) + "queue"; - q = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !q || jQuery.isArray(data) ) { - q = jQuery._data( elem, type, jQuery.makeArray(data) ); - } else { - q.push( data ); - } - } - return q || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - fn = queue.shift(), - hooks = {}; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - } - - if ( fn ) { - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - jQuery._data( elem, type + ".run", hooks ); - fn.call( elem, function() { - jQuery.dequeue( elem, type ); - }, hooks ); - } - - if ( !queue.length ) { - jQuery.removeData( elem, type + "queue " + type + ".run", true ); - handleQueueMarkDefer( elem, type, "queue" ); - } - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[0], type ); - } - - return data === undefined ? - this : - this.each(function() { - var queue = jQuery.queue( this, type, data ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = setTimeout( next, time ); - hooks.stop = function() { - clearTimeout( timeout ); - }; - }); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, object ) { - if ( typeof type !== "string" ) { - object = type; - type = undefined; - } - type = type || "fx"; - var defer = jQuery.Deferred(), - elements = this, - i = elements.length, - count = 1, - deferDataKey = type + "defer", - queueDataKey = type + "queue", - markDataKey = type + "mark", - tmp; - function resolve() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - } - while( i-- ) { - if (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) || - ( jQuery.data( elements[ i ], queueDataKey, undefined, true ) || - jQuery.data( elements[ i ], markDataKey, undefined, true ) ) && - jQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( "once memory" ), true ) )) { - count++; - tmp.add( resolve ); - } - } - resolve(); - return defer.promise( object ); - } -}); - - - - -var rclass = /[\n\t\r]/g, - rspace = /\s+/, - rreturn = /\r/g, - rtype = /^(?:button|input)$/i, - rfocusable = /^(?:button|input|object|select|textarea)$/i, - rclickable = /^a(?:rea)?$/i, - rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, - getSetAttribute = jQuery.support.getSetAttribute, - nodeHook, boolHook, fixSpecified; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each(function() { - jQuery.removeAttr( this, name ); - }); - }, - - prop: function( name, value ) { - return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - name = jQuery.propFix[ name ] || name; - return this.each(function() { - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch( e ) {} - }); - }, - - addClass: function( value ) { - var classNames, i, l, elem, - setClass, c, cl; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).addClass( value.call(this, j, this.className) ); - }); - } - - if ( value && typeof value === "string" ) { - classNames = value.split( rspace ); - - for ( i = 0, l = this.length; i < l; i++ ) { - elem = this[ i ]; - - if ( elem.nodeType === 1 ) { - if ( !elem.className && classNames.length === 1 ) { - elem.className = value; - - } else { - setClass = " " + elem.className + " "; - - for ( c = 0, cl = classNames.length; c < cl; c++ ) { - if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) { - setClass += classNames[ c ] + " "; - } - } - elem.className = jQuery.trim( setClass ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classNames, i, l, elem, className, c, cl; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).removeClass( value.call(this, j, this.className) ); - }); - } - - if ( (value && typeof value === "string") || value === undefined ) { - classNames = ( value || "" ).split( rspace ); - - for ( i = 0, l = this.length; i < l; i++ ) { - elem = this[ i ]; - - if ( elem.nodeType === 1 && elem.className ) { - if ( value ) { - className = (" " + elem.className + " ").replace( rclass, " " ); - for ( c = 0, cl = classNames.length; c < cl; c++ ) { - className = className.replace(" " + classNames[ c ] + " ", " "); - } - elem.className = jQuery.trim( className ); - - } else { - elem.className = ""; - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( i ) { - jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - state = stateVal, - classNames = value.split( rspace ); - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space seperated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - } else if ( type === "undefined" || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // toggle whole className - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " ", - i = 0, - l = this.length; - for ( ; i < l; i++ ) { - if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - var hooks, ret, isFunction, - elem = this[0]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { - return ret; - } - - ret = elem.value; - - return typeof ret === "string" ? - // handle most common string cases - ret.replace(rreturn, "") : - // handle cases where value is null/undef or number - ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each(function( i ) { - var self = jQuery(this), val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, self.val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray( val ) ) { - val = jQuery.map(val, function ( value ) { - return value == null ? "" : value + ""; - }); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - valHooks: { - option: { - get: function( elem ) { - // attributes.value is undefined in Blackberry 4.7 but - // uses .value. See #6932 - var val = elem.attributes.value; - return !val || val.specified ? elem.value : elem.text; - } - }, - select: { - get: function( elem ) { - var value, i, max, option, - index = elem.selectedIndex, - values = [], - options = elem.options, - one = elem.type === "select-one"; - - // Nothing was selected - if ( index < 0 ) { - return null; - } - - // Loop through all the selected options - i = one ? index : 0; - max = one ? index + 1 : options.length; - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Don't return options that are disabled or in a disabled optgroup - if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && - (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - // Fixes Bug #2551 -- select.val() broken in IE after form.reset() - if ( one && !values.length && options.length ) { - return jQuery( options[ index ] ).val(); - } - - return values; - }, - - set: function( elem, value ) { - var values = jQuery.makeArray( value ); - - jQuery(elem).find("option").each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { - elem.selectedIndex = -1; - } - return values; - } - } - }, - - attrFn: { - val: true, - css: true, - html: true, - text: true, - data: true, - width: true, - height: true, - offset: true - }, - - attr: function( elem, name, value, pass ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( pass && name in jQuery.attrFn ) { - return jQuery( elem )[ name ]( value ); - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - // All attributes are lowercase - // Grab necessary hook if one is defined - if ( notxml ) { - name = name.toLowerCase(); - hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); - } - - if ( value !== undefined ) { - - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - - } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - elem.setAttribute( name, "" + value ); - return value; - } - - } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - - ret = elem.getAttribute( name ); - - // Non-existent attributes return null, we normalize to undefined - return ret === null ? - undefined : - ret; - } - }, - - removeAttr: function( elem, value ) { - var propName, attrNames, name, l, isBool, - i = 0; - - if ( value && elem.nodeType === 1 ) { - attrNames = value.toLowerCase().split( rspace ); - l = attrNames.length; - - for ( ; i < l; i++ ) { - name = attrNames[ i ]; - - if ( name ) { - propName = jQuery.propFix[ name ] || name; - isBool = rboolean.test( name ); - - // See #9699 for explanation of this approach (setting first, then removal) - // Do not do this for boolean attributes (see #10870) - if ( !isBool ) { - jQuery.attr( elem, name, "" ); - } - elem.removeAttribute( getSetAttribute ? name : propName ); - - // Set corresponding property to false for boolean attributes - if ( isBool && propName in elem ) { - elem[ propName ] = false; - } - } - } - } - }, - - attrHooks: { - type: { - set: function( elem, value ) { - // We can't allow the type property to be changed (since it causes problems in IE) - if ( rtype.test( elem.nodeName ) && elem.parentNode ) { - jQuery.error( "type property can't be changed" ); - } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { - // Setting the type on a radio button after the value resets the value in IE6-9 - // Reset value to it's default in case type is set after value - // This is for element creation - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - }, - // Use the value property for back compat - // Use the nodeHook for button elements in IE6/7 (#1954) - value: { - get: function( elem, name ) { - if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { - return nodeHook.get( elem, name ); - } - return name in elem ? - elem.value : - null; - }, - set: function( elem, value, name ) { - if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { - return nodeHook.set( elem, value, name ); - } - // Does not return so that setAttribute is also used - elem.value = value; - } - } - }, - - propFix: { - tabindex: "tabIndex", - readonly: "readOnly", - "for": "htmlFor", - "class": "className", - maxlength: "maxLength", - cellspacing: "cellSpacing", - cellpadding: "cellPadding", - rowspan: "rowSpan", - colspan: "colSpan", - usemap: "useMap", - frameborder: "frameBorder", - contenteditable: "contentEditable" - }, - - prop: function( elem, name, value ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set properties on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - if ( notxml ) { - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - return ( elem[ name ] = value ); - } - - } else { - if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - return elem[ name ]; - } - } - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - var attributeNode = elem.getAttributeNode("tabindex"); - - return attributeNode && attributeNode.specified ? - parseInt( attributeNode.value, 10 ) : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - undefined; - } - } - } -}); - -// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional) -jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex; - -// Hook for boolean attributes -boolHook = { - get: function( elem, name ) { - // Align boolean attributes with corresponding properties - // Fall back to attribute presence where some booleans are not supported - var attrNode, - property = jQuery.prop( elem, name ); - return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? - name.toLowerCase() : - undefined; - }, - set: function( elem, value, name ) { - var propName; - if ( value === false ) { - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - // value is true since we know at this point it's type boolean and not false - // Set boolean attributes to the same name and set the DOM property - propName = jQuery.propFix[ name ] || name; - if ( propName in elem ) { - // Only set the IDL specifically if it already exists on the element - elem[ propName ] = true; - } - - elem.setAttribute( name, name.toLowerCase() ); - } - return name; - } -}; - -// IE6/7 do not support getting/setting some attributes with get/setAttribute -if ( !getSetAttribute ) { - - fixSpecified = { - name: true, - id: true, - coords: true - }; - - // Use this for any attribute in IE6/7 - // This fixes almost every IE6/7 issue - nodeHook = jQuery.valHooks.button = { - get: function( elem, name ) { - var ret; - ret = elem.getAttributeNode( name ); - return ret && ( fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified ) ? - ret.nodeValue : - undefined; - }, - set: function( elem, value, name ) { - // Set the existing or create a new attribute node - var ret = elem.getAttributeNode( name ); - if ( !ret ) { - ret = document.createAttribute( name ); - elem.setAttributeNode( ret ); - } - return ( ret.nodeValue = value + "" ); - } - }; - - // Apply the nodeHook to tabindex - jQuery.attrHooks.tabindex.set = nodeHook.set; - - // Set width and height to auto instead of 0 on empty string( Bug #8150 ) - // This is for removals - jQuery.each([ "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - set: function( elem, value ) { - if ( value === "" ) { - elem.setAttribute( name, "auto" ); - return value; - } - } - }); - }); - - // Set contenteditable to false on removals(#10429) - // Setting to empty string throws an error as an invalid value - jQuery.attrHooks.contenteditable = { - get: nodeHook.get, - set: function( elem, value, name ) { - if ( value === "" ) { - value = "false"; - } - nodeHook.set( elem, value, name ); - } - }; -} - - -// Some attributes require a special call on IE -if ( !jQuery.support.hrefNormalized ) { - jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - get: function( elem ) { - var ret = elem.getAttribute( name, 2 ); - return ret === null ? undefined : ret; - } - }); - }); -} - -if ( !jQuery.support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - // Return undefined in the case of empty string - // Normalize to lowercase since IE uppercases css property names - return elem.style.cssText.toLowerCase() || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = "" + value ); - } - }; -} - -// Safari mis-reports the default selected property of an option -// Accessing the parent's selectedIndex property fixes it -if ( !jQuery.support.optSelected ) { - jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - } - }); -} - -// IE6/7 call enctype encoding -if ( !jQuery.support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - -// Radios and checkboxes getter/setter -if ( !jQuery.support.checkOn ) { - jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - get: function( elem ) { - // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified - return elem.getAttribute("value") === null ? "on" : elem.value; - } - }; - }); -} -jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { - set: function( elem, value ) { - if ( jQuery.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); - } - } - }); -}); - - - - -var rformElems = /^(?:textarea|input|select)$/i, - rtypenamespace = /^([^\.]*)?(?:\.(.+))?$/, - rhoverHack = /(?:^|\s)hover(\.\S+)?\b/, - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|contextmenu)|click/, - rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rquickIs = /^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/, - quickParse = function( selector ) { - var quick = rquickIs.exec( selector ); - if ( quick ) { - // 0 1 2 3 - // [ _, tag, id, class ] - quick[1] = ( quick[1] || "" ).toLowerCase(); - quick[3] = quick[3] && new RegExp( "(?:^|\\s)" + quick[3] + "(?:\\s|$)" ); - } - return quick; - }, - quickIs = function( elem, m ) { - var attrs = elem.attributes || {}; - return ( - (!m[1] || elem.nodeName.toLowerCase() === m[1]) && - (!m[2] || (attrs.id || {}).value === m[2]) && - (!m[3] || m[3].test( (attrs[ "class" ] || {}).value )) - ); - }, - hoverHack = function( events ) { - return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); - }; - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - add: function( elem, types, handler, data, selector ) { - - var elemData, eventHandle, events, - t, tns, type, namespaces, handleObj, - handleObjIn, quick, handlers, special; - - // Don't attach events to noData or text/comment nodes (allow plain objects tho) - if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - events = elemData.events; - if ( !events ) { - elemData.events = events = {}; - } - eventHandle = elemData.handle; - if ( !eventHandle ) { - elemData.handle = eventHandle = function( e ) { - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? - jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : - undefined; - }; - // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events - eventHandle.elem = elem; - } - - // Handle multiple events separated by a space - // jQuery(...).bind("mouseover mouseout", fn); - types = jQuery.trim( hoverHack(types) ).split( " " ); - for ( t = 0; t < types.length; t++ ) { - - tns = rtypenamespace.exec( types[t] ) || []; - type = tns[1]; - namespaces = ( tns[2] || "" ).split( "." ).sort(); - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend({ - type: type, - origType: tns[1], - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - quick: selector && quickParse( selector ), - namespace: namespaces.join(".") - }, handleObjIn ); - - // Init the event handler queue if we're the first - handlers = events[ type ]; - if ( !handlers ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener/attachEvent if the special events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - global: {}, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var elemData = jQuery.hasData( elem ) && jQuery._data( elem ), - t, tns, type, origType, namespaces, origCount, - j, events, special, handle, eventType, handleObj; - - if ( !elemData || !(events = elemData.events) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = jQuery.trim( hoverHack( types || "" ) ).split(" "); - for ( t = 0; t < types.length; t++ ) { - tns = rtypenamespace.exec( types[t] ) || []; - type = origType = tns[1]; - namespaces = tns[2]; - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector? special.delegateType : special.bindType ) || type; - eventType = events[ type ] || []; - origCount = eventType.length; - namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.)?") + "(\\.|$)") : null; - - // Remove matching events - for ( j = 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !namespaces || namespaces.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { - eventType.splice( j--, 1 ); - - if ( handleObj.selector ) { - eventType.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( eventType.length === 0 && origCount !== eventType.length ) { - if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - handle = elemData.handle; - if ( handle ) { - handle.elem = null; - } - - // removeData also checks for emptiness and clears the expando if empty - // so use it instead of delete - jQuery.removeData( elem, [ "events", "handle" ], true ); - } - }, - - // Events that are safe to short-circuit if no handlers are attached. - // Native DOM events should not be added, they may have inline handlers. - customEvent: { - "getData": true, - "setData": true, - "changeData": true - }, - - trigger: function( event, data, elem, onlyHandlers ) { - // Don't do events on text and comment nodes - if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { - return; - } - - // Event object or event type - var type = event.type || event, - namespaces = [], - cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType; - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "!" ) >= 0 ) { - // Exclusive events trigger only for the exact event (no namespaces) - type = type.slice(0, -1); - exclusive = true; - } - - if ( type.indexOf( "." ) >= 0 ) { - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split("."); - type = namespaces.shift(); - namespaces.sort(); - } - - if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { - // No jQuery handlers for this event type, and it can't have inline handlers - return; - } - - // Caller can pass in an Event, Object, or just an event type string - event = typeof event === "object" ? - // jQuery.Event object - event[ jQuery.expando ] ? event : - // Object literal - new jQuery.Event( type, event ) : - // Just the event type (string) - new jQuery.Event( type ); - - event.type = type; - event.isTrigger = true; - event.exclusive = exclusive; - event.namespace = namespaces.join( "." ); - event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.)?") + "(\\.|$)") : null; - ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; - - // Handle a global trigger - if ( !elem ) { - - // TODO: Stop taunting the data cache; remove global events and always attach to document - cache = jQuery.cache; - for ( i in cache ) { - if ( cache[ i ].events && cache[ i ].events[ type ] ) { - jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); - } - } - return; - } - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data != null ? jQuery.makeArray( data ) : []; - data.unshift( event ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - eventPath = [[ elem, special.bindType || type ]]; - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; - old = null; - for ( ; cur; cur = cur.parentNode ) { - eventPath.push([ cur, bubbleType ]); - old = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( old && old === elem.ownerDocument ) { - eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); - } - } - - // Fire handlers on the event path - for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { - - cur = eventPath[i][0]; - event.type = eventPath[i][1]; - - handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - // Note that this is a bare JS function and not a jQuery handler - handle = ontype && cur[ ontype ]; - if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) { - event.preventDefault(); - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && - !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name name as the event. - // Can't use an .isFunction() check here because IE6/7 fails that test. - // Don't do default actions on window, that's where global variables be (#6170) - // IE<9 dies on focus/blur to hidden element (#1486) - if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - old = elem[ ontype ]; - - if ( old ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - elem[ type ](); - jQuery.event.triggered = undefined; - - if ( old ) { - elem[ ontype ] = old; - } - } - } - } - - return event.result; - }, - - dispatch: function( event ) { - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( event || window.event ); - - var handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), - delegateCount = handlers.delegateCount, - args = [].slice.call( arguments, 0 ), - run_all = !event.exclusive && !event.namespace, - special = jQuery.event.special[ event.type ] || {}, - handlerQueue = [], - i, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[0] = event; - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers that should run if there are delegated events - // Avoid non-left-click bubbling in Firefox (#3861) - if ( delegateCount && !(event.button && event.type === "click") ) { - - // Pregenerate a single jQuery object for reuse with .is() - jqcur = jQuery(this); - jqcur.context = this.ownerDocument || this; - - for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { - - // Don't process events on disabled elements (#6911, #8165) - if ( cur.disabled !== true ) { - selMatch = {}; - matches = []; - jqcur[0] = cur; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - sel = handleObj.selector; - - if ( selMatch[ sel ] === undefined ) { - selMatch[ sel ] = ( - handleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel ) - ); - } - if ( selMatch[ sel ] ) { - matches.push( handleObj ); - } - } - if ( matches.length ) { - handlerQueue.push({ elem: cur, matches: matches }); - } - } - } - } - - // Add the remaining (directly-bound) handlers - if ( handlers.length > delegateCount ) { - handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); - } - - // Run delegates first; they may want to stop propagation beneath us - for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { - matched = handlerQueue[ i ]; - event.currentTarget = matched.elem; - - for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { - handleObj = matched.matches[ j ]; - - // Triggered event must either 1) be non-exclusive and have no namespace, or - // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). - if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { - - event.data = handleObj.data; - event.handleObj = handleObj; - - ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) - .apply( matched.elem, args ); - - if ( ret !== undefined ) { - event.result = ret; - if ( ret === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - // Includes some event props shared by KeyEvent and MouseEvent - // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** - props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - - fixHooks: {}, - - keyHooks: { - props: "char charCode key keyCode".split(" "), - filter: function( event, original ) { - - // Add which for key events - if ( event.which == null ) { - event.which = original.charCode != null ? original.charCode : original.keyCode; - } - - return event; - } - }, - - mouseHooks: { - props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), - filter: function( event, original ) { - var eventDoc, doc, body, - button = original.button, - fromElement = original.fromElement; - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && original.clientX != null ) { - eventDoc = event.target.ownerDocument || document; - doc = eventDoc.documentElement; - body = eventDoc.body; - - event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); - event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && fromElement ) { - event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && button !== undefined ) { - event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); - } - - return event; - } - }, - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // Create a writable copy of the event object and normalize some properties - var i, prop, - originalEvent = event, - fixHook = jQuery.event.fixHooks[ event.type ] || {}, - copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; - - event = jQuery.Event( originalEvent ); - - for ( i = copy.length; i; ) { - prop = copy[ --i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) - if ( !event.target ) { - event.target = originalEvent.srcElement || document; - } - - // Target should not be a text node (#504, Safari) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8) - if ( event.metaKey === undefined ) { - event.metaKey = event.ctrlKey; - } - - return fixHook.filter? fixHook.filter( event, originalEvent ) : event; - }, - - special: { - ready: { - // Make sure the ready event is setup - setup: jQuery.bindReady - }, - - load: { - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - - focus: { - delegateType: "focusin" - }, - blur: { - delegateType: "focusout" - }, - - beforeunload: { - setup: function( data, namespaces, eventHandle ) { - // We only want to do this special case on windows - if ( jQuery.isWindow( this ) ) { - this.onbeforeunload = eventHandle; - } - }, - - teardown: function( namespaces, eventHandle ) { - if ( this.onbeforeunload === eventHandle ) { - this.onbeforeunload = null; - } - } - } - }, - - simulate: function( type, elem, event, bubble ) { - // Piggyback on a donor event to simulate a different one. - // Fake originalEvent to avoid donor's stopPropagation, but if the - // simulated event prevents default then we do the same on the donor. - var e = jQuery.extend( - new jQuery.Event(), - event, - { type: type, - isSimulated: true, - originalEvent: {} - } - ); - if ( bubble ) { - jQuery.event.trigger( e, null, elem ); - } else { - jQuery.event.dispatch.call( elem, e ); - } - if ( e.isDefaultPrevented() ) { - event.preventDefault(); - } - } -}; - -// Some plugins are using, but it's undocumented/deprecated and will be removed. -// The 1.7 special event interface should provide all the hooks needed now. -jQuery.event.handle = jQuery.event.dispatch; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - if ( elem.detachEvent ) { - elem.detachEvent( "on" + type, handle ); - } - }; - -jQuery.Event = function( src, props ) { - // Allow instantiation without the 'new' keyword - if ( !(this instanceof jQuery.Event) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || - src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -function returnFalse() { - return false; -} -function returnTrue() { - return true; -} - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - preventDefault: function() { - this.isDefaultPrevented = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - - // if preventDefault exists run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // otherwise set the returnValue property of the original event to false (IE) - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - this.isPropagationStopped = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - // if stopPropagation exists run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - // otherwise set the cancelBubble property of the original event to true (IE) - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - }, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse -}; - -// Create mouseenter/leave events using mouseover/out and event-time checks -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var target = this, - related = event.relatedTarget, - handleObj = event.handleObj, - selector = handleObj.selector, - ret; - - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || (related !== target && !jQuery.contains( target, related )) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -}); - -// IE submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Lazy-add a submit handler when a descendant form may potentially be submitted - jQuery.event.add( this, "click._submit keypress._submit", function( e ) { - // Node name check avoids a VML-related crash in IE (#9807) - var elem = e.target, - form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; - if ( form && !form._submit_attached ) { - jQuery.event.add( form, "submit._submit", function( event ) { - event._submit_bubble = true; - }); - form._submit_attached = true; - } - }); - // return undefined since we don't need an event listener - }, - - postDispatch: function( event ) { - // If form was submitted by the user, bubble the event up the tree - if ( event._submit_bubble ) { - delete event._submit_bubble; - if ( this.parentNode && !event.isTrigger ) { - jQuery.event.simulate( "submit", this.parentNode, event, true ); - } - } - }, - - teardown: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Remove delegated handlers; cleanData eventually reaps submit handlers attached above - jQuery.event.remove( this, "._submit" ); - } - }; -} - -// IE change delegation and checkbox/radio fix -if ( !jQuery.support.changeBubbles ) { - - jQuery.event.special.change = { - - setup: function() { - - if ( rformElems.test( this.nodeName ) ) { - // IE doesn't fire change on a check/radio until blur; trigger it on click - // after a propertychange. Eat the blur-change in special.change.handle. - // This still fires onchange a second time for check/radio after blur. - if ( this.type === "checkbox" || this.type === "radio" ) { - jQuery.event.add( this, "propertychange._change", function( event ) { - if ( event.originalEvent.propertyName === "checked" ) { - this._just_changed = true; - } - }); - jQuery.event.add( this, "click._change", function( event ) { - if ( this._just_changed && !event.isTrigger ) { - this._just_changed = false; - jQuery.event.simulate( "change", this, event, true ); - } - }); - } - return false; - } - // Delegated event; lazy-add a change handler on descendant inputs - jQuery.event.add( this, "beforeactivate._change", function( e ) { - var elem = e.target; - - if ( rformElems.test( elem.nodeName ) && !elem._change_attached ) { - jQuery.event.add( elem, "change._change", function( event ) { - if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { - jQuery.event.simulate( "change", this.parentNode, event, true ); - } - }); - elem._change_attached = true; - } - }); - }, - - handle: function( event ) { - var elem = event.target; - - // Swallow native change events from checkbox/radio, we already triggered them above - if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { - return event.handleObj.handler.apply( this, arguments ); - } - }, - - teardown: function() { - jQuery.event.remove( this, "._change" ); - - return rformElems.test( this.nodeName ); - } - }; -} - -// Create "bubbling" focus and blur events -if ( !jQuery.support.focusinBubbles ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler while someone wants focusin/focusout - var attaches = 0, - handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - if ( attaches++ === 0 ) { - document.addEventListener( orig, handler, true ); - } - }, - teardown: function() { - if ( --attaches === 0 ) { - document.removeEventListener( orig, handler, true ); - } - } - }; - }); -} - -jQuery.fn.extend({ - - on: function( types, selector, data, fn, /*INTERNAL*/ one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { // && selector != null - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - this.on( type, selector, data, types[ type ], one ); - } - return this; - } - - if ( data == null && fn == null ) { - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return this; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return this.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - }); - }, - one: function( types, selector, data, fn ) { - return this.on( types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - if ( types && types.preventDefault && types.handleObj ) { - // ( event ) dispatched jQuery.Event - var handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - // ( types-object [, selector] ) - for ( var type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each(function() { - jQuery.event.remove( this, types, fn, selector ); - }); - }, - - bind: function( types, data, fn ) { - return this.on( types, null, data, fn ); - }, - unbind: function( types, fn ) { - return this.off( types, null, fn ); - }, - - live: function( types, data, fn ) { - jQuery( this.context ).on( types, this.selector, data, fn ); - return this; - }, - die: function( types, fn ) { - jQuery( this.context ).off( types, this.selector || "**", fn ); - return this; - }, - - delegate: function( selector, types, data, fn ) { - return this.on( types, selector, data, fn ); - }, - undelegate: function( selector, types, fn ) { - // ( namespace ) or ( selector, types [, fn] ) - return arguments.length == 1? this.off( selector, "**" ) : this.off( types, selector, fn ); - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - triggerHandler: function( type, data ) { - if ( this[0] ) { - return jQuery.event.trigger( type, data, this[0], true ); - } - }, - - toggle: function( fn ) { - // Save reference to arguments for access in closure - var args = arguments, - guid = fn.guid || jQuery.guid++, - i = 0, - toggler = function( event ) { - // Figure out which function to execute - var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; - jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); - - // Make sure that clicks stop - event.preventDefault(); - - // and execute the function - return args[ lastToggle ].apply( this, arguments ) || false; - }; - - // link all the functions, so any of them can unbind this click handler - toggler.guid = guid; - while ( i < args.length ) { - args[ i++ ].guid = guid; - } - - return this.click( toggler ); - }, - - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -}); - -jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - if ( fn == null ) { - fn = data; - data = null; - } - - return arguments.length > 0 ? - this.on( name, null, data, fn ) : - this.trigger( name ); - }; - - if ( jQuery.attrFn ) { - jQuery.attrFn[ name ] = true; - } - - if ( rkeyEvent.test( name ) ) { - jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; - } - - if ( rmouseEvent.test( name ) ) { - jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; - } -}); - - - -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){ - -var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, - expando = "sizcache" + (Math.random() + '').replace('.', ''), - done = 0, - toString = Object.prototype.toString, - hasDuplicate = false, - baseHasDuplicate = true, - rBackslash = /\\/g, - rReturn = /\r\n/g, - rNonWord = /\W/; - -// Here we check if the JavaScript engine is using some sort of -// optimization where it does not always call our comparision -// function. If that is the case, discard the hasDuplicate value. -// Thus far that includes Google Chrome. -[0, 0].sort(function() { - baseHasDuplicate = false; - return 0; -}); - -var Sizzle = function( selector, context, results, seed ) { - results = results || []; - context = context || document; - - var origContext = context; - - if ( context.nodeType !== 1 && context.nodeType !== 9 ) { - return []; - } - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - var m, set, checkSet, extra, ret, cur, pop, i, - prune = true, - contextXML = Sizzle.isXML( context ), - parts = [], - soFar = selector; - - // Reset the position of the chunker regexp (start from head) - do { - chunker.exec( "" ); - m = chunker.exec( soFar ); - - if ( m ) { - soFar = m[3]; - - parts.push( m[1] ); - - if ( m[2] ) { - extra = m[3]; - break; - } - } - } while ( m ); - - if ( parts.length > 1 && origPOS.exec( selector ) ) { - - if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { - set = posProcess( parts[0] + parts[1], context, seed ); - - } else { - set = Expr.relative[ parts[0] ] ? - [ context ] : - Sizzle( parts.shift(), context ); - - while ( parts.length ) { - selector = parts.shift(); - - if ( Expr.relative[ selector ] ) { - selector += parts.shift(); - } - - set = posProcess( selector, set, seed ); - } - } - - } else { - // Take a shortcut and set the context if the root selector is an ID - // (but not if it'll be faster if the inner selector is an ID) - if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && - Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { - - ret = Sizzle.find( parts.shift(), context, contextXML ); - context = ret.expr ? - Sizzle.filter( ret.expr, ret.set )[0] : - ret.set[0]; - } - - if ( context ) { - ret = seed ? - { expr: parts.pop(), set: makeArray(seed) } : - Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); - - set = ret.expr ? - Sizzle.filter( ret.expr, ret.set ) : - ret.set; - - if ( parts.length > 0 ) { - checkSet = makeArray( set ); - - } else { - prune = false; - } - - while ( parts.length ) { - cur = parts.pop(); - pop = cur; - - if ( !Expr.relative[ cur ] ) { - cur = ""; - } else { - pop = parts.pop(); - } - - if ( pop == null ) { - pop = context; - } - - Expr.relative[ cur ]( checkSet, pop, contextXML ); - } - - } else { - checkSet = parts = []; - } - } - - if ( !checkSet ) { - checkSet = set; - } - - if ( !checkSet ) { - Sizzle.error( cur || selector ); - } - - if ( toString.call(checkSet) === "[object Array]" ) { - if ( !prune ) { - results.push.apply( results, checkSet ); - - } else if ( context && context.nodeType === 1 ) { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { - results.push( set[i] ); - } - } - - } else { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && checkSet[i].nodeType === 1 ) { - results.push( set[i] ); - } - } - } - - } else { - makeArray( checkSet, results ); - } - - if ( extra ) { - Sizzle( extra, origContext, results, seed ); - Sizzle.uniqueSort( results ); - } - - return results; -}; - -Sizzle.uniqueSort = function( results ) { - if ( sortOrder ) { - hasDuplicate = baseHasDuplicate; - results.sort( sortOrder ); - - if ( hasDuplicate ) { - for ( var i = 1; i < results.length; i++ ) { - if ( results[i] === results[ i - 1 ] ) { - results.splice( i--, 1 ); - } - } - } - } - - return results; -}; - -Sizzle.matches = function( expr, set ) { - return Sizzle( expr, null, null, set ); -}; - -Sizzle.matchesSelector = function( node, expr ) { - return Sizzle( expr, null, null, [node] ).length > 0; -}; - -Sizzle.find = function( expr, context, isXML ) { - var set, i, len, match, type, left; - - if ( !expr ) { - return []; - } - - for ( i = 0, len = Expr.order.length; i < len; i++ ) { - type = Expr.order[i]; - - if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { - left = match[1]; - match.splice( 1, 1 ); - - if ( left.substr( left.length - 1 ) !== "\\" ) { - match[1] = (match[1] || "").replace( rBackslash, "" ); - set = Expr.find[ type ]( match, context, isXML ); - - if ( set != null ) { - expr = expr.replace( Expr.match[ type ], "" ); - break; - } - } - } - } - - if ( !set ) { - set = typeof context.getElementsByTagName !== "undefined" ? - context.getElementsByTagName( "*" ) : - []; - } - - return { set: set, expr: expr }; -}; - -Sizzle.filter = function( expr, set, inplace, not ) { - var match, anyFound, - type, found, item, filter, left, - i, pass, - old = expr, - result = [], - curLoop = set, - isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); - - while ( expr && set.length ) { - for ( type in Expr.filter ) { - if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { - filter = Expr.filter[ type ]; - left = match[1]; - - anyFound = false; - - match.splice(1,1); - - if ( left.substr( left.length - 1 ) === "\\" ) { - continue; - } - - if ( curLoop === result ) { - result = []; - } - - if ( Expr.preFilter[ type ] ) { - match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); - - if ( !match ) { - anyFound = found = true; - - } else if ( match === true ) { - continue; - } - } - - if ( match ) { - for ( i = 0; (item = curLoop[i]) != null; i++ ) { - if ( item ) { - found = filter( item, match, i, curLoop ); - pass = not ^ found; - - if ( inplace && found != null ) { - if ( pass ) { - anyFound = true; - - } else { - curLoop[i] = false; - } - - } else if ( pass ) { - result.push( item ); - anyFound = true; - } - } - } - } - - if ( found !== undefined ) { - if ( !inplace ) { - curLoop = result; - } - - expr = expr.replace( Expr.match[ type ], "" ); - - if ( !anyFound ) { - return []; - } - - break; - } - } - } - - // Improper expression - if ( expr === old ) { - if ( anyFound == null ) { - Sizzle.error( expr ); - - } else { - break; - } - } - - old = expr; - } - - return curLoop; -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Utility function for retreiving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -var getText = Sizzle.getText = function( elem ) { - var i, node, - nodeType = elem.nodeType, - ret = ""; - - if ( nodeType ) { - if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent || innerText for elements - if ( typeof elem.textContent === 'string' ) { - return elem.textContent; - } else if ( typeof elem.innerText === 'string' ) { - // Replace IE's carriage returns - return elem.innerText.replace( rReturn, '' ); - } else { - // Traverse it's children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - } else { - - // If no nodeType, this is expected to be an array - for ( i = 0; (node = elem[i]); i++ ) { - // Do not traverse comment nodes - if ( node.nodeType !== 8 ) { - ret += getText( node ); - } - } - } - return ret; -}; - -var Expr = Sizzle.selectors = { - order: [ "ID", "NAME", "TAG" ], - - match: { - ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, - ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, - TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, - CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, - POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, - PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ - }, - - leftMatch: {}, - - attrMap: { - "class": "className", - "for": "htmlFor" - }, - - attrHandle: { - href: function( elem ) { - return elem.getAttribute( "href" ); - }, - type: function( elem ) { - return elem.getAttribute( "type" ); - } - }, - - relative: { - "+": function(checkSet, part){ - var isPartStr = typeof part === "string", - isTag = isPartStr && !rNonWord.test( part ), - isPartStrNotTag = isPartStr && !isTag; - - if ( isTag ) { - part = part.toLowerCase(); - } - - for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { - if ( (elem = checkSet[i]) ) { - while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} - - checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? - elem || false : - elem === part; - } - } - - if ( isPartStrNotTag ) { - Sizzle.filter( part, checkSet, true ); - } - }, - - ">": function( checkSet, part ) { - var elem, - isPartStr = typeof part === "string", - i = 0, - l = checkSet.length; - - if ( isPartStr && !rNonWord.test( part ) ) { - part = part.toLowerCase(); - - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - var parent = elem.parentNode; - checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; - } - } - - } else { - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - checkSet[i] = isPartStr ? - elem.parentNode : - elem.parentNode === part; - } - } - - if ( isPartStr ) { - Sizzle.filter( part, checkSet, true ); - } - } - }, - - "": function(checkSet, part, isXML){ - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !rNonWord.test( part ) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); - }, - - "~": function( checkSet, part, isXML ) { - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !rNonWord.test( part ) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); - } - }, - - find: { - ID: function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - return m && m.parentNode ? [m] : []; - } - }, - - NAME: function( match, context ) { - if ( typeof context.getElementsByName !== "undefined" ) { - var ret = [], - results = context.getElementsByName( match[1] ); - - for ( var i = 0, l = results.length; i < l; i++ ) { - if ( results[i].getAttribute("name") === match[1] ) { - ret.push( results[i] ); - } - } - - return ret.length === 0 ? null : ret; - } - }, - - TAG: function( match, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( match[1] ); - } - } - }, - preFilter: { - CLASS: function( match, curLoop, inplace, result, not, isXML ) { - match = " " + match[1].replace( rBackslash, "" ) + " "; - - if ( isXML ) { - return match; - } - - for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { - if ( elem ) { - if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { - if ( !inplace ) { - result.push( elem ); - } - - } else if ( inplace ) { - curLoop[i] = false; - } - } - } - - return false; - }, - - ID: function( match ) { - return match[1].replace( rBackslash, "" ); - }, - - TAG: function( match, curLoop ) { - return match[1].replace( rBackslash, "" ).toLowerCase(); - }, - - CHILD: function( match ) { - if ( match[1] === "nth" ) { - if ( !match[2] ) { - Sizzle.error( match[0] ); - } - - match[2] = match[2].replace(/^\+|\s*/g, ''); - - // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' - var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( - match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || - !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); - - // calculate the numbers (first)n+(last) including if they are negative - match[2] = (test[1] + (test[2] || 1)) - 0; - match[3] = test[3] - 0; - } - else if ( match[2] ) { - Sizzle.error( match[0] ); - } - - // TODO: Move to normal caching system - match[0] = done++; - - return match; - }, - - ATTR: function( match, curLoop, inplace, result, not, isXML ) { - var name = match[1] = match[1].replace( rBackslash, "" ); - - if ( !isXML && Expr.attrMap[name] ) { - match[1] = Expr.attrMap[name]; - } - - // Handle if an un-quoted value was used - match[4] = ( match[4] || match[5] || "" ).replace( rBackslash, "" ); - - if ( match[2] === "~=" ) { - match[4] = " " + match[4] + " "; - } - - return match; - }, - - PSEUDO: function( match, curLoop, inplace, result, not ) { - if ( match[1] === "not" ) { - // If we're dealing with a complex expression, or a simple one - if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { - match[3] = Sizzle(match[3], null, null, curLoop); - - } else { - var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); - - if ( !inplace ) { - result.push.apply( result, ret ); - } - - return false; - } - - } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { - return true; - } - - return match; - }, - - POS: function( match ) { - match.unshift( true ); - - return match; - } - }, - - filters: { - enabled: function( elem ) { - return elem.disabled === false && elem.type !== "hidden"; - }, - - disabled: function( elem ) { - return elem.disabled === true; - }, - - checked: function( elem ) { - return elem.checked === true; - }, - - selected: function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - parent: function( elem ) { - return !!elem.firstChild; - }, - - empty: function( elem ) { - return !elem.firstChild; - }, - - has: function( elem, i, match ) { - return !!Sizzle( match[3], elem ).length; - }, - - header: function( elem ) { - return (/h\d/i).test( elem.nodeName ); - }, - - text: function( elem ) { - var attr = elem.getAttribute( "type" ), type = elem.type; - // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) - // use getAttribute instead to test this case - return elem.nodeName.toLowerCase() === "input" && "text" === type && ( attr === type || attr === null ); - }, - - radio: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "radio" === elem.type; - }, - - checkbox: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "checkbox" === elem.type; - }, - - file: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "file" === elem.type; - }, - - password: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "password" === elem.type; - }, - - submit: function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && "submit" === elem.type; - }, - - image: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "image" === elem.type; - }, - - reset: function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && "reset" === elem.type; - }, - - button: function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && "button" === elem.type || name === "button"; - }, - - input: function( elem ) { - return (/input|select|textarea|button/i).test( elem.nodeName ); - }, - - focus: function( elem ) { - return elem === elem.ownerDocument.activeElement; - } - }, - setFilters: { - first: function( elem, i ) { - return i === 0; - }, - - last: function( elem, i, match, array ) { - return i === array.length - 1; - }, - - even: function( elem, i ) { - return i % 2 === 0; - }, - - odd: function( elem, i ) { - return i % 2 === 1; - }, - - lt: function( elem, i, match ) { - return i < match[3] - 0; - }, - - gt: function( elem, i, match ) { - return i > match[3] - 0; - }, - - nth: function( elem, i, match ) { - return match[3] - 0 === i; - }, - - eq: function( elem, i, match ) { - return match[3] - 0 === i; - } - }, - filter: { - PSEUDO: function( elem, match, i, array ) { - var name = match[1], - filter = Expr.filters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - - } else if ( name === "contains" ) { - return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; - - } else if ( name === "not" ) { - var not = match[3]; - - for ( var j = 0, l = not.length; j < l; j++ ) { - if ( not[j] === elem ) { - return false; - } - } - - return true; - - } else { - Sizzle.error( name ); - } - }, - - CHILD: function( elem, match ) { - var first, last, - doneName, parent, cache, - count, diff, - type = match[1], - node = elem; - - switch ( type ) { - case "only": - case "first": - while ( (node = node.previousSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - if ( type === "first" ) { - return true; - } - - node = elem; - - /* falls through */ - case "last": - while ( (node = node.nextSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - return true; - - case "nth": - first = match[2]; - last = match[3]; - - if ( first === 1 && last === 0 ) { - return true; - } - - doneName = match[0]; - parent = elem.parentNode; - - if ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) { - count = 0; - - for ( node = parent.firstChild; node; node = node.nextSibling ) { - if ( node.nodeType === 1 ) { - node.nodeIndex = ++count; - } - } - - parent[ expando ] = doneName; - } - - diff = elem.nodeIndex - last; - - if ( first === 0 ) { - return diff === 0; - - } else { - return ( diff % first === 0 && diff / first >= 0 ); - } - } - }, - - ID: function( elem, match ) { - return elem.nodeType === 1 && elem.getAttribute("id") === match; - }, - - TAG: function( elem, match ) { - return (match === "*" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match; - }, - - CLASS: function( elem, match ) { - return (" " + (elem.className || elem.getAttribute("class")) + " ") - .indexOf( match ) > -1; - }, - - ATTR: function( elem, match ) { - var name = match[1], - result = Sizzle.attr ? - Sizzle.attr( elem, name ) : - Expr.attrHandle[ name ] ? - Expr.attrHandle[ name ]( elem ) : - elem[ name ] != null ? - elem[ name ] : - elem.getAttribute( name ), - value = result + "", - type = match[2], - check = match[4]; - - return result == null ? - type === "!=" : - !type && Sizzle.attr ? - result != null : - type === "=" ? - value === check : - type === "*=" ? - value.indexOf(check) >= 0 : - type === "~=" ? - (" " + value + " ").indexOf(check) >= 0 : - !check ? - value && result !== false : - type === "!=" ? - value !== check : - type === "^=" ? - value.indexOf(check) === 0 : - type === "$=" ? - value.substr(value.length - check.length) === check : - type === "|=" ? - value === check || value.substr(0, check.length + 1) === check + "-" : - false; - }, - - POS: function( elem, match, i, array ) { - var name = match[2], - filter = Expr.setFilters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - } - } - } -}; - -var origPOS = Expr.match.POS, - fescape = function(all, num){ - return "\\" + (num - 0 + 1); - }; - -for ( var type in Expr.match ) { - Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); - Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); -} -// Expose origPOS -// "global" as in regardless of relation to brackets/parens -Expr.match.globalPOS = origPOS; - -var makeArray = function( array, results ) { - array = Array.prototype.slice.call( array, 0 ); - - if ( results ) { - results.push.apply( results, array ); - return results; - } - - return array; -}; - -// Perform a simple check to determine if the browser is capable of -// converting a NodeList to an array using builtin methods. -// Also verifies that the returned array holds DOM nodes -// (which is not the case in the Blackberry browser) -try { - Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; - -// Provide a fallback method if it does not work -} catch( e ) { - makeArray = function( array, results ) { - var i = 0, - ret = results || []; - - if ( toString.call(array) === "[object Array]" ) { - Array.prototype.push.apply( ret, array ); - - } else { - if ( typeof array.length === "number" ) { - for ( var l = array.length; i < l; i++ ) { - ret.push( array[i] ); - } - - } else { - for ( ; array[i]; i++ ) { - ret.push( array[i] ); - } - } - } - - return ret; - }; -} - -var sortOrder, siblingCheck; - -if ( document.documentElement.compareDocumentPosition ) { - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { - return a.compareDocumentPosition ? -1 : 1; - } - - return a.compareDocumentPosition(b) & 4 ? -1 : 1; - }; - -} else { - sortOrder = function( a, b ) { - // The nodes are identical, we can exit early - if ( a === b ) { - hasDuplicate = true; - return 0; - - // Fallback to using sourceIndex (in IE) if it's available on both nodes - } else if ( a.sourceIndex && b.sourceIndex ) { - return a.sourceIndex - b.sourceIndex; - } - - var al, bl, - ap = [], - bp = [], - aup = a.parentNode, - bup = b.parentNode, - cur = aup; - - // If the nodes are siblings (or identical) we can do a quick check - if ( aup === bup ) { - return siblingCheck( a, b ); - - // If no parents were found then the nodes are disconnected - } else if ( !aup ) { - return -1; - - } else if ( !bup ) { - return 1; - } - - // Otherwise they're somewhere else in the tree so we need - // to build up a full list of the parentNodes for comparison - while ( cur ) { - ap.unshift( cur ); - cur = cur.parentNode; - } - - cur = bup; - - while ( cur ) { - bp.unshift( cur ); - cur = cur.parentNode; - } - - al = ap.length; - bl = bp.length; - - // Start walking down the tree looking for a discrepancy - for ( var i = 0; i < al && i < bl; i++ ) { - if ( ap[i] !== bp[i] ) { - return siblingCheck( ap[i], bp[i] ); - } - } - - // We ended someplace up the tree so do a sibling check - return i === al ? - siblingCheck( a, bp[i], -1 ) : - siblingCheck( ap[i], b, 1 ); - }; - - siblingCheck = function( a, b, ret ) { - if ( a === b ) { - return ret; - } - - var cur = a.nextSibling; - - while ( cur ) { - if ( cur === b ) { - return -1; - } - - cur = cur.nextSibling; - } - - return 1; - }; -} - -// Check to see if the browser returns elements by name when -// querying by getElementById (and provide a workaround) -(function(){ - // We're going to inject a fake input element with a specified name - var form = document.createElement("div"), - id = "script" + (new Date()).getTime(), - root = document.documentElement; - - form.innerHTML = "<a name='" + id + "'/>"; - - // Inject it into the root element, check its status, and remove it quickly - root.insertBefore( form, root.firstChild ); - - // The workaround has to do additional checks after a getElementById - // Which slows things down for other browsers (hence the branching) - if ( document.getElementById( id ) ) { - Expr.find.ID = function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - - return m ? - m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? - [m] : - undefined : - []; - } - }; - - Expr.filter.ID = function( elem, match ) { - var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); - - return elem.nodeType === 1 && node && node.nodeValue === match; - }; - } - - root.removeChild( form ); - - // release memory in IE - root = form = null; -})(); - -(function(){ - // Check to see if the browser returns only elements - // when doing getElementsByTagName("*") - - // Create a fake element - var div = document.createElement("div"); - div.appendChild( document.createComment("") ); - - // Make sure no comments are found - if ( div.getElementsByTagName("*").length > 0 ) { - Expr.find.TAG = function( match, context ) { - var results = context.getElementsByTagName( match[1] ); - - // Filter out possible comments - if ( match[1] === "*" ) { - var tmp = []; - - for ( var i = 0; results[i]; i++ ) { - if ( results[i].nodeType === 1 ) { - tmp.push( results[i] ); - } - } - - results = tmp; - } - - return results; - }; - } - - // Check to see if an attribute returns normalized href attributes - div.innerHTML = "<a href='#'></a>"; - - if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && - div.firstChild.getAttribute("href") !== "#" ) { - - Expr.attrHandle.href = function( elem ) { - return elem.getAttribute( "href", 2 ); - }; - } - - // release memory in IE - div = null; -})(); - -if ( document.querySelectorAll ) { - (function(){ - var oldSizzle = Sizzle, - div = document.createElement("div"), - id = "__sizzle__"; - - div.innerHTML = "<p class='TEST'></p>"; - - // Safari can't handle uppercase or unicode characters when - // in quirks mode. - if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { - return; - } - - Sizzle = function( query, context, extra, seed ) { - context = context || document; - - // Only use querySelectorAll on non-XML documents - // (ID selectors don't work in non-HTML documents) - if ( !seed && !Sizzle.isXML(context) ) { - // See if we find a selector to speed up - var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); - - if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { - // Speed-up: Sizzle("TAG") - if ( match[1] ) { - return makeArray( context.getElementsByTagName( query ), extra ); - - // Speed-up: Sizzle(".CLASS") - } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { - return makeArray( context.getElementsByClassName( match[2] ), extra ); - } - } - - if ( context.nodeType === 9 ) { - // Speed-up: Sizzle("body") - // The body element only exists once, optimize finding it - if ( query === "body" && context.body ) { - return makeArray( [ context.body ], extra ); - - // Speed-up: Sizzle("#ID") - } else if ( match && match[3] ) { - var elem = context.getElementById( match[3] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id === match[3] ) { - return makeArray( [ elem ], extra ); - } - - } else { - return makeArray( [], extra ); - } - } - - try { - return makeArray( context.querySelectorAll(query), extra ); - } catch(qsaError) {} - - // qSA works strangely on Element-rooted queries - // We can work around this by specifying an extra ID on the root - // and working up from there (Thanks to Andrew Dupont for the technique) - // IE 8 doesn't work on object elements - } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { - var oldContext = context, - old = context.getAttribute( "id" ), - nid = old || id, - hasParent = context.parentNode, - relativeHierarchySelector = /^\s*[+~]/.test( query ); - - if ( !old ) { - context.setAttribute( "id", nid ); - } else { - nid = nid.replace( /'/g, "\\$&" ); - } - if ( relativeHierarchySelector && hasParent ) { - context = context.parentNode; - } - - try { - if ( !relativeHierarchySelector || hasParent ) { - return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); - } - - } catch(pseudoError) { - } finally { - if ( !old ) { - oldContext.removeAttribute( "id" ); - } - } - } - } - - return oldSizzle(query, context, extra, seed); - }; - - for ( var prop in oldSizzle ) { - Sizzle[ prop ] = oldSizzle[ prop ]; - } - - // release memory in IE - div = null; - })(); -} - -(function(){ - var html = document.documentElement, - matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector; - - if ( matches ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9 fails this) - var disconnectedMatch = !matches.call( document.createElement( "div" ), "div" ), - pseudoWorks = false; - - try { - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( document.documentElement, "[test!='']:sizzle" ); - - } catch( pseudoError ) { - pseudoWorks = true; - } - - Sizzle.matchesSelector = function( node, expr ) { - // Make sure that attribute selectors are quoted - expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); - - if ( !Sizzle.isXML( node ) ) { - try { - if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { - var ret = matches.call( node, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || !disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9, so check for that - node.document && node.document.nodeType !== 11 ) { - return ret; - } - } - } catch(e) {} - } - - return Sizzle(expr, null, null, [node]).length > 0; - }; - } -})(); - -(function(){ - var div = document.createElement("div"); - - div.innerHTML = "<div class='test e'></div><div class='test'></div>"; - - // Opera can't find a second classname (in 9.6) - // Also, make sure that getElementsByClassName actually exists - if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { - return; - } - - // Safari caches class attributes, doesn't catch changes (in 3.2) - div.lastChild.className = "e"; - - if ( div.getElementsByClassName("e").length === 1 ) { - return; - } - - Expr.order.splice(1, 0, "CLASS"); - Expr.find.CLASS = function( match, context, isXML ) { - if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { - return context.getElementsByClassName(match[1]); - } - }; - - // release memory in IE - div = null; -})(); - -function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem[ expando ] === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 && !isXML ){ - elem[ expando ] = doneName; - elem.sizset = i; - } - - if ( elem.nodeName.toLowerCase() === cur ) { - match = elem; - break; - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem[ expando ] === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 ) { - if ( !isXML ) { - elem[ expando ] = doneName; - elem.sizset = i; - } - - if ( typeof cur !== "string" ) { - if ( elem === cur ) { - match = true; - break; - } - - } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { - match = elem; - break; - } - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -if ( document.documentElement.contains ) { - Sizzle.contains = function( a, b ) { - return a !== b && (a.contains ? a.contains(b) : true); - }; - -} else if ( document.documentElement.compareDocumentPosition ) { - Sizzle.contains = function( a, b ) { - return !!(a.compareDocumentPosition(b) & 16); - }; - -} else { - Sizzle.contains = function() { - return false; - }; -} - -Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; - - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -var posProcess = function( selector, context, seed ) { - var match, - tmpSet = [], - later = "", - root = context.nodeType ? [context] : context; - - // Position selectors must be done after the filter - // And so must :not(positional) so we move all PSEUDOs to the end - while ( (match = Expr.match.PSEUDO.exec( selector )) ) { - later += match[0]; - selector = selector.replace( Expr.match.PSEUDO, "" ); - } - - selector = Expr.relative[selector] ? selector + "*" : selector; - - for ( var i = 0, l = root.length; i < l; i++ ) { - Sizzle( selector, root[i], tmpSet, seed ); - } - - return Sizzle.filter( later, tmpSet ); -}; - -// EXPOSE -// Override sizzle attribute retrieval -Sizzle.attr = jQuery.attr; -Sizzle.selectors.attrMap = {}; -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.filters; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - -})(); - - -var runtil = /Until$/, - rparentsprev = /^(?:parents|prevUntil|prevAll)/, - // Note: This RegExp should be improved, or likely pulled from Sizzle - rmultiselector = /,/, - isSimple = /^.[^:#\[\.,]*$/, - slice = Array.prototype.slice, - POS = jQuery.expr.match.globalPOS, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend({ - find: function( selector ) { - var self = this, - i, l; - - if ( typeof selector !== "string" ) { - return jQuery( selector ).filter(function() { - for ( i = 0, l = self.length; i < l; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - }); - } - - var ret = this.pushStack( "", "find", selector ), - length, n, r; - - for ( i = 0, l = this.length; i < l; i++ ) { - length = ret.length; - jQuery.find( selector, this[i], ret ); - - if ( i > 0 ) { - // Make sure that the results are unique - for ( n = length; n < ret.length; n++ ) { - for ( r = 0; r < length; r++ ) { - if ( ret[r] === ret[n] ) { - ret.splice(n--, 1); - break; - } - } - } - } - } - - return ret; - }, - - has: function( target ) { - var targets = jQuery( target ); - return this.filter(function() { - for ( var i = 0, l = targets.length; i < l; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector, false), "not", selector); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector, true), "filter", selector ); - }, - - is: function( selector ) { - return !!selector && ( - typeof selector === "string" ? - // If this is a positional selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - POS.test( selector ) ? - jQuery( selector, this.context ).index( this[0] ) >= 0 : - jQuery.filter( selector, this ).length > 0 : - this.filter( selector ).length > 0 ); - }, - - closest: function( selectors, context ) { - var ret = [], i, l, cur = this[0]; - - // Array (deprecated as of jQuery 1.7) - if ( jQuery.isArray( selectors ) ) { - var level = 1; - - while ( cur && cur.ownerDocument && cur !== context ) { - for ( i = 0; i < selectors.length; i++ ) { - - if ( jQuery( cur ).is( selectors[ i ] ) ) { - ret.push({ selector: selectors[ i ], elem: cur, level: level }); - } - } - - cur = cur.parentNode; - level++; - } - - return ret; - } - - // String - var pos = POS.test( selectors ) || typeof selectors !== "string" ? - jQuery( selectors, context || this.context ) : - 0; - - for ( i = 0, l = this.length; i < l; i++ ) { - cur = this[i]; - - while ( cur ) { - if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { - ret.push( cur ); - break; - - } else { - cur = cur.parentNode; - if ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) { - break; - } - } - } - } - - ret = ret.length > 1 ? jQuery.unique( ret ) : ret; - - return this.pushStack( ret, "closest", selectors ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; - } - - // index in selector - if ( typeof elem === "string" ) { - return jQuery.inArray( this[0], jQuery( elem ) ); - } - - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? - all : - jQuery.unique( all ) ); - }, - - andSelf: function() { - return this.add( this.prevObject ); - } -}); - -// A painfully simple check to see if an element is disconnected -// from a document (should be improved, where feasible). -function isDisconnected( node ) { - return !node || !node.parentNode || node.parentNode.nodeType === 11; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return jQuery.nth( elem, 2, "nextSibling" ); - }, - prev: function( elem ) { - return jQuery.nth( elem, 2, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.makeArray( elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( !runtil.test( name ) ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; - - if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - - return this.pushStack( ret, name, slice.call( arguments ).join(",") ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 ? - jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : - jQuery.find.matches(expr, elems); - }, - - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - nth: function( cur, result, dir, elem ) { - result = result || 1; - var num = 0; - - for ( ; cur; cur = cur[dir] ) { - if ( cur.nodeType === 1 && ++num === result ) { - break; - } - } - - return cur; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, keep ) { - - // Can't pass null or undefined to indexOf in Firefox 4 - // Set to 0 to skip string check - qualifier = qualifier || 0; - - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep(elements, function( elem, i ) { - var retVal = !!qualifier.call( elem, i, elem ); - return retVal === keep; - }); - - } else if ( qualifier.nodeType ) { - return jQuery.grep(elements, function( elem, i ) { - return ( elem === qualifier ) === keep; - }); - - } else if ( typeof qualifier === "string" ) { - var filtered = jQuery.grep(elements, function( elem ) { - return elem.nodeType === 1; - }); - - if ( isSimple.test( qualifier ) ) { - return jQuery.filter(qualifier, filtered, !keep); - } else { - qualifier = jQuery.filter( qualifier, filtered ); - } - } - - return jQuery.grep(elements, function( elem, i ) { - return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; - }); -} - - - - -function createSafeFragment( document ) { - var list = nodeNames.split( "|" ), - safeFrag = document.createDocumentFragment(); - - if ( safeFrag.createElement ) { - while ( list.length ) { - safeFrag.createElement( - list.pop() - ); - } - } - return safeFrag; -} - -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + - "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", - rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, - rtagName = /<([\w:]+)/, - rtbody = /<tbody/i, - rhtml = /<|&#?\w+;/, - rnoInnerhtml = /<(?:script|style)/i, - rnocache = /<(?:script|object|embed|option|style)/i, - rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), - // checked="checked" or checked - rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, - rscriptType = /\/(java|ecma)script/i, - rcleanScript = /^\s*<!(?:\[CDATA\[|\-\-)/, - wrapMap = { - option: [ 1, "<select multiple='multiple'>", "</select>" ], - legend: [ 1, "<fieldset>", "</fieldset>" ], - thead: [ 1, "<table>", "</table>" ], - tr: [ 2, "<table><tbody>", "</tbody></table>" ], - td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], - col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], - area: [ 1, "<map>", "</map>" ], - _default: [ 0, "", "" ] - }, - safeFragment = createSafeFragment( document ); - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// IE can't serialize <link> and <script> tags normally -if ( !jQuery.support.htmlSerialize ) { - wrapMap._default = [ 1, "div<div>", "</div>" ]; -} - -jQuery.fn.extend({ - text: function( value ) { - return jQuery.access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); - }, null, value, arguments.length ); - }, - - wrapAll: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapAll( html.call(this, i) ); - }); - } - - if ( this[0] ) { - // The elements to wrap the target around - var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); - - if ( this[0].parentNode ) { - wrap.insertBefore( this[0] ); - } - - wrap.map(function() { - var elem = this; - - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { - elem = elem.firstChild; - } - - return elem; - }).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapInner( html.call(this, i) ); - }); - } - - return this.each(function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - }); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each(function(i) { - jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); - }); - }, - - unwrap: function() { - return this.parent().each(function() { - if ( !jQuery.nodeName( this, "body" ) ) { - jQuery( this ).replaceWith( this.childNodes ); - } - }).end(); - }, - - append: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 ) { - this.appendChild( elem ); - } - }); - }, - - prepend: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 ) { - this.insertBefore( elem, this.firstChild ); - } - }); - }, - - before: function() { - if ( this[0] && this[0].parentNode ) { - return this.domManip(arguments, false, function( elem ) { - this.parentNode.insertBefore( elem, this ); - }); - } else if ( arguments.length ) { - var set = jQuery.clean( arguments ); - set.push.apply( set, this.toArray() ); - return this.pushStack( set, "before", arguments ); - } - }, - - after: function() { - if ( this[0] && this[0].parentNode ) { - return this.domManip(arguments, false, function( elem ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - }); - } else if ( arguments.length ) { - var set = this.pushStack( this, "after", arguments ); - set.push.apply( set, jQuery.clean(arguments) ); - return set; - } - }, - - // keepData is for internal use only--do not document - remove: function( selector, keepData ) { - for ( var i = 0, elem; (elem = this[i]) != null; i++ ) { - if ( !selector || jQuery.filter( selector, [ elem ] ).length ) { - if ( !keepData && elem.nodeType === 1 ) { - jQuery.cleanData( elem.getElementsByTagName("*") ); - jQuery.cleanData( [ elem ] ); - } - - if ( elem.parentNode ) { - elem.parentNode.removeChild( elem ); - } - } - } - - return this; - }, - - empty: function() { - for ( var i = 0, elem; (elem = this[i]) != null; i++ ) { - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( elem.getElementsByTagName("*") ); - } - - // Remove any remaining nodes - while ( elem.firstChild ) { - elem.removeChild( elem.firstChild ); - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function () { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - }); - }, - - html: function( value ) { - return jQuery.access( this, function( value ) { - var elem = this[0] || {}, - i = 0, - l = this.length; - - if ( value === undefined ) { - return elem.nodeType === 1 ? - elem.innerHTML.replace( rinlinejQuery, "" ) : - null; - } - - - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && - !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { - - value = value.replace( rxhtmlTag, "<$1></$2>" ); - - try { - for (; i < l; i++ ) { - // Remove element nodes and prevent memory leaks - elem = this[i] || {}; - if ( elem.nodeType === 1 ) { - jQuery.cleanData( elem.getElementsByTagName( "*" ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch(e) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function( value ) { - if ( this[0] && this[0].parentNode ) { - // Make sure that the elements are removed from the DOM before they are inserted - // this can help fix replacing a parent with child elements - if ( jQuery.isFunction( value ) ) { - return this.each(function(i) { - var self = jQuery(this), old = self.html(); - self.replaceWith( value.call( this, i, old ) ); - }); - } - - if ( typeof value !== "string" ) { - value = jQuery( value ).detach(); - } - - return this.each(function() { - var next = this.nextSibling, - parent = this.parentNode; - - jQuery( this ).remove(); - - if ( next ) { - jQuery(next).before( value ); - } else { - jQuery(parent).append( value ); - } - }); - } else { - return this.length ? - this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value ) : - this; - } - }, - - detach: function( selector ) { - return this.remove( selector, true ); - }, - - domManip: function( args, table, callback ) { - var results, first, fragment, parent, - value = args[0], - scripts = []; - - // We can't cloneNode fragments that contain checked, in WebKit - if ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === "string" && rchecked.test( value ) ) { - return this.each(function() { - jQuery(this).domManip( args, table, callback, true ); - }); - } - - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - args[0] = value.call(this, i, table ? self.html() : undefined); - self.domManip( args, table, callback ); - }); - } - - if ( this[0] ) { - parent = value && value.parentNode; - - // If we're in a fragment, just use that instead of building a new one - if ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) { - results = { fragment: parent }; - - } else { - results = jQuery.buildFragment( args, this, scripts ); - } - - fragment = results.fragment; - - if ( fragment.childNodes.length === 1 ) { - first = fragment = fragment.firstChild; - } else { - first = fragment.firstChild; - } - - if ( first ) { - table = table && jQuery.nodeName( first, "tr" ); - - for ( var i = 0, l = this.length, lastIndex = l - 1; i < l; i++ ) { - callback.call( - table ? - root(this[i], first) : - this[i], - // Make sure that we do not leak memory by inadvertently discarding - // the original fragment (which might have attached data) instead of - // using it; in addition, use the original fragment object for the last - // item instead of first because it can end up being emptied incorrectly - // in certain situations (Bug #8070). - // Fragments from the fragment cache must always be cloned and never used - // in place. - results.cacheable || ( l > 1 && i < lastIndex ) ? - jQuery.clone( fragment, true, true ) : - fragment - ); - } - } - - if ( scripts.length ) { - jQuery.each( scripts, function( i, elem ) { - if ( elem.src ) { - jQuery.ajax({ - type: "GET", - global: false, - url: elem.src, - async: false, - dataType: "script" - }); - } else { - jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "/*$0*/" ) ); - } - - if ( elem.parentNode ) { - elem.parentNode.removeChild( elem ); - } - }); - } - } - - return this; - } -}); - -function root( elem, cur ) { - return jQuery.nodeName(elem, "table") ? - (elem.getElementsByTagName("tbody")[0] || - elem.appendChild(elem.ownerDocument.createElement("tbody"))) : - elem; -} - -function cloneCopyEvent( src, dest ) { - - if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { - return; - } - - var type, i, l, - oldData = jQuery._data( src ), - curData = jQuery._data( dest, oldData ), - events = oldData.events; - - if ( events ) { - delete curData.handle; - curData.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - - // make the cloned public data object a copy from the original - if ( curData.data ) { - curData.data = jQuery.extend( {}, curData.data ); - } -} - -function cloneFixAttributes( src, dest ) { - var nodeName; - - // We do not need to do anything for non-Elements - if ( dest.nodeType !== 1 ) { - return; - } - - // clearAttributes removes the attributes, which we don't want, - // but also removes the attachEvent events, which we *do* want - if ( dest.clearAttributes ) { - dest.clearAttributes(); - } - - // mergeAttributes, in contrast, only merges back on the - // original attributes, not the events - if ( dest.mergeAttributes ) { - dest.mergeAttributes( src ); - } - - nodeName = dest.nodeName.toLowerCase(); - - // IE6-8 fail to clone children inside object elements that use - // the proprietary classid attribute value (rather than the type - // attribute) to identify the type of content to display - if ( nodeName === "object" ) { - dest.outerHTML = src.outerHTML; - - } else if ( nodeName === "input" && (src.type === "checkbox" || src.type === "radio") ) { - // IE6-8 fails to persist the checked state of a cloned checkbox - // or radio button. Worse, IE6-7 fail to give the cloned element - // a checked appearance if the defaultChecked value isn't also set - if ( src.checked ) { - dest.defaultChecked = dest.checked = src.checked; - } - - // IE6-7 get confused and end up setting the value of a cloned - // checkbox/radio button to an empty string instead of "on" - if ( dest.value !== src.value ) { - dest.value = src.value; - } - - // IE6-8 fails to return the selected option to the default selected - // state when cloning options - } else if ( nodeName === "option" ) { - dest.selected = src.defaultSelected; - - // IE6-8 fails to set the defaultValue to the correct value when - // cloning other types of input fields - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - - // IE blanks contents when cloning scripts - } else if ( nodeName === "script" && dest.text !== src.text ) { - dest.text = src.text; - } - - // Event data gets referenced instead of copied if the expando - // gets copied too - dest.removeAttribute( jQuery.expando ); - - // Clear flags for bubbling special change/submit events, they must - // be reattached when the newly cloned events are first activated - dest.removeAttribute( "_submit_attached" ); - dest.removeAttribute( "_change_attached" ); -} - -jQuery.buildFragment = function( args, nodes, scripts ) { - var fragment, cacheable, cacheresults, doc, - first = args[ 0 ]; - - // nodes may contain either an explicit document object, - // a jQuery collection or context object. - // If nodes[0] contains a valid object to assign to doc - if ( nodes && nodes[0] ) { - doc = nodes[0].ownerDocument || nodes[0]; - } - - // Ensure that an attr object doesn't incorrectly stand in as a document object - // Chrome and Firefox seem to allow this to occur and will throw exception - // Fixes #8950 - if ( !doc.createDocumentFragment ) { - doc = document; - } - - // Only cache "small" (1/2 KB) HTML strings that are associated with the main document - // Cloning options loses the selected state, so don't cache them - // IE 6 doesn't like it when you put <object> or <embed> elements in a fragment - // Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache - // Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501 - if ( args.length === 1 && typeof first === "string" && first.length < 512 && doc === document && - first.charAt(0) === "<" && !rnocache.test( first ) && - (jQuery.support.checkClone || !rchecked.test( first )) && - (jQuery.support.html5Clone || !rnoshimcache.test( first )) ) { - - cacheable = true; - - cacheresults = jQuery.fragments[ first ]; - if ( cacheresults && cacheresults !== 1 ) { - fragment = cacheresults; - } - } - - if ( !fragment ) { - fragment = doc.createDocumentFragment(); - jQuery.clean( args, doc, fragment, scripts ); - } - - if ( cacheable ) { - jQuery.fragments[ first ] = cacheresults ? fragment : 1; - } - - return { fragment: fragment, cacheable: cacheable }; -}; - -jQuery.fragments = {}; - -jQuery.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var ret = [], - insert = jQuery( selector ), - parent = this.length === 1 && this[0].parentNode; - - if ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) { - insert[ original ]( this[0] ); - return this; - - } else { - for ( var i = 0, l = insert.length; i < l; i++ ) { - var elems = ( i > 0 ? this.clone(true) : this ).get(); - jQuery( insert[i] )[ original ]( elems ); - ret = ret.concat( elems ); - } - - return this.pushStack( ret, name, insert.selector ); - } - }; -}); - -function getAll( elem ) { - if ( typeof elem.getElementsByTagName !== "undefined" ) { - return elem.getElementsByTagName( "*" ); - - } else if ( typeof elem.querySelectorAll !== "undefined" ) { - return elem.querySelectorAll( "*" ); - - } else { - return []; - } -} - -// Used in clean, fixes the defaultChecked property -function fixDefaultChecked( elem ) { - if ( elem.type === "checkbox" || elem.type === "radio" ) { - elem.defaultChecked = elem.checked; - } -} -// Finds all inputs and passes them to fixDefaultChecked -function findInputs( elem ) { - var nodeName = ( elem.nodeName || "" ).toLowerCase(); - if ( nodeName === "input" ) { - fixDefaultChecked( elem ); - // Skip scripts, get other children - } else if ( nodeName !== "script" && typeof elem.getElementsByTagName !== "undefined" ) { - jQuery.grep( elem.getElementsByTagName("input"), fixDefaultChecked ); - } -} - -// Derived From: http://www.iecss.com/shimprove/javascript/shimprove.1-0-1.js -function shimCloneNode( elem ) { - var div = document.createElement( "div" ); - safeFragment.appendChild( div ); - - div.innerHTML = elem.outerHTML; - return div.firstChild; -} - -jQuery.extend({ - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var srcElements, - destElements, - i, - // IE<=8 does not properly clone detached, unknown element nodes - clone = jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ? - elem.cloneNode( true ) : - shimCloneNode( elem ); - - if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && - (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { - // IE copies events bound via attachEvent when using cloneNode. - // Calling detachEvent on the clone will also remove the events - // from the original. In order to get around this, we use some - // proprietary methods to clear the events. Thanks to MooTools - // guys for this hotness. - - cloneFixAttributes( elem, clone ); - - // Using Sizzle here is crazy slow, so we use getElementsByTagName instead - srcElements = getAll( elem ); - destElements = getAll( clone ); - - // Weird iteration because IE will replace the length property - // with an element if you are cloning the body and one of the - // elements on the page has a name or id of "length" - for ( i = 0; srcElements[i]; ++i ) { - // Ensure that the destination node is not null; Fixes #9587 - if ( destElements[i] ) { - cloneFixAttributes( srcElements[i], destElements[i] ); - } - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - cloneCopyEvent( elem, clone ); - - if ( deepDataAndEvents ) { - srcElements = getAll( elem ); - destElements = getAll( clone ); - - for ( i = 0; srcElements[i]; ++i ) { - cloneCopyEvent( srcElements[i], destElements[i] ); - } - } - } - - srcElements = destElements = null; - - // Return the cloned set - return clone; - }, - - clean: function( elems, context, fragment, scripts ) { - var checkScriptType, script, j, - ret = []; - - context = context || document; - - // !context.createElement fails in IE with an error but returns typeof 'object' - if ( typeof context.createElement === "undefined" ) { - context = context.ownerDocument || context[0] && context[0].ownerDocument || document; - } - - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - if ( typeof elem === "number" ) { - elem += ""; - } - - if ( !elem ) { - continue; - } - - // Convert html string into DOM nodes - if ( typeof elem === "string" ) { - if ( !rhtml.test( elem ) ) { - elem = context.createTextNode( elem ); - } else { - // Fix "XHTML"-style tags in all browsers - elem = elem.replace(rxhtmlTag, "<$1></$2>"); - - // Trim whitespace, otherwise indexOf won't work as expected - var tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(), - wrap = wrapMap[ tag ] || wrapMap._default, - depth = wrap[0], - div = context.createElement("div"), - safeChildNodes = safeFragment.childNodes, - remove; - - // Append wrapper element to unknown element safe doc fragment - if ( context === document ) { - // Use the fragment we've already created for this document - safeFragment.appendChild( div ); - } else { - // Use a fragment created with the owner document - createSafeFragment( context ).appendChild( div ); - } - - // Go to html and back, then peel off extra wrappers - div.innerHTML = wrap[1] + elem + wrap[2]; - - // Move to the right depth - while ( depth-- ) { - div = div.lastChild; - } - - // Remove IE's autoinserted <tbody> from table fragments - if ( !jQuery.support.tbody ) { - - // String was a <table>, *may* have spurious <tbody> - var hasBody = rtbody.test(elem), - tbody = tag === "table" && !hasBody ? - div.firstChild && div.firstChild.childNodes : - - // String was a bare <thead> or <tfoot> - wrap[1] === "<table>" && !hasBody ? - div.childNodes : - []; - - for ( j = tbody.length - 1; j >= 0 ; --j ) { - if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) { - tbody[ j ].parentNode.removeChild( tbody[ j ] ); - } - } - } - - // IE completely kills leading whitespace when innerHTML is used - if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild ); - } - - elem = div.childNodes; - - // Clear elements from DocumentFragment (safeFragment or otherwise) - // to avoid hoarding elements. Fixes #11356 - if ( div ) { - div.parentNode.removeChild( div ); - - // Guard against -1 index exceptions in FF3.6 - if ( safeChildNodes.length > 0 ) { - remove = safeChildNodes[ safeChildNodes.length - 1 ]; - - if ( remove && remove.parentNode ) { - remove.parentNode.removeChild( remove ); - } - } - } - } - } - - // Resets defaultChecked for any radios and checkboxes - // about to be appended to the DOM in IE 6/7 (#8060) - var len; - if ( !jQuery.support.appendChecked ) { - if ( elem[0] && typeof (len = elem.length) === "number" ) { - for ( j = 0; j < len; j++ ) { - findInputs( elem[j] ); - } - } else { - findInputs( elem ); - } - } - - if ( elem.nodeType ) { - ret.push( elem ); - } else { - ret = jQuery.merge( ret, elem ); - } - } - - if ( fragment ) { - checkScriptType = function( elem ) { - return !elem.type || rscriptType.test( elem.type ); - }; - for ( i = 0; ret[i]; i++ ) { - script = ret[i]; - if ( scripts && jQuery.nodeName( script, "script" ) && (!script.type || rscriptType.test( script.type )) ) { - scripts.push( script.parentNode ? script.parentNode.removeChild( script ) : script ); - - } else { - if ( script.nodeType === 1 ) { - var jsTags = jQuery.grep( script.getElementsByTagName( "script" ), checkScriptType ); - - ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) ); - } - fragment.appendChild( script ); - } - } - } - - return ret; - }, - - cleanData: function( elems ) { - var data, id, - cache = jQuery.cache, - special = jQuery.event.special, - deleteExpando = jQuery.support.deleteExpando; - - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) { - continue; - } - - id = elem[ jQuery.expando ]; - - if ( id ) { - data = cache[ id ]; - - if ( data && data.events ) { - for ( var type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - - // Null the DOM reference to avoid IE6/7/8 leak (#7054) - if ( data.handle ) { - data.handle.elem = null; - } - } - - if ( deleteExpando ) { - delete elem[ jQuery.expando ]; - - } else if ( elem.removeAttribute ) { - elem.removeAttribute( jQuery.expando ); - } - - delete cache[ id ]; - } - } - } -}); - - - - -var ralpha = /alpha\([^)]*\)/i, - ropacity = /opacity=([^)]*)/, - // fixed for IE9, see #8346 - rupper = /([A-Z]|^ms)/g, - rnum = /^[\-+]?(?:\d*\.)?\d+$/i, - rnumnonpx = /^-?(?:\d*\.)?\d+(?!px)[^\d\s]+$/i, - rrelNum = /^([\-+])=([\-+.\de]+)/, - rmargin = /^margin/, - - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - - // order is important! - cssExpand = [ "Top", "Right", "Bottom", "Left" ], - - curCSS, - - getComputedStyle, - currentStyle; - -jQuery.fn.css = function( name, value ) { - return jQuery.access( this, function( elem, name, value ) { - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); -}; - -jQuery.extend({ - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - - } else { - return elem.style.opacity; - } - } - } - }, - - // Exclude the following css properties to add px - cssNumber: { - "fillOpacity": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - // normalize float css property - "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, origName = jQuery.camelCase( name ), - style = elem.style, hooks = jQuery.cssHooks[ origName ]; - - name = jQuery.cssProps[ origName ] || origName; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // convert relative number strings (+= or -=) to relative numbers. #7345 - if ( type === "string" && (ret = rrelNum.exec( value )) ) { - value = ( +( ret[1] + 1) * +ret[2] ) + parseFloat( jQuery.css( elem, name ) ); - // Fixes bug #9237 - type = "number"; - } - - // Make sure that NaN and null values aren't set. See: #7116 - if ( value == null || type === "number" && isNaN( value ) ) { - return; - } - - // If a number was passed in, add 'px' to the (except for certain CSS properties) - if ( type === "number" && !jQuery.cssNumber[ origName ] ) { - value += "px"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value )) !== undefined ) { - // Wrapped to prevent IE from throwing errors when 'invalid' values are provided - // Fixes bug #5509 - try { - style[ name ] = value; - } catch(e) {} - } - - } else { - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra ) { - var ret, hooks; - - // Make sure that we're working with the right name - name = jQuery.camelCase( name ); - hooks = jQuery.cssHooks[ name ]; - name = jQuery.cssProps[ name ] || name; - - // cssFloat needs a special treatment - if ( name === "cssFloat" ) { - name = "float"; - } - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, true, extra )) !== undefined ) { - return ret; - - // Otherwise, if a way to get the computed value exists, use that - } else if ( curCSS ) { - return curCSS( elem, name ); - } - }, - - // A method for quickly swapping in/out CSS properties to get correct calculations - swap: function( elem, options, callback ) { - var old = {}, - ret, name; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; - } -}); - -// DEPRECATED in 1.3, Use jQuery.css() instead -jQuery.curCSS = jQuery.css; - -if ( document.defaultView && document.defaultView.getComputedStyle ) { - getComputedStyle = function( elem, name ) { - var ret, defaultView, computedStyle, width, - style = elem.style; - - name = name.replace( rupper, "-$1" ).toLowerCase(); - - if ( (defaultView = elem.ownerDocument.defaultView) && - (computedStyle = defaultView.getComputedStyle( elem, null )) ) { - - ret = computedStyle.getPropertyValue( name ); - if ( ret === "" && !jQuery.contains( elem.ownerDocument.documentElement, elem ) ) { - ret = jQuery.style( elem, name ); - } - } - - // A tribute to the "awesome hack by Dean Edwards" - // WebKit uses "computed value (percentage if specified)" instead of "used value" for margins - // which is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values - if ( !jQuery.support.pixelMargin && computedStyle && rmargin.test( name ) && rnumnonpx.test( ret ) ) { - width = style.width; - style.width = ret; - ret = computedStyle.width; - style.width = width; - } - - return ret; - }; -} - -if ( document.documentElement.currentStyle ) { - currentStyle = function( elem, name ) { - var left, rsLeft, uncomputed, - ret = elem.currentStyle && elem.currentStyle[ name ], - style = elem.style; - - // Avoid setting ret to empty string here - // so we don't default to auto - if ( ret == null && style && (uncomputed = style[ name ]) ) { - ret = uncomputed; - } - - // From the awesome hack by Dean Edwards - // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 - - // If we're not dealing with a regular pixel number - // but a number that has a weird ending, we need to convert it to pixels - if ( rnumnonpx.test( ret ) ) { - - // Remember the original values - left = style.left; - rsLeft = elem.runtimeStyle && elem.runtimeStyle.left; - - // Put in the new values to get a computed value out - if ( rsLeft ) { - elem.runtimeStyle.left = elem.currentStyle.left; - } - style.left = name === "fontSize" ? "1em" : ret; - ret = style.pixelLeft + "px"; - - // Revert the changed values - style.left = left; - if ( rsLeft ) { - elem.runtimeStyle.left = rsLeft; - } - } - - return ret === "" ? "auto" : ret; - }; -} - -curCSS = getComputedStyle || currentStyle; - -function getWidthOrHeight( elem, name, extra ) { - - // Start with offset property - var val = name === "width" ? elem.offsetWidth : elem.offsetHeight, - i = name === "width" ? 1 : 0, - len = 4; - - if ( val > 0 ) { - if ( extra !== "border" ) { - for ( ; i < len; i += 2 ) { - if ( !extra ) { - val -= parseFloat( jQuery.css( elem, "padding" + cssExpand[ i ] ) ) || 0; - } - if ( extra === "margin" ) { - val += parseFloat( jQuery.css( elem, extra + cssExpand[ i ] ) ) || 0; - } else { - val -= parseFloat( jQuery.css( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; - } - } - } - - return val + "px"; - } - - // Fall back to computed then uncomputed css if necessary - val = curCSS( elem, name ); - if ( val < 0 || val == null ) { - val = elem.style[ name ]; - } - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test(val) ) { - return val; - } - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - - // Add padding, border, margin - if ( extra ) { - for ( ; i < len; i += 2 ) { - val += parseFloat( jQuery.css( elem, "padding" + cssExpand[ i ] ) ) || 0; - if ( extra !== "padding" ) { - val += parseFloat( jQuery.css( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; - } - if ( extra === "margin" ) { - val += parseFloat( jQuery.css( elem, extra + cssExpand[ i ]) ) || 0; - } - } - } - - return val + "px"; -} - -jQuery.each([ "height", "width" ], function( i, name ) { - jQuery.cssHooks[ name ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - if ( elem.offsetWidth !== 0 ) { - return getWidthOrHeight( elem, name, extra ); - } else { - return jQuery.swap( elem, cssShow, function() { - return getWidthOrHeight( elem, name, extra ); - }); - } - } - }, - - set: function( elem, value ) { - return rnum.test( value ) ? - value + "px" : - value; - } - }; -}); - -if ( !jQuery.support.opacity ) { - jQuery.cssHooks.opacity = { - get: function( elem, computed ) { - // IE uses filters for opacity - return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? - ( parseFloat( RegExp.$1 ) / 100 ) + "" : - computed ? "1" : ""; - }, - - set: function( elem, value ) { - var style = elem.style, - currentStyle = elem.currentStyle, - opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", - filter = currentStyle && currentStyle.filter || style.filter || ""; - - // IE has trouble with opacity if it does not have layout - // Force it by setting the zoom level - style.zoom = 1; - - // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 - if ( value >= 1 && jQuery.trim( filter.replace( ralpha, "" ) ) === "" ) { - - // Setting style.filter to null, "" & " " still leave "filter:" in the cssText - // if "filter:" is present at all, clearType is disabled, we want to avoid this - // style.removeAttribute is IE Only, but so apparently is this code path... - style.removeAttribute( "filter" ); - - // if there there is no filter style applied in a css rule, we are done - if ( currentStyle && !currentStyle.filter ) { - return; - } - } - - // otherwise, set new filter values - style.filter = ralpha.test( filter ) ? - filter.replace( ralpha, opacity ) : - filter + " " + opacity; - } - }; -} - -jQuery(function() { - // This hook cannot be added until DOM ready because the support test - // for it is not run until after DOM ready - if ( !jQuery.support.reliableMarginRight ) { - jQuery.cssHooks.marginRight = { - get: function( elem, computed ) { - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - // Work around by temporarily setting element display to inline-block - return jQuery.swap( elem, { "display": "inline-block" }, function() { - if ( computed ) { - return curCSS( elem, "margin-right" ); - } else { - return elem.style.marginRight; - } - }); - } - }; - } -}); - -if ( jQuery.expr && jQuery.expr.filters ) { - jQuery.expr.filters.hidden = function( elem ) { - var width = elem.offsetWidth, - height = elem.offsetHeight; - - return ( width === 0 && height === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none"); - }; - - jQuery.expr.filters.visible = function( elem ) { - return !jQuery.expr.filters.hidden( elem ); - }; -} - -// These hooks are used by animate to expand properties -jQuery.each({ - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i, - - // assumes a single number if not a string - parts = typeof value === "string" ? value.split(" ") : [ value ], - expanded = {}; - - for ( i = 0; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; -}); - - - - -var r20 = /%20/g, - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rhash = /#.*$/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL - rinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i, - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - rquery = /\?/, - rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, - rselectTextarea = /^(?:select|textarea)/i, - rspacesAjax = /\s+/, - rts = /([?&])_=[^&]*/, - rurl = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/, - - // Keep a copy of the old load method - _load = jQuery.fn.load, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Document location - ajaxLocation, - - // Document location segments - ajaxLocParts, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = ["*/"] + ["*"]; - -// #8138, IE may throw an exception when accessing -// a field from window.location if document.domain has been set -try { - ajaxLocation = location.href; -} catch( e ) { - // Use the href attribute of an A element - // since IE will modify it given document.location - ajaxLocation = document.createElement( "a" ); - ajaxLocation.href = ""; - ajaxLocation = ajaxLocation.href; -} - -// Segment location into parts -ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - if ( jQuery.isFunction( func ) ) { - var dataTypes = dataTypeExpression.toLowerCase().split( rspacesAjax ), - i = 0, - length = dataTypes.length, - dataType, - list, - placeBefore; - - // For each dataType in the dataTypeExpression - for ( ; i < length; i++ ) { - dataType = dataTypes[ i ]; - // We control if we're asked to add before - // any existing element - placeBefore = /^\+/.test( dataType ); - if ( placeBefore ) { - dataType = dataType.substr( 1 ) || "*"; - } - list = structure[ dataType ] = structure[ dataType ] || []; - // then we add to the structure accordingly - list[ placeBefore ? "unshift" : "push" ]( func ); - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR, - dataType /* internal */, inspected /* internal */ ) { - - dataType = dataType || options.dataTypes[ 0 ]; - inspected = inspected || {}; - - inspected[ dataType ] = true; - - var list = structure[ dataType ], - i = 0, - length = list ? list.length : 0, - executeOnly = ( structure === prefilters ), - selection; - - for ( ; i < length && ( executeOnly || !selection ); i++ ) { - selection = list[ i ]( options, originalOptions, jqXHR ); - // If we got redirected to another dataType - // we try there if executing only and not done already - if ( typeof selection === "string" ) { - if ( !executeOnly || inspected[ selection ] ) { - selection = undefined; - } else { - options.dataTypes.unshift( selection ); - selection = inspectPrefiltersOrTransports( - structure, options, originalOptions, jqXHR, selection, inspected ); - } - } - } - // If we're only executing or nothing was selected - // we try the catchall dataType if not done already - if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) { - selection = inspectPrefiltersOrTransports( - structure, options, originalOptions, jqXHR, "*", inspected ); - } - // unnecessary when only executing (prefilters) - // but it'll be ignored by the caller in that case - return selection; -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } -} - -jQuery.fn.extend({ - load: function( url, params, callback ) { - if ( typeof url !== "string" && _load ) { - return _load.apply( this, arguments ); - - // Don't do a request if no elements are being requested - } else if ( !this.length ) { - return this; - } - - var off = url.indexOf( " " ); - if ( off >= 0 ) { - var selector = url.slice( off, url.length ); - url = url.slice( 0, off ); - } - - // Default to a GET request - var type = "GET"; - - // If the second parameter was provided - if ( params ) { - // If it's a function - if ( jQuery.isFunction( params ) ) { - // We assume that it's the callback - callback = params; - params = undefined; - - // Otherwise, build a param string - } else if ( typeof params === "object" ) { - params = jQuery.param( params, jQuery.ajaxSettings.traditional ); - type = "POST"; - } - } - - var self = this; - - // Request the remote document - jQuery.ajax({ - url: url, - type: type, - dataType: "html", - data: params, - // Complete callback (responseText is used internally) - complete: function( jqXHR, status, responseText ) { - // Store the response as specified by the jqXHR object - responseText = jqXHR.responseText; - // If successful, inject the HTML into all the matched elements - if ( jqXHR.isResolved() ) { - // #4825: Get the actual response in case - // a dataFilter is present in ajaxSettings - jqXHR.done(function( r ) { - responseText = r; - }); - // See if a selector was specified - self.html( selector ? - // Create a dummy div to hold the results - jQuery("<div>") - // inject the contents of the document in, removing the scripts - // to avoid any 'Permission Denied' errors in IE - .append(responseText.replace(rscript, "")) - - // Locate the specified elements - .find(selector) : - - // If not, just inject the full result - responseText ); - } - - if ( callback ) { - self.each( callback, [ responseText, status, jqXHR ] ); - } - } - }); - - return this; - }, - - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - - serializeArray: function() { - return this.map(function(){ - return this.elements ? jQuery.makeArray( this.elements ) : this; - }) - .filter(function(){ - return this.name && !this.disabled && - ( this.checked || rselectTextarea.test( this.nodeName ) || - rinput.test( this.type ) ); - }) - .map(function( i, elem ){ - var val = jQuery( this ).val(); - - return val == null ? - null : - jQuery.isArray( val ) ? - jQuery.map( val, function( val, i ){ - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - }) : - { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - }).get(); - } -}); - -// Attach a bunch of functions for handling common AJAX events -jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split( " " ), function( i, o ){ - jQuery.fn[ o ] = function( f ){ - return this.on( o, f ); - }; -}); - -jQuery.each( [ "get", "post" ], function( i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - // shift arguments if data argument was omitted - if ( jQuery.isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - return jQuery.ajax({ - type: method, - url: url, - data: data, - success: callback, - dataType: type - }); - }; -}); - -jQuery.extend({ - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - if ( settings ) { - // Building a settings object - ajaxExtend( target, jQuery.ajaxSettings ); - } else { - // Extending ajaxSettings - settings = target; - target = jQuery.ajaxSettings; - } - ajaxExtend( target, settings ); - return target; - }, - - ajaxSettings: { - url: ajaxLocation, - isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), - global: true, - type: "GET", - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - processData: true, - async: true, - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - traditional: false, - headers: {}, - */ - - accepts: { - xml: "application/xml, text/xml", - html: "text/html", - text: "text/plain", - json: "application/json, text/javascript", - "*": allTypes - }, - - contents: { - xml: /xml/, - html: /html/, - json: /json/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText" - }, - - // List of data converters - // 1) key format is "source_type destination_type" (a single space in-between) - // 2) the catchall symbol "*" can be used for source_type - converters: { - - // Convert anything to text - "* text": window.String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": jQuery.parseJSON, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - context: true, - url: true - } - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - // Callbacks context - callbackContext = s.context || s, - // Context for global events - // It's the callbackContext if one was provided in the options - // and if it's a DOM node or a jQuery collection - globalEventContext = callbackContext !== s && - ( callbackContext.nodeType || callbackContext instanceof jQuery ) ? - jQuery( callbackContext ) : jQuery.event, - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - // Status-dependent callbacks - statusCode = s.statusCode || {}, - // ifModified key - ifModifiedKey, - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - // Response headers - responseHeadersString, - responseHeaders, - // transport - transport, - // timeout handle - timeoutTimer, - // Cross-domain detection vars - parts, - // The jqXHR state - state = 0, - // To know if global events are to be dispatched - fireGlobals, - // Loop variable - i, - // Fake xhr - jqXHR = { - - readyState: 0, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( !state ) { - var lname = name.toLowerCase(); - name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Raw string - getAllResponseHeaders: function() { - return state === 2 ? responseHeadersString : null; - }, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( state === 2 ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; - } - } - match = responseHeaders[ key.toLowerCase() ]; - } - return match === undefined ? null : match; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( !state ) { - s.mimeType = type; - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - statusText = statusText || "abort"; - if ( transport ) { - transport.abort( statusText ); - } - done( 0, statusText ); - return this; - } - }; - - // Callback for when everything is done - // It is defined here because jslint complains if it is declared - // at the end of the function (which would be more logical and readable) - function done( status, nativeStatusText, responses, headers ) { - - // Called once - if ( state === 2 ) { - return; - } - - // State is "done" now - state = 2; - - // Clear timeout if it exists - if ( timeoutTimer ) { - clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - var isSuccess, - success, - error, - statusText = nativeStatusText, - response = responses ? ajaxHandleResponses( s, jqXHR, responses ) : undefined, - lastModified, - etag; - - // If successful, handle type chaining - if ( status >= 200 && status < 300 || status === 304 ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - - if ( ( lastModified = jqXHR.getResponseHeader( "Last-Modified" ) ) ) { - jQuery.lastModified[ ifModifiedKey ] = lastModified; - } - if ( ( etag = jqXHR.getResponseHeader( "Etag" ) ) ) { - jQuery.etag[ ifModifiedKey ] = etag; - } - } - - // If not modified - if ( status === 304 ) { - - statusText = "notmodified"; - isSuccess = true; - - // If we have data - } else { - - try { - success = ajaxConvert( s, response ); - statusText = "success"; - isSuccess = true; - } catch(e) { - // We have a parsererror - statusText = "parsererror"; - error = e; - } - } - } else { - // We extract error from statusText - // then normalize statusText and status for non-aborts - error = statusText; - if ( !statusText || status ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = "" + ( nativeStatusText || statusText ); - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ), - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - // Attach deferreds - deferred.promise( jqXHR ); - jqXHR.success = jqXHR.done; - jqXHR.error = jqXHR.fail; - jqXHR.complete = completeDeferred.add; - - // Status-dependent callbacks - jqXHR.statusCode = function( map ) { - if ( map ) { - var tmp; - if ( state < 2 ) { - for ( tmp in map ) { - statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ]; - } - } else { - tmp = map[ jqXHR.status ]; - jqXHR.then( tmp, tmp ); - } - } - return this; - }; - - // Remove hash character (#7531: and string promotion) - // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) - // We also use the url parameter if available - s.url = ( ( url || s.url ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); - - // Extract dataTypes list - s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( rspacesAjax ); - - // Determine if a cross-domain request is in order - if ( s.crossDomain == null ) { - parts = rurl.exec( s.url.toLowerCase() ); - s.crossDomain = !!( parts && - ( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] || - ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) != - ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) ) - ); - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( state === 2 ) { - return false; - } - - // We can fire global events as of now if asked to - fireGlobals = s.global; - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // If data is available, append data to url - if ( s.data ) { - s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data; - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Get ifModifiedKey before adding the anti-cache parameter - ifModifiedKey = s.url; - - // Add anti-cache in url if needed - if ( s.cache === false ) { - - var ts = jQuery.now(), - // try replacing _= if it is there - ret = s.url.replace( rts, "$1_=" + ts ); - - // if nothing was replaced, add timestamp to the end - s.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "" ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - ifModifiedKey = ifModifiedKey || s.url; - if ( jQuery.lastModified[ ifModifiedKey ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ ifModifiedKey ] ); - } - if ( jQuery.etag[ ifModifiedKey ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ ifModifiedKey ] ); - } - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ? - s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { - // Abort if not done already - jqXHR.abort(); - return false; - - } - - // Install callbacks on deferreds - for ( i in { success: 1, error: 1, complete: 1 } ) { - jqXHR[ i ]( s[ i ] ); - } - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = setTimeout( function(){ - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - state = 1; - transport.send( requestHeaders, done ); - } catch (e) { - // Propagate exception as error if not done - if ( state < 2 ) { - done( -1, e ); - // Simply rethrow otherwise - } else { - throw e; - } - } - } - - return jqXHR; - }, - - // Serialize an array of form elements or a set of - // key/values into a query string - param: function( a, traditional ) { - var s = [], - add = function( key, value ) { - // If value is a function, invoke it and return its value - value = jQuery.isFunction( value ) ? value() : value; - s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); - }; - - // Set traditional to true for jQuery <= 1.3.2 behavior. - if ( traditional === undefined ) { - traditional = jQuery.ajaxSettings.traditional; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - }); - - } else { - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( var prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ).replace( r20, "+" ); - } -}); - -function buildParams( prefix, obj, traditional, add ) { - if ( jQuery.isArray( obj ) ) { - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - // If array item is non-scalar (array or object), encode its - // numeric index to resolve deserialization ambiguity issues. - // Note that rack (as of 1.0.0) can't currently deserialize - // nested arrays properly, and attempting to do so may cause - // a server error. Possible fixes are to modify rack's - // deserialization algorithm or to provide an option or flag - // to force array serialization to be shallow. - buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add ); - } - }); - - } else if ( !traditional && jQuery.type( obj ) === "object" ) { - // Serialize object item. - for ( var name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - // Serialize scalar item. - add( prefix, obj ); - } -} - -// This is still on the jQuery object... for now -// Want to move this to jQuery.ajax some day -jQuery.extend({ - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {} - -}); - -/* Handles responses to an ajax request: - * - sets all responseXXX fields accordingly - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var contents = s.contents, - dataTypes = s.dataTypes, - responseFields = s.responseFields, - ct, - type, - finalDataType, - firstDataType; - - // Fill responseXXX fields - for ( type in responseFields ) { - if ( type in responses ) { - jqXHR[ responseFields[type] ] = responses[ type ]; - } - } - - // Remove auto dataType and get content-type in the process - while( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "content-type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -// Chain conversions given the request and the original response -function ajaxConvert( s, response ) { - - // Apply the dataFilter if provided - if ( s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - var dataTypes = s.dataTypes, - converters = {}, - i, - key, - length = dataTypes.length, - tmp, - // Current and previous dataTypes - current = dataTypes[ 0 ], - prev, - // Conversion expression - conversion, - // Conversion function - conv, - // Conversion functions (transitive conversion) - conv1, - conv2; - - // For each dataType in the chain - for ( i = 1; i < length; i++ ) { - - // Create converters map - // with lowercased keys - if ( i === 1 ) { - for ( key in s.converters ) { - if ( typeof key === "string" ) { - converters[ key.toLowerCase() ] = s.converters[ key ]; - } - } - } - - // Get the dataTypes - prev = current; - current = dataTypes[ i ]; - - // If current is auto dataType, update it to prev - if ( current === "*" ) { - current = prev; - // If no auto and dataTypes are actually different - } else if ( prev !== "*" && prev !== current ) { - - // Get the converter - conversion = prev + " " + current; - conv = converters[ conversion ] || converters[ "* " + current ]; - - // If there is no direct converter, search transitively - if ( !conv ) { - conv2 = undefined; - for ( conv1 in converters ) { - tmp = conv1.split( " " ); - if ( tmp[ 0 ] === prev || tmp[ 0 ] === "*" ) { - conv2 = converters[ tmp[1] + " " + current ]; - if ( conv2 ) { - conv1 = converters[ conv1 ]; - if ( conv1 === true ) { - conv = conv2; - } else if ( conv2 === true ) { - conv = conv1; - } - break; - } - } - } - } - // If we found no converter, dispatch an error - if ( !( conv || conv2 ) ) { - jQuery.error( "No conversion from " + conversion.replace(" "," to ") ); - } - // If found converter is not an equivalence - if ( conv !== true ) { - // Convert with 1 or 2 converters accordingly - response = conv ? conv( response ) : conv2( conv1(response) ); - } - } - } - return response; -} - - - - -var jsc = jQuery.now(), - jsre = /(\=)\?(&|$)|\?\?/i; - -// Default jsonp settings -jQuery.ajaxSetup({ - jsonp: "callback", - jsonpCallback: function() { - return jQuery.expando + "_" + ( jsc++ ); - } -}); - -// Detect, normalize options and install callbacks for jsonp requests -jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { - - var inspectData = ( typeof s.data === "string" ) && /^application\/x\-www\-form\-urlencoded/.test( s.contentType ); - - if ( s.dataTypes[ 0 ] === "jsonp" || - s.jsonp !== false && ( jsre.test( s.url ) || - inspectData && jsre.test( s.data ) ) ) { - - var responseContainer, - jsonpCallback = s.jsonpCallback = - jQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback, - previous = window[ jsonpCallback ], - url = s.url, - data = s.data, - replace = "$1" + jsonpCallback + "$2"; - - if ( s.jsonp !== false ) { - url = url.replace( jsre, replace ); - if ( s.url === url ) { - if ( inspectData ) { - data = data.replace( jsre, replace ); - } - if ( s.data === data ) { - // Add callback manually - url += (/\?/.test( url ) ? "&" : "?") + s.jsonp + "=" + jsonpCallback; - } - } - } - - s.url = url; - s.data = data; - - // Install callback - window[ jsonpCallback ] = function( response ) { - responseContainer = [ response ]; - }; - - // Clean-up function - jqXHR.always(function() { - // Set callback back to previous value - window[ jsonpCallback ] = previous; - // Call if it was a function and we have a response - if ( responseContainer && jQuery.isFunction( previous ) ) { - window[ jsonpCallback ]( responseContainer[ 0 ] ); - } - }); - - // Use data converter to retrieve json after script execution - s.converters["script json"] = function() { - if ( !responseContainer ) { - jQuery.error( jsonpCallback + " was not called" ); - } - return responseContainer[ 0 ]; - }; - - // force json dataType - s.dataTypes[ 0 ] = "json"; - - // Delegate to script - return "script"; - } -}); - - - - -// Install script dataType -jQuery.ajaxSetup({ - accepts: { - script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /javascript|ecmascript/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -}); - -// Handle cache's special case and global -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - s.global = false; - } -}); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function(s) { - - // This transport only deals with cross domain requests - if ( s.crossDomain ) { - - var script, - head = document.head || document.getElementsByTagName( "head" )[0] || document.documentElement; - - return { - - send: function( _, callback ) { - - script = document.createElement( "script" ); - - script.async = "async"; - - if ( s.scriptCharset ) { - script.charset = s.scriptCharset; - } - - script.src = s.url; - - // Attach handlers for all browsers - script.onload = script.onreadystatechange = function( _, isAbort ) { - - if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { - - // Handle memory leak in IE - script.onload = script.onreadystatechange = null; - - // Remove the script - if ( head && script.parentNode ) { - head.removeChild( script ); - } - - // Dereference the script - script = undefined; - - // Callback if not abort - if ( !isAbort ) { - callback( 200, "success" ); - } - } - }; - // Use insertBefore instead of appendChild to circumvent an IE6 bug. - // This arises when a base node is used (#2709 and #4378). - head.insertBefore( script, head.firstChild ); - }, - - abort: function() { - if ( script ) { - script.onload( 0, 1 ); - } - } - }; - } -}); - - - - -var // #5280: Internet Explorer will keep connections alive if we don't abort on unload - xhrOnUnloadAbort = window.ActiveXObject ? function() { - // Abort all pending requests - for ( var key in xhrCallbacks ) { - xhrCallbacks[ key ]( 0, 1 ); - } - } : false, - xhrId = 0, - xhrCallbacks; - -// Functions to create xhrs -function createStandardXHR() { - try { - return new window.XMLHttpRequest(); - } catch( e ) {} -} - -function createActiveXHR() { - try { - return new window.ActiveXObject( "Microsoft.XMLHTTP" ); - } catch( e ) {} -} - -// Create the request object -// (This is still attached to ajaxSettings for backward compatibility) -jQuery.ajaxSettings.xhr = window.ActiveXObject ? - /* Microsoft failed to properly - * implement the XMLHttpRequest in IE7 (can't request local files), - * so we use the ActiveXObject when it is available - * Additionally XMLHttpRequest can be disabled in IE7/IE8 so - * we need a fallback. - */ - function() { - return !this.isLocal && createStandardXHR() || createActiveXHR(); - } : - // For all other browsers, use the standard XMLHttpRequest object - createStandardXHR; - -// Determine support properties -(function( xhr ) { - jQuery.extend( jQuery.support, { - ajax: !!xhr, - cors: !!xhr && ( "withCredentials" in xhr ) - }); -})( jQuery.ajaxSettings.xhr() ); - -// Create transport if the browser can provide an xhr -if ( jQuery.support.ajax ) { - - jQuery.ajaxTransport(function( s ) { - // Cross domain only allowed if supported through XMLHttpRequest - if ( !s.crossDomain || jQuery.support.cors ) { - - var callback; - - return { - send: function( headers, complete ) { - - // Get a new xhr - var xhr = s.xhr(), - handle, - i; - - // Open the socket - // Passing null username, generates a login popup on Opera (#2865) - if ( s.username ) { - xhr.open( s.type, s.url, s.async, s.username, s.password ); - } else { - xhr.open( s.type, s.url, s.async ); - } - - // Apply custom fields if provided - if ( s.xhrFields ) { - for ( i in s.xhrFields ) { - xhr[ i ] = s.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( s.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( s.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !s.crossDomain && !headers["X-Requested-With"] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Need an extra try/catch for cross domain requests in Firefox 3 - try { - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - } catch( _ ) {} - - // Do send the request - // This may raise an exception which is actually - // handled in jQuery.ajax (so no try/catch here) - xhr.send( ( s.hasContent && s.data ) || null ); - - // Listener - callback = function( _, isAbort ) { - - var status, - statusText, - responseHeaders, - responses, - xml; - - // Firefox throws exceptions when accessing properties - // of an xhr when a network error occured - // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) - try { - - // Was never called and is aborted or complete - if ( callback && ( isAbort || xhr.readyState === 4 ) ) { - - // Only called once - callback = undefined; - - // Do not keep as active anymore - if ( handle ) { - xhr.onreadystatechange = jQuery.noop; - if ( xhrOnUnloadAbort ) { - delete xhrCallbacks[ handle ]; - } - } - - // If it's an abort - if ( isAbort ) { - // Abort it manually if needed - if ( xhr.readyState !== 4 ) { - xhr.abort(); - } - } else { - status = xhr.status; - responseHeaders = xhr.getAllResponseHeaders(); - responses = {}; - xml = xhr.responseXML; - - // Construct response list - if ( xml && xml.documentElement /* #4958 */ ) { - responses.xml = xml; - } - - // When requesting binary data, IE6-9 will throw an exception - // on any attempt to access responseText (#11426) - try { - responses.text = xhr.responseText; - } catch( _ ) { - } - - // Firefox throws an exception when accessing - // statusText for faulty cross-domain requests - try { - statusText = xhr.statusText; - } catch( e ) { - // We normalize with Webkit giving an empty statusText - statusText = ""; - } - - // Filter status for non standard behaviors - - // If the request is local and we have data: assume a success - // (success with no data won't get notified, that's the best we - // can do given current implementations) - if ( !status && s.isLocal && !s.crossDomain ) { - status = responses.text ? 200 : 404; - // IE - #1450: sometimes returns 1223 when it should be 204 - } else if ( status === 1223 ) { - status = 204; - } - } - } - } catch( firefoxAccessException ) { - if ( !isAbort ) { - complete( -1, firefoxAccessException ); - } - } - - // Call complete if needed - if ( responses ) { - complete( status, statusText, responses, responseHeaders ); - } - }; - - // if we're in sync mode or it's in cache - // and has been retrieved directly (IE6 & IE7) - // we need to manually fire the callback - if ( !s.async || xhr.readyState === 4 ) { - callback(); - } else { - handle = ++xhrId; - if ( xhrOnUnloadAbort ) { - // Create the active xhrs callbacks list if needed - // and attach the unload handler - if ( !xhrCallbacks ) { - xhrCallbacks = {}; - jQuery( window ).unload( xhrOnUnloadAbort ); - } - // Add to list of active xhrs callbacks - xhrCallbacks[ handle ] = callback; - } - xhr.onreadystatechange = callback; - } - }, - - abort: function() { - if ( callback ) { - callback(0,1); - } - } - }; - } - }); -} - - - - -var elemdisplay = {}, - iframe, iframeDoc, - rfxtypes = /^(?:toggle|show|hide)$/, - rfxnum = /^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i, - timerId, - fxAttrs = [ - // height animations - [ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ], - // width animations - [ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ], - // opacity animations - [ "opacity" ] - ], - fxNow; - -jQuery.fn.extend({ - show: function( speed, easing, callback ) { - var elem, display; - - if ( speed || speed === 0 ) { - return this.animate( genFx("show", 3), speed, easing, callback ); - - } else { - for ( var i = 0, j = this.length; i < j; i++ ) { - elem = this[ i ]; - - if ( elem.style ) { - display = elem.style.display; - - // Reset the inline display of this element to learn if it is - // being hidden by cascaded rules or not - if ( !jQuery._data(elem, "olddisplay") && display === "none" ) { - display = elem.style.display = ""; - } - - // Set elements which have been overridden with display: none - // in a stylesheet to whatever the default browser style is - // for such an element - if ( (display === "" && jQuery.css(elem, "display") === "none") || - !jQuery.contains( elem.ownerDocument.documentElement, elem ) ) { - jQuery._data( elem, "olddisplay", defaultDisplay(elem.nodeName) ); - } - } - } - - // Set the display of most of the elements in a second loop - // to avoid the constant reflow - for ( i = 0; i < j; i++ ) { - elem = this[ i ]; - - if ( elem.style ) { - display = elem.style.display; - - if ( display === "" || display === "none" ) { - elem.style.display = jQuery._data( elem, "olddisplay" ) || ""; - } - } - } - - return this; - } - }, - - hide: function( speed, easing, callback ) { - if ( speed || speed === 0 ) { - return this.animate( genFx("hide", 3), speed, easing, callback); - - } else { - var elem, display, - i = 0, - j = this.length; - - for ( ; i < j; i++ ) { - elem = this[i]; - if ( elem.style ) { - display = jQuery.css( elem, "display" ); - - if ( display !== "none" && !jQuery._data( elem, "olddisplay" ) ) { - jQuery._data( elem, "olddisplay", display ); - } - } - } - - // Set the display of the elements in a second loop - // to avoid the constant reflow - for ( i = 0; i < j; i++ ) { - if ( this[i].style ) { - this[i].style.display = "none"; - } - } - - return this; - } - }, - - // Save the old toggle function - _toggle: jQuery.fn.toggle, - - toggle: function( fn, fn2, callback ) { - var bool = typeof fn === "boolean"; - - if ( jQuery.isFunction(fn) && jQuery.isFunction(fn2) ) { - this._toggle.apply( this, arguments ); - - } else if ( fn == null || bool ) { - this.each(function() { - var state = bool ? fn : jQuery(this).is(":hidden"); - jQuery(this)[ state ? "show" : "hide" ](); - }); - - } else { - this.animate(genFx("toggle", 3), fn, fn2, callback); - } - - return this; - }, - - fadeTo: function( speed, to, easing, callback ) { - return this.filter(":hidden").css("opacity", 0).show().end() - .animate({opacity: to}, speed, easing, callback); - }, - - animate: function( prop, speed, easing, callback ) { - var optall = jQuery.speed( speed, easing, callback ); - - if ( jQuery.isEmptyObject( prop ) ) { - return this.each( optall.complete, [ false ] ); - } - - // Do not change referenced properties as per-property easing will be lost - prop = jQuery.extend( {}, prop ); - - function doAnimation() { - // XXX 'this' does not always have a nodeName when running the - // test suite - - if ( optall.queue === false ) { - jQuery._mark( this ); - } - - var opt = jQuery.extend( {}, optall ), - isElement = this.nodeType === 1, - hidden = isElement && jQuery(this).is(":hidden"), - name, val, p, e, hooks, replace, - parts, start, end, unit, - method; - - // will store per property easing and be used to determine when an animation is complete - opt.animatedProperties = {}; - - // first pass over propertys to expand / normalize - for ( p in prop ) { - name = jQuery.camelCase( p ); - if ( p !== name ) { - prop[ name ] = prop[ p ]; - delete prop[ p ]; - } - - if ( ( hooks = jQuery.cssHooks[ name ] ) && "expand" in hooks ) { - replace = hooks.expand( prop[ name ] ); - delete prop[ name ]; - - // not quite $.extend, this wont overwrite keys already present. - // also - reusing 'p' from above because we have the correct "name" - for ( p in replace ) { - if ( ! ( p in prop ) ) { - prop[ p ] = replace[ p ]; - } - } - } - } - - for ( name in prop ) { - val = prop[ name ]; - // easing resolution: per property > opt.specialEasing > opt.easing > 'swing' (default) - if ( jQuery.isArray( val ) ) { - opt.animatedProperties[ name ] = val[ 1 ]; - val = prop[ name ] = val[ 0 ]; - } else { - opt.animatedProperties[ name ] = opt.specialEasing && opt.specialEasing[ name ] || opt.easing || 'swing'; - } - - if ( val === "hide" && hidden || val === "show" && !hidden ) { - return opt.complete.call( this ); - } - - if ( isElement && ( name === "height" || name === "width" ) ) { - // Make sure that nothing sneaks out - // Record all 3 overflow attributes because IE does not - // change the overflow attribute when overflowX and - // overflowY are set to the same value - opt.overflow = [ this.style.overflow, this.style.overflowX, this.style.overflowY ]; - - // Set display property to inline-block for height/width - // animations on inline elements that are having width/height animated - if ( jQuery.css( this, "display" ) === "inline" && - jQuery.css( this, "float" ) === "none" ) { - - // inline-level elements accept inline-block; - // block-level elements need to be inline with layout - if ( !jQuery.support.inlineBlockNeedsLayout || defaultDisplay( this.nodeName ) === "inline" ) { - this.style.display = "inline-block"; - - } else { - this.style.zoom = 1; - } - } - } - } - - if ( opt.overflow != null ) { - this.style.overflow = "hidden"; - } - - for ( p in prop ) { - e = new jQuery.fx( this, opt, p ); - val = prop[ p ]; - - if ( rfxtypes.test( val ) ) { - - // Tracks whether to show or hide based on private - // data attached to the element - method = jQuery._data( this, "toggle" + p ) || ( val === "toggle" ? hidden ? "show" : "hide" : 0 ); - if ( method ) { - jQuery._data( this, "toggle" + p, method === "show" ? "hide" : "show" ); - e[ method ](); - } else { - e[ val ](); - } - - } else { - parts = rfxnum.exec( val ); - start = e.cur(); - - if ( parts ) { - end = parseFloat( parts[2] ); - unit = parts[3] || ( jQuery.cssNumber[ p ] ? "" : "px" ); - - // We need to compute starting value - if ( unit !== "px" ) { - jQuery.style( this, p, (end || 1) + unit); - start = ( (end || 1) / e.cur() ) * start; - jQuery.style( this, p, start + unit); - } - - // If a +=/-= token was provided, we're doing a relative animation - if ( parts[1] ) { - end = ( (parts[ 1 ] === "-=" ? -1 : 1) * end ) + start; - } - - e.custom( start, end, unit ); - - } else { - e.custom( start, val, "" ); - } - } - } - - // For JS strict compliance - return true; - } - - return optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - - stop: function( type, clearQueue, gotoEnd ) { - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue && type !== false ) { - this.queue( type || "fx", [] ); - } - - return this.each(function() { - var index, - hadTimers = false, - timers = jQuery.timers, - data = jQuery._data( this ); - - // clear marker counters if we know they won't be - if ( !gotoEnd ) { - jQuery._unmark( true, this ); - } - - function stopQueue( elem, data, index ) { - var hooks = data[ index ]; - jQuery.removeData( elem, index, true ); - hooks.stop( gotoEnd ); - } - - if ( type == null ) { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && index.indexOf(".run") === index.length - 4 ) { - stopQueue( this, data, index ); - } - } - } else if ( data[ index = type + ".run" ] && data[ index ].stop ){ - stopQueue( this, data, index ); - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) { - if ( gotoEnd ) { - - // force the next step to be the last - timers[ index ]( true ); - } else { - timers[ index ].saveState(); - } - hadTimers = true; - timers.splice( index, 1 ); - } - } - - // start the next in the queue if the last step wasn't forced - // timers currently will call their complete callbacks, which will dequeue - // but only if they were gotoEnd - if ( !( gotoEnd && hadTimers ) ) { - jQuery.dequeue( this, type ); - } - }); - } - -}); - -// Animations created synchronously will run synchronously -function createFxNow() { - setTimeout( clearFxNow, 0 ); - return ( fxNow = jQuery.now() ); -} - -function clearFxNow() { - fxNow = undefined; -} - -// Generate parameters to create a standard animation -function genFx( type, num ) { - var obj = {}; - - jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice( 0, num )), function() { - obj[ this ] = type; - }); - - return obj; -} - -// Generate shortcuts for custom animations -jQuery.each({ - slideDown: genFx( "show", 1 ), - slideUp: genFx( "hide", 1 ), - slideToggle: genFx( "toggle", 1 ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -}); - -jQuery.extend({ - speed: function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - jQuery.isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing - }; - - opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : - opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; - - // normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function( noUnmark ) { - if ( jQuery.isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } else if ( noUnmark !== false ) { - jQuery._unmark( this ); - } - }; - - return opt; - }, - - easing: { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return ( -Math.cos( p*Math.PI ) / 2 ) + 0.5; - } - }, - - timers: [], - - fx: function( elem, options, prop ) { - this.options = options; - this.elem = elem; - this.prop = prop; - - options.orig = options.orig || {}; - } - -}); - -jQuery.fx.prototype = { - // Simple function for setting a style value - update: function() { - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - ( jQuery.fx.step[ this.prop ] || jQuery.fx.step._default )( this ); - }, - - // Get the current size - cur: function() { - if ( this.elem[ this.prop ] != null && (!this.elem.style || this.elem.style[ this.prop ] == null) ) { - return this.elem[ this.prop ]; - } - - var parsed, - r = jQuery.css( this.elem, this.prop ); - // Empty strings, null, undefined and "auto" are converted to 0, - // complex values such as "rotate(1rad)" are returned as is, - // simple values such as "10px" are parsed to Float. - return isNaN( parsed = parseFloat( r ) ) ? !r || r === "auto" ? 0 : r : parsed; - }, - - // Start an animation from one number to another - custom: function( from, to, unit ) { - var self = this, - fx = jQuery.fx; - - this.startTime = fxNow || createFxNow(); - this.end = to; - this.now = this.start = from; - this.pos = this.state = 0; - this.unit = unit || this.unit || ( jQuery.cssNumber[ this.prop ] ? "" : "px" ); - - function t( gotoEnd ) { - return self.step( gotoEnd ); - } - - t.queue = this.options.queue; - t.elem = this.elem; - t.saveState = function() { - if ( jQuery._data( self.elem, "fxshow" + self.prop ) === undefined ) { - if ( self.options.hide ) { - jQuery._data( self.elem, "fxshow" + self.prop, self.start ); - } else if ( self.options.show ) { - jQuery._data( self.elem, "fxshow" + self.prop, self.end ); - } - } - }; - - if ( t() && jQuery.timers.push(t) && !timerId ) { - timerId = setInterval( fx.tick, fx.interval ); - } - }, - - // Simple 'show' function - show: function() { - var dataShow = jQuery._data( this.elem, "fxshow" + this.prop ); - - // Remember where we started, so that we can go back to it later - this.options.orig[ this.prop ] = dataShow || jQuery.style( this.elem, this.prop ); - this.options.show = true; - - // Begin the animation - // Make sure that we start at a small width/height to avoid any flash of content - if ( dataShow !== undefined ) { - // This show is picking up where a previous hide or show left off - this.custom( this.cur(), dataShow ); - } else { - this.custom( this.prop === "width" || this.prop === "height" ? 1 : 0, this.cur() ); - } - - // Start by showing the element - jQuery( this.elem ).show(); - }, - - // Simple 'hide' function - hide: function() { - // Remember where we started, so that we can go back to it later - this.options.orig[ this.prop ] = jQuery._data( this.elem, "fxshow" + this.prop ) || jQuery.style( this.elem, this.prop ); - this.options.hide = true; - - // Begin the animation - this.custom( this.cur(), 0 ); - }, - - // Each step of an animation - step: function( gotoEnd ) { - var p, n, complete, - t = fxNow || createFxNow(), - done = true, - elem = this.elem, - options = this.options; - - if ( gotoEnd || t >= options.duration + this.startTime ) { - this.now = this.end; - this.pos = this.state = 1; - this.update(); - - options.animatedProperties[ this.prop ] = true; - - for ( p in options.animatedProperties ) { - if ( options.animatedProperties[ p ] !== true ) { - done = false; - } - } - - if ( done ) { - // Reset the overflow - if ( options.overflow != null && !jQuery.support.shrinkWrapBlocks ) { - - jQuery.each( [ "", "X", "Y" ], function( index, value ) { - elem.style[ "overflow" + value ] = options.overflow[ index ]; - }); - } - - // Hide the element if the "hide" operation was done - if ( options.hide ) { - jQuery( elem ).hide(); - } - - // Reset the properties, if the item has been hidden or shown - if ( options.hide || options.show ) { - for ( p in options.animatedProperties ) { - jQuery.style( elem, p, options.orig[ p ] ); - jQuery.removeData( elem, "fxshow" + p, true ); - // Toggle data is no longer needed - jQuery.removeData( elem, "toggle" + p, true ); - } - } - - // Execute the complete function - // in the event that the complete function throws an exception - // we must ensure it won't be called twice. #5684 - - complete = options.complete; - if ( complete ) { - - options.complete = false; - complete.call( elem ); - } - } - - return false; - - } else { - // classical easing cannot be used with an Infinity duration - if ( options.duration == Infinity ) { - this.now = t; - } else { - n = t - this.startTime; - this.state = n / options.duration; - - // Perform the easing function, defaults to swing - this.pos = jQuery.easing[ options.animatedProperties[this.prop] ]( this.state, n, 0, 1, options.duration ); - this.now = this.start + ( (this.end - this.start) * this.pos ); - } - // Perform the next step of the animation - this.update(); - } - - return true; - } -}; - -jQuery.extend( jQuery.fx, { - tick: function() { - var timer, - timers = jQuery.timers, - i = 0; - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - // Checks the timer has not already been removed - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - }, - - interval: 13, - - stop: function() { - clearInterval( timerId ); - timerId = null; - }, - - speeds: { - slow: 600, - fast: 200, - // Default speed - _default: 400 - }, - - step: { - opacity: function( fx ) { - jQuery.style( fx.elem, "opacity", fx.now ); - }, - - _default: function( fx ) { - if ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) { - fx.elem.style[ fx.prop ] = fx.now + fx.unit; - } else { - fx.elem[ fx.prop ] = fx.now; - } - } - } -}); - -// Ensure props that can't be negative don't go there on undershoot easing -jQuery.each( fxAttrs.concat.apply( [], fxAttrs ), function( i, prop ) { - // exclude marginTop, marginLeft, marginBottom and marginRight from this list - if ( prop.indexOf( "margin" ) ) { - jQuery.fx.step[ prop ] = function( fx ) { - jQuery.style( fx.elem, prop, Math.max(0, fx.now) + fx.unit ); - }; - } -}); - -if ( jQuery.expr && jQuery.expr.filters ) { - jQuery.expr.filters.animated = function( elem ) { - return jQuery.grep(jQuery.timers, function( fn ) { - return elem === fn.elem; - }).length; - }; -} - -// Try to restore the default display value of an element -function defaultDisplay( nodeName ) { - - if ( !elemdisplay[ nodeName ] ) { - - var body = document.body, - elem = jQuery( "<" + nodeName + ">" ).appendTo( body ), - display = elem.css( "display" ); - elem.remove(); - - // If the simple way fails, - // get element's real default display by attaching it to a temp iframe - if ( display === "none" || display === "" ) { - // No iframe to use yet, so create it - if ( !iframe ) { - iframe = document.createElement( "iframe" ); - iframe.frameBorder = iframe.width = iframe.height = 0; - } - - body.appendChild( iframe ); - - // Create a cacheable copy of the iframe document on first call. - // IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML - // document to it; WebKit & Firefox won't allow reusing the iframe document. - if ( !iframeDoc || !iframe.createElement ) { - iframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document; - iframeDoc.write( ( jQuery.support.boxModel ? "<!doctype html>" : "" ) + "<html><body>" ); - iframeDoc.close(); - } - - elem = iframeDoc.createElement( nodeName ); - - iframeDoc.body.appendChild( elem ); - - display = jQuery.css( elem, "display" ); - body.removeChild( iframe ); - } - - // Store the correct default display - elemdisplay[ nodeName ] = display; - } - - return elemdisplay[ nodeName ]; -} - - - - -var getOffset, - rtable = /^t(?:able|d|h)$/i, - rroot = /^(?:body|html)$/i; - -if ( "getBoundingClientRect" in document.documentElement ) { - getOffset = function( elem, doc, docElem, box ) { - try { - box = elem.getBoundingClientRect(); - } catch(e) {} - - // Make sure we're not dealing with a disconnected DOM node - if ( !box || !jQuery.contains( docElem, elem ) ) { - return box ? { top: box.top, left: box.left } : { top: 0, left: 0 }; - } - - var body = doc.body, - win = getWindow( doc ), - clientTop = docElem.clientTop || body.clientTop || 0, - clientLeft = docElem.clientLeft || body.clientLeft || 0, - scrollTop = win.pageYOffset || jQuery.support.boxModel && docElem.scrollTop || body.scrollTop, - scrollLeft = win.pageXOffset || jQuery.support.boxModel && docElem.scrollLeft || body.scrollLeft, - top = box.top + scrollTop - clientTop, - left = box.left + scrollLeft - clientLeft; - - return { top: top, left: left }; - }; - -} else { - getOffset = function( elem, doc, docElem ) { - var computedStyle, - offsetParent = elem.offsetParent, - prevOffsetParent = elem, - body = doc.body, - defaultView = doc.defaultView, - prevComputedStyle = defaultView ? defaultView.getComputedStyle( elem, null ) : elem.currentStyle, - top = elem.offsetTop, - left = elem.offsetLeft; - - while ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) { - if ( jQuery.support.fixedPosition && prevComputedStyle.position === "fixed" ) { - break; - } - - computedStyle = defaultView ? defaultView.getComputedStyle(elem, null) : elem.currentStyle; - top -= elem.scrollTop; - left -= elem.scrollLeft; - - if ( elem === offsetParent ) { - top += elem.offsetTop; - left += elem.offsetLeft; - - if ( jQuery.support.doesNotAddBorder && !(jQuery.support.doesAddBorderForTableAndCells && rtable.test(elem.nodeName)) ) { - top += parseFloat( computedStyle.borderTopWidth ) || 0; - left += parseFloat( computedStyle.borderLeftWidth ) || 0; - } - - prevOffsetParent = offsetParent; - offsetParent = elem.offsetParent; - } - - if ( jQuery.support.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" ) { - top += parseFloat( computedStyle.borderTopWidth ) || 0; - left += parseFloat( computedStyle.borderLeftWidth ) || 0; - } - - prevComputedStyle = computedStyle; - } - - if ( prevComputedStyle.position === "relative" || prevComputedStyle.position === "static" ) { - top += body.offsetTop; - left += body.offsetLeft; - } - - if ( jQuery.support.fixedPosition && prevComputedStyle.position === "fixed" ) { - top += Math.max( docElem.scrollTop, body.scrollTop ); - left += Math.max( docElem.scrollLeft, body.scrollLeft ); - } - - return { top: top, left: left }; - }; -} - -jQuery.fn.offset = function( options ) { - if ( arguments.length ) { - return options === undefined ? - this : - this.each(function( i ) { - jQuery.offset.setOffset( this, options, i ); - }); - } - - var elem = this[0], - doc = elem && elem.ownerDocument; - - if ( !doc ) { - return null; - } - - if ( elem === doc.body ) { - return jQuery.offset.bodyOffset( elem ); - } - - return getOffset( elem, doc, doc.documentElement ); -}; - -jQuery.offset = { - - bodyOffset: function( body ) { - var top = body.offsetTop, - left = body.offsetLeft; - - if ( jQuery.support.doesNotIncludeMarginInBodyOffset ) { - top += parseFloat( jQuery.css(body, "marginTop") ) || 0; - left += parseFloat( jQuery.css(body, "marginLeft") ) || 0; - } - - return { top: top, left: left }; - }, - - setOffset: function( elem, options, i ) { - var position = jQuery.css( elem, "position" ); - - // set position first, in-case top/left are set even on static elem - if ( position === "static" ) { - elem.style.position = "relative"; - } - - var curElem = jQuery( elem ), - curOffset = curElem.offset(), - curCSSTop = jQuery.css( elem, "top" ), - curCSSLeft = jQuery.css( elem, "left" ), - calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1, - props = {}, curPosition = {}, curTop, curLeft; - - // need to be able to calculate position if either top or left is auto and position is either absolute or fixed - if ( calculatePosition ) { - curPosition = curElem.position(); - curTop = curPosition.top; - curLeft = curPosition.left; - } else { - curTop = parseFloat( curCSSTop ) || 0; - curLeft = parseFloat( curCSSLeft ) || 0; - } - - if ( jQuery.isFunction( options ) ) { - options = options.call( elem, i, curOffset ); - } - - if ( options.top != null ) { - props.top = ( options.top - curOffset.top ) + curTop; - } - if ( options.left != null ) { - props.left = ( options.left - curOffset.left ) + curLeft; - } - - if ( "using" in options ) { - options.using.call( elem, props ); - } else { - curElem.css( props ); - } - } -}; - - -jQuery.fn.extend({ - - position: function() { - if ( !this[0] ) { - return null; - } - - var elem = this[0], - - // Get *real* offsetParent - offsetParent = this.offsetParent(), - - // Get correct offsets - offset = this.offset(), - parentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset(); - - // Subtract element margins - // note: when an element has margin: auto the offsetLeft and marginLeft - // are the same in Safari causing offset.left to incorrectly be 0 - offset.top -= parseFloat( jQuery.css(elem, "marginTop") ) || 0; - offset.left -= parseFloat( jQuery.css(elem, "marginLeft") ) || 0; - - // Add offsetParent borders - parentOffset.top += parseFloat( jQuery.css(offsetParent[0], "borderTopWidth") ) || 0; - parentOffset.left += parseFloat( jQuery.css(offsetParent[0], "borderLeftWidth") ) || 0; - - // Subtract the two offsets - return { - top: offset.top - parentOffset.top, - left: offset.left - parentOffset.left - }; - }, - - offsetParent: function() { - return this.map(function() { - var offsetParent = this.offsetParent || document.body; - while ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, "position") === "static") ) { - offsetParent = offsetParent.offsetParent; - } - return offsetParent; - }); - } -}); - - -// Create scrollLeft and scrollTop methods -jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) { - var top = /Y/.test( prop ); - - jQuery.fn[ method ] = function( val ) { - return jQuery.access( this, function( elem, method, val ) { - var win = getWindow( elem ); - - if ( val === undefined ) { - return win ? (prop in win) ? win[ prop ] : - jQuery.support.boxModel && win.document.documentElement[ method ] || - win.document.body[ method ] : - elem[ method ]; - } - - if ( win ) { - win.scrollTo( - !top ? val : jQuery( win ).scrollLeft(), - top ? val : jQuery( win ).scrollTop() - ); - - } else { - elem[ method ] = val; - } - }, method, val, arguments.length, null ); - }; -}); - -function getWindow( elem ) { - return jQuery.isWindow( elem ) ? - elem : - elem.nodeType === 9 ? - elem.defaultView || elem.parentWindow : - false; -} - - - - -// Create width, height, innerHeight, innerWidth, outerHeight and outerWidth methods -jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { - var clientProp = "client" + name, - scrollProp = "scroll" + name, - offsetProp = "offset" + name; - - // innerHeight and innerWidth - jQuery.fn[ "inner" + name ] = function() { - var elem = this[0]; - return elem ? - elem.style ? - parseFloat( jQuery.css( elem, type, "padding" ) ) : - this[ type ]() : - null; - }; - - // outerHeight and outerWidth - jQuery.fn[ "outer" + name ] = function( margin ) { - var elem = this[0]; - return elem ? - elem.style ? - parseFloat( jQuery.css( elem, type, margin ? "margin" : "border" ) ) : - this[ type ]() : - null; - }; - - jQuery.fn[ type ] = function( value ) { - return jQuery.access( this, function( elem, type, value ) { - var doc, docElemProp, orig, ret; - - if ( jQuery.isWindow( elem ) ) { - // 3rd condition allows Nokia support, as it supports the docElem prop but not CSS1Compat - doc = elem.document; - docElemProp = doc.documentElement[ clientProp ]; - return jQuery.support.boxModel && docElemProp || - doc.body && doc.body[ clientProp ] || docElemProp; - } - - // Get document width or height - if ( elem.nodeType === 9 ) { - // Either scroll[Width/Height] or offset[Width/Height], whichever is greater - doc = elem.documentElement; - - // when a window > document, IE6 reports a offset[Width/Height] > client[Width/Height] - // so we can't use max, as it'll choose the incorrect offset[Width/Height] - // instead we use the correct client[Width/Height] - // support:IE6 - if ( doc[ clientProp ] >= doc[ scrollProp ] ) { - return doc[ clientProp ]; - } - - return Math.max( - elem.body[ scrollProp ], doc[ scrollProp ], - elem.body[ offsetProp ], doc[ offsetProp ] - ); - } - - // Get width or height on the element - if ( value === undefined ) { - orig = jQuery.css( elem, type ); - ret = parseFloat( orig ); - return jQuery.isNumeric( ret ) ? ret : orig; - } - - // Set the width or height on the element - jQuery( elem ).css( type, value ); - }, type, value, arguments.length, null ); - }; -}); - - - - -// Expose jQuery to the global object -window.jQuery = window.$ = jQuery; - -// Expose jQuery as an AMD module, but only for AMD loaders that -// understand the issues with loading multiple versions of jQuery -// in a page that all might call define(). The loader will indicate -// they have special allowances for multiple jQuery versions by -// specifying define.amd.jQuery = true. Register as a named module, -// since jQuery can be concatenated with other files that may use define, -// but not use a proper concatenation script that understands anonymous -// AMD modules. A named AMD is safest and most robust way to register. -// Lowercase jquery is used because AMD module names are derived from -// file names, and jQuery is normally delivered in a lowercase file name. -// Do this after creating the global so that if an AMD module wants to call -// noConflict to hide this version of jQuery, it will work. -if ( typeof define === "function" && define.amd && define.amd.jQuery ) { - define( "jquery", [], function () { return jQuery; } ); -} - - - -})( window ); diff --git a/docs/user/html/pymoose/_static/minus.png b/docs/user/html/pymoose/_static/minus.png deleted file mode 100644 index da1c5620d10c047525a467a425abe9ff5269cfc2..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/minus.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/plus.png b/docs/user/html/pymoose/_static/plus.png deleted file mode 100644 index b3cb37425ea68b39ffa7b2e5fb69161275a87541..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/plus.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/pygments.css b/docs/user/html/pymoose/_static/pygments.css deleted file mode 100644 index d79caa151c28f0b24a636319b0d9d732f6c597b5..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/pygments.css +++ /dev/null @@ -1,62 +0,0 @@ -.highlight .hll { background-color: #ffffcc } -.highlight { background: #eeffcc; } -.highlight .c { color: #408090; font-style: italic } /* Comment */ -.highlight .err { border: 1px solid #FF0000 } /* Error */ -.highlight .k { color: #007020; font-weight: bold } /* Keyword */ -.highlight .o { color: #666666 } /* Operator */ -.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #007020 } /* Comment.Preproc */ -.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ -.highlight .gd { color: #A00000 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #FF0000 } /* Generic.Error */ -.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #333333 } /* Generic.Output */ -.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0044DD } /* Generic.Traceback */ -.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #007020 } /* Keyword.Pseudo */ -.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #902000 } /* Keyword.Type */ -.highlight .m { color: #208050 } /* Literal.Number */ -.highlight .s { color: #4070a0 } /* Literal.String */ -.highlight .na { color: #4070a0 } /* Name.Attribute */ -.highlight .nb { color: #007020 } /* Name.Builtin */ -.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ -.highlight .no { color: #60add5 } /* Name.Constant */ -.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ -.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ -.highlight .ne { color: #007020 } /* Name.Exception */ -.highlight .nf { color: #06287e } /* Name.Function */ -.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ -.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ -.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #bb60d5 } /* Name.Variable */ -.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ -.highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mf { color: #208050 } /* Literal.Number.Float */ -.highlight .mh { color: #208050 } /* Literal.Number.Hex */ -.highlight .mi { color: #208050 } /* Literal.Number.Integer */ -.highlight .mo { color: #208050 } /* Literal.Number.Oct */ -.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ -.highlight .sc { color: #4070a0 } /* Literal.String.Char */ -.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ -.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ -.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ -.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ -.highlight .sx { color: #c65d09 } /* Literal.String.Other */ -.highlight .sr { color: #235388 } /* Literal.String.Regex */ -.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ -.highlight .ss { color: #517918 } /* Literal.String.Symbol */ -.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ -.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ -.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ -.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ -.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/docs/user/html/pymoose/_static/searchtools.js b/docs/user/html/pymoose/_static/searchtools.js deleted file mode 100644 index 11b85cb80f1746648236af21c9ddb6f270e0520a..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/searchtools.js +++ /dev/null @@ -1,567 +0,0 @@ -/* - * searchtools.js_t - * ~~~~~~~~~~~~~~~~ - * - * Sphinx JavaScript utilties for the full-text search. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * helper function to return a node containing the - * search summary for a given text. keywords is a list - * of stemmed words, hlwords is the list of normal, unstemmed - * words. the first one is used to find the occurance, the - * latter for highlighting it. - */ - -jQuery.makeSearchSummary = function(text, keywords, hlwords) { - var textLower = text.toLowerCase(); - var start = 0; - $.each(keywords, function() { - var i = textLower.indexOf(this.toLowerCase()); - if (i > -1) - start = i; - }); - start = Math.max(start - 120, 0); - var excerpt = ((start > 0) ? '...' : '') + - $.trim(text.substr(start, 240)) + - ((start + 240 - text.length) ? '...' : ''); - var rv = $('<div class="context"></div>').text(excerpt); - $.each(hlwords, function() { - rv = rv.highlightText(this, 'highlighted'); - }); - return rv; -} - - -/** - * Porter Stemmer - */ -var Stemmer = function() { - - var step2list = { - ational: 'ate', - tional: 'tion', - enci: 'ence', - anci: 'ance', - izer: 'ize', - bli: 'ble', - alli: 'al', - entli: 'ent', - eli: 'e', - ousli: 'ous', - ization: 'ize', - ation: 'ate', - ator: 'ate', - alism: 'al', - iveness: 'ive', - fulness: 'ful', - ousness: 'ous', - aliti: 'al', - iviti: 'ive', - biliti: 'ble', - logi: 'log' - }; - - var step3list = { - icate: 'ic', - ative: '', - alize: 'al', - iciti: 'ic', - ical: 'ic', - ful: '', - ness: '' - }; - - var c = "[^aeiou]"; // consonant - var v = "[aeiouy]"; // vowel - var C = c + "[^aeiouy]*"; // consonant sequence - var V = v + "[aeiou]*"; // vowel sequence - - var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 - var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 - var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 - var s_v = "^(" + C + ")?" + v; // vowel in stem - - this.stemWord = function (w) { - var stem; - var suffix; - var firstch; - var origword = w; - - if (w.length < 3) - return w; - - var re; - var re2; - var re3; - var re4; - - firstch = w.substr(0,1); - if (firstch == "y") - w = firstch.toUpperCase() + w.substr(1); - - // Step 1a - re = /^(.+?)(ss|i)es$/; - re2 = /^(.+?)([^s])s$/; - - if (re.test(w)) - w = w.replace(re,"$1$2"); - else if (re2.test(w)) - w = w.replace(re2,"$1$2"); - - // Step 1b - re = /^(.+?)eed$/; - re2 = /^(.+?)(ed|ing)$/; - if (re.test(w)) { - var fp = re.exec(w); - re = new RegExp(mgr0); - if (re.test(fp[1])) { - re = /.$/; - w = w.replace(re,""); - } - } - else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1]; - re2 = new RegExp(s_v); - if (re2.test(stem)) { - w = stem; - re2 = /(at|bl|iz)$/; - re3 = new RegExp("([^aeiouylsz])\\1$"); - re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - if (re2.test(w)) - w = w + "e"; - else if (re3.test(w)) { - re = /.$/; - w = w.replace(re,""); - } - else if (re4.test(w)) - w = w + "e"; - } - } - - // Step 1c - re = /^(.+?)y$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(s_v); - if (re.test(stem)) - w = stem + "i"; - } - - // Step 2 - re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = new RegExp(mgr0); - if (re.test(stem)) - w = stem + step2list[suffix]; - } - - // Step 3 - re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = new RegExp(mgr0); - if (re.test(stem)) - w = stem + step3list[suffix]; - } - - // Step 4 - re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; - re2 = /^(.+?)(s|t)(ion)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(mgr1); - if (re.test(stem)) - w = stem; - } - else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1] + fp[2]; - re2 = new RegExp(mgr1); - if (re2.test(stem)) - w = stem; - } - - // Step 5 - re = /^(.+?)e$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(mgr1); - re2 = new RegExp(meq1); - re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) - w = stem; - } - re = /ll$/; - re2 = new RegExp(mgr1); - if (re.test(w) && re2.test(w)) { - re = /.$/; - w = w.replace(re,""); - } - - // and turn initial Y back to y - if (firstch == "y") - w = firstch.toLowerCase() + w.substr(1); - return w; - } -} - - -/** - * Search Module - */ -var Search = { - - _index : null, - _queued_query : null, - _pulse_status : -1, - - init : function() { - var params = $.getQueryParameters(); - if (params.q) { - var query = params.q[0]; - $('input[name="q"]')[0].value = query; - this.performSearch(query); - } - }, - - loadIndex : function(url) { - $.ajax({type: "GET", url: url, data: null, - dataType: "script", cache: true, - complete: function(jqxhr, textstatus) { - if (textstatus != "success") { - document.getElementById("searchindexloader").src = url; - } - }}); - }, - - setIndex : function(index) { - var q; - this._index = index; - if ((q = this._queued_query) !== null) { - this._queued_query = null; - Search.query(q); - } - }, - - hasIndex : function() { - return this._index !== null; - }, - - deferQuery : function(query) { - this._queued_query = query; - }, - - stopPulse : function() { - this._pulse_status = 0; - }, - - startPulse : function() { - if (this._pulse_status >= 0) - return; - function pulse() { - Search._pulse_status = (Search._pulse_status + 1) % 4; - var dotString = ''; - for (var i = 0; i < Search._pulse_status; i++) - dotString += '.'; - Search.dots.text(dotString); - if (Search._pulse_status > -1) - window.setTimeout(pulse, 500); - }; - pulse(); - }, - - /** - * perform a search for something - */ - performSearch : function(query) { - // create the required interface elements - this.out = $('#search-results'); - this.title = $('<h2>' + _('Searching') + '</h2>').appendTo(this.out); - this.dots = $('<span></span>').appendTo(this.title); - this.status = $('<p style="display: none"></p>').appendTo(this.out); - this.output = $('<ul class="search"/>').appendTo(this.out); - - $('#search-progress').text(_('Preparing search...')); - this.startPulse(); - - // index already loaded, the browser was quick! - if (this.hasIndex()) - this.query(query); - else - this.deferQuery(query); - }, - - query : function(query) { - var stopwords = ["a","and","are","as","at","be","but","by","for","if","in","into","is","it","near","no","not","of","on","or","such","that","the","their","then","there","these","they","this","to","was","will","with"]; - - // Stem the searchterms and add them to the correct list - var stemmer = new Stemmer(); - var searchterms = []; - var excluded = []; - var hlterms = []; - var tmp = query.split(/\s+/); - var objectterms = []; - for (var i = 0; i < tmp.length; i++) { - if (tmp[i] != "") { - objectterms.push(tmp[i].toLowerCase()); - } - - if ($u.indexOf(stopwords, tmp[i]) != -1 || tmp[i].match(/^\d+$/) || - tmp[i] == "") { - // skip this "word" - continue; - } - // stem the word - var word = stemmer.stemWord(tmp[i]).toLowerCase(); - // select the correct list - if (word[0] == '-') { - var toAppend = excluded; - word = word.substr(1); - } - else { - var toAppend = searchterms; - hlterms.push(tmp[i].toLowerCase()); - } - // only add if not already in the list - if (!$.contains(toAppend, word)) - toAppend.push(word); - }; - var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" ")); - - // console.debug('SEARCH: searching for:'); - // console.info('required: ', searchterms); - // console.info('excluded: ', excluded); - - // prepare search - var filenames = this._index.filenames; - var titles = this._index.titles; - var terms = this._index.terms; - var fileMap = {}; - var files = null; - // different result priorities - var importantResults = []; - var objectResults = []; - var regularResults = []; - var unimportantResults = []; - $('#search-progress').empty(); - - // lookup as object - for (var i = 0; i < objectterms.length; i++) { - var others = [].concat(objectterms.slice(0,i), - objectterms.slice(i+1, objectterms.length)) - var results = this.performObjectSearch(objectterms[i], others); - // Assume first word is most likely to be the object, - // other words more likely to be in description. - // Therefore put matches for earlier words first. - // (Results are eventually used in reverse order). - objectResults = results[0].concat(objectResults); - importantResults = results[1].concat(importantResults); - unimportantResults = results[2].concat(unimportantResults); - } - - // perform the search on the required terms - for (var i = 0; i < searchterms.length; i++) { - var word = searchterms[i]; - // no match but word was a required one - if ((files = terms[word]) == null) - break; - if (files.length == undefined) { - files = [files]; - } - // create the mapping - for (var j = 0; j < files.length; j++) { - var file = files[j]; - if (file in fileMap) - fileMap[file].push(word); - else - fileMap[file] = [word]; - } - } - - // now check if the files don't contain excluded terms - for (var file in fileMap) { - var valid = true; - - // check if all requirements are matched - if (fileMap[file].length != searchterms.length) - continue; - - // ensure that none of the excluded terms is in the - // search result. - for (var i = 0; i < excluded.length; i++) { - if (terms[excluded[i]] == file || - $.contains(terms[excluded[i]] || [], file)) { - valid = false; - break; - } - } - - // if we have still a valid result we can add it - // to the result list - if (valid) - regularResults.push([filenames[file], titles[file], '', null]); - } - - // delete unused variables in order to not waste - // memory until list is retrieved completely - delete filenames, titles, terms; - - // now sort the regular results descending by title - regularResults.sort(function(a, b) { - var left = a[1].toLowerCase(); - var right = b[1].toLowerCase(); - return (left > right) ? -1 : ((left < right) ? 1 : 0); - }); - - // combine all results - var results = unimportantResults.concat(regularResults) - .concat(objectResults).concat(importantResults); - - // print the results - var resultCount = results.length; - function displayNextItem() { - // results left, load the summary and display it - if (results.length) { - var item = results.pop(); - var listItem = $('<li style="display:none"></li>'); - if (DOCUMENTATION_OPTIONS.FILE_SUFFIX == '') { - // dirhtml builder - var dirname = item[0] + '/'; - if (dirname.match(/\/index\/$/)) { - dirname = dirname.substring(0, dirname.length-6); - } else if (dirname == 'index/') { - dirname = ''; - } - listItem.append($('<a/>').attr('href', - DOCUMENTATION_OPTIONS.URL_ROOT + dirname + - highlightstring + item[2]).html(item[1])); - } else { - // normal html builders - listItem.append($('<a/>').attr('href', - item[0] + DOCUMENTATION_OPTIONS.FILE_SUFFIX + - highlightstring + item[2]).html(item[1])); - } - if (item[3]) { - listItem.append($('<span> (' + item[3] + ')</span>')); - Search.output.append(listItem); - listItem.slideDown(5, function() { - displayNextItem(); - }); - } else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) { - $.ajax({url: DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' + item[0] + '.txt', - dataType: "text", - complete: function(jqxhr, textstatus) { - var data = jqxhr.responseText; - if (data !== '') { - listItem.append($.makeSearchSummary(data, searchterms, hlterms)); - } - Search.output.append(listItem); - listItem.slideDown(5, function() { - displayNextItem(); - }); - }}); - } else { - // no source available, just display title - Search.output.append(listItem); - listItem.slideDown(5, function() { - displayNextItem(); - }); - } - } - // search finished, update title and status message - else { - Search.stopPulse(); - Search.title.text(_('Search Results')); - if (!resultCount) - Search.status.text(_('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.')); - else - Search.status.text(_('Search finished, found %s page(s) matching the search query.').replace('%s', resultCount)); - Search.status.fadeIn(500); - } - } - displayNextItem(); - }, - - performObjectSearch : function(object, otherterms) { - var filenames = this._index.filenames; - var objects = this._index.objects; - var objnames = this._index.objnames; - var titles = this._index.titles; - - var importantResults = []; - var objectResults = []; - var unimportantResults = []; - - for (var prefix in objects) { - for (var name in objects[prefix]) { - var fullname = (prefix ? prefix + '.' : '') + name; - if (fullname.toLowerCase().indexOf(object) > -1) { - var match = objects[prefix][name]; - var objname = objnames[match[1]][2]; - var title = titles[match[0]]; - // If more than one term searched for, we require other words to be - // found in the name/title/description - if (otherterms.length > 0) { - var haystack = (prefix + ' ' + name + ' ' + - objname + ' ' + title).toLowerCase(); - var allfound = true; - for (var i = 0; i < otherterms.length; i++) { - if (haystack.indexOf(otherterms[i]) == -1) { - allfound = false; - break; - } - } - if (!allfound) { - continue; - } - } - var descr = objname + _(', in ') + title; - anchor = match[3]; - if (anchor == '') - anchor = fullname; - else if (anchor == '-') - anchor = objnames[match[1]][1] + '-' + fullname; - result = [filenames[match[0]], fullname, '#'+anchor, descr]; - switch (match[2]) { - case 1: objectResults.push(result); break; - case 0: importantResults.push(result); break; - case 2: unimportantResults.push(result); break; - } - } - } - } - - // sort results descending - objectResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - importantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - unimportantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - return [importantResults, objectResults, unimportantResults] - } -} - -$(document).ready(function() { - Search.init(); -}); \ No newline at end of file diff --git a/docs/user/html/pymoose/_static/sidebar.js b/docs/user/html/pymoose/_static/sidebar.js deleted file mode 100644 index a45e1926addf0b96c1cf0180287763bbece82960..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/sidebar.js +++ /dev/null @@ -1,151 +0,0 @@ -/* - * sidebar.js - * ~~~~~~~~~~ - * - * This script makes the Sphinx sidebar collapsible. - * - * .sphinxsidebar contains .sphinxsidebarwrapper. This script adds - * in .sphixsidebar, after .sphinxsidebarwrapper, the #sidebarbutton - * used to collapse and expand the sidebar. - * - * When the sidebar is collapsed the .sphinxsidebarwrapper is hidden - * and the width of the sidebar and the margin-left of the document - * are decreased. When the sidebar is expanded the opposite happens. - * This script saves a per-browser/per-session cookie used to - * remember the position of the sidebar among the pages. - * Once the browser is closed the cookie is deleted and the position - * reset to the default (expanded). - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -$(function() { - // global elements used by the functions. - // the 'sidebarbutton' element is defined as global after its - // creation, in the add_sidebar_button function - var bodywrapper = $('.bodywrapper'); - var sidebar = $('.sphinxsidebar'); - var sidebarwrapper = $('.sphinxsidebarwrapper'); - - // for some reason, the document has no sidebar; do not run into errors - if (!sidebar.length) return; - - // original margin-left of the bodywrapper and width of the sidebar - // with the sidebar expanded - var bw_margin_expanded = bodywrapper.css('margin-left'); - var ssb_width_expanded = sidebar.width(); - - // margin-left of the bodywrapper and width of the sidebar - // with the sidebar collapsed - var bw_margin_collapsed = '.8em'; - var ssb_width_collapsed = '.8em'; - - // colors used by the current theme - var dark_color = $('.related').css('background-color'); - var light_color = $('.document').css('background-color'); - - function sidebar_is_collapsed() { - return sidebarwrapper.is(':not(:visible)'); - } - - function toggle_sidebar() { - if (sidebar_is_collapsed()) - expand_sidebar(); - else - collapse_sidebar(); - } - - function collapse_sidebar() { - sidebarwrapper.hide(); - sidebar.css('width', ssb_width_collapsed); - bodywrapper.css('margin-left', bw_margin_collapsed); - sidebarbutton.css({ - 'margin-left': '0', - 'height': bodywrapper.height() - }); - sidebarbutton.find('span').text('»'); - sidebarbutton.attr('title', _('Expand sidebar')); - document.cookie = 'sidebar=collapsed'; - } - - function expand_sidebar() { - bodywrapper.css('margin-left', bw_margin_expanded); - sidebar.css('width', ssb_width_expanded); - sidebarwrapper.show(); - sidebarbutton.css({ - 'margin-left': ssb_width_expanded-12, - 'height': bodywrapper.height() - }); - sidebarbutton.find('span').text('«'); - sidebarbutton.attr('title', _('Collapse sidebar')); - document.cookie = 'sidebar=expanded'; - } - - function add_sidebar_button() { - sidebarwrapper.css({ - 'float': 'left', - 'margin-right': '0', - 'width': ssb_width_expanded - 28 - }); - // create the button - sidebar.append( - '<div id="sidebarbutton"><span>«</span></div>' - ); - var sidebarbutton = $('#sidebarbutton'); - light_color = sidebarbutton.css('background-color'); - // find the height of the viewport to center the '<<' in the page - var viewport_height; - if (window.innerHeight) - viewport_height = window.innerHeight; - else - viewport_height = $(window).height(); - sidebarbutton.find('span').css({ - 'display': 'block', - 'margin-top': (viewport_height - sidebar.position().top - 20) / 2 - }); - - sidebarbutton.click(toggle_sidebar); - sidebarbutton.attr('title', _('Collapse sidebar')); - sidebarbutton.css({ - 'color': '#FFFFFF', - 'border-left': '1px solid ' + dark_color, - 'font-size': '1.2em', - 'cursor': 'pointer', - 'height': bodywrapper.height(), - 'padding-top': '1px', - 'margin-left': ssb_width_expanded - 12 - }); - - sidebarbutton.hover( - function () { - $(this).css('background-color', dark_color); - }, - function () { - $(this).css('background-color', light_color); - } - ); - } - - function set_position_from_cookie() { - if (!document.cookie) - return; - var items = document.cookie.split(';'); - for(var k=0; k<items.length; k++) { - var key_val = items[k].split('='); - var key = key_val[0]; - if (key == 'sidebar') { - var value = key_val[1]; - if ((value == 'collapsed') && (!sidebar_is_collapsed())) - collapse_sidebar(); - else if ((value == 'expanded') && (sidebar_is_collapsed())) - expand_sidebar(); - } - } - } - - add_sidebar_button(); - var sidebarbutton = $('#sidebarbutton'); - set_position_from_cookie(); -}); diff --git a/docs/user/html/pymoose/_static/underscore.js b/docs/user/html/pymoose/_static/underscore.js deleted file mode 100644 index a12f0d96cfb48a02d518427b26c333bac622810a..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/underscore.js +++ /dev/null @@ -1,1226 +0,0 @@ -// Underscore.js 1.4.4 -// http://underscorejs.org -// (c) 2009-2013 Jeremy Ashkenas, DocumentCloud Inc. -// Underscore may be freely distributed under the MIT license. - -(function() { - - // Baseline setup - // -------------- - - // Establish the root object, `window` in the browser, or `global` on the server. - var root = this; - - // Save the previous value of the `_` variable. - var previousUnderscore = root._; - - // Establish the object that gets returned to break out of a loop iteration. - var breaker = {}; - - // Save bytes in the minified (but not gzipped) version: - var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype; - - // Create quick reference variables for speed access to core prototypes. - var push = ArrayProto.push, - slice = ArrayProto.slice, - concat = ArrayProto.concat, - toString = ObjProto.toString, - hasOwnProperty = ObjProto.hasOwnProperty; - - // All **ECMAScript 5** native function implementations that we hope to use - // are declared here. - var - nativeForEach = ArrayProto.forEach, - nativeMap = ArrayProto.map, - nativeReduce = ArrayProto.reduce, - nativeReduceRight = ArrayProto.reduceRight, - nativeFilter = ArrayProto.filter, - nativeEvery = ArrayProto.every, - nativeSome = ArrayProto.some, - nativeIndexOf = ArrayProto.indexOf, - nativeLastIndexOf = ArrayProto.lastIndexOf, - nativeIsArray = Array.isArray, - nativeKeys = Object.keys, - nativeBind = FuncProto.bind; - - // Create a safe reference to the Underscore object for use below. - var _ = function(obj) { - if (obj instanceof _) return obj; - if (!(this instanceof _)) return new _(obj); - this._wrapped = obj; - }; - - // Export the Underscore object for **Node.js**, with - // backwards-compatibility for the old `require()` API. If we're in - // the browser, add `_` as a global object via a string identifier, - // for Closure Compiler "advanced" mode. - if (typeof exports !== 'undefined') { - if (typeof module !== 'undefined' && module.exports) { - exports = module.exports = _; - } - exports._ = _; - } else { - root._ = _; - } - - // Current version. - _.VERSION = '1.4.4'; - - // Collection Functions - // -------------------- - - // The cornerstone, an `each` implementation, aka `forEach`. - // Handles objects with the built-in `forEach`, arrays, and raw objects. - // Delegates to **ECMAScript 5**'s native `forEach` if available. - var each = _.each = _.forEach = function(obj, iterator, context) { - if (obj == null) return; - if (nativeForEach && obj.forEach === nativeForEach) { - obj.forEach(iterator, context); - } else if (obj.length === +obj.length) { - for (var i = 0, l = obj.length; i < l; i++) { - if (iterator.call(context, obj[i], i, obj) === breaker) return; - } - } else { - for (var key in obj) { - if (_.has(obj, key)) { - if (iterator.call(context, obj[key], key, obj) === breaker) return; - } - } - } - }; - - // Return the results of applying the iterator to each element. - // Delegates to **ECMAScript 5**'s native `map` if available. - _.map = _.collect = function(obj, iterator, context) { - var results = []; - if (obj == null) return results; - if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context); - each(obj, function(value, index, list) { - results[results.length] = iterator.call(context, value, index, list); - }); - return results; - }; - - var reduceError = 'Reduce of empty array with no initial value'; - - // **Reduce** builds up a single result from a list of values, aka `inject`, - // or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available. - _.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) { - var initial = arguments.length > 2; - if (obj == null) obj = []; - if (nativeReduce && obj.reduce === nativeReduce) { - if (context) iterator = _.bind(iterator, context); - return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator); - } - each(obj, function(value, index, list) { - if (!initial) { - memo = value; - initial = true; - } else { - memo = iterator.call(context, memo, value, index, list); - } - }); - if (!initial) throw new TypeError(reduceError); - return memo; - }; - - // The right-associative version of reduce, also known as `foldr`. - // Delegates to **ECMAScript 5**'s native `reduceRight` if available. - _.reduceRight = _.foldr = function(obj, iterator, memo, context) { - var initial = arguments.length > 2; - if (obj == null) obj = []; - if (nativeReduceRight && obj.reduceRight === nativeReduceRight) { - if (context) iterator = _.bind(iterator, context); - return initial ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator); - } - var length = obj.length; - if (length !== +length) { - var keys = _.keys(obj); - length = keys.length; - } - each(obj, function(value, index, list) { - index = keys ? keys[--length] : --length; - if (!initial) { - memo = obj[index]; - initial = true; - } else { - memo = iterator.call(context, memo, obj[index], index, list); - } - }); - if (!initial) throw new TypeError(reduceError); - return memo; - }; - - // Return the first value which passes a truth test. Aliased as `detect`. - _.find = _.detect = function(obj, iterator, context) { - var result; - any(obj, function(value, index, list) { - if (iterator.call(context, value, index, list)) { - result = value; - return true; - } - }); - return result; - }; - - // Return all the elements that pass a truth test. - // Delegates to **ECMAScript 5**'s native `filter` if available. - // Aliased as `select`. - _.filter = _.select = function(obj, iterator, context) { - var results = []; - if (obj == null) return results; - if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context); - each(obj, function(value, index, list) { - if (iterator.call(context, value, index, list)) results[results.length] = value; - }); - return results; - }; - - // Return all the elements for which a truth test fails. - _.reject = function(obj, iterator, context) { - return _.filter(obj, function(value, index, list) { - return !iterator.call(context, value, index, list); - }, context); - }; - - // Determine whether all of the elements match a truth test. - // Delegates to **ECMAScript 5**'s native `every` if available. - // Aliased as `all`. - _.every = _.all = function(obj, iterator, context) { - iterator || (iterator = _.identity); - var result = true; - if (obj == null) return result; - if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context); - each(obj, function(value, index, list) { - if (!(result = result && iterator.call(context, value, index, list))) return breaker; - }); - return !!result; - }; - - // Determine if at least one element in the object matches a truth test. - // Delegates to **ECMAScript 5**'s native `some` if available. - // Aliased as `any`. - var any = _.some = _.any = function(obj, iterator, context) { - iterator || (iterator = _.identity); - var result = false; - if (obj == null) return result; - if (nativeSome && obj.some === nativeSome) return obj.some(iterator, context); - each(obj, function(value, index, list) { - if (result || (result = iterator.call(context, value, index, list))) return breaker; - }); - return !!result; - }; - - // Determine if the array or object contains a given value (using `===`). - // Aliased as `include`. - _.contains = _.include = function(obj, target) { - if (obj == null) return false; - if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1; - return any(obj, function(value) { - return value === target; - }); - }; - - // Invoke a method (with arguments) on every item in a collection. - _.invoke = function(obj, method) { - var args = slice.call(arguments, 2); - var isFunc = _.isFunction(method); - return _.map(obj, function(value) { - return (isFunc ? method : value[method]).apply(value, args); - }); - }; - - // Convenience version of a common use case of `map`: fetching a property. - _.pluck = function(obj, key) { - return _.map(obj, function(value){ return value[key]; }); - }; - - // Convenience version of a common use case of `filter`: selecting only objects - // containing specific `key:value` pairs. - _.where = function(obj, attrs, first) { - if (_.isEmpty(attrs)) return first ? null : []; - return _[first ? 'find' : 'filter'](obj, function(value) { - for (var key in attrs) { - if (attrs[key] !== value[key]) return false; - } - return true; - }); - }; - - // Convenience version of a common use case of `find`: getting the first object - // containing specific `key:value` pairs. - _.findWhere = function(obj, attrs) { - return _.where(obj, attrs, true); - }; - - // Return the maximum element or (element-based computation). - // Can't optimize arrays of integers longer than 65,535 elements. - // See: https://bugs.webkit.org/show_bug.cgi?id=80797 - _.max = function(obj, iterator, context) { - if (!iterator && _.isArray(obj) && obj[0] === +obj[0] && obj.length < 65535) { - return Math.max.apply(Math, obj); - } - if (!iterator && _.isEmpty(obj)) return -Infinity; - var result = {computed : -Infinity, value: -Infinity}; - each(obj, function(value, index, list) { - var computed = iterator ? iterator.call(context, value, index, list) : value; - computed >= result.computed && (result = {value : value, computed : computed}); - }); - return result.value; - }; - - // Return the minimum element (or element-based computation). - _.min = function(obj, iterator, context) { - if (!iterator && _.isArray(obj) && obj[0] === +obj[0] && obj.length < 65535) { - return Math.min.apply(Math, obj); - } - if (!iterator && _.isEmpty(obj)) return Infinity; - var result = {computed : Infinity, value: Infinity}; - each(obj, function(value, index, list) { - var computed = iterator ? iterator.call(context, value, index, list) : value; - computed < result.computed && (result = {value : value, computed : computed}); - }); - return result.value; - }; - - // Shuffle an array. - _.shuffle = function(obj) { - var rand; - var index = 0; - var shuffled = []; - each(obj, function(value) { - rand = _.random(index++); - shuffled[index - 1] = shuffled[rand]; - shuffled[rand] = value; - }); - return shuffled; - }; - - // An internal function to generate lookup iterators. - var lookupIterator = function(value) { - return _.isFunction(value) ? value : function(obj){ return obj[value]; }; - }; - - // Sort the object's values by a criterion produced by an iterator. - _.sortBy = function(obj, value, context) { - var iterator = lookupIterator(value); - return _.pluck(_.map(obj, function(value, index, list) { - return { - value : value, - index : index, - criteria : iterator.call(context, value, index, list) - }; - }).sort(function(left, right) { - var a = left.criteria; - var b = right.criteria; - if (a !== b) { - if (a > b || a === void 0) return 1; - if (a < b || b === void 0) return -1; - } - return left.index < right.index ? -1 : 1; - }), 'value'); - }; - - // An internal function used for aggregate "group by" operations. - var group = function(obj, value, context, behavior) { - var result = {}; - var iterator = lookupIterator(value || _.identity); - each(obj, function(value, index) { - var key = iterator.call(context, value, index, obj); - behavior(result, key, value); - }); - return result; - }; - - // Groups the object's values by a criterion. Pass either a string attribute - // to group by, or a function that returns the criterion. - _.groupBy = function(obj, value, context) { - return group(obj, value, context, function(result, key, value) { - (_.has(result, key) ? result[key] : (result[key] = [])).push(value); - }); - }; - - // Counts instances of an object that group by a certain criterion. Pass - // either a string attribute to count by, or a function that returns the - // criterion. - _.countBy = function(obj, value, context) { - return group(obj, value, context, function(result, key) { - if (!_.has(result, key)) result[key] = 0; - result[key]++; - }); - }; - - // Use a comparator function to figure out the smallest index at which - // an object should be inserted so as to maintain order. Uses binary search. - _.sortedIndex = function(array, obj, iterator, context) { - iterator = iterator == null ? _.identity : lookupIterator(iterator); - var value = iterator.call(context, obj); - var low = 0, high = array.length; - while (low < high) { - var mid = (low + high) >>> 1; - iterator.call(context, array[mid]) < value ? low = mid + 1 : high = mid; - } - return low; - }; - - // Safely convert anything iterable into a real, live array. - _.toArray = function(obj) { - if (!obj) return []; - if (_.isArray(obj)) return slice.call(obj); - if (obj.length === +obj.length) return _.map(obj, _.identity); - return _.values(obj); - }; - - // Return the number of elements in an object. - _.size = function(obj) { - if (obj == null) return 0; - return (obj.length === +obj.length) ? obj.length : _.keys(obj).length; - }; - - // Array Functions - // --------------- - - // Get the first element of an array. Passing **n** will return the first N - // values in the array. Aliased as `head` and `take`. The **guard** check - // allows it to work with `_.map`. - _.first = _.head = _.take = function(array, n, guard) { - if (array == null) return void 0; - return (n != null) && !guard ? slice.call(array, 0, n) : array[0]; - }; - - // Returns everything but the last entry of the array. Especially useful on - // the arguments object. Passing **n** will return all the values in - // the array, excluding the last N. The **guard** check allows it to work with - // `_.map`. - _.initial = function(array, n, guard) { - return slice.call(array, 0, array.length - ((n == null) || guard ? 1 : n)); - }; - - // Get the last element of an array. Passing **n** will return the last N - // values in the array. The **guard** check allows it to work with `_.map`. - _.last = function(array, n, guard) { - if (array == null) return void 0; - if ((n != null) && !guard) { - return slice.call(array, Math.max(array.length - n, 0)); - } else { - return array[array.length - 1]; - } - }; - - // Returns everything but the first entry of the array. Aliased as `tail` and `drop`. - // Especially useful on the arguments object. Passing an **n** will return - // the rest N values in the array. The **guard** - // check allows it to work with `_.map`. - _.rest = _.tail = _.drop = function(array, n, guard) { - return slice.call(array, (n == null) || guard ? 1 : n); - }; - - // Trim out all falsy values from an array. - _.compact = function(array) { - return _.filter(array, _.identity); - }; - - // Internal implementation of a recursive `flatten` function. - var flatten = function(input, shallow, output) { - each(input, function(value) { - if (_.isArray(value)) { - shallow ? push.apply(output, value) : flatten(value, shallow, output); - } else { - output.push(value); - } - }); - return output; - }; - - // Return a completely flattened version of an array. - _.flatten = function(array, shallow) { - return flatten(array, shallow, []); - }; - - // Return a version of the array that does not contain the specified value(s). - _.without = function(array) { - return _.difference(array, slice.call(arguments, 1)); - }; - - // Produce a duplicate-free version of the array. If the array has already - // been sorted, you have the option of using a faster algorithm. - // Aliased as `unique`. - _.uniq = _.unique = function(array, isSorted, iterator, context) { - if (_.isFunction(isSorted)) { - context = iterator; - iterator = isSorted; - isSorted = false; - } - var initial = iterator ? _.map(array, iterator, context) : array; - var results = []; - var seen = []; - each(initial, function(value, index) { - if (isSorted ? (!index || seen[seen.length - 1] !== value) : !_.contains(seen, value)) { - seen.push(value); - results.push(array[index]); - } - }); - return results; - }; - - // Produce an array that contains the union: each distinct element from all of - // the passed-in arrays. - _.union = function() { - return _.uniq(concat.apply(ArrayProto, arguments)); - }; - - // Produce an array that contains every item shared between all the - // passed-in arrays. - _.intersection = function(array) { - var rest = slice.call(arguments, 1); - return _.filter(_.uniq(array), function(item) { - return _.every(rest, function(other) { - return _.indexOf(other, item) >= 0; - }); - }); - }; - - // Take the difference between one array and a number of other arrays. - // Only the elements present in just the first array will remain. - _.difference = function(array) { - var rest = concat.apply(ArrayProto, slice.call(arguments, 1)); - return _.filter(array, function(value){ return !_.contains(rest, value); }); - }; - - // Zip together multiple lists into a single array -- elements that share - // an index go together. - _.zip = function() { - var args = slice.call(arguments); - var length = _.max(_.pluck(args, 'length')); - var results = new Array(length); - for (var i = 0; i < length; i++) { - results[i] = _.pluck(args, "" + i); - } - return results; - }; - - // Converts lists into objects. Pass either a single array of `[key, value]` - // pairs, or two parallel arrays of the same length -- one of keys, and one of - // the corresponding values. - _.object = function(list, values) { - if (list == null) return {}; - var result = {}; - for (var i = 0, l = list.length; i < l; i++) { - if (values) { - result[list[i]] = values[i]; - } else { - result[list[i][0]] = list[i][1]; - } - } - return result; - }; - - // If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**), - // we need this function. Return the position of the first occurrence of an - // item in an array, or -1 if the item is not included in the array. - // Delegates to **ECMAScript 5**'s native `indexOf` if available. - // If the array is large and already in sort order, pass `true` - // for **isSorted** to use binary search. - _.indexOf = function(array, item, isSorted) { - if (array == null) return -1; - var i = 0, l = array.length; - if (isSorted) { - if (typeof isSorted == 'number') { - i = (isSorted < 0 ? Math.max(0, l + isSorted) : isSorted); - } else { - i = _.sortedIndex(array, item); - return array[i] === item ? i : -1; - } - } - if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item, isSorted); - for (; i < l; i++) if (array[i] === item) return i; - return -1; - }; - - // Delegates to **ECMAScript 5**'s native `lastIndexOf` if available. - _.lastIndexOf = function(array, item, from) { - if (array == null) return -1; - var hasIndex = from != null; - if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) { - return hasIndex ? array.lastIndexOf(item, from) : array.lastIndexOf(item); - } - var i = (hasIndex ? from : array.length); - while (i--) if (array[i] === item) return i; - return -1; - }; - - // Generate an integer Array containing an arithmetic progression. A port of - // the native Python `range()` function. See - // [the Python documentation](http://docs.python.org/library/functions.html#range). - _.range = function(start, stop, step) { - if (arguments.length <= 1) { - stop = start || 0; - start = 0; - } - step = arguments[2] || 1; - - var len = Math.max(Math.ceil((stop - start) / step), 0); - var idx = 0; - var range = new Array(len); - - while(idx < len) { - range[idx++] = start; - start += step; - } - - return range; - }; - - // Function (ahem) Functions - // ------------------ - - // Create a function bound to a given object (assigning `this`, and arguments, - // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if - // available. - _.bind = function(func, context) { - if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1)); - var args = slice.call(arguments, 2); - return function() { - return func.apply(context, args.concat(slice.call(arguments))); - }; - }; - - // Partially apply a function by creating a version that has had some of its - // arguments pre-filled, without changing its dynamic `this` context. - _.partial = function(func) { - var args = slice.call(arguments, 1); - return function() { - return func.apply(this, args.concat(slice.call(arguments))); - }; - }; - - // Bind all of an object's methods to that object. Useful for ensuring that - // all callbacks defined on an object belong to it. - _.bindAll = function(obj) { - var funcs = slice.call(arguments, 1); - if (funcs.length === 0) funcs = _.functions(obj); - each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); }); - return obj; - }; - - // Memoize an expensive function by storing its results. - _.memoize = function(func, hasher) { - var memo = {}; - hasher || (hasher = _.identity); - return function() { - var key = hasher.apply(this, arguments); - return _.has(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments)); - }; - }; - - // Delays a function for the given number of milliseconds, and then calls - // it with the arguments supplied. - _.delay = function(func, wait) { - var args = slice.call(arguments, 2); - return setTimeout(function(){ return func.apply(null, args); }, wait); - }; - - // Defers a function, scheduling it to run after the current call stack has - // cleared. - _.defer = function(func) { - return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1))); - }; - - // Returns a function, that, when invoked, will only be triggered at most once - // during a given window of time. - _.throttle = function(func, wait) { - var context, args, timeout, result; - var previous = 0; - var later = function() { - previous = new Date; - timeout = null; - result = func.apply(context, args); - }; - return function() { - var now = new Date; - var remaining = wait - (now - previous); - context = this; - args = arguments; - if (remaining <= 0) { - clearTimeout(timeout); - timeout = null; - previous = now; - result = func.apply(context, args); - } else if (!timeout) { - timeout = setTimeout(later, remaining); - } - return result; - }; - }; - - // Returns a function, that, as long as it continues to be invoked, will not - // be triggered. The function will be called after it stops being called for - // N milliseconds. If `immediate` is passed, trigger the function on the - // leading edge, instead of the trailing. - _.debounce = function(func, wait, immediate) { - var timeout, result; - return function() { - var context = this, args = arguments; - var later = function() { - timeout = null; - if (!immediate) result = func.apply(context, args); - }; - var callNow = immediate && !timeout; - clearTimeout(timeout); - timeout = setTimeout(later, wait); - if (callNow) result = func.apply(context, args); - return result; - }; - }; - - // Returns a function that will be executed at most one time, no matter how - // often you call it. Useful for lazy initialization. - _.once = function(func) { - var ran = false, memo; - return function() { - if (ran) return memo; - ran = true; - memo = func.apply(this, arguments); - func = null; - return memo; - }; - }; - - // Returns the first function passed as an argument to the second, - // allowing you to adjust arguments, run code before and after, and - // conditionally execute the original function. - _.wrap = function(func, wrapper) { - return function() { - var args = [func]; - push.apply(args, arguments); - return wrapper.apply(this, args); - }; - }; - - // Returns a function that is the composition of a list of functions, each - // consuming the return value of the function that follows. - _.compose = function() { - var funcs = arguments; - return function() { - var args = arguments; - for (var i = funcs.length - 1; i >= 0; i--) { - args = [funcs[i].apply(this, args)]; - } - return args[0]; - }; - }; - - // Returns a function that will only be executed after being called N times. - _.after = function(times, func) { - if (times <= 0) return func(); - return function() { - if (--times < 1) { - return func.apply(this, arguments); - } - }; - }; - - // Object Functions - // ---------------- - - // Retrieve the names of an object's properties. - // Delegates to **ECMAScript 5**'s native `Object.keys` - _.keys = nativeKeys || function(obj) { - if (obj !== Object(obj)) throw new TypeError('Invalid object'); - var keys = []; - for (var key in obj) if (_.has(obj, key)) keys[keys.length] = key; - return keys; - }; - - // Retrieve the values of an object's properties. - _.values = function(obj) { - var values = []; - for (var key in obj) if (_.has(obj, key)) values.push(obj[key]); - return values; - }; - - // Convert an object into a list of `[key, value]` pairs. - _.pairs = function(obj) { - var pairs = []; - for (var key in obj) if (_.has(obj, key)) pairs.push([key, obj[key]]); - return pairs; - }; - - // Invert the keys and values of an object. The values must be serializable. - _.invert = function(obj) { - var result = {}; - for (var key in obj) if (_.has(obj, key)) result[obj[key]] = key; - return result; - }; - - // Return a sorted list of the function names available on the object. - // Aliased as `methods` - _.functions = _.methods = function(obj) { - var names = []; - for (var key in obj) { - if (_.isFunction(obj[key])) names.push(key); - } - return names.sort(); - }; - - // Extend a given object with all the properties in passed-in object(s). - _.extend = function(obj) { - each(slice.call(arguments, 1), function(source) { - if (source) { - for (var prop in source) { - obj[prop] = source[prop]; - } - } - }); - return obj; - }; - - // Return a copy of the object only containing the whitelisted properties. - _.pick = function(obj) { - var copy = {}; - var keys = concat.apply(ArrayProto, slice.call(arguments, 1)); - each(keys, function(key) { - if (key in obj) copy[key] = obj[key]; - }); - return copy; - }; - - // Return a copy of the object without the blacklisted properties. - _.omit = function(obj) { - var copy = {}; - var keys = concat.apply(ArrayProto, slice.call(arguments, 1)); - for (var key in obj) { - if (!_.contains(keys, key)) copy[key] = obj[key]; - } - return copy; - }; - - // Fill in a given object with default properties. - _.defaults = function(obj) { - each(slice.call(arguments, 1), function(source) { - if (source) { - for (var prop in source) { - if (obj[prop] == null) obj[prop] = source[prop]; - } - } - }); - return obj; - }; - - // Create a (shallow-cloned) duplicate of an object. - _.clone = function(obj) { - if (!_.isObject(obj)) return obj; - return _.isArray(obj) ? obj.slice() : _.extend({}, obj); - }; - - // Invokes interceptor with the obj, and then returns obj. - // The primary purpose of this method is to "tap into" a method chain, in - // order to perform operations on intermediate results within the chain. - _.tap = function(obj, interceptor) { - interceptor(obj); - return obj; - }; - - // Internal recursive comparison function for `isEqual`. - var eq = function(a, b, aStack, bStack) { - // Identical objects are equal. `0 === -0`, but they aren't identical. - // See the Harmony `egal` proposal: http://wiki.ecmascript.org/doku.php?id=harmony:egal. - if (a === b) return a !== 0 || 1 / a == 1 / b; - // A strict comparison is necessary because `null == undefined`. - if (a == null || b == null) return a === b; - // Unwrap any wrapped objects. - if (a instanceof _) a = a._wrapped; - if (b instanceof _) b = b._wrapped; - // Compare `[[Class]]` names. - var className = toString.call(a); - if (className != toString.call(b)) return false; - switch (className) { - // Strings, numbers, dates, and booleans are compared by value. - case '[object String]': - // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is - // equivalent to `new String("5")`. - return a == String(b); - case '[object Number]': - // `NaN`s are equivalent, but non-reflexive. An `egal` comparison is performed for - // other numeric values. - return a != +a ? b != +b : (a == 0 ? 1 / a == 1 / b : a == +b); - case '[object Date]': - case '[object Boolean]': - // Coerce dates and booleans to numeric primitive values. Dates are compared by their - // millisecond representations. Note that invalid dates with millisecond representations - // of `NaN` are not equivalent. - return +a == +b; - // RegExps are compared by their source patterns and flags. - case '[object RegExp]': - return a.source == b.source && - a.global == b.global && - a.multiline == b.multiline && - a.ignoreCase == b.ignoreCase; - } - if (typeof a != 'object' || typeof b != 'object') return false; - // Assume equality for cyclic structures. The algorithm for detecting cyclic - // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. - var length = aStack.length; - while (length--) { - // Linear search. Performance is inversely proportional to the number of - // unique nested structures. - if (aStack[length] == a) return bStack[length] == b; - } - // Add the first object to the stack of traversed objects. - aStack.push(a); - bStack.push(b); - var size = 0, result = true; - // Recursively compare objects and arrays. - if (className == '[object Array]') { - // Compare array lengths to determine if a deep comparison is necessary. - size = a.length; - result = size == b.length; - if (result) { - // Deep compare the contents, ignoring non-numeric properties. - while (size--) { - if (!(result = eq(a[size], b[size], aStack, bStack))) break; - } - } - } else { - // Objects with different constructors are not equivalent, but `Object`s - // from different frames are. - var aCtor = a.constructor, bCtor = b.constructor; - if (aCtor !== bCtor && !(_.isFunction(aCtor) && (aCtor instanceof aCtor) && - _.isFunction(bCtor) && (bCtor instanceof bCtor))) { - return false; - } - // Deep compare objects. - for (var key in a) { - if (_.has(a, key)) { - // Count the expected number of properties. - size++; - // Deep compare each member. - if (!(result = _.has(b, key) && eq(a[key], b[key], aStack, bStack))) break; - } - } - // Ensure that both objects contain the same number of properties. - if (result) { - for (key in b) { - if (_.has(b, key) && !(size--)) break; - } - result = !size; - } - } - // Remove the first object from the stack of traversed objects. - aStack.pop(); - bStack.pop(); - return result; - }; - - // Perform a deep comparison to check if two objects are equal. - _.isEqual = function(a, b) { - return eq(a, b, [], []); - }; - - // Is a given array, string, or object empty? - // An "empty" object has no enumerable own-properties. - _.isEmpty = function(obj) { - if (obj == null) return true; - if (_.isArray(obj) || _.isString(obj)) return obj.length === 0; - for (var key in obj) if (_.has(obj, key)) return false; - return true; - }; - - // Is a given value a DOM element? - _.isElement = function(obj) { - return !!(obj && obj.nodeType === 1); - }; - - // Is a given value an array? - // Delegates to ECMA5's native Array.isArray - _.isArray = nativeIsArray || function(obj) { - return toString.call(obj) == '[object Array]'; - }; - - // Is a given variable an object? - _.isObject = function(obj) { - return obj === Object(obj); - }; - - // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp. - each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp'], function(name) { - _['is' + name] = function(obj) { - return toString.call(obj) == '[object ' + name + ']'; - }; - }); - - // Define a fallback version of the method in browsers (ahem, IE), where - // there isn't any inspectable "Arguments" type. - if (!_.isArguments(arguments)) { - _.isArguments = function(obj) { - return !!(obj && _.has(obj, 'callee')); - }; - } - - // Optimize `isFunction` if appropriate. - if (typeof (/./) !== 'function') { - _.isFunction = function(obj) { - return typeof obj === 'function'; - }; - } - - // Is a given object a finite number? - _.isFinite = function(obj) { - return isFinite(obj) && !isNaN(parseFloat(obj)); - }; - - // Is the given value `NaN`? (NaN is the only number which does not equal itself). - _.isNaN = function(obj) { - return _.isNumber(obj) && obj != +obj; - }; - - // Is a given value a boolean? - _.isBoolean = function(obj) { - return obj === true || obj === false || toString.call(obj) == '[object Boolean]'; - }; - - // Is a given value equal to null? - _.isNull = function(obj) { - return obj === null; - }; - - // Is a given variable undefined? - _.isUndefined = function(obj) { - return obj === void 0; - }; - - // Shortcut function for checking if an object has a given property directly - // on itself (in other words, not on a prototype). - _.has = function(obj, key) { - return hasOwnProperty.call(obj, key); - }; - - // Utility Functions - // ----------------- - - // Run Underscore.js in *noConflict* mode, returning the `_` variable to its - // previous owner. Returns a reference to the Underscore object. - _.noConflict = function() { - root._ = previousUnderscore; - return this; - }; - - // Keep the identity function around for default iterators. - _.identity = function(value) { - return value; - }; - - // Run a function **n** times. - _.times = function(n, iterator, context) { - var accum = Array(n); - for (var i = 0; i < n; i++) accum[i] = iterator.call(context, i); - return accum; - }; - - // Return a random integer between min and max (inclusive). - _.random = function(min, max) { - if (max == null) { - max = min; - min = 0; - } - return min + Math.floor(Math.random() * (max - min + 1)); - }; - - // List of HTML entities for escaping. - var entityMap = { - escape: { - '&': '&', - '<': '<', - '>': '>', - '"': '"', - "'": ''', - '/': '/' - } - }; - entityMap.unescape = _.invert(entityMap.escape); - - // Regexes containing the keys and values listed immediately above. - var entityRegexes = { - escape: new RegExp('[' + _.keys(entityMap.escape).join('') + ']', 'g'), - unescape: new RegExp('(' + _.keys(entityMap.unescape).join('|') + ')', 'g') - }; - - // Functions for escaping and unescaping strings to/from HTML interpolation. - _.each(['escape', 'unescape'], function(method) { - _[method] = function(string) { - if (string == null) return ''; - return ('' + string).replace(entityRegexes[method], function(match) { - return entityMap[method][match]; - }); - }; - }); - - // If the value of the named property is a function then invoke it; - // otherwise, return it. - _.result = function(object, property) { - if (object == null) return null; - var value = object[property]; - return _.isFunction(value) ? value.call(object) : value; - }; - - // Add your own custom functions to the Underscore object. - _.mixin = function(obj) { - each(_.functions(obj), function(name){ - var func = _[name] = obj[name]; - _.prototype[name] = function() { - var args = [this._wrapped]; - push.apply(args, arguments); - return result.call(this, func.apply(_, args)); - }; - }); - }; - - // Generate a unique integer id (unique within the entire client session). - // Useful for temporary DOM ids. - var idCounter = 0; - _.uniqueId = function(prefix) { - var id = ++idCounter + ''; - return prefix ? prefix + id : id; - }; - - // By default, Underscore uses ERB-style template delimiters, change the - // following template settings to use alternative delimiters. - _.templateSettings = { - evaluate : /<%([\s\S]+?)%>/g, - interpolate : /<%=([\s\S]+?)%>/g, - escape : /<%-([\s\S]+?)%>/g - }; - - // When customizing `templateSettings`, if you don't want to define an - // interpolation, evaluation or escaping regex, we need one that is - // guaranteed not to match. - var noMatch = /(.)^/; - - // Certain characters need to be escaped so that they can be put into a - // string literal. - var escapes = { - "'": "'", - '\\': '\\', - '\r': 'r', - '\n': 'n', - '\t': 't', - '\u2028': 'u2028', - '\u2029': 'u2029' - }; - - var escaper = /\\|'|\r|\n|\t|\u2028|\u2029/g; - - // JavaScript micro-templating, similar to John Resig's implementation. - // Underscore templating handles arbitrary delimiters, preserves whitespace, - // and correctly escapes quotes within interpolated code. - _.template = function(text, data, settings) { - var render; - settings = _.defaults({}, settings, _.templateSettings); - - // Combine delimiters into one regular expression via alternation. - var matcher = new RegExp([ - (settings.escape || noMatch).source, - (settings.interpolate || noMatch).source, - (settings.evaluate || noMatch).source - ].join('|') + '|$', 'g'); - - // Compile the template source, escaping string literals appropriately. - var index = 0; - var source = "__p+='"; - text.replace(matcher, function(match, escape, interpolate, evaluate, offset) { - source += text.slice(index, offset) - .replace(escaper, function(match) { return '\\' + escapes[match]; }); - - if (escape) { - source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'"; - } - if (interpolate) { - source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'"; - } - if (evaluate) { - source += "';\n" + evaluate + "\n__p+='"; - } - index = offset + match.length; - return match; - }); - source += "';\n"; - - // If a variable is not specified, place data values in local scope. - if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n'; - - source = "var __t,__p='',__j=Array.prototype.join," + - "print=function(){__p+=__j.call(arguments,'');};\n" + - source + "return __p;\n"; - - try { - render = new Function(settings.variable || 'obj', '_', source); - } catch (e) { - e.source = source; - throw e; - } - - if (data) return render(data, _); - var template = function(data) { - return render.call(this, data, _); - }; - - // Provide the compiled function source as a convenience for precompilation. - template.source = 'function(' + (settings.variable || 'obj') + '){\n' + source + '}'; - - return template; - }; - - // Add a "chain" function, which will delegate to the wrapper. - _.chain = function(obj) { - return _(obj).chain(); - }; - - // OOP - // --------------- - // If Underscore is called as a function, it returns a wrapped object that - // can be used OO-style. This wrapper holds altered versions of all the - // underscore functions. Wrapped objects may be chained. - - // Helper function to continue chaining intermediate results. - var result = function(obj) { - return this._chain ? _(obj).chain() : obj; - }; - - // Add all of the Underscore functions to the wrapper object. - _.mixin(_); - - // Add all mutator Array functions to the wrapper. - each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) { - var method = ArrayProto[name]; - _.prototype[name] = function() { - var obj = this._wrapped; - method.apply(obj, arguments); - if ((name == 'shift' || name == 'splice') && obj.length === 0) delete obj[0]; - return result.call(this, obj); - }; - }); - - // Add all accessor Array functions to the wrapper. - each(['concat', 'join', 'slice'], function(name) { - var method = ArrayProto[name]; - _.prototype[name] = function() { - return result.call(this, method.apply(this._wrapped, arguments)); - }; - }); - - _.extend(_.prototype, { - - // Start chaining a wrapped Underscore object. - chain: function() { - this._chain = true; - return this; - }, - - // Extracts the result from a wrapped and chained object. - value: function() { - return this._wrapped; - } - - }); - -}).call(this); diff --git a/docs/user/html/pymoose/_static/up-pressed.png b/docs/user/html/pymoose/_static/up-pressed.png deleted file mode 100644 index 8bd587afee2fe38989383ff82010147ea56b93dd..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/up-pressed.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/up.png b/docs/user/html/pymoose/_static/up.png deleted file mode 100644 index b94625680b4a4b9647c3a6f3f283776930696aa9..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/_static/up.png and /dev/null differ diff --git a/docs/user/html/pymoose/_static/websupport.js b/docs/user/html/pymoose/_static/websupport.js deleted file mode 100644 index e9bd1b851c62bf625a2cac10d8da09526c440373..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/_static/websupport.js +++ /dev/null @@ -1,808 +0,0 @@ -/* - * websupport.js - * ~~~~~~~~~~~~~ - * - * sphinx.websupport utilties for all documentation. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -(function($) { - $.fn.autogrow = function() { - return this.each(function() { - var textarea = this; - - $.fn.autogrow.resize(textarea); - - $(textarea) - .focus(function() { - textarea.interval = setInterval(function() { - $.fn.autogrow.resize(textarea); - }, 500); - }) - .blur(function() { - clearInterval(textarea.interval); - }); - }); - }; - - $.fn.autogrow.resize = function(textarea) { - var lineHeight = parseInt($(textarea).css('line-height'), 10); - var lines = textarea.value.split('\n'); - var columns = textarea.cols; - var lineCount = 0; - $.each(lines, function() { - lineCount += Math.ceil(this.length / columns) || 1; - }); - var height = lineHeight * (lineCount + 1); - $(textarea).css('height', height); - }; -})(jQuery); - -(function($) { - var comp, by; - - function init() { - initEvents(); - initComparator(); - } - - function initEvents() { - $('a.comment-close').live("click", function(event) { - event.preventDefault(); - hide($(this).attr('id').substring(2)); - }); - $('a.vote').live("click", function(event) { - event.preventDefault(); - handleVote($(this)); - }); - $('a.reply').live("click", function(event) { - event.preventDefault(); - openReply($(this).attr('id').substring(2)); - }); - $('a.close-reply').live("click", function(event) { - event.preventDefault(); - closeReply($(this).attr('id').substring(2)); - }); - $('a.sort-option').live("click", function(event) { - event.preventDefault(); - handleReSort($(this)); - }); - $('a.show-proposal').live("click", function(event) { - event.preventDefault(); - showProposal($(this).attr('id').substring(2)); - }); - $('a.hide-proposal').live("click", function(event) { - event.preventDefault(); - hideProposal($(this).attr('id').substring(2)); - }); - $('a.show-propose-change').live("click", function(event) { - event.preventDefault(); - showProposeChange($(this).attr('id').substring(2)); - }); - $('a.hide-propose-change').live("click", function(event) { - event.preventDefault(); - hideProposeChange($(this).attr('id').substring(2)); - }); - $('a.accept-comment').live("click", function(event) { - event.preventDefault(); - acceptComment($(this).attr('id').substring(2)); - }); - $('a.delete-comment').live("click", function(event) { - event.preventDefault(); - deleteComment($(this).attr('id').substring(2)); - }); - $('a.comment-markup').live("click", function(event) { - event.preventDefault(); - toggleCommentMarkupBox($(this).attr('id').substring(2)); - }); - } - - /** - * Set comp, which is a comparator function used for sorting and - * inserting comments into the list. - */ - function setComparator() { - // If the first three letters are "asc", sort in ascending order - // and remove the prefix. - if (by.substring(0,3) == 'asc') { - var i = by.substring(3); - comp = function(a, b) { return a[i] - b[i]; }; - } else { - // Otherwise sort in descending order. - comp = function(a, b) { return b[by] - a[by]; }; - } - - // Reset link styles and format the selected sort option. - $('a.sel').attr('href', '#').removeClass('sel'); - $('a.by' + by).removeAttr('href').addClass('sel'); - } - - /** - * Create a comp function. If the user has preferences stored in - * the sortBy cookie, use those, otherwise use the default. - */ - function initComparator() { - by = 'rating'; // Default to sort by rating. - // If the sortBy cookie is set, use that instead. - if (document.cookie.length > 0) { - var start = document.cookie.indexOf('sortBy='); - if (start != -1) { - start = start + 7; - var end = document.cookie.indexOf(";", start); - if (end == -1) { - end = document.cookie.length; - by = unescape(document.cookie.substring(start, end)); - } - } - } - setComparator(); - } - - /** - * Show a comment div. - */ - function show(id) { - $('#ao' + id).hide(); - $('#ah' + id).show(); - var context = $.extend({id: id}, opts); - var popup = $(renderTemplate(popupTemplate, context)).hide(); - popup.find('textarea[name="proposal"]').hide(); - popup.find('a.by' + by).addClass('sel'); - var form = popup.find('#cf' + id); - form.submit(function(event) { - event.preventDefault(); - addComment(form); - }); - $('#s' + id).after(popup); - popup.slideDown('fast', function() { - getComments(id); - }); - } - - /** - * Hide a comment div. - */ - function hide(id) { - $('#ah' + id).hide(); - $('#ao' + id).show(); - var div = $('#sc' + id); - div.slideUp('fast', function() { - div.remove(); - }); - } - - /** - * Perform an ajax request to get comments for a node - * and insert the comments into the comments tree. - */ - function getComments(id) { - $.ajax({ - type: 'GET', - url: opts.getCommentsURL, - data: {node: id}, - success: function(data, textStatus, request) { - var ul = $('#cl' + id); - var speed = 100; - $('#cf' + id) - .find('textarea[name="proposal"]') - .data('source', data.source); - - if (data.comments.length === 0) { - ul.html('<li>No comments yet.</li>'); - ul.data('empty', true); - } else { - // If there are comments, sort them and put them in the list. - var comments = sortComments(data.comments); - speed = data.comments.length * 100; - appendComments(comments, ul); - ul.data('empty', false); - } - $('#cn' + id).slideUp(speed + 200); - ul.slideDown(speed); - }, - error: function(request, textStatus, error) { - showError('Oops, there was a problem retrieving the comments.'); - }, - dataType: 'json' - }); - } - - /** - * Add a comment via ajax and insert the comment into the comment tree. - */ - function addComment(form) { - var node_id = form.find('input[name="node"]').val(); - var parent_id = form.find('input[name="parent"]').val(); - var text = form.find('textarea[name="comment"]').val(); - var proposal = form.find('textarea[name="proposal"]').val(); - - if (text == '') { - showError('Please enter a comment.'); - return; - } - - // Disable the form that is being submitted. - form.find('textarea,input').attr('disabled', 'disabled'); - - // Send the comment to the server. - $.ajax({ - type: "POST", - url: opts.addCommentURL, - dataType: 'json', - data: { - node: node_id, - parent: parent_id, - text: text, - proposal: proposal - }, - success: function(data, textStatus, error) { - // Reset the form. - if (node_id) { - hideProposeChange(node_id); - } - form.find('textarea') - .val('') - .add(form.find('input')) - .removeAttr('disabled'); - var ul = $('#cl' + (node_id || parent_id)); - if (ul.data('empty')) { - $(ul).empty(); - ul.data('empty', false); - } - insertComment(data.comment); - var ao = $('#ao' + node_id); - ao.find('img').attr({'src': opts.commentBrightImage}); - if (node_id) { - // if this was a "root" comment, remove the commenting box - // (the user can get it back by reopening the comment popup) - $('#ca' + node_id).slideUp(); - } - }, - error: function(request, textStatus, error) { - form.find('textarea,input').removeAttr('disabled'); - showError('Oops, there was a problem adding the comment.'); - } - }); - } - - /** - * Recursively append comments to the main comment list and children - * lists, creating the comment tree. - */ - function appendComments(comments, ul) { - $.each(comments, function() { - var div = createCommentDiv(this); - ul.append($(document.createElement('li')).html(div)); - appendComments(this.children, div.find('ul.comment-children')); - // To avoid stagnating data, don't store the comments children in data. - this.children = null; - div.data('comment', this); - }); - } - - /** - * After adding a new comment, it must be inserted in the correct - * location in the comment tree. - */ - function insertComment(comment) { - var div = createCommentDiv(comment); - - // To avoid stagnating data, don't store the comments children in data. - comment.children = null; - div.data('comment', comment); - - var ul = $('#cl' + (comment.node || comment.parent)); - var siblings = getChildren(ul); - - var li = $(document.createElement('li')); - li.hide(); - - // Determine where in the parents children list to insert this comment. - for(i=0; i < siblings.length; i++) { - if (comp(comment, siblings[i]) <= 0) { - $('#cd' + siblings[i].id) - .parent() - .before(li.html(div)); - li.slideDown('fast'); - return; - } - } - - // If we get here, this comment rates lower than all the others, - // or it is the only comment in the list. - ul.append(li.html(div)); - li.slideDown('fast'); - } - - function acceptComment(id) { - $.ajax({ - type: 'POST', - url: opts.acceptCommentURL, - data: {id: id}, - success: function(data, textStatus, request) { - $('#cm' + id).fadeOut('fast'); - $('#cd' + id).removeClass('moderate'); - }, - error: function(request, textStatus, error) { - showError('Oops, there was a problem accepting the comment.'); - } - }); - } - - function deleteComment(id) { - $.ajax({ - type: 'POST', - url: opts.deleteCommentURL, - data: {id: id}, - success: function(data, textStatus, request) { - var div = $('#cd' + id); - if (data == 'delete') { - // Moderator mode: remove the comment and all children immediately - div.slideUp('fast', function() { - div.remove(); - }); - return; - } - // User mode: only mark the comment as deleted - div - .find('span.user-id:first') - .text('[deleted]').end() - .find('div.comment-text:first') - .text('[deleted]').end() - .find('#cm' + id + ', #dc' + id + ', #ac' + id + ', #rc' + id + - ', #sp' + id + ', #hp' + id + ', #cr' + id + ', #rl' + id) - .remove(); - var comment = div.data('comment'); - comment.username = '[deleted]'; - comment.text = '[deleted]'; - div.data('comment', comment); - }, - error: function(request, textStatus, error) { - showError('Oops, there was a problem deleting the comment.'); - } - }); - } - - function showProposal(id) { - $('#sp' + id).hide(); - $('#hp' + id).show(); - $('#pr' + id).slideDown('fast'); - } - - function hideProposal(id) { - $('#hp' + id).hide(); - $('#sp' + id).show(); - $('#pr' + id).slideUp('fast'); - } - - function showProposeChange(id) { - $('#pc' + id).hide(); - $('#hc' + id).show(); - var textarea = $('#pt' + id); - textarea.val(textarea.data('source')); - $.fn.autogrow.resize(textarea[0]); - textarea.slideDown('fast'); - } - - function hideProposeChange(id) { - $('#hc' + id).hide(); - $('#pc' + id).show(); - var textarea = $('#pt' + id); - textarea.val('').removeAttr('disabled'); - textarea.slideUp('fast'); - } - - function toggleCommentMarkupBox(id) { - $('#mb' + id).toggle(); - } - - /** Handle when the user clicks on a sort by link. */ - function handleReSort(link) { - var classes = link.attr('class').split(/\s+/); - for (var i=0; i<classes.length; i++) { - if (classes[i] != 'sort-option') { - by = classes[i].substring(2); - } - } - setComparator(); - // Save/update the sortBy cookie. - var expiration = new Date(); - expiration.setDate(expiration.getDate() + 365); - document.cookie= 'sortBy=' + escape(by) + - ';expires=' + expiration.toUTCString(); - $('ul.comment-ul').each(function(index, ul) { - var comments = getChildren($(ul), true); - comments = sortComments(comments); - appendComments(comments, $(ul).empty()); - }); - } - - /** - * Function to process a vote when a user clicks an arrow. - */ - function handleVote(link) { - if (!opts.voting) { - showError("You'll need to login to vote."); - return; - } - - var id = link.attr('id'); - if (!id) { - // Didn't click on one of the voting arrows. - return; - } - // If it is an unvote, the new vote value is 0, - // Otherwise it's 1 for an upvote, or -1 for a downvote. - var value = 0; - if (id.charAt(1) != 'u') { - value = id.charAt(0) == 'u' ? 1 : -1; - } - // The data to be sent to the server. - var d = { - comment_id: id.substring(2), - value: value - }; - - // Swap the vote and unvote links. - link.hide(); - $('#' + id.charAt(0) + (id.charAt(1) == 'u' ? 'v' : 'u') + d.comment_id) - .show(); - - // The div the comment is displayed in. - var div = $('div#cd' + d.comment_id); - var data = div.data('comment'); - - // If this is not an unvote, and the other vote arrow has - // already been pressed, unpress it. - if ((d.value !== 0) && (data.vote === d.value * -1)) { - $('#' + (d.value == 1 ? 'd' : 'u') + 'u' + d.comment_id).hide(); - $('#' + (d.value == 1 ? 'd' : 'u') + 'v' + d.comment_id).show(); - } - - // Update the comments rating in the local data. - data.rating += (data.vote === 0) ? d.value : (d.value - data.vote); - data.vote = d.value; - div.data('comment', data); - - // Change the rating text. - div.find('.rating:first') - .text(data.rating + ' point' + (data.rating == 1 ? '' : 's')); - - // Send the vote information to the server. - $.ajax({ - type: "POST", - url: opts.processVoteURL, - data: d, - error: function(request, textStatus, error) { - showError('Oops, there was a problem casting that vote.'); - } - }); - } - - /** - * Open a reply form used to reply to an existing comment. - */ - function openReply(id) { - // Swap out the reply link for the hide link - $('#rl' + id).hide(); - $('#cr' + id).show(); - - // Add the reply li to the children ul. - var div = $(renderTemplate(replyTemplate, {id: id})).hide(); - $('#cl' + id) - .prepend(div) - // Setup the submit handler for the reply form. - .find('#rf' + id) - .submit(function(event) { - event.preventDefault(); - addComment($('#rf' + id)); - closeReply(id); - }) - .find('input[type=button]') - .click(function() { - closeReply(id); - }); - div.slideDown('fast', function() { - $('#rf' + id).find('textarea').focus(); - }); - } - - /** - * Close the reply form opened with openReply. - */ - function closeReply(id) { - // Remove the reply div from the DOM. - $('#rd' + id).slideUp('fast', function() { - $(this).remove(); - }); - - // Swap out the hide link for the reply link - $('#cr' + id).hide(); - $('#rl' + id).show(); - } - - /** - * Recursively sort a tree of comments using the comp comparator. - */ - function sortComments(comments) { - comments.sort(comp); - $.each(comments, function() { - this.children = sortComments(this.children); - }); - return comments; - } - - /** - * Get the children comments from a ul. If recursive is true, - * recursively include childrens' children. - */ - function getChildren(ul, recursive) { - var children = []; - ul.children().children("[id^='cd']") - .each(function() { - var comment = $(this).data('comment'); - if (recursive) - comment.children = getChildren($(this).find('#cl' + comment.id), true); - children.push(comment); - }); - return children; - } - - /** Create a div to display a comment in. */ - function createCommentDiv(comment) { - if (!comment.displayed && !opts.moderator) { - return $('<div class="moderate">Thank you! Your comment will show up ' - + 'once it is has been approved by a moderator.</div>'); - } - // Prettify the comment rating. - comment.pretty_rating = comment.rating + ' point' + - (comment.rating == 1 ? '' : 's'); - // Make a class (for displaying not yet moderated comments differently) - comment.css_class = comment.displayed ? '' : ' moderate'; - // Create a div for this comment. - var context = $.extend({}, opts, comment); - var div = $(renderTemplate(commentTemplate, context)); - - // If the user has voted on this comment, highlight the correct arrow. - if (comment.vote) { - var direction = (comment.vote == 1) ? 'u' : 'd'; - div.find('#' + direction + 'v' + comment.id).hide(); - div.find('#' + direction + 'u' + comment.id).show(); - } - - if (opts.moderator || comment.text != '[deleted]') { - div.find('a.reply').show(); - if (comment.proposal_diff) - div.find('#sp' + comment.id).show(); - if (opts.moderator && !comment.displayed) - div.find('#cm' + comment.id).show(); - if (opts.moderator || (opts.username == comment.username)) - div.find('#dc' + comment.id).show(); - } - return div; - } - - /** - * A simple template renderer. Placeholders such as <%id%> are replaced - * by context['id'] with items being escaped. Placeholders such as <#id#> - * are not escaped. - */ - function renderTemplate(template, context) { - var esc = $(document.createElement('div')); - - function handle(ph, escape) { - var cur = context; - $.each(ph.split('.'), function() { - cur = cur[this]; - }); - return escape ? esc.text(cur || "").html() : cur; - } - - return template.replace(/<([%#])([\w\.]*)\1>/g, function() { - return handle(arguments[2], arguments[1] == '%' ? true : false); - }); - } - - /** Flash an error message briefly. */ - function showError(message) { - $(document.createElement('div')).attr({'class': 'popup-error'}) - .append($(document.createElement('div')) - .attr({'class': 'error-message'}).text(message)) - .appendTo('body') - .fadeIn("slow") - .delay(2000) - .fadeOut("slow"); - } - - /** Add a link the user uses to open the comments popup. */ - $.fn.comment = function() { - return this.each(function() { - var id = $(this).attr('id').substring(1); - var count = COMMENT_METADATA[id]; - var title = count + ' comment' + (count == 1 ? '' : 's'); - var image = count > 0 ? opts.commentBrightImage : opts.commentImage; - var addcls = count == 0 ? ' nocomment' : ''; - $(this) - .append( - $(document.createElement('a')).attr({ - href: '#', - 'class': 'sphinx-comment-open' + addcls, - id: 'ao' + id - }) - .append($(document.createElement('img')).attr({ - src: image, - alt: 'comment', - title: title - })) - .click(function(event) { - event.preventDefault(); - show($(this).attr('id').substring(2)); - }) - ) - .append( - $(document.createElement('a')).attr({ - href: '#', - 'class': 'sphinx-comment-close hidden', - id: 'ah' + id - }) - .append($(document.createElement('img')).attr({ - src: opts.closeCommentImage, - alt: 'close', - title: 'close' - })) - .click(function(event) { - event.preventDefault(); - hide($(this).attr('id').substring(2)); - }) - ); - }); - }; - - var opts = { - processVoteURL: '/_process_vote', - addCommentURL: '/_add_comment', - getCommentsURL: '/_get_comments', - acceptCommentURL: '/_accept_comment', - deleteCommentURL: '/_delete_comment', - commentImage: '/static/_static/comment.png', - closeCommentImage: '/static/_static/comment-close.png', - loadingImage: '/static/_static/ajax-loader.gif', - commentBrightImage: '/static/_static/comment-bright.png', - upArrow: '/static/_static/up.png', - downArrow: '/static/_static/down.png', - upArrowPressed: '/static/_static/up-pressed.png', - downArrowPressed: '/static/_static/down-pressed.png', - voting: false, - moderator: false - }; - - if (typeof COMMENT_OPTIONS != "undefined") { - opts = jQuery.extend(opts, COMMENT_OPTIONS); - } - - var popupTemplate = '\ - <div class="sphinx-comments" id="sc<%id%>">\ - <p class="sort-options">\ - Sort by:\ - <a href="#" class="sort-option byrating">best rated</a>\ - <a href="#" class="sort-option byascage">newest</a>\ - <a href="#" class="sort-option byage">oldest</a>\ - </p>\ - <div class="comment-header">Comments</div>\ - <div class="comment-loading" id="cn<%id%>">\ - loading comments... <img src="<%loadingImage%>" alt="" /></div>\ - <ul id="cl<%id%>" class="comment-ul"></ul>\ - <div id="ca<%id%>">\ - <p class="add-a-comment">Add a comment\ - (<a href="#" class="comment-markup" id="ab<%id%>">markup</a>):</p>\ - <div class="comment-markup-box" id="mb<%id%>">\ - reStructured text markup: <i>*emph*</i>, <b>**strong**</b>, \ - <tt>``code``</tt>, \ - code blocks: <tt>::</tt> and an indented block after blank line</div>\ - <form method="post" id="cf<%id%>" class="comment-form" action="">\ - <textarea name="comment" cols="80"></textarea>\ - <p class="propose-button">\ - <a href="#" id="pc<%id%>" class="show-propose-change">\ - Propose a change ▹\ - </a>\ - <a href="#" id="hc<%id%>" class="hide-propose-change">\ - Propose a change ▿\ - </a>\ - </p>\ - <textarea name="proposal" id="pt<%id%>" cols="80"\ - spellcheck="false"></textarea>\ - <input type="submit" value="Add comment" />\ - <input type="hidden" name="node" value="<%id%>" />\ - <input type="hidden" name="parent" value="" />\ - </form>\ - </div>\ - </div>'; - - var commentTemplate = '\ - <div id="cd<%id%>" class="sphinx-comment<%css_class%>">\ - <div class="vote">\ - <div class="arrow">\ - <a href="#" id="uv<%id%>" class="vote" title="vote up">\ - <img src="<%upArrow%>" />\ - </a>\ - <a href="#" id="uu<%id%>" class="un vote" title="vote up">\ - <img src="<%upArrowPressed%>" />\ - </a>\ - </div>\ - <div class="arrow">\ - <a href="#" id="dv<%id%>" class="vote" title="vote down">\ - <img src="<%downArrow%>" id="da<%id%>" />\ - </a>\ - <a href="#" id="du<%id%>" class="un vote" title="vote down">\ - <img src="<%downArrowPressed%>" />\ - </a>\ - </div>\ - </div>\ - <div class="comment-content">\ - <p class="tagline comment">\ - <span class="user-id"><%username%></span>\ - <span class="rating"><%pretty_rating%></span>\ - <span class="delta"><%time.delta%></span>\ - </p>\ - <div class="comment-text comment"><#text#></div>\ - <p class="comment-opts comment">\ - <a href="#" class="reply hidden" id="rl<%id%>">reply ▹</a>\ - <a href="#" class="close-reply" id="cr<%id%>">reply ▿</a>\ - <a href="#" id="sp<%id%>" class="show-proposal">proposal ▹</a>\ - <a href="#" id="hp<%id%>" class="hide-proposal">proposal ▿</a>\ - <a href="#" id="dc<%id%>" class="delete-comment hidden">delete</a>\ - <span id="cm<%id%>" class="moderation hidden">\ - <a href="#" id="ac<%id%>" class="accept-comment">accept</a>\ - </span>\ - </p>\ - <pre class="proposal" id="pr<%id%>">\ -<#proposal_diff#>\ - </pre>\ - <ul class="comment-children" id="cl<%id%>"></ul>\ - </div>\ - <div class="clearleft"></div>\ - </div>\ - </div>'; - - var replyTemplate = '\ - <li>\ - <div class="reply-div" id="rd<%id%>">\ - <form id="rf<%id%>">\ - <textarea name="comment" cols="80"></textarea>\ - <input type="submit" value="Add reply" />\ - <input type="button" value="Cancel" />\ - <input type="hidden" name="parent" value="<%id%>" />\ - <input type="hidden" name="node" value="" />\ - </form>\ - </div>\ - </li>'; - - $(document).ready(function() { - init(); - }); -})(jQuery); - -$(document).ready(function() { - // add comment anchors for all paragraphs that are commentable - $('.sphinx-has-comment').comment(); - - // highlight search words in search results - $("div.context").each(function() { - var params = $.getQueryParameters(); - var terms = (params.q) ? params.q[0].split(/\s+/) : []; - var result = $(this); - $.each(terms, function() { - result.highlightText(this.toLowerCase(), 'highlighted'); - }); - }); - - // directly open comment window if requested - var anchor = document.location.hash; - if (anchor.substring(0, 9) == '#comment-') { - $('#ao' + anchor.substring(9)).click(); - document.location.hash = '#s' + anchor.substring(9); - } -}); diff --git a/docs/user/html/pymoose/genindex.html b/docs/user/html/pymoose/genindex.html deleted file mode 100644 index 6a097a5d93b81d78809177571f3b7329e5845dbe..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/genindex.html +++ /dev/null @@ -1,8413 +0,0 @@ - - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - - <title>Index — MOOSE 3.0 documentation</title> - - <link rel="stylesheet" href="_static/default.css" type="text/css" /> - <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - - <script type="text/javascript"> - var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', - VERSION: '3.0', - COLLAPSE_INDEX: false, - FILE_SUFFIX: '.html', - HAS_SOURCE: true - }; - </script> - <script type="text/javascript" src="_static/jquery.js"></script> - <script type="text/javascript" src="_static/underscore.js"></script> - <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="MOOSE 3.0 documentation" href="index.html" /> - </head> - <body> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="#" title="General Index" - accesskey="I">index</a></li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - - <div class="document"> - <div class="documentwrapper"> - <div class="bodywrapper"> - <div class="body"> - - -<h1 id="index">Index</h1> - -<div class="genindex-jumpbox"> - <a href="#A"><strong>A</strong></a> - | <a href="#B"><strong>B</strong></a> - | <a href="#C"><strong>C</strong></a> - | <a href="#D"><strong>D</strong></a> - | <a href="#E"><strong>E</strong></a> - | <a href="#F"><strong>F</strong></a> - | <a href="#G"><strong>G</strong></a> - | <a href="#H"><strong>H</strong></a> - | <a href="#I"><strong>I</strong></a> - | <a href="#K"><strong>K</strong></a> - | <a href="#L"><strong>L</strong></a> - | <a href="#M"><strong>M</strong></a> - | <a href="#N"><strong>N</strong></a> - | <a href="#O"><strong>O</strong></a> - | <a href="#P"><strong>P</strong></a> - | <a href="#Q"><strong>Q</strong></a> - | <a href="#R"><strong>R</strong></a> - | <a href="#S"><strong>S</strong></a> - | <a href="#T"><strong>T</strong></a> - | <a href="#U"><strong>U</strong></a> - | <a href="#V"><strong>V</strong></a> - | <a href="#W"><strong>W</strong></a> - | <a href="#X"><strong>X</strong></a> - | <a href="#Y"><strong>Y</strong></a> - | <a href="#Z"><strong>Z</strong></a> - -</div> -<h2 id="A">A</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#HHGate.A">A (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.A">[1]</a>, <a href="moose_classes.html#HHGate.A">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.A">(HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.A">[1]</a>, <a href="moose_classes.html#HHGate2D.A">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IzhikevichNrn.a">a (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.a">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.a">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.abs_refract">abs_refract (SpikeGen attribute)</a>, <a href="moose_builtins.html#SpikeGen.abs_refract">[1]</a>, <a href="moose_classes.html#SpikeGen.abs_refract">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.absoluteAccuracy">absoluteAccuracy (MarkovGslSolver attribute)</a>, <a href="moose_builtins.html#MarkovGslSolver.absoluteAccuracy">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.absoluteAccuracy">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.accommodating">accommodating (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.accommodating">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.accommodating">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.activation">activation() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.activation">[1]</a>, <a href="moose_classes.html#SynChan.activation">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor">Adaptor (built-in class)</a>, <a href="moose_builtins.html#Adaptor">[1]</a>, <a href="moose_classes.html#Adaptor">[2]</a> - </dt> - - - <dt><a href="tmp.html#Shell.addMsg">addMsg() (Shell method)</a>, <a href="moose_builtins.html#Shell.addMsg">[1]</a>, <a href="moose_classes.html#Shell.addMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#Synapse.addSpike">addSpike() (Synapse method)</a>, <a href="moose_builtins.html#Synapse.addSpike">[1]</a>, <a href="moose_classes.html#Synapse.addSpike">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.aDest">aDest() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.aDest">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.aDest">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.adjacent">adjacent (Msg attribute)</a>, <a href="moose_builtins.html#Msg.adjacent">[1]</a>, <a href="moose_classes.html#Msg.adjacent">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.alpha">alpha (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.alpha">[1]</a>, <a href="moose_classes.html#HHGate.alpha">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.alpha">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.alpha">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.alpha">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.alphaParms">alphaParms (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.alphaParms">[1]</a>, <a href="moose_classes.html#HHGate.alphaParms">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CubeMesh.alwaysDiffuse">alwaysDiffuse (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.alwaysDiffuse">[1]</a>, <a href="moose_classes.html#CubeMesh.alwaysDiffuse">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator">Annotator (built-in class)</a>, <a href="moose_builtins.html#Annotator">[1]</a>, <a href="moose_classes.html#Annotator">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.anyValue">anyValue (Arith attribute)</a>, <a href="moose_builtins.html#Arith.anyValue">[1]</a>, <a href="moose_classes.html#Arith.anyValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.arg1">arg1() (Arith method)</a>, <a href="moose_builtins.html#Arith.arg1">[1]</a>, <a href="moose_classes.html#Arith.arg1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.arg1">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.arg1">[1]</a>, <a href="moose_classes.html#MathFunc.arg1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Arith.arg1Value">arg1Value (Arith attribute)</a>, <a href="moose_builtins.html#Arith.arg1Value">[1]</a>, <a href="moose_classes.html#Arith.arg1Value">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.arg1x2">arg1x2() (Arith method)</a>, <a href="moose_builtins.html#Arith.arg1x2">[1]</a>, <a href="moose_classes.html#Arith.arg1x2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.arg2">arg2() (Arith method)</a>, <a href="moose_builtins.html#Arith.arg2">[1]</a>, <a href="moose_classes.html#Arith.arg2">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.arg2">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.arg2">[1]</a>, <a href="moose_classes.html#MathFunc.arg2">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Arith.arg3">arg3() (Arith method)</a>, <a href="moose_builtins.html#Arith.arg3">[1]</a>, <a href="moose_classes.html#Arith.arg3">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.arg3">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.arg3">[1]</a>, <a href="moose_classes.html#MathFunc.arg3">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MathFunc.arg4">arg4() (MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.arg4">[1]</a>, <a href="moose_classes.html#MathFunc.arg4">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith">Arith (built-in class)</a>, <a href="moose_builtins.html#Arith">[1]</a>, <a href="moose_classes.html#Arith">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.axial">axial (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.axial">[1]</a>, <a href="moose_classes.html#CompartmentBase.axial">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.axialOut">axialOut (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.axialOut">[1]</a>, <a href="moose_classes.html#CompartmentBase.axialOut">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="B">B</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CaConc.B">B (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.B">[1]</a>, <a href="moose_classes.html#CaConc.B">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate.B">(HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.B">[1]</a>, <a href="moose_classes.html#HHGate.B">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.B">(HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.B">[1]</a>, <a href="moose_classes.html#HHGate2D.B">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IzhikevichNrn.b">b (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.b">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.b">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.B">B (ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.B">[1]</a>, <a href="moose_classes.html#ZombieCaConc.B">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.badStoichiometry">badStoichiometry (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.badStoichiometry">[1]</a>, <a href="moose_classes.html#SteadyState.badStoichiometry">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.basal">basal() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.basal">[1]</a>, <a href="moose_classes.html#CaConc.basal">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.basal">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.basal">[1]</a>, <a href="moose_classes.html#ZombieCaConc.basal">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Cinfo.baseClass">baseClass (Cinfo attribute)</a>, <a href="moose_builtins.html#Cinfo.baseClass">[1]</a>, <a href="moose_classes.html#Cinfo.baseClass">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.baseLevel">baseLevel (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.baseLevel">[1]</a>, <a href="moose_classes.html#PulseGen.baseLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.bDest">bDest() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.bDest">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.bDest">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#HHGate.beta">beta (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.beta">[1]</a>, <a href="moose_classes.html#HHGate.beta">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.beta">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.beta">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.beta">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#DifShell.buffer">buffer (DifShell attribute)</a>, <a href="moose_builtins.html#DifShell.buffer">[1]</a>, <a href="moose_classes.html#DifShell.buffer">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster.bufferSize">bufferSize (PostMaster attribute)</a>, <a href="moose_builtins.html#PostMaster.bufferSize">[1]</a>, <a href="moose_classes.html#PostMaster.bufferSize">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.bufferTime">bufferTime (IntFire attribute)</a>, <a href="moose_builtins.html#IntFire.bufferTime">[1]</a>, <a href="moose_classes.html#IntFire.bufferTime">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.bufferTime">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.bufferTime">[1]</a>, <a href="moose_classes.html#SynChanBase.bufferTime">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#BufPool">BufPool (built-in class)</a>, <a href="moose_builtins.html#BufPool">[1]</a>, <a href="moose_classes.html#BufPool">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.buildDefaultMesh">buildDefaultMesh() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.buildDefaultMesh">[1]</a>, <a href="moose_classes.html#ChemCompt.buildDefaultMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.buildNeuroMeshJunctions">buildNeuroMeshJunctions() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.buildNeuroMeshJunctions">[1]</a>, <a href="moose_classes.html#Dsolve.buildNeuroMeshJunctions">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="C">C</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#C">C</a>, <a href="moose_builtins.html#C">[1]</a>, <a href="moose_classes.html#C">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.c">c (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.c">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.c">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.C">C (RC attribute)</a>, <a href="moose_builtins.html#RC.C">[1]</a>, <a href="moose_classes.html#RC.C">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.Ca">Ca (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.Ca">[1]</a>, <a href="moose_classes.html#CaConc.Ca">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.Ca">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.Ca">[1]</a>, <a href="moose_classes.html#ZombieCaConc.Ca">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CaConc.Ca_base">Ca_base (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.Ca_base">[1]</a>, <a href="moose_classes.html#CaConc.Ca_base">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.Ca_base">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.Ca_base">[1]</a>, <a href="moose_classes.html#ZombieCaConc.Ca_base">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HSolve.caAdvance">caAdvance (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.caAdvance">[1]</a>, <a href="moose_classes.html#HSolve.caAdvance">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.CaBasal">CaBasal (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.CaBasal">[1]</a>, <a href="moose_classes.html#CaConc.CaBasal">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.CaBasal">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.CaBasal">[1]</a>, <a href="moose_classes.html#ZombieCaConc.CaBasal">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.cable">cable() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.cable">[1]</a>, <a href="moose_classes.html#CompartmentBase.cable">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc">CaConc (built-in class)</a>, <a href="moose_builtins.html#CaConc">[1]</a>, <a href="moose_classes.html#CaConc">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.caDiv">caDiv (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.caDiv">[1]</a>, <a href="moose_classes.html#HSolve.caDiv">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.caMax">caMax (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.caMax">[1]</a>, <a href="moose_classes.html#HSolve.caMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.caMin">caMin (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.caMin">[1]</a>, <a href="moose_classes.html#HSolve.caMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.cDest">cDest() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.cDest">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.cDest">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.ceiling">ceiling (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.ceiling">[1]</a>, <a href="moose_classes.html#CaConc.ceiling">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.ceiling">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.ceiling">[1]</a>, <a href="moose_classes.html#ZombieCaConc.ceiling">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.cell">cell (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.cell">[1]</a>, <a href="moose_classes.html#NeuroMesh.cell">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.cellPortion">cellPortion() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.cellPortion">[1]</a>, <a href="moose_classes.html#NeuroMesh.cellPortion">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ceq">Ceq</a>, <a href="moose_builtins.html#Ceq">[1]</a>, <a href="moose_classes.html#Ceq">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase">ChanBase (built-in class)</a>, <a href="moose_builtins.html#ChanBase">[1]</a>, <a href="moose_classes.html#ChanBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.channel">channel (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.channel">[1]</a>, <a href="moose_classes.html#ChanBase.channel">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.channel">(CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.channel">[1]</a>, <a href="moose_classes.html#CompartmentBase.channel">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.channel">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.channel">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.channel">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.channel">(MarkovRateTable attribute)</a>, <a href="moose_builtins.html#MarkovRateTable.channel">[1]</a>, <a href="moose_classes.html#MarkovRateTable.channel">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.channel">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.channel">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.channel">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.channel">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.channel">[1]</a>, <a href="moose_classes.html#SynChanBase.channel">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#GapJunction.channel1">channel1 (GapJunction attribute)</a>, <a href="moose_builtins.html#GapJunction.channel1">[1]</a>, <a href="moose_classes.html#GapJunction.channel1">[2]</a> - </dt> - - - <dt><a href="tmp.html#channel1Out">channel1Out</a>, <a href="moose_builtins.html#channel1Out">[1]</a>, <a href="moose_classes.html#channel1Out">[2]</a> - </dt> - - - <dt><a href="tmp.html#channel2">channel2</a>, <a href="moose_builtins.html#channel2">[1]</a>, <a href="moose_classes.html#channel2">[2]</a> - </dt> - - - <dt><a href="tmp.html#channel2Out">channel2Out</a>, <a href="moose_builtins.html#channel2Out">[1]</a>, <a href="moose_classes.html#channel2Out">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.channelOut">channelOut (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.channelOut">[1]</a>, <a href="moose_classes.html#ChanBase.channelOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.channelOut">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.channelOut">[1]</a>, <a href="moose_classes.html#SynChanBase.channelOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChemCompt">ChemCompt (built-in class)</a>, <a href="moose_builtins.html#ChemCompt">[1]</a>, <a href="moose_classes.html#ChemCompt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.childOut">childOut (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.childOut">[1]</a>, <a href="moose_classes.html#Neutral.childOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.children">children (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.children">[1]</a>, <a href="moose_classes.html#Neutral.children">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.ci">ci() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.ci">[1]</a>, <a href="moose_classes.html#Nernst.ci">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.Cin">Cin (Nernst attribute)</a>, <a href="moose_builtins.html#Nernst.Cin">[1]</a>, <a href="moose_classes.html#Nernst.Cin">[2]</a> - </dt> - - - <dt><a href="tmp.html#Cinfo">Cinfo (built-in class)</a>, <a href="moose_builtins.html#Cinfo">[1]</a>, <a href="moose_classes.html#Cinfo">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.className">className (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.className">[1]</a>, <a href="moose_classes.html#Neutral.className">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.clear">clear() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.clear">[1]</a>, <a href="moose_classes.html#SparseMsg.clear">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.clearVec">clearVec() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.clearVec">[1]</a>, <a href="moose_classes.html#TableBase.clearVec">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock">Clock (built-in class)</a>, <a href="moose_builtins.html#Clock">[1]</a>, <a href="moose_classes.html#Clock">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.clockControl">clockControl (Clock attribute)</a>, <a href="moose_builtins.html#Clock.clockControl">[1]</a>, <a href="moose_classes.html#Clock.clockControl">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.Cm">Cm (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.Cm">[1]</a>, <a href="moose_classes.html#CompartmentBase.Cm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.CMg">CMg (MgBlock attribute)</a>, <a href="moose_builtins.html#MgBlock.CMg">[1]</a>, <a href="moose_classes.html#MgBlock.CMg">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.co">co() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.co">[1]</a>, <a href="moose_classes.html#Nernst.co">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Annotator.color">color (Annotator attribute)</a>, <a href="moose_builtins.html#Annotator.color">[1]</a>, <a href="moose_classes.html#Annotator.color">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.columnIndex">columnIndex (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.columnIndex">[1]</a>, <a href="moose_classes.html#Stoich.columnIndex">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.command">command (PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.command">[1]</a>, <a href="moose_classes.html#PIDController.command">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.command">(VClamp attribute)</a>, <a href="moose_builtins.html#VClamp.command">[1]</a>, <a href="moose_classes.html#VClamp.command">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PIDController.commandIn">commandIn() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.commandIn">[1]</a>, <a href="moose_classes.html#PIDController.commandIn">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.commandIn">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.commandIn">[1]</a>, <a href="moose_classes.html#VClamp.commandIn">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#TableBase.compareVec">compareVec() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.compareVec">[1]</a>, <a href="moose_classes.html#TableBase.compareVec">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.compareXplot">compareXplot() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.compareXplot">[1]</a>, <a href="moose_classes.html#TableBase.compareXplot">[2]</a> - </dt> - - - <dt><a href="tmp.html#Compartment">Compartment (built-in class)</a>, <a href="moose_builtins.html#Compartment">[1]</a>, <a href="moose_classes.html#Compartment">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.compartment">compartment (Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.compartment">[1]</a>, <a href="moose_classes.html#Dsolve.compartment">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Ksolve.compartment">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.compartment">[1]</a>, <a href="moose_classes.html#Ksolve.compartment">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.compartment">(Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.compartment">[1]</a>, <a href="moose_classes.html#Stoich.compartment">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase">CompartmentBase (built-in class)</a>, <a href="moose_builtins.html#CompartmentBase">[1]</a>, <a href="moose_classes.html#CompartmentBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.conc">conc (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.conc">[1]</a>, <a href="moose_classes.html#PoolBase.conc">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.concen">concen() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.concen">[1]</a>, <a href="moose_classes.html#HHChannel.concen">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.concen">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.concen">[1]</a>, <a href="moose_classes.html#HHChannel2D.concen">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.concen">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.concen">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.concen">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel2D.concen2">concen2() (HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.concen2">[1]</a>, <a href="moose_classes.html#HHChannel2D.concen2">[2]</a> - </dt> - - - <dt><a href="tmp.html#concentrationOut">concentrationOut</a>, <a href="moose_builtins.html#concentrationOut">[1]</a>, <a href="moose_classes.html#concentrationOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.concInit">concInit (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.concInit">[1]</a>, <a href="moose_classes.html#PoolBase.concInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.concK1">concK1 (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.concK1">[1]</a>, <a href="moose_classes.html#CplxEnzBase.concK1">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.concOut">concOut (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.concOut">[1]</a>, <a href="moose_classes.html#CaConc.concOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.concOut">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.concOut">[1]</a>, <a href="moose_classes.html#ZombieCaConc.concOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SteadyState.convergenceCriterion">convergenceCriterion (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.convergenceCriterion">[1]</a>, <a href="moose_classes.html#SteadyState.convergenceCriterion">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.Coordinates">Coordinates (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.Coordinates">[1]</a>, <a href="moose_classes.html#MeshEntry.Coordinates">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.coords">coords (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.coords">[1]</a>, <a href="moose_classes.html#CubeMesh.coords">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.coords">(CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.coords">[1]</a>, <a href="moose_classes.html#CylMesh.coords">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Shell.copy">copy() (Shell method)</a>, <a href="moose_builtins.html#Shell.copy">[1]</a>, <a href="moose_classes.html#Shell.copy">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.count">count (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.count">[1]</a>, <a href="moose_classes.html#PulseGen.count">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.Cout">Cout (Nernst attribute)</a>, <a href="moose_builtins.html#Nernst.Cout">[1]</a>, <a href="moose_classes.html#Nernst.Cout">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.cplx">cplx (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.cplx">[1]</a>, <a href="moose_classes.html#CplxEnzBase.cplx">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.cplxDest">cplxDest() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.cplxDest">[1]</a>, <a href="moose_classes.html#CplxEnzBase.cplxDest">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase">CplxEnzBase (built-in class)</a>, <a href="moose_builtins.html#CplxEnzBase">[1]</a>, <a href="moose_classes.html#CplxEnzBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.cplxOut">cplxOut (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.cplxOut">[1]</a>, <a href="moose_classes.html#CplxEnzBase.cplxOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Shell.create">create() (Shell method)</a>, <a href="moose_builtins.html#Shell.create">[1]</a>, <a href="moose_classes.html#Shell.create">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.createGate">createGate() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.createGate">[1]</a>, <a href="moose_classes.html#HHChannel.createGate">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieHHChannel.createGate">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.createGate">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.createGate">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh">CubeMesh (built-in class)</a>, <a href="moose_builtins.html#CubeMesh">[1]</a>, <a href="moose_classes.html#CubeMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.current">current (VClamp attribute)</a>, <a href="moose_builtins.html#VClamp.current">[1]</a>, <a href="moose_classes.html#VClamp.current">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.current">current() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.current">[1]</a>, <a href="moose_classes.html#CaConc.current">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.current">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.current">[1]</a>, <a href="moose_classes.html#ZombieCaConc.current">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CaConc.currentFraction">currentFraction() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.currentFraction">[1]</a>, <a href="moose_classes.html#CaConc.currentFraction">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.currentFraction">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.currentFraction">[1]</a>, <a href="moose_classes.html#ZombieCaConc.currentFraction">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#VClamp.currentOut">currentOut (VClamp attribute)</a>, <a href="moose_builtins.html#VClamp.currentOut">[1]</a>, <a href="moose_classes.html#VClamp.currentOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.currentStep">currentStep (Clock attribute)</a>, <a href="moose_builtins.html#Clock.currentStep">[1]</a>, <a href="moose_classes.html#Clock.currentStep">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.currentTime">currentTime (Clock attribute)</a>, <a href="moose_builtins.html#Clock.currentTime">[1]</a>, <a href="moose_classes.html#Clock.currentTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#cylinder">cylinder</a>, <a href="moose_builtins.html#cylinder">[1]</a>, <a href="moose_classes.html#cylinder">[2]</a> - </dt> - - - <dt><a href="tmp.html#cylinderOut">cylinderOut</a>, <a href="moose_builtins.html#cylinderOut">[1]</a>, <a href="moose_classes.html#cylinderOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh">CylMesh (built-in class)</a>, <a href="moose_builtins.html#CylMesh">[1]</a>, <a href="moose_classes.html#CylMesh">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="D">D</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#D">D</a>, <a href="moose_builtins.html#D">[1]</a>, <a href="moose_classes.html#D">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.d">d (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.d">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.d">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.dDest">dDest() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.dDest">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.dDest">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.decrease">decrease() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.decrease">[1]</a>, <a href="moose_classes.html#CaConc.decrease">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.decrease">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.decrease">[1]</a>, <a href="moose_classes.html#ZombieCaConc.decrease">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Pool.decrement">decrement() (Pool method)</a>, <a href="moose_builtins.html#Pool.decrement">[1]</a>, <a href="moose_classes.html#Pool.decrement">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.delay">delay (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.delay">[1]</a>, <a href="moose_classes.html#PulseGen.delay">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Synapse.delay">(Synapse attribute)</a>, <a href="moose_builtins.html#Synapse.delay">[1]</a>, <a href="moose_classes.html#Synapse.delay">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.delayIn">delayIn() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.delayIn">[1]</a>, <a href="moose_classes.html#PulseGen.delayIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#Shell.delete">delete() (Shell method)</a>, <a href="moose_builtins.html#Shell.delete">[1]</a>, <a href="moose_classes.html#Shell.delete">[2]</a> - </dt> - - - <dt><a href="tmp.html#derivative">derivative</a>, <a href="tmp.html#derivative">[1]</a>, <a href="moose_builtins.html#derivative">[2]</a>, <a href="moose_builtins.html#derivative">[3]</a>, <a href="moose_classes.html#derivative">[4]</a>, <a href="moose_classes.html#derivative">[5]</a> - </dt> - - - <dt><a href="tmp.html#derivativeOut">derivativeOut</a>, <a href="moose_builtins.html#derivativeOut">[1]</a>, <a href="moose_classes.html#derivativeOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Finfo.dest">dest (Finfo attribute)</a>, <a href="moose_builtins.html#Finfo.dest">[1]</a>, <a href="moose_classes.html#Finfo.dest">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.destFields">destFields (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.destFields">[1]</a>, <a href="moose_classes.html#Neutral.destFields">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.destFieldsOnE1">destFieldsOnE1 (Msg attribute)</a>, <a href="moose_builtins.html#Msg.destFieldsOnE1">[1]</a>, <a href="moose_classes.html#Msg.destFieldsOnE1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.destFieldsOnE2">destFieldsOnE2 (Msg attribute)</a>, <a href="moose_builtins.html#Msg.destFieldsOnE2">[1]</a>, <a href="moose_classes.html#Msg.destFieldsOnE2">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiagonalMsg">DiagonalMsg (built-in class)</a>, <a href="moose_builtins.html#DiagonalMsg">[1]</a>, <a href="moose_classes.html#DiagonalMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#diameter">diameter</a>, <a href="moose_builtins.html#diameter">[1]</a>, <a href="moose_classes.html#diameter">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.diameter">(CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.diameter">[1]</a>, <a href="moose_classes.html#CompartmentBase.diameter">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#DiffAmp">DiffAmp (built-in class)</a>, <a href="moose_builtins.html#DiffAmp">[1]</a>, <a href="moose_classes.html#DiffAmp">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.diffConst">diffConst (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.diffConst">[1]</a>, <a href="moose_classes.html#PoolBase.diffConst">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CylMesh.diffLength">diffLength (CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.diffLength">[1]</a>, <a href="moose_classes.html#CylMesh.diffLength">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#NeuroMesh.diffLength">(NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.diffLength">[1]</a>, <a href="moose_classes.html#NeuroMesh.diffLength">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MeshEntry.DiffusionArea">DiffusionArea (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.DiffusionArea">[1]</a>, <a href="moose_classes.html#MeshEntry.DiffusionArea">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.DiffusionScaling">DiffusionScaling (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.DiffusionScaling">[1]</a>, <a href="moose_classes.html#MeshEntry.DiffusionScaling">[2]</a> - </dt> - - - <dt><a href="tmp.html#DifShell">DifShell (built-in class)</a>, <a href="moose_builtins.html#DifShell">[1]</a>, <a href="moose_classes.html#DifShell">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.dimensions">dimensions (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.dimensions">[1]</a>, <a href="moose_classes.html#MeshEntry.dimensions">[2]</a> - </dt> - - - <dt><a href="tmp.html#distal">distal</a>, <a href="moose_builtins.html#distal">[1]</a>, <a href="moose_classes.html#distal">[2]</a> - </dt> - - - <dt><a href="tmp.html#distalOut">distalOut</a>, <a href="tmp.html#distalOut">[1]</a>, <a href="tmp.html#distalOut">[2]</a>, <a href="moose_builtins.html#distalOut">[3]</a>, <a href="moose_builtins.html#distalOut">[4]</a>, <a href="moose_builtins.html#distalOut">[5]</a>, <a href="moose_classes.html#distalOut">[6]</a>, <a href="moose_classes.html#distalOut">[7]</a>, <a href="moose_classes.html#distalOut">[8]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.divs">divs (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.divs">[1]</a>, <a href="moose_classes.html#HHGate.divs">[2]</a> - </dt> - - - <dt><a href="tmp.html#Cinfo.docs">docs (Cinfo attribute)</a>, <a href="moose_builtins.html#Cinfo.docs">[1]</a>, <a href="moose_classes.html#Cinfo.docs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Finfo.docs">(Finfo attribute)</a>, <a href="moose_builtins.html#Finfo.docs">[1]</a>, <a href="moose_classes.html#Finfo.docs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#StimulusTable.doLoop">doLoop (StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.doLoop">[1]</a>, <a href="moose_classes.html#StimulusTable.doLoop">[2]</a> - </dt> - - - <dt><a href="tmp.html#Double">Double (built-in class)</a>, <a href="moose_builtins.html#Double">[1]</a>, <a href="moose_classes.html#Double">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve">Dsolve (built-in class)</a>, <a href="moose_builtins.html#Dsolve">[1]</a>, <a href="moose_classes.html#Dsolve">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.dsolve">dsolve (Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.dsolve">[1]</a>, <a href="moose_classes.html#Ksolve.dsolve">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Stoich.dsolve">(Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.dsolve">[1]</a>, <a href="moose_classes.html#Stoich.dsolve">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.dt">dt (Clock attribute)</a>, <a href="moose_builtins.html#Clock.dt">[1]</a>, <a href="moose_classes.html#Clock.dt">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HSolve.dt">(HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.dt">[1]</a>, <a href="moose_classes.html#HSolve.dt">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.dts">dts (Clock attribute)</a>, <a href="moose_builtins.html#Clock.dts">[1]</a>, <a href="moose_classes.html#Clock.dts">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.dx">dx (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.dx">[1]</a>, <a href="moose_classes.html#CubeMesh.dx">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.dx">(Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.dx">[1]</a>, <a href="moose_classes.html#Interpol2D.dx">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.dy">dy (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.dy">[1]</a>, <a href="moose_classes.html#CubeMesh.dy">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.dy">(Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.dy">[1]</a>, <a href="moose_classes.html#Interpol2D.dy">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.dz">dz (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.dz">[1]</a>, <a href="moose_classes.html#CubeMesh.dz">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="E">E</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Nernst.E">E (Nernst attribute)</a>, <a href="moose_builtins.html#Nernst.E">[1]</a>, <a href="moose_classes.html#Nernst.E">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.e1">e1 (Msg attribute)</a>, <a href="moose_builtins.html#Msg.e1">[1]</a>, <a href="moose_classes.html#Msg.e1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.e2">e2 (Msg attribute)</a>, <a href="moose_builtins.html#Msg.e2">[1]</a>, <a href="moose_classes.html#Msg.e2">[2]</a> - </dt> - - - <dt><a href="tmp.html#e_previous">e_previous</a>, <a href="moose_builtins.html#e_previous">[1]</a>, <a href="moose_classes.html#e_previous">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.edgeTriggered">edgeTriggered (SpikeGen attribute)</a>, <a href="moose_builtins.html#SpikeGen.edgeTriggered">[1]</a>, <a href="moose_classes.html#SpikeGen.edgeTriggered">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.eigenvalues">eigenvalues (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.eigenvalues">[1]</a>, <a href="moose_classes.html#SteadyState.eigenvalues">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.Ek">Ek (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.Ek">[1]</a>, <a href="moose_classes.html#ChanBase.Ek">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.Ek">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.Ek">[1]</a>, <a href="moose_classes.html#SynChanBase.Ek">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.Ek">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Ek">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Ek">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.Em">Em (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.Em">[1]</a>, <a href="moose_classes.html#CompartmentBase.Em">[2]</a> - </dt> - - - <dt><a href="tmp.html#Enz">Enz (built-in class)</a>, <a href="moose_builtins.html#Enz">[1]</a>, <a href="moose_classes.html#Enz">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.enz">enz (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.enz">[1]</a>, <a href="moose_classes.html#CplxEnzBase.enz">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase">EnzBase (built-in class)</a>, <a href="moose_builtins.html#EnzBase">[1]</a>, <a href="moose_classes.html#EnzBase">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CplxEnzBase.enzDest">enzDest() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.enzDest">[1]</a>, <a href="moose_classes.html#CplxEnzBase.enzDest">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#EnzBase.enzDest">(EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.enzDest">[1]</a>, <a href="moose_classes.html#EnzBase.enzDest">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CplxEnzBase.enzOut">enzOut (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.enzOut">[1]</a>, <a href="moose_classes.html#CplxEnzBase.enzOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.Eout">Eout (Nernst attribute)</a>, <a href="moose_builtins.html#Nernst.Eout">[1]</a>, <a href="moose_classes.html#Nernst.Eout">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.epsAbs">epsAbs (Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.epsAbs">[1]</a>, <a href="moose_classes.html#Ksolve.epsAbs">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.epsRel">epsRel (Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.epsRel">[1]</a>, <a href="moose_classes.html#Ksolve.epsRel">[2]</a> - </dt> - - - <dt><a href="tmp.html#eqTauPump">eqTauPump()</a>, <a href="moose_builtins.html#eqTauPump">[1]</a>, <a href="moose_classes.html#eqTauPump">[2]</a> - </dt> - - - <dt><a href="tmp.html#error">error</a>, <a href="moose_builtins.html#error">[1]</a>, <a href="moose_classes.html#error">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.estimatedDt">estimatedDt (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.estimatedDt">[1]</a>, <a href="moose_classes.html#Stoich.estimatedDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.eventOut">eventOut (TimeTable attribute)</a>, <a href="moose_builtins.html#TimeTable.eventOut">[1]</a>, <a href="moose_classes.html#TimeTable.eventOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#expr">expr</a>, <a href="moose_builtins.html#expr">[1]</a>, <a href="moose_classes.html#expr">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="F">F</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Finfo.fieldName">fieldName (Finfo attribute)</a>, <a href="moose_builtins.html#Finfo.fieldName">[1]</a>, <a href="moose_classes.html#Finfo.fieldName">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.filename">filename (TimeTable attribute)</a>, <a href="moose_builtins.html#TimeTable.filename">[1]</a>, <a href="moose_classes.html#TimeTable.filename">[2]</a> - </dt> - - - <dt><a href="tmp.html#fInflux">fInflux()</a>, <a href="moose_builtins.html#fInflux">[1]</a>, <a href="moose_classes.html#fInflux">[2]</a> - </dt> - - - <dt><a href="tmp.html#Finfo">Finfo (built-in class)</a>, <a href="moose_builtins.html#Finfo">[1]</a>, <a href="moose_classes.html#Finfo">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.finished">finished (Clock attribute)</a>, <a href="moose_builtins.html#Clock.finished">[1]</a>, <a href="moose_classes.html#Clock.finished">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.firstDelay">firstDelay (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.firstDelay">[1]</a>, <a href="moose_classes.html#PulseGen.firstDelay">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.firstLevel">firstLevel (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.firstLevel">[1]</a>, <a href="moose_classes.html#PulseGen.firstLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.firstWidth">firstWidth (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.firstWidth">[1]</a>, <a href="moose_classes.html#PulseGen.firstWidth">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CaConc.floor">floor (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.floor">[1]</a>, <a href="moose_classes.html#CaConc.floor">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.floor">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.floor">[1]</a>, <a href="moose_classes.html#ZombieCaConc.floor">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#fluxFromIn">fluxFromIn()</a>, <a href="moose_builtins.html#fluxFromIn">[1]</a>, <a href="moose_classes.html#fluxFromIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#fluxFromOut">fluxFromOut()</a>, <a href="moose_builtins.html#fluxFromOut">[1]</a>, <a href="moose_classes.html#fluxFromOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#fOutflux">fOutflux()</a>, <a href="moose_builtins.html#fOutflux">[1]</a>, <a href="moose_classes.html#fOutflux">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func">Func (built-in class)</a>, <a href="moose_builtins.html#Func">[1]</a>, <a href="moose_classes.html#Func">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncBase">FuncBase (built-in class)</a>, <a href="moose_builtins.html#FuncBase">[1]</a>, <a href="moose_classes.html#FuncBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncPool">FuncPool (built-in class)</a>, <a href="moose_builtins.html#FuncPool">[1]</a>, <a href="moose_classes.html#FuncPool">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.function">function (Arith attribute)</a>, <a href="moose_builtins.html#Arith.function">[1]</a>, <a href="moose_classes.html#Arith.function">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.function">(MathFunc attribute)</a>, <a href="moose_builtins.html#MathFunc.function">[1]</a>, <a href="moose_classes.html#MathFunc.function">[2]</a> - </dt> - - </dl></dd> - </dl></td> -</tr></table> - -<h2 id="G">G</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#gain">gain</a>, <a href="moose_builtins.html#gain">[1]</a>, <a href="moose_classes.html#gain">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#DiffAmp.gain">(DiffAmp attribute)</a>, <a href="moose_builtins.html#DiffAmp.gain">[1]</a>, <a href="moose_classes.html#DiffAmp.gain">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.gain">(PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.gain">[1]</a>, <a href="moose_classes.html#PIDController.gain">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PIDController.gainDest">gainDest() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.gainDest">[1]</a>, <a href="moose_classes.html#PIDController.gainDest">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.gainIn">gainIn() (DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.gainIn">[1]</a>, <a href="moose_classes.html#DiffAmp.gainIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.gamma">gamma (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.gamma">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.gamma">[2]</a> - </dt> - - - <dt><a href="tmp.html#GapJunction">GapJunction (built-in class)</a>, <a href="moose_builtins.html#GapJunction">[1]</a>, <a href="moose_classes.html#GapJunction">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.Gbar">Gbar (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.Gbar">[1]</a>, <a href="moose_classes.html#ChanBase.Gbar">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.gbar">gbar (MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.gbar">[1]</a>, <a href="moose_classes.html#MarkovChannel.gbar">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.Gbar">Gbar (SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.Gbar">[1]</a>, <a href="moose_classes.html#SynChanBase.Gbar">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieHHChannel.Gbar">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Gbar">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Gbar">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.geometryPolicy">geometryPolicy (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.geometryPolicy">[1]</a>, <a href="moose_classes.html#NeuroMesh.geometryPolicy">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.getA">getA() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getA">[1]</a>, <a href="moose_classes.html#HHGate.getA">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.getA">(HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getA">[1]</a>, <a href="moose_classes.html#HHGate2D.getA">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getA">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getA">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getA">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SpikeGen.getAbs_refract">getAbs_refract() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.getAbs_refract">[1]</a>, <a href="moose_classes.html#SpikeGen.getAbs_refract">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.getAbsoluteAccuracy">getAbsoluteAccuracy() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.getAbsoluteAccuracy">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.getAbsoluteAccuracy">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getAccommodating">getAccommodating() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getAccommodating">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getAccommodating">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.getAdjacent">getAdjacent() (Msg method)</a>, <a href="moose_builtins.html#Msg.getAdjacent">[1]</a>, <a href="moose_classes.html#Msg.getAdjacent">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.getAlpha">getAlpha() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getAlpha">[1]</a>, <a href="moose_classes.html#HHGate.getAlpha">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.getAlpha">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getAlpha">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getAlpha">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.getAlphaParms">getAlphaParms() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getAlphaParms">[1]</a>, <a href="moose_classes.html#HHGate.getAlphaParms">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getAlwaysDiffuse">getAlwaysDiffuse() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getAlwaysDiffuse">[1]</a>, <a href="moose_classes.html#CubeMesh.getAlwaysDiffuse">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.getAnyValue">getAnyValue() (Arith method)</a>, <a href="moose_builtins.html#Arith.getAnyValue">[1]</a>, <a href="moose_classes.html#Arith.getAnyValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.getArg1Value">getArg1Value() (Arith method)</a>, <a href="moose_builtins.html#Arith.getArg1Value">[1]</a>, <a href="moose_classes.html#Arith.getArg1Value">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.getB">getB() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getB">[1]</a>, <a href="moose_classes.html#CaConc.getB">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate.getB">(HHGate method)</a>, <a href="moose_builtins.html#HHGate.getB">[1]</a>, <a href="moose_classes.html#HHGate.getB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.getB">(HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getB">[1]</a>, <a href="moose_classes.html#HHGate2D.getB">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getB">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getB">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getB">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.getB">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getB">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getB">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SteadyState.getBadStoichiometry">getBadStoichiometry() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getBadStoichiometry">[1]</a>, <a href="moose_classes.html#SteadyState.getBadStoichiometry">[2]</a> - </dt> - - - <dt><a href="tmp.html#Cinfo.getBaseClass">getBaseClass() (Cinfo method)</a>, <a href="moose_builtins.html#Cinfo.getBaseClass">[1]</a>, <a href="moose_classes.html#Cinfo.getBaseClass">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getBaseLevel">getBaseLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getBaseLevel">[1]</a>, <a href="moose_classes.html#PulseGen.getBaseLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.getBeta">getBeta() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getBeta">[1]</a>, <a href="moose_classes.html#HHGate.getBeta">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.getBeta">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getBeta">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getBeta">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PostMaster.getBufferSize">getBufferSize() (PostMaster method)</a>, <a href="moose_builtins.html#PostMaster.getBufferSize">[1]</a>, <a href="moose_classes.html#PostMaster.getBufferSize">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.getBufferTime">getBufferTime() (IntFire method)</a>, <a href="moose_builtins.html#IntFire.getBufferTime">[1]</a>, <a href="moose_classes.html#IntFire.getBufferTime">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.getBufferTime">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.getBufferTime">[1]</a>, <a href="moose_classes.html#SynChanBase.getBufferTime">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#getC">getC()</a>, <a href="moose_builtins.html#getC">[1]</a>, <a href="moose_classes.html#getC">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.getC">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getC">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getC">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.getC">(RC method)</a>, <a href="moose_builtins.html#RC.getC">[1]</a>, <a href="moose_classes.html#RC.getC">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CaConc.getCa">getCa() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getCa">[1]</a>, <a href="moose_classes.html#CaConc.getCa">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.getCa">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getCa">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getCa">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CaConc.getCa_base">getCa_base() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getCa_base">[1]</a>, <a href="moose_classes.html#CaConc.getCa_base">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.getCa_base">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getCa_base">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getCa_base">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HSolve.getCaAdvance">getCaAdvance() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getCaAdvance">[1]</a>, <a href="moose_classes.html#HSolve.getCaAdvance">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.getCaBasal">getCaBasal() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getCaBasal">[1]</a>, <a href="moose_classes.html#CaConc.getCaBasal">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.getCaBasal">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getCaBasal">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getCaBasal">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HSolve.getCaDiv">getCaDiv() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getCaDiv">[1]</a>, <a href="moose_classes.html#HSolve.getCaDiv">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.getCaMax">getCaMax() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getCaMax">[1]</a>, <a href="moose_classes.html#HSolve.getCaMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.getCaMin">getCaMin() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getCaMin">[1]</a>, <a href="moose_classes.html#HSolve.getCaMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.getCeiling">getCeiling() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getCeiling">[1]</a>, <a href="moose_classes.html#CaConc.getCeiling">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.getCeiling">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getCeiling">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getCeiling">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.getCell">getCell() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getCell">[1]</a>, <a href="moose_classes.html#NeuroMesh.getCell">[2]</a> - </dt> - - - <dt><a href="tmp.html#getCeq">getCeq()</a>, <a href="moose_builtins.html#getCeq">[1]</a>, <a href="moose_classes.html#getCeq">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getChildren">getChildren() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getChildren">[1]</a>, <a href="moose_classes.html#Neutral.getChildren">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.getCin">getCin() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.getCin">[1]</a>, <a href="moose_classes.html#Nernst.getCin">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getClassName">getClassName() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getClassName">[1]</a>, <a href="moose_classes.html#Neutral.getClassName">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.getCm">getCm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getCm">[1]</a>, <a href="moose_classes.html#CompartmentBase.getCm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.getCMg">getCMg() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.getCMg">[1]</a>, <a href="moose_classes.html#MgBlock.getCMg">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.getColor">getColor() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.getColor">[1]</a>, <a href="moose_classes.html#Annotator.getColor">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getColumnIndex">getColumnIndex() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getColumnIndex">[1]</a>, <a href="moose_classes.html#Stoich.getColumnIndex">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.getCommand">getCommand() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.getCommand">[1]</a>, <a href="moose_classes.html#PIDController.getCommand">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.getCommand">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.getCommand">[1]</a>, <a href="moose_classes.html#VClamp.getCommand">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Dsolve.getCompartment">getCompartment() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.getCompartment">[1]</a>, <a href="moose_classes.html#Dsolve.getCompartment">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Ksolve.getCompartment">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getCompartment">[1]</a>, <a href="moose_classes.html#Ksolve.getCompartment">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getCompartment">(Stoich method)</a>, <a href="moose_builtins.html#Stoich.getCompartment">[1]</a>, <a href="moose_classes.html#Stoich.getCompartment">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PoolBase.getConc">getConc() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getConc">[1]</a>, <a href="moose_classes.html#PoolBase.getConc">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.getConcInit">getConcInit() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getConcInit">[1]</a>, <a href="moose_classes.html#PoolBase.getConcInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.getConcK1">getConcK1() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.getConcK1">[1]</a>, <a href="moose_classes.html#CplxEnzBase.getConcK1">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getConvergenceCriterion">getConvergenceCriterion() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getConvergenceCriterion">[1]</a>, <a href="moose_classes.html#SteadyState.getConvergenceCriterion">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.getCoordinates">getCoordinates() (MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.getCoordinates">[1]</a>, <a href="moose_classes.html#MeshEntry.getCoordinates">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getCoords">getCoords() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getCoords">[1]</a>, <a href="moose_classes.html#CubeMesh.getCoords">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.getCoords">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getCoords">[1]</a>, <a href="moose_classes.html#CylMesh.getCoords">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.getCount">getCount() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getCount">[1]</a>, <a href="moose_classes.html#PulseGen.getCount">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.getCout">getCout() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.getCout">[1]</a>, <a href="moose_classes.html#Nernst.getCout">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.getCurrent">getCurrent() (VClamp method)</a>, <a href="moose_builtins.html#VClamp.getCurrent">[1]</a>, <a href="moose_classes.html#VClamp.getCurrent">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.getCurrentStep">getCurrentStep() (Clock method)</a>, <a href="moose_builtins.html#Clock.getCurrentStep">[1]</a>, <a href="moose_classes.html#Clock.getCurrentStep">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.getCurrentTime">getCurrentTime() (Clock method)</a>, <a href="moose_builtins.html#Clock.getCurrentTime">[1]</a>, <a href="moose_classes.html#Clock.getCurrentTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#getD">getD()</a>, <a href="moose_builtins.html#getD">[1]</a>, <a href="moose_classes.html#getD">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.getD">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getD">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getD">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.getDelay">getDelay() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getDelay">[1]</a>, <a href="moose_classes.html#PulseGen.getDelay">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Synapse.getDelay">(Synapse method)</a>, <a href="moose_builtins.html#Synapse.getDelay">[1]</a>, <a href="moose_classes.html#Synapse.getDelay">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Func.getDerivative">getDerivative() (Func method)</a>, <a href="moose_builtins.html#Func.getDerivative">[1]</a>, <a href="moose_classes.html#Func.getDerivative">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PIDController.getDerivative">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.getDerivative">[1]</a>, <a href="moose_classes.html#PIDController.getDerivative">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Finfo.getDest">getDest() (Finfo method)</a>, <a href="moose_builtins.html#Finfo.getDest">[1]</a>, <a href="moose_classes.html#Finfo.getDest">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getDestFields">getDestFields() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getDestFields">[1]</a>, <a href="moose_classes.html#Neutral.getDestFields">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.getDestFieldsOnE1">getDestFieldsOnE1() (Msg method)</a>, <a href="moose_builtins.html#Msg.getDestFieldsOnE1">[1]</a>, <a href="moose_classes.html#Msg.getDestFieldsOnE1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.getDestFieldsOnE2">getDestFieldsOnE2() (Msg method)</a>, <a href="moose_builtins.html#Msg.getDestFieldsOnE2">[1]</a>, <a href="moose_classes.html#Msg.getDestFieldsOnE2">[2]</a> - </dt> - - - <dt><a href="tmp.html#getDiameter">getDiameter()</a>, <a href="moose_builtins.html#getDiameter">[1]</a>, <a href="moose_classes.html#getDiameter">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.getDiameter">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getDiameter">[1]</a>, <a href="moose_classes.html#CompartmentBase.getDiameter">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PoolBase.getDiffConst">getDiffConst() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getDiffConst">[1]</a>, <a href="moose_classes.html#PoolBase.getDiffConst">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getDiffLength">getDiffLength() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getDiffLength">[1]</a>, <a href="moose_classes.html#CylMesh.getDiffLength">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#NeuroMesh.getDiffLength">(NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getDiffLength">[1]</a>, <a href="moose_classes.html#NeuroMesh.getDiffLength">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MeshEntry.getDiffusionArea">getDiffusionArea() (MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.getDiffusionArea">[1]</a>, <a href="moose_classes.html#MeshEntry.getDiffusionArea">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.getDiffusionScaling">getDiffusionScaling() (MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.getDiffusionScaling">[1]</a>, <a href="moose_classes.html#MeshEntry.getDiffusionScaling">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.getDimensions">getDimensions() (MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.getDimensions">[1]</a>, <a href="moose_classes.html#MeshEntry.getDimensions">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.getDivs">getDivs() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getDivs">[1]</a>, <a href="moose_classes.html#HHGate.getDivs">[2]</a> - </dt> - - - <dt><a href="tmp.html#Cinfo.getDocs">getDocs() (Cinfo method)</a>, <a href="moose_builtins.html#Cinfo.getDocs">[1]</a>, <a href="moose_classes.html#Cinfo.getDocs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Finfo.getDocs">(Finfo method)</a>, <a href="moose_builtins.html#Finfo.getDocs">[1]</a>, <a href="moose_classes.html#Finfo.getDocs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#StimulusTable.getDoLoop">getDoLoop() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.getDoLoop">[1]</a>, <a href="moose_classes.html#StimulusTable.getDoLoop">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getDsolve">getDsolve() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getDsolve">[1]</a>, <a href="moose_classes.html#Ksolve.getDsolve">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Stoich.getDsolve">(Stoich method)</a>, <a href="moose_builtins.html#Stoich.getDsolve">[1]</a>, <a href="moose_classes.html#Stoich.getDsolve">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.getDt">getDt() (Clock method)</a>, <a href="moose_builtins.html#Clock.getDt">[1]</a>, <a href="moose_classes.html#Clock.getDt">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HSolve.getDt">(HSolve method)</a>, <a href="moose_builtins.html#HSolve.getDt">[1]</a>, <a href="moose_classes.html#HSolve.getDt">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.getDts">getDts() (Clock method)</a>, <a href="moose_builtins.html#Clock.getDts">[1]</a>, <a href="moose_classes.html#Clock.getDts">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getDx">getDx() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getDx">[1]</a>, <a href="moose_classes.html#CubeMesh.getDx">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.getDx">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getDx">[1]</a>, <a href="moose_classes.html#Interpol2D.getDx">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.getDy">getDy() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getDy">[1]</a>, <a href="moose_classes.html#CubeMesh.getDy">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.getDy">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getDy">[1]</a>, <a href="moose_classes.html#Interpol2D.getDy">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.getDz">getDz() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getDz">[1]</a>, <a href="moose_classes.html#CubeMesh.getDz">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.getE">getE() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.getE">[1]</a>, <a href="moose_classes.html#Nernst.getE">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.getE1">getE1() (Msg method)</a>, <a href="moose_builtins.html#Msg.getE1">[1]</a>, <a href="moose_classes.html#Msg.getE1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.getE2">getE2() (Msg method)</a>, <a href="moose_builtins.html#Msg.getE2">[1]</a>, <a href="moose_classes.html#Msg.getE2">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.getE_previous">getE_previous() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.getE_previous">[1]</a>, <a href="moose_classes.html#PIDController.getE_previous">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.getEdgeTriggered">getEdgeTriggered() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.getEdgeTriggered">[1]</a>, <a href="moose_classes.html#SpikeGen.getEdgeTriggered">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getEigenvalues">getEigenvalues() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getEigenvalues">[1]</a>, <a href="moose_classes.html#SteadyState.getEigenvalues">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.getEk">getEk() (ChanBase method)</a>, <a href="moose_builtins.html#ChanBase.getEk">[1]</a>, <a href="moose_classes.html#ChanBase.getEk">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.getEk">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.getEk">[1]</a>, <a href="moose_classes.html#SynChanBase.getEk">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getEk">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getEk">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getEk">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.getEm">getEm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getEm">[1]</a>, <a href="moose_classes.html#CompartmentBase.getEm">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getEpsAbs">getEpsAbs() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getEpsAbs">[1]</a>, <a href="moose_classes.html#Ksolve.getEpsAbs">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getEpsRel">getEpsRel() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getEpsRel">[1]</a>, <a href="moose_classes.html#Ksolve.getEpsRel">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.getError">getError() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.getError">[1]</a>, <a href="moose_classes.html#PIDController.getError">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getEstimatedDt">getEstimatedDt() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getEstimatedDt">[1]</a>, <a href="moose_classes.html#Stoich.getEstimatedDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.getExpr">getExpr() (Func method)</a>, <a href="moose_builtins.html#Func.getExpr">[1]</a>, <a href="moose_classes.html#Func.getExpr">[2]</a> - </dt> - - - <dt><a href="tmp.html#Finfo.getFieldName">getFieldName() (Finfo method)</a>, <a href="moose_builtins.html#Finfo.getFieldName">[1]</a>, <a href="moose_classes.html#Finfo.getFieldName">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.getFilename">getFilename() (TimeTable method)</a>, <a href="moose_builtins.html#TimeTable.getFilename">[1]</a>, <a href="moose_classes.html#TimeTable.getFilename">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getFirstDelay">getFirstDelay() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getFirstDelay">[1]</a>, <a href="moose_classes.html#PulseGen.getFirstDelay">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getFirstLevel">getFirstLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getFirstLevel">[1]</a>, <a href="moose_classes.html#PulseGen.getFirstLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getFirstWidth">getFirstWidth() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getFirstWidth">[1]</a>, <a href="moose_classes.html#PulseGen.getFirstWidth">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.getFloor">getFloor() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getFloor">[1]</a>, <a href="moose_classes.html#CaConc.getFloor">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.getFloor">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getFloor">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getFloor">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Arith.getFunction">getFunction() (Arith method)</a>, <a href="moose_builtins.html#Arith.getFunction">[1]</a>, <a href="moose_classes.html#Arith.getFunction">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.getFunction">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.getFunction">[1]</a>, <a href="moose_classes.html#MathFunc.getFunction">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#DiffAmp.getGain">getGain() (DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.getGain">[1]</a>, <a href="moose_classes.html#DiffAmp.getGain">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PIDController.getGain">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.getGain">[1]</a>, <a href="moose_classes.html#PIDController.getGain">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.getGain">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.getGain">[1]</a>, <a href="moose_classes.html#VClamp.getGain">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IzhikevichNrn.getGamma">getGamma() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getGamma">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getGamma">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.getGbar">getGbar() (ChanBase method)</a>, <a href="moose_builtins.html#ChanBase.getGbar">[1]</a>, <a href="moose_classes.html#ChanBase.getGbar">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovChannel.getGbar">(MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getGbar">[1]</a>, <a href="moose_classes.html#MarkovChannel.getGbar">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.getGbar">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.getGbar">[1]</a>, <a href="moose_classes.html#SynChanBase.getGbar">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getGbar">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getGbar">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getGbar">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.getGeometryPolicy">getGeometryPolicy() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getGeometryPolicy">[1]</a>, <a href="moose_classes.html#NeuroMesh.getGeometryPolicy">[2]</a> - </dt> - - - <dt><a href="tmp.html#getGk">getGk()</a>, <a href="moose_builtins.html#getGk">[1]</a>, <a href="moose_classes.html#getGk">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ChanBase.getGk">(ChanBase method)</a>, <a href="moose_builtins.html#ChanBase.getGk">[1]</a>, <a href="moose_classes.html#ChanBase.getGk">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.getGk">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.getGk">[1]</a>, <a href="moose_classes.html#SynChanBase.getGk">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getGk">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getGk">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getGk">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SpikeGen.getHasFired">getHasFired() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.getHasFired">[1]</a>, <a href="moose_classes.html#SpikeGen.getHasFired">[2]</a> - </dt> - - - <dt><a href="tmp.html#OneToAllMsg.getI1">getI1() (OneToAllMsg method)</a>, <a href="moose_builtins.html#OneToAllMsg.getI1">[1]</a>, <a href="moose_classes.html#OneToAllMsg.getI1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SingleMsg.getI1">(SingleMsg method)</a>, <a href="moose_builtins.html#SingleMsg.getI1">[1]</a>, <a href="moose_classes.html#SingleMsg.getI1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SingleMsg.getI2">getI2() (SingleMsg method)</a>, <a href="moose_builtins.html#SingleMsg.getI2">[1]</a>, <a href="moose_classes.html#SingleMsg.getI2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.getIcon">getIcon() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.getIcon">[1]</a>, <a href="moose_classes.html#Annotator.getIcon">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.getIk">getIk() (ChanBase method)</a>, <a href="moose_builtins.html#ChanBase.getIk">[1]</a>, <a href="moose_classes.html#ChanBase.getIk">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MgBlock.getIk">(MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.getIk">[1]</a>, <a href="moose_classes.html#MgBlock.getIk">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.getIk">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.getIk">[1]</a>, <a href="moose_classes.html#SynChanBase.getIk">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getIk">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getIk">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getIk">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.getIm">getIm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getIm">[1]</a>, <a href="moose_classes.html#CompartmentBase.getIm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.getIm">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getIm">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getIm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovChannel.getInitialState">getInitialState() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getInitialState">[1]</a>, <a href="moose_classes.html#MarkovChannel.getInitialState">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.getInitialState">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getInitialState">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getInitialState">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IzhikevichNrn.getInitU">getInitU() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getInitU">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getInitU">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.getInitVm">getInitVm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getInitVm">[1]</a>, <a href="moose_classes.html#CompartmentBase.getInitVm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.getInitVm">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getInitVm">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getInitVm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.getInject">getInject() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getInject">[1]</a>, <a href="moose_classes.html#CompartmentBase.getInject">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.getInject">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getInject">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getInject">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.getInject">(RC method)</a>, <a href="moose_builtins.html#RC.getInject">[1]</a>, <a href="moose_classes.html#RC.getInject">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#getInnerArea">getInnerArea()</a>, <a href="moose_builtins.html#getInnerArea">[1]</a>, <a href="moose_classes.html#getInnerArea">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.getInputOffset">getInputOffset() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.getInputOffset">[1]</a>, <a href="moose_classes.html#Adaptor.getInputOffset">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getInstant">getInstant() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getInstant">[1]</a>, <a href="moose_classes.html#HHChannel.getInstant">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.getInstant">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getInstant">[1]</a>, <a href="moose_classes.html#HHChannel2D.getInstant">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getInstant">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getInstant">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getInstant">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PIDController.getIntegral">getIntegral() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.getIntegral">[1]</a>, <a href="moose_classes.html#PIDController.getIntegral">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.getInternalDt">getInternalDt() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.getInternalDt">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.getInternalDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.getInvdx">getInvdx() (MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getInvdx">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getInvdx">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VectorTable.getInvdx">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.getInvdx">[1]</a>, <a href="moose_classes.html#VectorTable.getInvdx">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovSolverBase.getInvdy">getInvdy() (MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getInvdy">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getInvdy">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.getIsInitialized">getIsInitialized() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.getIsInitialized">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.getIsInitialized">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SteadyState.getIsInitialized">(SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getIsInitialized">[1]</a>, <a href="moose_classes.html#SteadyState.getIsInitialized">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.getIsRunning">getIsRunning() (Clock method)</a>, <a href="moose_builtins.html#Clock.getIsRunning">[1]</a>, <a href="moose_classes.html#Clock.getIsRunning">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getIsToroid">getIsToroid() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getIsToroid">[1]</a>, <a href="moose_classes.html#CubeMesh.getIsToroid">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.getK1">getK1() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.getK1">[1]</a>, <a href="moose_classes.html#CplxEnzBase.getK1">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.getK2">getK2() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.getK2">[1]</a>, <a href="moose_classes.html#CplxEnzBase.getK2">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.getK3">getK3() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.getK3">[1]</a>, <a href="moose_classes.html#CplxEnzBase.getK3">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.getKb">getKb() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.getKb">[1]</a>, <a href="moose_classes.html#ReacBase.getKb">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.getKcat">getKcat() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.getKcat">[1]</a>, <a href="moose_classes.html#EnzBase.getKcat">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.getKf">getKf() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.getKf">[1]</a>, <a href="moose_classes.html#ReacBase.getKf">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.getKm">getKm() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.getKm">[1]</a>, <a href="moose_classes.html#EnzBase.getKm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.getKMg_A">getKMg_A() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.getKMg_A">[1]</a>, <a href="moose_classes.html#MgBlock.getKMg_A">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.getKMg_B">getKMg_B() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.getKMg_B">[1]</a>, <a href="moose_classes.html#MgBlock.getKMg_B">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getKsolve">getKsolve() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getKsolve">[1]</a>, <a href="moose_classes.html#Stoich.getKsolve">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.getLabels">getLabels() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getLabels">[1]</a>, <a href="moose_classes.html#MarkovChannel.getLabels">[2]</a> - </dt> - - - <dt><a href="tmp.html#getLeak">getLeak()</a>, <a href="moose_builtins.html#getLeak">[1]</a>, <a href="moose_classes.html#getLeak">[2]</a> - </dt> - - - <dt><a href="tmp.html#getLength">getLength()</a>, <a href="moose_builtins.html#getLength">[1]</a>, <a href="moose_classes.html#getLength">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.getLength">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getLength">[1]</a>, <a href="moose_classes.html#CompartmentBase.getLength">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.getLevel">getLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getLevel">[1]</a>, <a href="moose_classes.html#PulseGen.getLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.getLigandConc">getLigandConc() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getLigandConc">[1]</a>, <a href="moose_classes.html#MarkovChannel.getLigandConc">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovRateTable.getLigandConc">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.getLigandConc">[1]</a>, <a href="moose_classes.html#MarkovRateTable.getLigandConc">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#VectorTable.getLookupindex">getLookupindex() (VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.getLookupindex">[1]</a>, <a href="moose_classes.html#VectorTable.getLookupindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.getLookupvalue">getLookupvalue() (VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.getLookupvalue">[1]</a>, <a href="moose_classes.html#VectorTable.getLookupvalue">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.getLoopTime">getLoopTime() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.getLoopTime">[1]</a>, <a href="moose_classes.html#StimulusTable.getLoopTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc.getMathML">getMathML() (MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.getMathML">[1]</a>, <a href="moose_classes.html#MathFunc.getMathML">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getMatrixEntry">getMatrixEntry() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getMatrixEntry">[1]</a>, <a href="moose_classes.html#Stoich.getMatrixEntry">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.getMax">getMax() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getMax">[1]</a>, <a href="moose_classes.html#HHGate.getMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getMaxIter">getMaxIter() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getMaxIter">[1]</a>, <a href="moose_classes.html#SteadyState.getMaxIter">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getMe">getMe() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getMe">[1]</a>, <a href="moose_classes.html#Neutral.getMe">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.getMean">getMean() (Stats method)</a>, <a href="moose_builtins.html#Stats.getMean">[1]</a>, <a href="moose_classes.html#Stats.getMean">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getMeshToSpace">getMeshToSpace() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getMeshToSpace">[1]</a>, <a href="moose_classes.html#CubeMesh.getMeshToSpace">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.getMeshType">getMeshType() (MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.getMeshType">[1]</a>, <a href="moose_classes.html#MeshEntry.getMeshType">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getMethod">getMethod() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getMethod">[1]</a>, <a href="moose_classes.html#Ksolve.getMethod">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovGslSolver.getMethod">(MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.getMethod">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.getMethod">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.getMethod">(TimeTable method)</a>, <a href="moose_builtins.html#TimeTable.getMethod">[1]</a>, <a href="moose_classes.html#TimeTable.getMethod">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.getMin">getMin() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getMin">[1]</a>, <a href="moose_classes.html#HHGate.getMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.getMInfinity">getMInfinity() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getMInfinity">[1]</a>, <a href="moose_classes.html#HHGate.getMInfinity">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.getMode">getMode() (Func method)</a>, <a href="moose_builtins.html#Func.getMode">[1]</a>, <a href="moose_classes.html#Func.getMode">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.getMode">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.getMode">[1]</a>, <a href="moose_classes.html#VClamp.getMode">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Species.getMolWt">getMolWt() (Species method)</a>, <a href="moose_builtins.html#Species.getMolWt">[1]</a>, <a href="moose_classes.html#Species.getMolWt">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.getMotorConst">getMotorConst() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getMotorConst">[1]</a>, <a href="moose_classes.html#PoolBase.getMotorConst">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getMsgDestFunctions">getMsgDestFunctions() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getMsgDestFunctions">[1]</a>, <a href="moose_classes.html#Neutral.getMsgDestFunctions">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getMsgDests">getMsgDests() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getMsgDests">[1]</a>, <a href="moose_classes.html#Neutral.getMsgDests">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getMsgIn">getMsgIn() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getMsgIn">[1]</a>, <a href="moose_classes.html#Neutral.getMsgIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getMsgOut">getMsgOut() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getMsgOut">[1]</a>, <a href="moose_classes.html#Neutral.getMsgOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster.getMyNode">getMyNode() (PostMaster method)</a>, <a href="moose_builtins.html#PostMaster.getMyNode">[1]</a>, <a href="moose_classes.html#PostMaster.getMyNode">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.getN">getN() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getN">[1]</a>, <a href="moose_classes.html#PoolBase.getN">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getName">getName() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getName">[1]</a>, <a href="moose_classes.html#Neutral.getName">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.getNeighbors">getNeighbors() (MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.getNeighbors">[1]</a>, <a href="moose_classes.html#MeshEntry.getNeighbors">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Neutral.getNeighbors">(Neutral method)</a>, <a href="moose_builtins.html#Neutral.getNeighbors">[1]</a>, <a href="moose_classes.html#Neutral.getNeighbors">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PoolBase.getNInit">getNInit() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getNInit">[1]</a>, <a href="moose_classes.html#PoolBase.getNInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getNIter">getNIter() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getNIter">[1]</a>, <a href="moose_classes.html#SteadyState.getNIter">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getNNegEigenvalues">getNNegEigenvalues() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getNNegEigenvalues">[1]</a>, <a href="moose_classes.html#SteadyState.getNNegEigenvalues">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.getNormalizeWeights">getNormalizeWeights() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.getNormalizeWeights">[1]</a>, <a href="moose_classes.html#SynChan.getNormalizeWeights">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.getNotes">getNotes() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.getNotes">[1]</a>, <a href="moose_classes.html#Annotator.getNotes">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getNPosEigenvalues">getNPosEigenvalues() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getNPosEigenvalues">[1]</a>, <a href="moose_classes.html#SteadyState.getNPosEigenvalues">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.getNsteps">getNsteps() (Clock method)</a>, <a href="moose_builtins.html#Clock.getNsteps">[1]</a>, <a href="moose_classes.html#Clock.getNsteps">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.getNum">getNum() (Stats method)</a>, <a href="moose_builtins.html#Stats.getNum">[1]</a>, <a href="moose_classes.html#Stats.getNum">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getNumAllPools">getNumAllPools() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getNumAllPools">[1]</a>, <a href="moose_classes.html#Stoich.getNumAllPools">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.getNumAllVoxels">getNumAllVoxels() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.getNumAllVoxels">[1]</a>, <a href="moose_classes.html#Dsolve.getNumAllVoxels">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.getNumAllVoxels">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.getNumAllVoxels">[1]</a>, <a href="moose_classes.html#Gsolve.getNumAllVoxels">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getNumAllVoxels">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getNumAllVoxels">[1]</a>, <a href="moose_classes.html#Ksolve.getNumAllVoxels">[2]</a> - </dt> - - </dl></dd> - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#SparseMsg.getNumColumns">getNumColumns() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.getNumColumns">[1]</a>, <a href="moose_classes.html#SparseMsg.getNumColumns">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getNumData">getNumData() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getNumData">[1]</a>, <a href="moose_classes.html#Neutral.getNumData">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getNumDiffCompts">getNumDiffCompts() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getNumDiffCompts">[1]</a>, <a href="moose_classes.html#CylMesh.getNumDiffCompts">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#NeuroMesh.getNumDiffCompts">(NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getNumDiffCompts">[1]</a>, <a href="moose_classes.html#NeuroMesh.getNumDiffCompts">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChemCompt.getNumDimensions">getNumDimensions() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.getNumDimensions">[1]</a>, <a href="moose_classes.html#ChemCompt.getNumDimensions">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.getNumEntries">getNumEntries() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.getNumEntries">[1]</a>, <a href="moose_classes.html#SparseMsg.getNumEntries">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getNumField">getNumField() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getNumField">[1]</a>, <a href="moose_classes.html#Neutral.getNumField">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getNumGateX">getNumGateX() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getNumGateX">[1]</a>, <a href="moose_classes.html#HHChannel.getNumGateX">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.getNumGateX">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getNumGateX">[1]</a>, <a href="moose_classes.html#HHChannel2D.getNumGateX">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getNumGateX">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getNumGateX">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getNumGateX">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel.getNumGateY">getNumGateY() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getNumGateY">[1]</a>, <a href="moose_classes.html#HHChannel.getNumGateY">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.getNumGateY">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getNumGateY">[1]</a>, <a href="moose_classes.html#HHChannel2D.getNumGateY">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getNumGateY">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getNumGateY">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getNumGateY">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel.getNumGateZ">getNumGateZ() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getNumGateZ">[1]</a>, <a href="moose_classes.html#HHChannel.getNumGateZ">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.getNumGateZ">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getNumGateZ">[1]</a>, <a href="moose_classes.html#HHChannel2D.getNumGateZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getNumGateZ">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getNumGateZ">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getNumGateZ">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ReacBase.getNumKb">getNumKb() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.getNumKb">[1]</a>, <a href="moose_classes.html#ReacBase.getNumKb">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.getNumKf">getNumKf() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.getNumKf">[1]</a>, <a href="moose_classes.html#ReacBase.getNumKf">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.getNumKm">getNumKm() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.getNumKm">[1]</a>, <a href="moose_classes.html#EnzBase.getNumKm">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.getNumLocalVoxels">getNumLocalVoxels() (Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.getNumLocalVoxels">[1]</a>, <a href="moose_classes.html#Gsolve.getNumLocalVoxels">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Ksolve.getNumLocalVoxels">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getNumLocalVoxels">[1]</a>, <a href="moose_classes.html#Ksolve.getNumLocalVoxels">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChemCompt.getNumMesh">getNumMesh() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.getNumMesh">[1]</a>, <a href="moose_classes.html#ChemCompt.getNumMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster.getNumNodes">getNumNodes() (PostMaster method)</a>, <a href="moose_builtins.html#PostMaster.getNumNodes">[1]</a>, <a href="moose_classes.html#PostMaster.getNumNodes">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.getNumOpenStates">getNumOpenStates() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getNumOpenStates">[1]</a>, <a href="moose_classes.html#MarkovChannel.getNumOpenStates">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.getNumPools">getNumPools() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.getNumPools">[1]</a>, <a href="moose_classes.html#Dsolve.getNumPools">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.getNumPools">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.getNumPools">[1]</a>, <a href="moose_classes.html#Gsolve.getNumPools">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getNumPools">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getNumPools">[1]</a>, <a href="moose_classes.html#Ksolve.getNumPools">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ReacBase.getNumProducts">getNumProducts() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.getNumProducts">[1]</a>, <a href="moose_classes.html#ReacBase.getNumProducts">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getNumRates">getNumRates() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getNumRates">[1]</a>, <a href="moose_classes.html#Stoich.getNumRates">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.getNumRows">getNumRows() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.getNumRows">[1]</a>, <a href="moose_classes.html#SparseMsg.getNumRows">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.getNumSegments">getNumSegments() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getNumSegments">[1]</a>, <a href="moose_classes.html#NeuroMesh.getNumSegments">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.getNumStates">getNumStates() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getNumStates">[1]</a>, <a href="moose_classes.html#MarkovChannel.getNumStates">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.getNumSubstrates">getNumSubstrates() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.getNumSubstrates">[1]</a>, <a href="moose_classes.html#EnzBase.getNumSubstrates">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.getNumSubstrates">(ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.getNumSubstrates">[1]</a>, <a href="moose_classes.html#ReacBase.getNumSubstrates">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SynHandler.getNumSynapse">getNumSynapse() (SynHandler method)</a>, <a href="moose_builtins.html#SynHandler.getNumSynapse">[1]</a>, <a href="moose_classes.html#SynHandler.getNumSynapse">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynHandler.getNumSynapses">getNumSynapses() (SynHandler method)</a>, <a href="moose_builtins.html#SynHandler.getNumSynapses">[1]</a>, <a href="moose_classes.html#SynHandler.getNumSynapses">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.getNumTicks">getNumTicks() (Clock method)</a>, <a href="moose_builtins.html#Clock.getNumTicks">[1]</a>, <a href="moose_classes.html#Clock.getNumTicks">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getNumVarPools">getNumVarPools() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getNumVarPools">[1]</a>, <a href="moose_classes.html#SteadyState.getNumVarPools">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Stoich.getNumVarPools">(Stoich method)</a>, <a href="moose_builtins.html#Stoich.getNumVarPools">[1]</a>, <a href="moose_classes.html#Stoich.getNumVarPools">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Dsolve.getNumVoxels">getNumVoxels() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.getNumVoxels">[1]</a>, <a href="moose_classes.html#Dsolve.getNumVoxels">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.getNVec">getNVec() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.getNVec">[1]</a>, <a href="moose_classes.html#Dsolve.getNVec">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.getNVec">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.getNVec">[1]</a>, <a href="moose_classes.html#Gsolve.getNVec">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getNVec">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getNVec">[1]</a>, <a href="moose_classes.html#Ksolve.getNVec">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.getNx">getNx() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getNx">[1]</a>, <a href="moose_classes.html#CubeMesh.getNx">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getNy">getNy() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getNy">[1]</a>, <a href="moose_classes.html#CubeMesh.getNy">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getNz">getNz() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getNz">[1]</a>, <a href="moose_classes.html#CubeMesh.getNz">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.getOneVoxelVolume">getOneVoxelVolume() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.getOneVoxelVolume">[1]</a>, <a href="moose_classes.html#ChemCompt.getOneVoxelVolume">[2]</a> - </dt> - - - <dt><a href="tmp.html#getOuterArea">getOuterArea()</a>, <a href="moose_builtins.html#getOuterArea">[1]</a>, <a href="moose_classes.html#getOuterArea">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.getOutputOffset">getOutputOffset() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.getOutputOffset">[1]</a>, <a href="moose_classes.html#Adaptor.getOutputOffset">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.getOutputValue">getOutputValue() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.getOutputValue">[1]</a>, <a href="moose_classes.html#Adaptor.getOutputValue">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Arith.getOutputValue">(Arith method)</a>, <a href="moose_builtins.html#Arith.getOutputValue">[1]</a>, <a href="moose_classes.html#Arith.getOutputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.getOutputValue">(DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.getOutputValue">[1]</a>, <a href="moose_classes.html#DiffAmp.getOutputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.getOutputValue">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.getOutputValue">[1]</a>, <a href="moose_classes.html#PIDController.getOutputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getOutputValue">(PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getOutputValue">[1]</a>, <a href="moose_classes.html#PulseGen.getOutputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.getOutputValue">(TableBase method)</a>, <a href="moose_builtins.html#TableBase.getOutputValue">[1]</a>, <a href="moose_classes.html#TableBase.getOutputValue">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Neutral.getParent">getParent() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getParent">[1]</a>, <a href="moose_classes.html#Neutral.getParent">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.getParentVoxel">getParentVoxel() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getParentVoxel">[1]</a>, <a href="moose_classes.html#NeuroMesh.getParentVoxel">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SpineMesh.getParentVoxel">(SpineMesh method)</a>, <a href="moose_builtins.html#SpineMesh.getParentVoxel">[1]</a>, <a href="moose_classes.html#SpineMesh.getParentVoxel">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Dsolve.getPath">getPath() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.getPath">[1]</a>, <a href="moose_classes.html#Dsolve.getPath">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Neutral.getPath">(Neutral method)</a>, <a href="moose_builtins.html#Neutral.getPath">[1]</a>, <a href="moose_classes.html#Neutral.getPath">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getPath">(Stoich method)</a>, <a href="moose_builtins.html#Stoich.getPath">[1]</a>, <a href="moose_classes.html#Stoich.getPath">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Stoich.getPoolIdMap">getPoolIdMap() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getPoolIdMap">[1]</a>, <a href="moose_classes.html#Stoich.getPoolIdMap">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getPreserveNumEntries">getPreserveNumEntries() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getPreserveNumEntries">[1]</a>, <a href="moose_classes.html#CubeMesh.getPreserveNumEntries">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.getProbability">getProbability() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.getProbability">[1]</a>, <a href="moose_classes.html#SparseMsg.getProbability">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.getQ">getQ() (MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.getQ">[1]</a>, <a href="moose_classes.html#MarkovRateTable.getQ">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.getQ">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getQ">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getQ">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#RC.getR">getR() (RC method)</a>, <a href="moose_builtins.html#RC.getR">[1]</a>, <a href="moose_classes.html#RC.getR">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getR0">getR0() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getR0">[1]</a>, <a href="moose_classes.html#CylMesh.getR0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getR1">getR1() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getR1">[1]</a>, <a href="moose_classes.html#CylMesh.getR1">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.getRa">getRa() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getRa">[1]</a>, <a href="moose_classes.html#CompartmentBase.getRa">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getRank">getRank() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getRank">[1]</a>, <a href="moose_classes.html#SteadyState.getRank">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.getRatio">getRatio() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.getRatio">[1]</a>, <a href="moose_classes.html#CplxEnzBase.getRatio">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.getRefractoryPeriod">getRefractoryPeriod() (IntFire method)</a>, <a href="moose_builtins.html#IntFire.getRefractoryPeriod">[1]</a>, <a href="moose_classes.html#IntFire.getRefractoryPeriod">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.getRefractT">getRefractT() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.getRefractT">[1]</a>, <a href="moose_classes.html#SpikeGen.getRefractT">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.getRelativeAccuracy">getRelativeAccuracy() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.getRelativeAccuracy">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.getRelativeAccuracy">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncBase.getResult">getResult() (FuncBase method)</a>, <a href="moose_builtins.html#FuncBase.getResult">[1]</a>, <a href="moose_classes.html#FuncBase.getResult">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.getResult">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.getResult">[1]</a>, <a href="moose_classes.html#MathFunc.getResult">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.getRm">getRm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getRm">[1]</a>, <a href="moose_classes.html#CompartmentBase.getRm">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getRmByTau">getRmByTau() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getRmByTau">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getRmByTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.getRowStart">getRowStart() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.getRowStart">[1]</a>, <a href="moose_classes.html#Stoich.getRowStart">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.getRunTime">getRunTime() (Clock method)</a>, <a href="moose_builtins.html#Clock.getRunTime">[1]</a>, <a href="moose_classes.html#Clock.getRunTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.getSaturation">getSaturation() (DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.getSaturation">[1]</a>, <a href="moose_classes.html#DiffAmp.getSaturation">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PIDController.getSaturation">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.getSaturation">[1]</a>, <a href="moose_classes.html#PIDController.getSaturation">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Adaptor.getScale">getScale() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.getScale">[1]</a>, <a href="moose_classes.html#Adaptor.getScale">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Nernst.getScale">(Nernst method)</a>, <a href="moose_builtins.html#Nernst.getScale">[1]</a>, <a href="moose_classes.html#Nernst.getScale">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Stats.getSdev">getSdev() (Stats method)</a>, <a href="moose_builtins.html#Stats.getSdev">[1]</a>, <a href="moose_classes.html#Stats.getSdev">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getSecondDelay">getSecondDelay() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getSecondDelay">[1]</a>, <a href="moose_classes.html#PulseGen.getSecondDelay">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getSecondLevel">getSecondLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getSecondLevel">[1]</a>, <a href="moose_classes.html#PulseGen.getSecondLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getSecondWidth">getSecondWidth() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getSecondWidth">[1]</a>, <a href="moose_classes.html#PulseGen.getSecondWidth">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.getSeed">getSeed() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getSeed">[1]</a>, <a href="moose_classes.html#HSolve.getSeed">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SparseMsg.getSeed">(SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.getSeed">[1]</a>, <a href="moose_classes.html#SparseMsg.getSeed">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PIDController.getSensed">getSensed() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.getSensed">[1]</a>, <a href="moose_classes.html#PIDController.getSensed">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.getSensed">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.getSensed">[1]</a>, <a href="moose_classes.html#VClamp.getSensed">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.getSeparateSpines">getSeparateSpines() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getSeparateSpines">[1]</a>, <a href="moose_classes.html#NeuroMesh.getSeparateSpines">[2]</a> - </dt> - - - <dt><a href="tmp.html#getShapeMode">getShapeMode()</a>, <a href="moose_builtins.html#getShapeMode">[1]</a>, <a href="moose_classes.html#getShapeMode">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.getSize">getSize() (MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.getSize">[1]</a>, <a href="moose_classes.html#MarkovRateTable.getSize">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#TableBase.getSize">(TableBase method)</a>, <a href="moose_builtins.html#TableBase.getSize">[1]</a>, <a href="moose_classes.html#TableBase.getSize">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SteadyState.getSolutionStatus">getSolutionStatus() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getSolutionStatus">[1]</a>, <a href="moose_classes.html#SteadyState.getSolutionStatus">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.getSourceFields">getSourceFields() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getSourceFields">[1]</a>, <a href="moose_classes.html#Neutral.getSourceFields">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getSpaceToMesh">getSpaceToMesh() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getSpaceToMesh">[1]</a>, <a href="moose_classes.html#CubeMesh.getSpaceToMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.getSpeciesId">getSpeciesId() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getSpeciesId">[1]</a>, <a href="moose_classes.html#PoolBase.getSpeciesId">[2]</a> - </dt> - - - <dt><a href="tmp.html#Finfo.getSrc">getSrc() (Finfo method)</a>, <a href="moose_builtins.html#Finfo.getSrc">[1]</a>, <a href="moose_classes.html#Finfo.getSrc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.getSrcFieldsOnE1">getSrcFieldsOnE1() (Msg method)</a>, <a href="moose_builtins.html#Msg.getSrcFieldsOnE1">[1]</a>, <a href="moose_classes.html#Msg.getSrcFieldsOnE1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.getSrcFieldsOnE2">getSrcFieldsOnE2() (Msg method)</a>, <a href="moose_builtins.html#Msg.getSrcFieldsOnE2">[1]</a>, <a href="moose_classes.html#Msg.getSrcFieldsOnE2">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.getStartTime">getStartTime() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.getStartTime">[1]</a>, <a href="moose_classes.html#StimulusTable.getStartTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.getState">getState() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getState">[1]</a>, <a href="moose_classes.html#MarkovChannel.getState">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.getState">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getState">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getState">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.getState">(RC method)</a>, <a href="moose_builtins.html#RC.getState">[1]</a>, <a href="moose_classes.html#RC.getState">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.getState">(TimeTable method)</a>, <a href="moose_builtins.html#TimeTable.getState">[1]</a>, <a href="moose_classes.html#TimeTable.getState">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SteadyState.getStateType">getStateType() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getStateType">[1]</a>, <a href="moose_classes.html#SteadyState.getStateType">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getStatus">getStatus() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getStatus">[1]</a>, <a href="moose_classes.html#SteadyState.getStatus">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.getStencilIndex">getStencilIndex() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.getStencilIndex">[1]</a>, <a href="moose_classes.html#ChemCompt.getStencilIndex">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.getStencilRate">getStencilRate() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.getStencilRate">[1]</a>, <a href="moose_classes.html#ChemCompt.getStencilRate">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.getStepPosition">getStepPosition() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.getStepPosition">[1]</a>, <a href="moose_classes.html#StimulusTable.getStepPosition">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.getStepSize">getStepSize() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.getStepSize">[1]</a>, <a href="moose_classes.html#StimulusTable.getStepSize">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.getStoich">getStoich() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.getStoich">[1]</a>, <a href="moose_classes.html#Dsolve.getStoich">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.getStoich">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.getStoich">[1]</a>, <a href="moose_classes.html#Gsolve.getStoich">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.getStoich">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.getStoich">[1]</a>, <a href="moose_classes.html#Ksolve.getStoich">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getStoich">(SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getStoich">[1]</a>, <a href="moose_classes.html#SteadyState.getStoich">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#StimulusTable.getStopTime">getStopTime() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.getStopTime">[1]</a>, <a href="moose_classes.html#StimulusTable.getStopTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiagonalMsg.getStride">getStride() (DiagonalMsg method)</a>, <a href="moose_builtins.html#DiagonalMsg.getStride">[1]</a>, <a href="moose_classes.html#DiagonalMsg.getStride">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.getSubTree">getSubTree() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.getSubTree">[1]</a>, <a href="moose_classes.html#NeuroMesh.getSubTree">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.getSum">getSum() (Stats method)</a>, <a href="moose_builtins.html#Stats.getSum">[1]</a>, <a href="moose_classes.html#Stats.getSum">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.getSurface">getSurface() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getSurface">[1]</a>, <a href="moose_classes.html#CubeMesh.getSurface">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.getTable">getTable() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getTable">[1]</a>, <a href="moose_classes.html#Interpol2D.getTable">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VectorTable.getTable">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.getTable">[1]</a>, <a href="moose_classes.html#VectorTable.getTable">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.getTableA">getTableA() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getTableA">[1]</a>, <a href="moose_classes.html#HHGate.getTableA">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.getTableA">(HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getTableA">[1]</a>, <a href="moose_classes.html#HHGate2D.getTableA">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.getTableB">getTableB() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getTableB">[1]</a>, <a href="moose_classes.html#HHGate.getTableB">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.getTableB">(HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getTableB">[1]</a>, <a href="moose_classes.html#HHGate2D.getTableB">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.getTableVector2D">getTableVector2D() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getTableVector2D">[1]</a>, <a href="moose_classes.html#Interpol2D.getTableVector2D">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.getTarget">getTarget() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getTarget">[1]</a>, <a href="moose_classes.html#HSolve.getTarget">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.getTau">getTau() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getTau">[1]</a>, <a href="moose_classes.html#CaConc.getTau">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate.getTau">(HHGate method)</a>, <a href="moose_builtins.html#HHGate.getTau">[1]</a>, <a href="moose_classes.html#HHGate.getTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.getTau">(IntFire method)</a>, <a href="moose_builtins.html#IntFire.getTau">[1]</a>, <a href="moose_classes.html#IntFire.getTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.getTau">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.getTau">[1]</a>, <a href="moose_classes.html#VClamp.getTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.getTau">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getTau">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getTau">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SynChan.getTau1">getTau1() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.getTau1">[1]</a>, <a href="moose_classes.html#SynChan.getTau1">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.getTau2">getTau2() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.getTau2">[1]</a>, <a href="moose_classes.html#SynChan.getTau2">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.getTauD">getTauD() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.getTauD">[1]</a>, <a href="moose_classes.html#PIDController.getTauD">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.getTauI">getTauI() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.getTauI">[1]</a>, <a href="moose_classes.html#PIDController.getTauI">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.getTd">getTd() (VClamp method)</a>, <a href="moose_builtins.html#VClamp.getTd">[1]</a>, <a href="moose_classes.html#VClamp.getTd">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.getTemperature">getTemperature() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.getTemperature">[1]</a>, <a href="moose_classes.html#Nernst.getTemperature">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.getTextColor">getTextColor() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.getTextColor">[1]</a>, <a href="moose_classes.html#Annotator.getTextColor">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.getThick">getThick() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.getThick">[1]</a>, <a href="moose_classes.html#CaConc.getThick">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.getThick">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.getThick">[1]</a>, <a href="moose_classes.html#ZombieCaConc.getThick">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#getThickness">getThickness()</a>, <a href="moose_builtins.html#getThickness">[1]</a>, <a href="moose_classes.html#getThickness">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PsdMesh.getThickness">(PsdMesh method)</a>, <a href="moose_builtins.html#PsdMesh.getThickness">[1]</a>, <a href="moose_classes.html#PsdMesh.getThickness">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Mstring.getThis">getThis() (Mstring method)</a>, <a href="moose_builtins.html#Mstring.getThis">[1]</a>, <a href="moose_classes.html#Mstring.getThis">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Neutral.getThis">(Neutral method)</a>, <a href="moose_builtins.html#Neutral.getThis">[1]</a>, <a href="moose_classes.html#Neutral.getThis">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IntFire.getThresh">getThresh() (IntFire method)</a>, <a href="moose_builtins.html#IntFire.getThresh">[1]</a>, <a href="moose_classes.html#IntFire.getThresh">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.getThreshold">getThreshold() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.getThreshold">[1]</a>, <a href="moose_classes.html#SpikeGen.getThreshold">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Table.getThreshold">(Table method)</a>, <a href="moose_builtins.html#Table.getThreshold">[1]</a>, <a href="moose_classes.html#Table.getThreshold">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#VClamp.getTi">getTi() (VClamp method)</a>, <a href="moose_builtins.html#VClamp.getTi">[1]</a>, <a href="moose_classes.html#VClamp.getTi">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.getTickDt">getTickDt() (Clock method)</a>, <a href="moose_builtins.html#Clock.getTickDt">[1]</a>, <a href="moose_classes.html#Clock.getTickDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.getTickStep">getTickStep() (Clock method)</a>, <a href="moose_builtins.html#Clock.getTickStep">[1]</a>, <a href="moose_classes.html#Clock.getTickStep">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.getTotal">getTotal() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.getTotal">[1]</a>, <a href="moose_classes.html#SteadyState.getTotal">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getTotLength">getTotLength() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getTotLength">[1]</a>, <a href="moose_classes.html#CylMesh.getTotLength">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getTrigMode">getTrigMode() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getTrigMode">[1]</a>, <a href="moose_classes.html#PulseGen.getTrigMode">[2]</a> - </dt> - - - <dt><a href="tmp.html#Finfo.getType">getType() (Finfo method)</a>, <a href="moose_builtins.html#Finfo.getType">[1]</a>, <a href="moose_classes.html#Finfo.getType">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getU">getU() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getU">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getU">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getU0">getU0() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getU0">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getU0">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getUseConcentration">getUseConcentration() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getUseConcentration">[1]</a>, <a href="moose_classes.html#HHChannel.getUseConcentration">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieHHChannel.getUseConcentration">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getUseConcentration">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getUseConcentration">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.getUseInterpolation">getUseInterpolation() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.getUseInterpolation">[1]</a>, <a href="moose_classes.html#HHGate.getUseInterpolation">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.getUseRandInit">getUseRandInit() (Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.getUseRandInit">[1]</a>, <a href="moose_classes.html#Gsolve.getUseRandInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.getV0">getV0() (RC method)</a>, <a href="moose_builtins.html#RC.getV0">[1]</a>, <a href="moose_classes.html#RC.getV0">[2]</a> - </dt> - - - <dt><a href="tmp.html#getValence">getValence()</a>, <a href="moose_builtins.html#getValence">[1]</a>, <a href="moose_classes.html#getValence">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Nernst.getValence">(Nernst method)</a>, <a href="moose_builtins.html#Nernst.getValence">[1]</a>, <a href="moose_classes.html#Nernst.getValence">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Double.getValue">getValue() (Double method)</a>, <a href="moose_builtins.html#Double.getValue">[1]</a>, <a href="moose_classes.html#Double.getValue">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Func.getValue">(Func method)</a>, <a href="moose_builtins.html#Func.getValue">[1]</a>, <a href="moose_classes.html#Func.getValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Long.getValue">(Long method)</a>, <a href="moose_builtins.html#Long.getValue">[1]</a>, <a href="moose_classes.html#Long.getValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Mstring.getValue">(Mstring method)</a>, <a href="moose_builtins.html#Mstring.getValue">[1]</a>, <a href="moose_classes.html#Mstring.getValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Unsigned.getValue">(Unsigned method)</a>, <a href="moose_builtins.html#Unsigned.getValue">[1]</a>, <a href="moose_classes.html#Unsigned.getValue">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Neutral.getValueFields">getValueFields() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.getValueFields">[1]</a>, <a href="moose_classes.html#Neutral.getValueFields">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.getVar">getVar() (Func method)</a>, <a href="moose_builtins.html#Func.getVar">[1]</a>, <a href="moose_classes.html#Func.getVar">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.getVars">getVars() (Func method)</a>, <a href="moose_builtins.html#Func.getVars">[1]</a>, <a href="moose_classes.html#Func.getVars">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.getVDiv">getVDiv() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getVDiv">[1]</a>, <a href="moose_classes.html#HSolve.getVDiv">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.getVector">getVector() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.getVector">[1]</a>, <a href="moose_classes.html#TableBase.getVector">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.getVm">getVm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getVm">[1]</a>, <a href="moose_classes.html#CompartmentBase.getVm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IntFire.getVm">(IntFire method)</a>, <a href="moose_builtins.html#IntFire.getVm">[1]</a>, <a href="moose_classes.html#IntFire.getVm">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getVm">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getVm">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getVm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.getVm">(MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.getVm">[1]</a>, <a href="moose_classes.html#MarkovChannel.getVm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.getVm">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.getVm">[1]</a>, <a href="moose_classes.html#MarkovRateTable.getVm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HSolve.getVMax">getVMax() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getVMax">[1]</a>, <a href="moose_classes.html#HSolve.getVMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.getVmax">getVmax() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.getVmax">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.getVmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.getVMin">getVMin() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.getVMin">[1]</a>, <a href="moose_classes.html#HSolve.getVMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#getVolume">getVolume()</a>, <a href="moose_builtins.html#getVolume">[1]</a>, <a href="moose_classes.html#getVolume">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ChemCompt.getVolume">(ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.getVolume">[1]</a>, <a href="moose_classes.html#ChemCompt.getVolume">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.getVolume">(MeshEntry method)</a>, <a href="tmp.html#MeshEntry.getVolume">[1]</a>, <a href="moose_builtins.html#MeshEntry.getVolume">[2]</a>, <a href="moose_builtins.html#MeshEntry.getVolume">[3]</a>, <a href="moose_classes.html#MeshEntry.getVolume">[4]</a>, <a href="moose_classes.html#MeshEntry.getVolume">[5]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.getVolume">(PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.getVolume">[1]</a>, <a href="moose_classes.html#PoolBase.getVolume">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChemCompt.getVoxelVolume">getVoxelVolume() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.getVoxelVolume">[1]</a>, <a href="moose_classes.html#ChemCompt.getVoxelVolume">[2]</a> - </dt> - - - <dt><a href="tmp.html#Synapse.getWeight">getWeight() (Synapse method)</a>, <a href="moose_builtins.html#Synapse.getWeight">[1]</a>, <a href="moose_classes.html#Synapse.getWeight">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.getWidth">getWidth() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.getWidth">[1]</a>, <a href="moose_classes.html#PulseGen.getWidth">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.getX">getX() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.getX">[1]</a>, <a href="moose_classes.html#Annotator.getX">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.getX">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getX">[1]</a>, <a href="moose_classes.html#CompartmentBase.getX">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.getX">(Func method)</a>, <a href="moose_builtins.html#Func.getX">[1]</a>, <a href="moose_classes.html#Func.getX">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getX">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getX">[1]</a>, <a href="moose_classes.html#HHChannel.getX">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.getX">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getX">[1]</a>, <a href="moose_classes.html#HHChannel2D.getX">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getX">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getX">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getX">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.getX0">getX0() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getX0">[1]</a>, <a href="moose_classes.html#CompartmentBase.getX0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.getX0">(CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getX0">[1]</a>, <a href="moose_classes.html#CubeMesh.getX0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getX0">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getX0">[1]</a>, <a href="moose_classes.html#CylMesh.getX0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.getX1">getX1() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getX1">[1]</a>, <a href="moose_classes.html#CubeMesh.getX1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.getX1">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getX1">[1]</a>, <a href="moose_classes.html#CylMesh.getX1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.getXdivs">getXdivs() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getXdivs">[1]</a>, <a href="moose_classes.html#Interpol2D.getXdivs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.getXdivs">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getXdivs">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getXdivs">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.getXdivs">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.getXdivs">[1]</a>, <a href="moose_classes.html#VectorTable.getXdivs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.getXdivsA">getXdivsA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getXdivsA">[1]</a>, <a href="moose_classes.html#HHGate2D.getXdivsA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.getXdivsB">getXdivsB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getXdivsB">[1]</a>, <a href="moose_classes.html#HHGate2D.getXdivsB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.getXindex">getXindex() (HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getXindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.getXindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.getXmax">getXmax() (Interpol method)</a>, <a href="moose_builtins.html#Interpol.getXmax">[1]</a>, <a href="moose_classes.html#Interpol.getXmax">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.getXmax">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getXmax">[1]</a>, <a href="moose_classes.html#Interpol2D.getXmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.getXmax">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getXmax">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getXmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.getXmax">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.getXmax">[1]</a>, <a href="moose_classes.html#VectorTable.getXmax">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.getXmaxA">getXmaxA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getXmaxA">[1]</a>, <a href="moose_classes.html#HHGate2D.getXmaxA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.getXmaxB">getXmaxB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getXmaxB">[1]</a>, <a href="moose_classes.html#HHGate2D.getXmaxB">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.getXmin">getXmin() (Interpol method)</a>, <a href="moose_builtins.html#Interpol.getXmin">[1]</a>, <a href="moose_classes.html#Interpol.getXmin">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.getXmin">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getXmin">[1]</a>, <a href="moose_classes.html#Interpol2D.getXmin">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.getXmin">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getXmin">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getXmin">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.getXmin">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.getXmin">[1]</a>, <a href="moose_classes.html#VectorTable.getXmin">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.getXminA">getXminA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getXminA">[1]</a>, <a href="moose_classes.html#HHGate2D.getXminA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.getXminB">getXminB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getXminB">[1]</a>, <a href="moose_classes.html#HHGate2D.getXminB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getXpower">getXpower() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getXpower">[1]</a>, <a href="moose_classes.html#HHChannel.getXpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.getXpower">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getXpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.getXpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getXpower">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getXpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getXpower">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Annotator.getY">getY() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.getY">[1]</a>, <a href="moose_classes.html#Annotator.getY">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.getY">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getY">[1]</a>, <a href="moose_classes.html#CompartmentBase.getY">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.getY">(Func method)</a>, <a href="moose_builtins.html#Func.getY">[1]</a>, <a href="moose_classes.html#Func.getY">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getY">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getY">[1]</a>, <a href="moose_classes.html#HHChannel.getY">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.getY">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getY">[1]</a>, <a href="moose_classes.html#HHChannel2D.getY">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.getY">(Interpol method)</a>, <a href="moose_builtins.html#Interpol.getY">[1]</a>, <a href="moose_classes.html#Interpol.getY">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.getY">(TableBase method)</a>, <a href="moose_builtins.html#TableBase.getY">[1]</a>, <a href="moose_classes.html#TableBase.getY">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getY">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getY">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getY">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.getY0">getY0() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getY0">[1]</a>, <a href="moose_classes.html#CompartmentBase.getY0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.getY0">(CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getY0">[1]</a>, <a href="moose_classes.html#CubeMesh.getY0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getY0">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getY0">[1]</a>, <a href="moose_classes.html#CylMesh.getY0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.getY1">getY1() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getY1">[1]</a>, <a href="moose_classes.html#CubeMesh.getY1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.getY1">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getY1">[1]</a>, <a href="moose_classes.html#CylMesh.getY1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.getYdivs">getYdivs() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getYdivs">[1]</a>, <a href="moose_classes.html#Interpol2D.getYdivs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.getYdivs">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getYdivs">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getYdivs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.getYdivsA">getYdivsA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getYdivsA">[1]</a>, <a href="moose_classes.html#HHGate2D.getYdivsA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.getYdivsB">getYdivsB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getYdivsB">[1]</a>, <a href="moose_classes.html#HHGate2D.getYdivsB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.getYindex">getYindex() (HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getYindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.getYindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.getYmax">getYmax() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getYmax">[1]</a>, <a href="moose_classes.html#Interpol2D.getYmax">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.getYmax">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getYmax">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getYmax">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.getYmaxA">getYmaxA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getYmaxA">[1]</a>, <a href="moose_classes.html#HHGate2D.getYmaxA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.getYmaxB">getYmaxB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getYmaxB">[1]</a>, <a href="moose_classes.html#HHGate2D.getYmaxB">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.getYmin">getYmin() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getYmin">[1]</a>, <a href="moose_classes.html#Interpol2D.getYmin">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.getYmin">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.getYmin">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.getYmin">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.getYminA">getYminA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getYminA">[1]</a>, <a href="moose_classes.html#HHGate2D.getYminA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.getYminB">getYminB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.getYminB">[1]</a>, <a href="moose_classes.html#HHGate2D.getYminB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getYpower">getYpower() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getYpower">[1]</a>, <a href="moose_classes.html#HHChannel.getYpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.getYpower">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getYpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.getYpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getYpower">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getYpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getYpower">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Annotator.getZ">getZ() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.getZ">[1]</a>, <a href="moose_classes.html#Annotator.getZ">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.getZ">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getZ">[1]</a>, <a href="moose_classes.html#CompartmentBase.getZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.getZ">(Func method)</a>, <a href="moose_builtins.html#Func.getZ">[1]</a>, <a href="moose_classes.html#Func.getZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getZ">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getZ">[1]</a>, <a href="moose_classes.html#HHChannel.getZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.getZ">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getZ">[1]</a>, <a href="moose_classes.html#HHChannel2D.getZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.getZ">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.getZ">[1]</a>, <a href="moose_classes.html#Interpol2D.getZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getZ">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getZ">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getZ">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.getZ0">getZ0() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.getZ0">[1]</a>, <a href="moose_classes.html#CompartmentBase.getZ0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.getZ0">(CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getZ0">[1]</a>, <a href="moose_classes.html#CubeMesh.getZ0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.getZ0">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getZ0">[1]</a>, <a href="moose_classes.html#CylMesh.getZ0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.getZ1">getZ1() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.getZ1">[1]</a>, <a href="moose_classes.html#CubeMesh.getZ1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.getZ1">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.getZ1">[1]</a>, <a href="moose_classes.html#CylMesh.getZ1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel2D.getZindex">getZindex() (HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getZindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.getZindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.getZk">getZk() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.getZk">[1]</a>, <a href="moose_classes.html#MgBlock.getZk">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.getZpower">getZpower() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.getZpower">[1]</a>, <a href="moose_classes.html#HHChannel.getZpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.getZpower">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.getZpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.getZpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.getZpower">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.getZpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.getZpower">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChanBase.ghk">ghk (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.ghk">[1]</a>, <a href="moose_classes.html#ChanBase.ghk">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.ghk">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.ghk">[1]</a>, <a href="moose_classes.html#SynChanBase.ghk">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Gk">Gk</a>, <a href="moose_builtins.html#Gk">[1]</a>, <a href="moose_classes.html#Gk">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ChanBase.Gk">(ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.Gk">[1]</a>, <a href="moose_classes.html#ChanBase.Gk">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.Gk">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.Gk">[1]</a>, <a href="moose_classes.html#SynChanBase.Gk">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.Gk">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Gk">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Gk">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Group">Group (built-in class)</a>, <a href="moose_builtins.html#Group">[1]</a>, <a href="moose_classes.html#Group">[2]</a> - </dt> - - - <dt><a href="tmp.html#Group.group">group (Group attribute)</a>, <a href="moose_builtins.html#Group.group">[1]</a>, <a href="moose_classes.html#Group.group">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve">Gsolve (built-in class)</a>, <a href="moose_builtins.html#Gsolve">[1]</a>, <a href="moose_classes.html#Gsolve">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="H">H</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CompartmentBase.handleAxial">handleAxial() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.handleAxial">[1]</a>, <a href="moose_classes.html#CompartmentBase.handleAxial">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.handleChannel">handleChannel() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.handleChannel">[1]</a>, <a href="moose_classes.html#CompartmentBase.handleChannel">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.handleChannel">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.handleChannel">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.handleChannel">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovChannel.handleLigandConc">handleLigandConc() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.handleLigandConc">[1]</a>, <a href="moose_classes.html#MarkovChannel.handleLigandConc">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovRateTable.handleLigandConc">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.handleLigandConc">[1]</a>, <a href="moose_classes.html#MarkovRateTable.handleLigandConc">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PoolBase.handleMolWt">handleMolWt() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.handleMolWt">[1]</a>, <a href="moose_classes.html#PoolBase.handleMolWt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Species.handleMolWtRequest">handleMolWtRequest() (Species method)</a>, <a href="moose_builtins.html#Species.handleMolWtRequest">[1]</a>, <a href="moose_classes.html#Species.handleMolWtRequest">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.handleQ">handleQ() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.handleQ">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.handleQ">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.handleRaxial">handleRaxial() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.handleRaxial">[1]</a>, <a href="moose_classes.html#CompartmentBase.handleRaxial">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.handleState">handleState() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.handleState">[1]</a>, <a href="moose_classes.html#MarkovChannel.handleState">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#MarkovRateTable.handleVm">handleVm() (MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.handleVm">[1]</a>, <a href="moose_classes.html#MarkovRateTable.handleVm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.handleVm">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.handleVm">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.handleVm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SpikeGen.hasFired">hasFired (SpikeGen attribute)</a>, <a href="moose_builtins.html#SpikeGen.hasFired">[1]</a>, <a href="moose_classes.html#SpikeGen.hasFired">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel">HHChannel (built-in class)</a>, <a href="moose_builtins.html#HHChannel">[1]</a>, <a href="moose_classes.html#HHChannel">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D">HHChannel2D (built-in class)</a>, <a href="moose_builtins.html#HHChannel2D">[1]</a>, <a href="moose_classes.html#HHChannel2D">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate">HHGate (built-in class)</a>, <a href="moose_builtins.html#HHGate">[1]</a>, <a href="moose_classes.html#HHGate">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D">HHGate2D (built-in class)</a>, <a href="moose_builtins.html#HHGate2D">[1]</a>, <a href="moose_classes.html#HHGate2D">[2]</a> - </dt> - - - <dt><a href="tmp.html#hillPump">hillPump()</a>, <a href="moose_builtins.html#hillPump">[1]</a>, <a href="moose_classes.html#hillPump">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve">HSolve (built-in class)</a>, <a href="moose_builtins.html#HSolve">[1]</a>, <a href="moose_classes.html#HSolve">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="I">I</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#OneToAllMsg.i1">i1 (OneToAllMsg attribute)</a>, <a href="moose_builtins.html#OneToAllMsg.i1">[1]</a>, <a href="moose_classes.html#OneToAllMsg.i1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SingleMsg.i1">(SingleMsg attribute)</a>, <a href="moose_builtins.html#SingleMsg.i1">[1]</a>, <a href="moose_classes.html#SingleMsg.i1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SingleMsg.i2">i2 (SingleMsg attribute)</a>, <a href="moose_builtins.html#SingleMsg.i2">[1]</a>, <a href="moose_classes.html#SingleMsg.i2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.icon">icon (Annotator attribute)</a>, <a href="moose_builtins.html#Annotator.icon">[1]</a>, <a href="moose_classes.html#Annotator.icon">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.Ik">Ik (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.Ik">[1]</a>, <a href="moose_classes.html#ChanBase.Ik">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MgBlock.Ik">(MgBlock attribute)</a>, <a href="moose_builtins.html#MgBlock.Ik">[1]</a>, <a href="moose_classes.html#MgBlock.Ik">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.Ik">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.Ik">[1]</a>, <a href="moose_classes.html#SynChanBase.Ik">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.Ik">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Ik">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Ik">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChanBase.IkOut">IkOut (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.IkOut">[1]</a>, <a href="moose_classes.html#ChanBase.IkOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.IkOut">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.IkOut">[1]</a>, <a href="moose_classes.html#SynChanBase.IkOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.Im">Im (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.Im">[1]</a>, <a href="moose_classes.html#CompartmentBase.Im">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.Im">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.Im">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.Im">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CaConc.increase">increase() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.increase">[1]</a>, <a href="moose_classes.html#CaConc.increase">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.increase">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.increase">[1]</a>, <a href="moose_classes.html#ZombieCaConc.increase">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Pool.increment">increment() (Pool method)</a>, <a href="moose_builtins.html#Pool.increment">[1]</a>, <a href="moose_classes.html#Pool.increment">[2]</a> - </dt> - - - <dt><a href="tmp.html#influx">influx()</a>, <a href="moose_builtins.html#influx">[1]</a>, <a href="moose_classes.html#influx">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.init">init (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.init">[1]</a>, <a href="moose_classes.html#CompartmentBase.init">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.init">init() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.init">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.init">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovRateTable.init">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.init">[1]</a>, <a href="moose_classes.html#MarkovRateTable.init">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.init">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.init">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.init">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovChannel.initialState">initialState (MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.initialState">[1]</a>, <a href="moose_classes.html#MarkovChannel.initialState">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.initialState">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.initialState">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.initialState">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.initProc">initProc() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.initProc">[1]</a>, <a href="moose_classes.html#CompartmentBase.initProc">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.initReinit">initReinit() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.initReinit">[1]</a>, <a href="moose_classes.html#CompartmentBase.initReinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.initU">initU (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.initU">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.initU">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.initVm">initVm (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.initVm">[1]</a>, <a href="moose_classes.html#CompartmentBase.initVm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.initVm">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.initVm">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.initVm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.inject">inject (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.inject">[1]</a>, <a href="moose_classes.html#CompartmentBase.inject">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.inject">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.inject">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.inject">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.inject">(RC attribute)</a>, <a href="moose_builtins.html#RC.inject">[1]</a>, <a href="moose_classes.html#RC.inject">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#RC.injectIn">injectIn() (RC method)</a>, <a href="moose_builtins.html#RC.injectIn">[1]</a>, <a href="moose_classes.html#RC.injectIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.injectMsg">injectMsg() (CompartmentBase method)</a>, <a href="tmp.html#CompartmentBase.injectMsg">[1]</a>, <a href="moose_builtins.html#CompartmentBase.injectMsg">[2]</a>, <a href="moose_builtins.html#CompartmentBase.injectMsg">[3]</a>, <a href="moose_classes.html#CompartmentBase.injectMsg">[4]</a>, <a href="moose_classes.html#CompartmentBase.injectMsg">[5]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.injectMsg">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.injectMsg">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.injectMsg">[2]</a> - </dt> - - </dl></dd> - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#innerArea">innerArea</a>, <a href="moose_builtins.html#innerArea">[1]</a>, <a href="moose_classes.html#innerArea">[2]</a> - </dt> - - - <dt><a href="tmp.html#innerDif">innerDif</a>, <a href="moose_builtins.html#innerDif">[1]</a>, <a href="moose_classes.html#innerDif">[2]</a> - </dt> - - - <dt><a href="tmp.html#innerDifSourceOut">innerDifSourceOut</a>, <a href="moose_builtins.html#innerDifSourceOut">[1]</a>, <a href="moose_classes.html#innerDifSourceOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.input">input() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.input">[1]</a>, <a href="moose_classes.html#Adaptor.input">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#FuncBase.input">(FuncBase method)</a>, <a href="moose_builtins.html#FuncBase.input">[1]</a>, <a href="moose_classes.html#FuncBase.input">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncPool.input">(FuncPool method)</a>, <a href="moose_builtins.html#FuncPool.input">[1]</a>, <a href="moose_classes.html#FuncPool.input">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.input">(Interpol method)</a>, <a href="moose_builtins.html#Interpol.input">[1]</a>, <a href="moose_classes.html#Interpol.input">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.input">(PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.input">[1]</a>, <a href="moose_classes.html#PulseGen.input">[2]</a> - </dt> - - - <dt><a href="tmp.html#Table.input">(Table method)</a>, <a href="moose_builtins.html#Table.input">[1]</a>, <a href="moose_classes.html#Table.input">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieFuncPool.input">(ZombieFuncPool method)</a>, <a href="moose_builtins.html#ZombieFuncPool.input">[1]</a>, <a href="moose_classes.html#ZombieFuncPool.input">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Adaptor.inputOffset">inputOffset (Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.inputOffset">[1]</a>, <a href="moose_classes.html#Adaptor.inputOffset">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.instant">instant (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.instant">[1]</a>, <a href="moose_classes.html#HHChannel.instant">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.instant">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.instant">[1]</a>, <a href="moose_classes.html#HHChannel2D.instant">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.instant">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.instant">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.instant">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovRateTable.instratesOut">instratesOut (MarkovRateTable attribute)</a>, <a href="moose_builtins.html#MarkovRateTable.instratesOut">[1]</a>, <a href="moose_classes.html#MarkovRateTable.instratesOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#integral">integral</a>, <a href="moose_builtins.html#integral">[1]</a>, <a href="moose_classes.html#integral">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.internalDt">internalDt (MarkovGslSolver attribute)</a>, <a href="moose_builtins.html#MarkovGslSolver.internalDt">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.internalDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol">Interpol (built-in class)</a>, <a href="moose_builtins.html#Interpol">[1]</a>, <a href="moose_classes.html#Interpol">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D">Interpol2D (built-in class)</a>, <a href="moose_builtins.html#Interpol2D">[1]</a>, <a href="moose_classes.html#Interpol2D">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire">IntFire (built-in class)</a>, <a href="moose_builtins.html#IntFire">[1]</a>, <a href="moose_classes.html#IntFire">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.invdx">invdx (MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.invdx">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.invdx">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VectorTable.invdx">(VectorTable attribute)</a>, <a href="moose_builtins.html#VectorTable.invdx">[1]</a>, <a href="moose_classes.html#VectorTable.invdx">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovSolverBase.invdy">invdy (MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.invdy">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.invdy">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.isInitialized">isInitialized (MarkovGslSolver attribute)</a>, <a href="moose_builtins.html#MarkovGslSolver.isInitialized">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.isInitialized">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SteadyState.isInitialized">(SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.isInitialized">[1]</a>, <a href="moose_classes.html#SteadyState.isInitialized">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.isRunning">isRunning (Clock attribute)</a>, <a href="moose_builtins.html#Clock.isRunning">[1]</a>, <a href="moose_classes.html#Clock.isRunning">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.isToroid">isToroid (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.isToroid">[1]</a>, <a href="moose_classes.html#CubeMesh.isToroid">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn">IzhikevichNrn (built-in class)</a>, <a href="moose_builtins.html#IzhikevichNrn">[1]</a>, <a href="moose_classes.html#IzhikevichNrn">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="K">K</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CplxEnzBase.k1">k1 (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.k1">[1]</a>, <a href="moose_classes.html#CplxEnzBase.k1">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.k2">k2 (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.k2">[1]</a>, <a href="moose_classes.html#CplxEnzBase.k2">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.k3">k3 (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.k3">[1]</a>, <a href="moose_classes.html#CplxEnzBase.k3">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.Kb">Kb (ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.Kb">[1]</a>, <a href="moose_classes.html#ReacBase.Kb">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.kcat">kcat (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.kcat">[1]</a>, <a href="moose_classes.html#EnzBase.kcat">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.Kf">Kf (ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.Kf">[1]</a>, <a href="moose_classes.html#ReacBase.Kf">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#EnzBase.Km">Km (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.Km">[1]</a>, <a href="moose_classes.html#EnzBase.Km">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.KMg_A">KMg_A (MgBlock attribute)</a>, <a href="moose_builtins.html#MgBlock.KMg_A">[1]</a>, <a href="moose_classes.html#MgBlock.KMg_A">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.KMg_B">KMg_B (MgBlock attribute)</a>, <a href="moose_builtins.html#MgBlock.KMg_B">[1]</a>, <a href="moose_classes.html#MgBlock.KMg_B">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve">Ksolve (built-in class)</a>, <a href="moose_builtins.html#Ksolve">[1]</a>, <a href="moose_classes.html#Ksolve">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.ksolve">ksolve (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.ksolve">[1]</a>, <a href="moose_classes.html#Stoich.ksolve">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="L">L</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#MarkovChannel.labels">labels (MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.labels">[1]</a>, <a href="moose_classes.html#MarkovChannel.labels">[2]</a> - </dt> - - - <dt><a href="tmp.html#leak">leak</a>, <a href="moose_builtins.html#leak">[1]</a>, <a href="moose_classes.html#leak">[2]</a> - </dt> - - - <dt><a href="tmp.html#Leakage">Leakage (built-in class)</a>, <a href="moose_builtins.html#Leakage">[1]</a>, <a href="moose_classes.html#Leakage">[2]</a> - </dt> - - - <dt><a href="tmp.html#length">length</a>, <a href="moose_builtins.html#length">[1]</a>, <a href="moose_classes.html#length">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.length">(CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.length">[1]</a>, <a href="moose_classes.html#CompartmentBase.length">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.level">level (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.level">[1]</a>, <a href="moose_classes.html#PulseGen.level">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.levelIn">levelIn() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.levelIn">[1]</a>, <a href="moose_classes.html#PulseGen.levelIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.ligandConc">ligandConc (MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.ligandConc">[1]</a>, <a href="moose_classes.html#MarkovChannel.ligandConc">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovRateTable.ligandConc">(MarkovRateTable attribute)</a>, <a href="moose_builtins.html#MarkovRateTable.ligandConc">[1]</a>, <a href="moose_classes.html#MarkovRateTable.ligandConc">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovSolverBase.ligandConc">ligandConc() (MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.ligandConc">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.ligandConc">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.linearTransform">linearTransform() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.linearTransform">[1]</a>, <a href="moose_classes.html#TableBase.linearTransform">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.loadCSV">loadCSV() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.loadCSV">[1]</a>, <a href="moose_classes.html#TableBase.loadCSV">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#TableBase.loadXplot">loadXplot() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.loadXplot">[1]</a>, <a href="moose_classes.html#TableBase.loadXplot">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.loadXplotRange">loadXplotRange() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.loadXplotRange">[1]</a>, <a href="moose_classes.html#TableBase.loadXplotRange">[2]</a> - </dt> - - - <dt><a href="tmp.html#Long">Long (built-in class)</a>, <a href="moose_builtins.html#Long">[1]</a>, <a href="moose_classes.html#Long">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.lookup">lookup() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.lookup">[1]</a>, <a href="moose_classes.html#Interpol2D.lookup">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.lookupindex">lookupindex (VectorTable attribute)</a>, <a href="moose_builtins.html#VectorTable.lookupindex">[1]</a>, <a href="moose_classes.html#VectorTable.lookupindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.lookupOut">lookupOut (Interpol attribute)</a>, <a href="moose_builtins.html#Interpol.lookupOut">[1]</a>, <a href="moose_classes.html#Interpol.lookupOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.lookupOut">(Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.lookupOut">[1]</a>, <a href="moose_classes.html#Interpol2D.lookupOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.lookupReturn2D">lookupReturn2D (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.lookupReturn2D">[1]</a>, <a href="moose_classes.html#Interpol2D.lookupReturn2D">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.lookupvalue">lookupvalue (VectorTable attribute)</a>, <a href="moose_builtins.html#VectorTable.lookupvalue">[1]</a>, <a href="moose_classes.html#VectorTable.lookupvalue">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.loopTime">loopTime (StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.loopTime">[1]</a>, <a href="moose_classes.html#StimulusTable.loopTime">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="M">M</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#MarkovChannel">MarkovChannel (built-in class)</a>, <a href="moose_builtins.html#MarkovChannel">[1]</a>, <a href="moose_classes.html#MarkovChannel">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver">MarkovGslSolver (built-in class)</a>, <a href="moose_builtins.html#MarkovGslSolver">[1]</a>, <a href="moose_classes.html#MarkovGslSolver">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable">MarkovRateTable (built-in class)</a>, <a href="moose_builtins.html#MarkovRateTable">[1]</a>, <a href="moose_classes.html#MarkovRateTable">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolver">MarkovSolver (built-in class)</a>, <a href="moose_builtins.html#MarkovSolver">[1]</a>, <a href="moose_classes.html#MarkovSolver">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase">MarkovSolverBase (built-in class)</a>, <a href="moose_builtins.html#MarkovSolverBase">[1]</a>, <a href="moose_classes.html#MarkovSolverBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc">MathFunc (built-in class)</a>, <a href="moose_builtins.html#MathFunc">[1]</a>, <a href="moose_classes.html#MathFunc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc.mathML">mathML (MathFunc attribute)</a>, <a href="moose_builtins.html#MathFunc.mathML">[1]</a>, <a href="moose_classes.html#MathFunc.mathML">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.matrixEntry">matrixEntry (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.matrixEntry">[1]</a>, <a href="moose_classes.html#Stoich.matrixEntry">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.max">max (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.max">[1]</a>, <a href="moose_classes.html#HHGate.max">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.maxIter">maxIter (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.maxIter">[1]</a>, <a href="moose_classes.html#SteadyState.maxIter">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.me">me (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.me">[1]</a>, <a href="moose_classes.html#Neutral.me">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.mean">mean (Stats attribute)</a>, <a href="moose_builtins.html#Stats.mean">[1]</a>, <a href="moose_classes.html#Stats.mean">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.mesh">mesh (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.mesh">[1]</a>, <a href="moose_classes.html#MeshEntry.mesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry">MeshEntry (built-in class)</a>, <a href="moose_builtins.html#MeshEntry">[1]</a>, <a href="moose_classes.html#MeshEntry">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.meshToSpace">meshToSpace (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.meshToSpace">[1]</a>, <a href="moose_classes.html#CubeMesh.meshToSpace">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.meshType">meshType (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.meshType">[1]</a>, <a href="moose_classes.html#MeshEntry.meshType">[2]</a> - </dt> - - - <dt><a href="tmp.html#method">method</a>, <a href="moose_builtins.html#method">[1]</a>, <a href="moose_classes.html#method">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Ksolve.method">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.method">[1]</a>, <a href="moose_classes.html#Ksolve.method">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.method">(MarkovGslSolver attribute)</a>, <a href="moose_builtins.html#MarkovGslSolver.method">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.method">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MgBlock">MgBlock (built-in class)</a>, <a href="moose_builtins.html#MgBlock">[1]</a>, <a href="moose_classes.html#MgBlock">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#HHGate.min">min (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.min">[1]</a>, <a href="moose_classes.html#HHGate.min">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.mInfinity">mInfinity (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.mInfinity">[1]</a>, <a href="moose_classes.html#HHGate.mInfinity">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.minusIn">minusIn() (DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.minusIn">[1]</a>, <a href="moose_classes.html#DiffAmp.minusIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#MMenz">MMenz (built-in class)</a>, <a href="moose_builtins.html#MMenz">[1]</a>, <a href="moose_classes.html#MMenz">[2]</a> - </dt> - - - <dt><a href="tmp.html#mmPump">mmPump()</a>, <a href="moose_builtins.html#mmPump">[1]</a>, <a href="moose_classes.html#mmPump">[2]</a> - </dt> - - - <dt><a href="tmp.html#mode">mode</a>, <a href="moose_builtins.html#mode">[1]</a>, <a href="moose_classes.html#mode">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.mode">(VClamp attribute)</a>, <a href="moose_builtins.html#VClamp.mode">[1]</a>, <a href="moose_classes.html#VClamp.mode">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SynChan.modulator">modulator() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.modulator">[1]</a>, <a href="moose_classes.html#SynChan.modulator">[2]</a> - </dt> - - - <dt><a href="tmp.html#Species.molWt">molWt (Species attribute)</a>, <a href="moose_builtins.html#Species.molWt">[1]</a>, <a href="moose_classes.html#Species.molWt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Species.molWtOut">molWtOut (Species attribute)</a>, <a href="moose_builtins.html#Species.molWtOut">[1]</a>, <a href="moose_classes.html#Species.molWtOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.motorConst">motorConst (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.motorConst">[1]</a>, <a href="moose_classes.html#PoolBase.motorConst">[2]</a> - </dt> - - - <dt><a href="tmp.html#Shell.move">move() (Shell method)</a>, <a href="moose_builtins.html#Shell.move">[1]</a>, <a href="moose_classes.html#Shell.move">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg">Msg (built-in class)</a>, <a href="moose_builtins.html#Msg">[1]</a>, <a href="moose_classes.html#Msg">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.msgDestFunctions">msgDestFunctions (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.msgDestFunctions">[1]</a>, <a href="moose_classes.html#Neutral.msgDestFunctions">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.msgDests">msgDests (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.msgDests">[1]</a>, <a href="moose_classes.html#Neutral.msgDests">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.msgIn">msgIn (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.msgIn">[1]</a>, <a href="moose_classes.html#Neutral.msgIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.msgOut">msgOut (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.msgOut">[1]</a>, <a href="moose_classes.html#Neutral.msgOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Mstring">Mstring (built-in class)</a>, <a href="moose_builtins.html#Mstring">[1]</a>, <a href="moose_classes.html#Mstring">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster.myNode">myNode (PostMaster attribute)</a>, <a href="moose_builtins.html#PostMaster.myNode">[1]</a>, <a href="moose_classes.html#PostMaster.myNode">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="N">N</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#PoolBase.n">n (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.n">[1]</a>, <a href="moose_classes.html#PoolBase.n">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.name">name (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.name">[1]</a>, <a href="moose_classes.html#Neutral.name">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.neighbors">neighbors (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.neighbors">[1]</a>, <a href="moose_classes.html#MeshEntry.neighbors">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Neutral.neighbors">(Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.neighbors">[1]</a>, <a href="moose_classes.html#Neutral.neighbors">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Nernst">Nernst (built-in class)</a>, <a href="moose_builtins.html#Nernst">[1]</a>, <a href="moose_classes.html#Nernst">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh">NeuroMesh (built-in class)</a>, <a href="moose_builtins.html#NeuroMesh">[1]</a>, <a href="moose_classes.html#NeuroMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neuron">Neuron (built-in class)</a>, <a href="moose_builtins.html#Neuron">[1]</a>, <a href="moose_classes.html#Neuron">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral">Neutral (built-in class)</a>, <a href="moose_builtins.html#Neutral">[1]</a>, <a href="moose_classes.html#Neutral">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.nInit">nInit (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.nInit">[1]</a>, <a href="moose_classes.html#PoolBase.nInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.nIter">nIter (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.nIter">[1]</a>, <a href="moose_classes.html#SteadyState.nIter">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.nNegEigenvalues">nNegEigenvalues (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.nNegEigenvalues">[1]</a>, <a href="moose_classes.html#SteadyState.nNegEigenvalues">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.normalizeWeights">normalizeWeights (SynChan attribute)</a>, <a href="moose_builtins.html#SynChan.normalizeWeights">[1]</a>, <a href="moose_classes.html#SynChan.normalizeWeights">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.notes">notes (Annotator attribute)</a>, <a href="moose_builtins.html#Annotator.notes">[1]</a>, <a href="moose_classes.html#Annotator.notes">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.nOut">nOut (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.nOut">[1]</a>, <a href="moose_classes.html#PoolBase.nOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.nPosEigenvalues">nPosEigenvalues (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.nPosEigenvalues">[1]</a>, <a href="moose_classes.html#SteadyState.nPosEigenvalues">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.nsteps">nsteps (Clock attribute)</a>, <a href="moose_builtins.html#Clock.nsteps">[1]</a>, <a href="moose_classes.html#Clock.nsteps">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.num">num (Stats attribute)</a>, <a href="moose_builtins.html#Stats.num">[1]</a>, <a href="moose_classes.html#Stats.num">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.numAllPools">numAllPools (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.numAllPools">[1]</a>, <a href="moose_classes.html#Stoich.numAllPools">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.numAllVoxels">numAllVoxels (Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.numAllVoxels">[1]</a>, <a href="moose_classes.html#Dsolve.numAllVoxels">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.numAllVoxels">(Gsolve attribute)</a>, <a href="moose_builtins.html#Gsolve.numAllVoxels">[1]</a>, <a href="moose_classes.html#Gsolve.numAllVoxels">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.numAllVoxels">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.numAllVoxels">[1]</a>, <a href="moose_classes.html#Ksolve.numAllVoxels">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SparseMsg.numColumns">numColumns (SparseMsg attribute)</a>, <a href="moose_builtins.html#SparseMsg.numColumns">[1]</a>, <a href="moose_classes.html#SparseMsg.numColumns">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.numData">numData (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.numData">[1]</a>, <a href="moose_classes.html#Neutral.numData">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.numDiffCompts">numDiffCompts (CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.numDiffCompts">[1]</a>, <a href="moose_classes.html#CylMesh.numDiffCompts">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#NeuroMesh.numDiffCompts">(NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.numDiffCompts">[1]</a>, <a href="moose_classes.html#NeuroMesh.numDiffCompts">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChemCompt.numDimensions">numDimensions (ChemCompt attribute)</a>, <a href="moose_builtins.html#ChemCompt.numDimensions">[1]</a>, <a href="moose_classes.html#ChemCompt.numDimensions">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.numEntries">numEntries (SparseMsg attribute)</a>, <a href="moose_builtins.html#SparseMsg.numEntries">[1]</a>, <a href="moose_classes.html#SparseMsg.numEntries">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Neutral.numField">numField (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.numField">[1]</a>, <a href="moose_classes.html#Neutral.numField">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.numKb">numKb (ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.numKb">[1]</a>, <a href="moose_classes.html#ReacBase.numKb">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.numKf">numKf (ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.numKf">[1]</a>, <a href="moose_classes.html#ReacBase.numKf">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.numKm">numKm (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.numKm">[1]</a>, <a href="moose_classes.html#EnzBase.numKm">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.numLocalVoxels">numLocalVoxels (Gsolve attribute)</a>, <a href="moose_builtins.html#Gsolve.numLocalVoxels">[1]</a>, <a href="moose_classes.html#Gsolve.numLocalVoxels">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Ksolve.numLocalVoxels">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.numLocalVoxels">[1]</a>, <a href="moose_classes.html#Ksolve.numLocalVoxels">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PostMaster.numNodes">numNodes (PostMaster attribute)</a>, <a href="moose_builtins.html#PostMaster.numNodes">[1]</a>, <a href="moose_classes.html#PostMaster.numNodes">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.numOpenStates">numOpenStates (MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.numOpenStates">[1]</a>, <a href="moose_classes.html#MarkovChannel.numOpenStates">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.numPools">numPools (Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.numPools">[1]</a>, <a href="moose_classes.html#Dsolve.numPools">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.numPools">(Gsolve attribute)</a>, <a href="moose_builtins.html#Gsolve.numPools">[1]</a>, <a href="moose_classes.html#Gsolve.numPools">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.numPools">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.numPools">[1]</a>, <a href="moose_classes.html#Ksolve.numPools">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ReacBase.numProducts">numProducts (ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.numProducts">[1]</a>, <a href="moose_classes.html#ReacBase.numProducts">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.numRates">numRates (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.numRates">[1]</a>, <a href="moose_classes.html#Stoich.numRates">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.numRows">numRows (SparseMsg attribute)</a>, <a href="moose_builtins.html#SparseMsg.numRows">[1]</a>, <a href="moose_classes.html#SparseMsg.numRows">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.numSegments">numSegments (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.numSegments">[1]</a>, <a href="moose_classes.html#NeuroMesh.numSegments">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.numStates">numStates (MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.numStates">[1]</a>, <a href="moose_classes.html#MarkovChannel.numStates">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.numSubstrates">numSubstrates (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.numSubstrates">[1]</a>, <a href="moose_classes.html#EnzBase.numSubstrates">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.numSubstrates">(ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.numSubstrates">[1]</a>, <a href="moose_classes.html#ReacBase.numSubstrates">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SynHandler.numSynapses">numSynapses (SynHandler attribute)</a>, <a href="moose_builtins.html#SynHandler.numSynapses">[1]</a>, <a href="moose_classes.html#SynHandler.numSynapses">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.numTicks">numTicks (Clock attribute)</a>, <a href="moose_builtins.html#Clock.numTicks">[1]</a>, <a href="moose_classes.html#Clock.numTicks">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.numVarPools">numVarPools (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.numVarPools">[1]</a>, <a href="moose_classes.html#SteadyState.numVarPools">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Stoich.numVarPools">(Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.numVarPools">[1]</a>, <a href="moose_classes.html#Stoich.numVarPools">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Dsolve.numVoxels">numVoxels (Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.numVoxels">[1]</a>, <a href="moose_classes.html#Dsolve.numVoxels">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.nVec">nVec (Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.nVec">[1]</a>, <a href="moose_classes.html#Dsolve.nVec">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.nVec">(Gsolve attribute)</a>, <a href="moose_builtins.html#Gsolve.nVec">[1]</a>, <a href="moose_classes.html#Gsolve.nVec">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.nVec">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.nVec">[1]</a>, <a href="moose_classes.html#Ksolve.nVec">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.nx">nx (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.nx">[1]</a>, <a href="moose_classes.html#CubeMesh.nx">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.ny">ny (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.ny">[1]</a>, <a href="moose_classes.html#CubeMesh.ny">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.nz">nz (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.nz">[1]</a>, <a href="moose_classes.html#CubeMesh.nz">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="O">O</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#OneToAllMsg">OneToAllMsg (built-in class)</a>, <a href="moose_builtins.html#OneToAllMsg">[1]</a>, <a href="moose_classes.html#OneToAllMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#OneToOneDataIndexMsg">OneToOneDataIndexMsg (built-in class)</a>, <a href="moose_builtins.html#OneToOneDataIndexMsg">[1]</a>, <a href="moose_classes.html#OneToOneDataIndexMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#OneToOneMsg">OneToOneMsg (built-in class)</a>, <a href="moose_builtins.html#OneToOneMsg">[1]</a>, <a href="moose_classes.html#OneToOneMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.oneVoxelVolume">oneVoxelVolume (ChemCompt attribute)</a>, <a href="moose_builtins.html#ChemCompt.oneVoxelVolume">[1]</a>, <a href="moose_classes.html#ChemCompt.oneVoxelVolume">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.origChannel">origChannel() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.origChannel">[1]</a>, <a href="moose_classes.html#MgBlock.origChannel">[2]</a> - </dt> - - - <dt><a href="tmp.html#outerArea">outerArea</a>, <a href="moose_builtins.html#outerArea">[1]</a>, <a href="moose_classes.html#outerArea">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#outerDif">outerDif</a>, <a href="moose_builtins.html#outerDif">[1]</a>, <a href="moose_classes.html#outerDif">[2]</a> - </dt> - - - <dt><a href="tmp.html#outerDifSourceOut">outerDifSourceOut</a>, <a href="moose_builtins.html#outerDifSourceOut">[1]</a>, <a href="moose_classes.html#outerDifSourceOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#outflux">outflux()</a>, <a href="moose_builtins.html#outflux">[1]</a>, <a href="moose_classes.html#outflux">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.output">output (Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.output">[1]</a>, <a href="moose_classes.html#Adaptor.output">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Arith.output">(Arith attribute)</a>, <a href="moose_builtins.html#Arith.output">[1]</a>, <a href="moose_classes.html#Arith.output">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.output">(DiffAmp attribute)</a>, <a href="moose_builtins.html#DiffAmp.output">[1]</a>, <a href="moose_classes.html#DiffAmp.output">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncBase.output">(FuncBase attribute)</a>, <a href="moose_builtins.html#FuncBase.output">[1]</a>, <a href="moose_classes.html#FuncBase.output">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc.output">(MathFunc attribute)</a>, <a href="moose_builtins.html#MathFunc.output">[1]</a>, <a href="moose_classes.html#MathFunc.output">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.output">(PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.output">[1]</a>, <a href="moose_classes.html#PIDController.output">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.output">(PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.output">[1]</a>, <a href="moose_classes.html#PulseGen.output">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.output">(RC attribute)</a>, <a href="moose_builtins.html#RC.output">[1]</a>, <a href="moose_classes.html#RC.output">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.output">(StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.output">[1]</a>, <a href="moose_classes.html#StimulusTable.output">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Adaptor.outputOffset">outputOffset (Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.outputOffset">[1]</a>, <a href="moose_classes.html#Adaptor.outputOffset">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.outputValue">outputValue (Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.outputValue">[1]</a>, <a href="moose_classes.html#Adaptor.outputValue">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Arith.outputValue">(Arith attribute)</a>, <a href="moose_builtins.html#Arith.outputValue">[1]</a>, <a href="moose_classes.html#Arith.outputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.outputValue">(DiffAmp attribute)</a>, <a href="moose_builtins.html#DiffAmp.outputValue">[1]</a>, <a href="moose_classes.html#DiffAmp.outputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.outputValue">(PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.outputValue">[1]</a>, <a href="moose_classes.html#PIDController.outputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.outputValue">(PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.outputValue">[1]</a>, <a href="moose_classes.html#PulseGen.outputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.outputValue">(TableBase attribute)</a>, <a href="moose_builtins.html#TableBase.outputValue">[1]</a>, <a href="moose_classes.html#TableBase.outputValue">[2]</a> - </dt> - - </dl></dd> - </dl></td> -</tr></table> - -<h2 id="P">P</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#SparseMsg.pairFill">pairFill() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.pairFill">[1]</a>, <a href="moose_classes.html#SparseMsg.pairFill">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.parent">parent (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.parent">[1]</a>, <a href="moose_classes.html#Neutral.parent">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.parentMsg">parentMsg() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.parentMsg">[1]</a>, <a href="moose_classes.html#Neutral.parentMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.parentVoxel">parentVoxel (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.parentVoxel">[1]</a>, <a href="moose_classes.html#NeuroMesh.parentVoxel">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SpineMesh.parentVoxel">(SpineMesh attribute)</a>, <a href="moose_builtins.html#SpineMesh.parentVoxel">[1]</a>, <a href="moose_classes.html#SpineMesh.parentVoxel">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Dsolve.path">path (Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.path">[1]</a>, <a href="moose_classes.html#Dsolve.path">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Neutral.path">(Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.path">[1]</a>, <a href="moose_classes.html#Neutral.path">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.path">(Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.path">[1]</a>, <a href="moose_classes.html#Stoich.path">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChanBase.permeabilityOut">permeabilityOut (ChanBase attribute)</a>, <a href="moose_builtins.html#ChanBase.permeabilityOut">[1]</a>, <a href="moose_classes.html#ChanBase.permeabilityOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.permeabilityOut">(SynChanBase attribute)</a>, <a href="moose_builtins.html#SynChanBase.permeabilityOut">[1]</a>, <a href="moose_classes.html#SynChanBase.permeabilityOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PIDController">PIDController (built-in class)</a>, <a href="moose_builtins.html#PIDController">[1]</a>, <a href="moose_classes.html#PIDController">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.plainPlot">plainPlot() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.plainPlot">[1]</a>, <a href="moose_classes.html#TableBase.plainPlot">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.plusIn">plusIn() (DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.plusIn">[1]</a>, <a href="moose_classes.html#DiffAmp.plusIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#Pool">Pool (built-in class)</a>, <a href="moose_builtins.html#Pool">[1]</a>, <a href="moose_classes.html#Pool">[2]</a> - </dt> - - - <dt><a href="tmp.html#Species.pool">pool (Species attribute)</a>, <a href="moose_builtins.html#Species.pool">[1]</a>, <a href="moose_classes.html#Species.pool">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase">PoolBase (built-in class)</a>, <a href="moose_builtins.html#PoolBase">[1]</a>, <a href="moose_classes.html#PoolBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.poolIdMap">poolIdMap (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.poolIdMap">[1]</a>, <a href="moose_classes.html#Stoich.poolIdMap">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster">PostMaster (built-in class)</a>, <a href="moose_builtins.html#PostMaster">[1]</a>, <a href="moose_classes.html#PostMaster">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.prd">prd (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.prd">[1]</a>, <a href="moose_classes.html#EnzBase.prd">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.prd">(ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.prd">[1]</a>, <a href="moose_classes.html#ReacBase.prd">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#EnzBase.prdDest">prdDest() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.prdDest">[1]</a>, <a href="moose_classes.html#EnzBase.prdDest">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.prdDest">(ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.prdDest">[1]</a>, <a href="moose_classes.html#ReacBase.prdDest">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#EnzBase.prdOut">prdOut (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.prdOut">[1]</a>, <a href="moose_classes.html#EnzBase.prdOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.prdOut">(ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.prdOut">[1]</a>, <a href="moose_classes.html#ReacBase.prdOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.preserveNumEntries">preserveNumEntries (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.preserveNumEntries">[1]</a>, <a href="moose_classes.html#CubeMesh.preserveNumEntries">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.probability">probability (SparseMsg attribute)</a>, <a href="moose_builtins.html#SparseMsg.probability">[1]</a>, <a href="moose_classes.html#SparseMsg.probability">[2]</a> - </dt> - - - <dt><a href="tmp.html#proc">proc</a>, <a href="moose_builtins.html#proc">[1]</a>, <a href="moose_classes.html#proc">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Adaptor.proc">(Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.proc">[1]</a>, <a href="moose_classes.html#Adaptor.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.proc">(Arith attribute)</a>, <a href="moose_builtins.html#Arith.proc">[1]</a>, <a href="moose_classes.html#Arith.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#BufPool.proc">(BufPool attribute)</a>, <a href="moose_builtins.html#BufPool.proc">[1]</a>, <a href="moose_classes.html#BufPool.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.proc">(CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.proc">[1]</a>, <a href="moose_classes.html#CaConc.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.proc">(CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.proc">[1]</a>, <a href="moose_classes.html#CompartmentBase.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.proc">(DiffAmp attribute)</a>, <a href="moose_builtins.html#DiffAmp.proc">[1]</a>, <a href="moose_classes.html#DiffAmp.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.proc">(Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.proc">[1]</a>, <a href="moose_classes.html#Dsolve.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.proc">(EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.proc">[1]</a>, <a href="moose_classes.html#EnzBase.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.proc">(Func attribute)</a>, <a href="moose_builtins.html#Func.proc">[1]</a>, <a href="moose_classes.html#Func.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncBase.proc">(FuncBase attribute)</a>, <a href="moose_builtins.html#FuncBase.proc">[1]</a>, <a href="moose_classes.html#FuncBase.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.proc">(Gsolve attribute)</a>, <a href="moose_builtins.html#Gsolve.proc">[1]</a>, <a href="moose_classes.html#Gsolve.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.proc">(HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.proc">[1]</a>, <a href="moose_classes.html#HHChannel.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.proc">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.proc">[1]</a>, <a href="moose_classes.html#HHChannel2D.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.proc">(HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.proc">[1]</a>, <a href="moose_classes.html#HSolve.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.proc">(IntFire attribute)</a>, <a href="moose_builtins.html#IntFire.proc">[1]</a>, <a href="moose_classes.html#IntFire.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.proc">(Interpol attribute)</a>, <a href="moose_builtins.html#Interpol.proc">[1]</a>, <a href="moose_classes.html#Interpol.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.proc">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.proc">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.proc">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.proc">[1]</a>, <a href="moose_classes.html#Ksolve.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Leakage.proc">(Leakage attribute)</a>, <a href="moose_builtins.html#Leakage.proc">[1]</a>, <a href="moose_classes.html#Leakage.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.proc">(MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.proc">[1]</a>, <a href="moose_classes.html#MarkovChannel.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.proc">(MarkovGslSolver attribute)</a>, <a href="moose_builtins.html#MarkovGslSolver.proc">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.proc">(MarkovRateTable attribute)</a>, <a href="moose_builtins.html#MarkovRateTable.proc">[1]</a>, <a href="moose_classes.html#MarkovRateTable.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolver.proc">(MarkovSolver attribute)</a>, <a href="moose_builtins.html#MarkovSolver.proc">[1]</a>, <a href="moose_classes.html#MarkovSolver.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.proc">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.proc">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc.proc">(MathFunc attribute)</a>, <a href="moose_builtins.html#MathFunc.proc">[1]</a>, <a href="moose_classes.html#MathFunc.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.proc">(MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.proc">[1]</a>, <a href="moose_classes.html#MeshEntry.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.proc">(MgBlock attribute)</a>, <a href="moose_builtins.html#MgBlock.proc">[1]</a>, <a href="moose_classes.html#MgBlock.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.proc">(PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.proc">[1]</a>, <a href="moose_classes.html#PIDController.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.proc">(PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.proc">[1]</a>, <a href="moose_classes.html#PoolBase.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster.proc">(PostMaster attribute)</a>, <a href="moose_builtins.html#PostMaster.proc">[1]</a>, <a href="moose_classes.html#PostMaster.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.proc">(PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.proc">[1]</a>, <a href="moose_classes.html#PulseGen.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.proc">(RC attribute)</a>, <a href="moose_builtins.html#RC.proc">[1]</a>, <a href="moose_classes.html#RC.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.proc">(ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.proc">[1]</a>, <a href="moose_classes.html#ReacBase.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.proc">(SpikeGen attribute)</a>, <a href="moose_builtins.html#SpikeGen.proc">[1]</a>, <a href="moose_classes.html#SpikeGen.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.proc">(Stats attribute)</a>, <a href="moose_builtins.html#Stats.proc">[1]</a>, <a href="moose_classes.html#Stats.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.proc">(StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.proc">[1]</a>, <a href="moose_classes.html#StimulusTable.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.proc">(SynChan attribute)</a>, <a href="moose_builtins.html#SynChan.proc">[1]</a>, <a href="moose_classes.html#SynChan.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#Table.proc">(Table attribute)</a>, <a href="moose_builtins.html#Table.proc">[1]</a>, <a href="moose_classes.html#Table.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.proc">(TimeTable attribute)</a>, <a href="moose_builtins.html#TimeTable.proc">[1]</a>, <a href="moose_classes.html#TimeTable.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.proc">(VClamp attribute)</a>, <a href="moose_builtins.html#VClamp.proc">[1]</a>, <a href="moose_classes.html#VClamp.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.proc">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.proc">[1]</a>, <a href="moose_classes.html#ZombieCaConc.proc">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.proc">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.proc">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.proc">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.proc0">proc0 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc0">[1]</a>, <a href="moose_classes.html#Clock.proc0">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc1">proc1 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc1">[1]</a>, <a href="moose_classes.html#Clock.proc1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc2">proc2 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc2">[1]</a>, <a href="moose_classes.html#Clock.proc2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc3">proc3 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc3">[1]</a>, <a href="moose_classes.html#Clock.proc3">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc4">proc4 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc4">[1]</a>, <a href="moose_classes.html#Clock.proc4">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Clock.proc5">proc5 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc5">[1]</a>, <a href="moose_classes.html#Clock.proc5">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc6">proc6 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc6">[1]</a>, <a href="moose_classes.html#Clock.proc6">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc7">proc7 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc7">[1]</a>, <a href="moose_classes.html#Clock.proc7">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc8">proc8 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc8">[1]</a>, <a href="moose_classes.html#Clock.proc8">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.proc9">proc9 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.proc9">[1]</a>, <a href="moose_classes.html#Clock.proc9">[2]</a> - </dt> - - - <dt><a href="tmp.html#process">process()</a>, <a href="tmp.html#process">[1]</a>, <a href="tmp.html#process">[2]</a>, <a href="tmp.html#process">[3]</a>, <a href="tmp.html#process">[4]</a>, <a href="moose_builtins.html#process">[5]</a>, <a href="moose_builtins.html#process">[6]</a>, <a href="moose_builtins.html#process">[7]</a>, <a href="moose_builtins.html#process">[8]</a>, <a href="moose_builtins.html#process">[9]</a>, <a href="moose_classes.html#process">[10]</a>, <a href="moose_classes.html#process">[11]</a>, <a href="moose_classes.html#process">[12]</a>, <a href="moose_classes.html#process">[13]</a>, <a href="moose_classes.html#process">[14]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Adaptor.process">(Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.process">[1]</a>, <a href="moose_classes.html#Adaptor.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.process">(Arith method)</a>, <a href="moose_builtins.html#Arith.process">[1]</a>, <a href="moose_classes.html#Arith.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#BufPool.process">(BufPool method)</a>, <a href="moose_builtins.html#BufPool.process">[1]</a>, <a href="moose_classes.html#BufPool.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.process">(CaConc method)</a>, <a href="moose_builtins.html#CaConc.process">[1]</a>, <a href="moose_classes.html#CaConc.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.process">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.process">[1]</a>, <a href="moose_classes.html#CompartmentBase.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.process">(DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.process">[1]</a>, <a href="moose_classes.html#DiffAmp.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.process">(Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.process">[1]</a>, <a href="moose_classes.html#Dsolve.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.process">(EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.process">[1]</a>, <a href="moose_classes.html#EnzBase.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncBase.process">(FuncBase method)</a>, <a href="moose_builtins.html#FuncBase.process">[1]</a>, <a href="moose_classes.html#FuncBase.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.process">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.process">[1]</a>, <a href="moose_classes.html#Gsolve.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.process">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.process">[1]</a>, <a href="moose_classes.html#HHChannel.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.process">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.process">[1]</a>, <a href="moose_classes.html#HHChannel2D.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.process">(HSolve method)</a>, <a href="moose_builtins.html#HSolve.process">[1]</a>, <a href="moose_classes.html#HSolve.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.process">(IntFire method)</a>, <a href="moose_builtins.html#IntFire.process">[1]</a>, <a href="moose_classes.html#IntFire.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.process">(Interpol method)</a>, <a href="moose_builtins.html#Interpol.process">[1]</a>, <a href="moose_classes.html#Interpol.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.process">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.process">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.process">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.process">[1]</a>, <a href="moose_classes.html#Ksolve.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.process">(MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.process">[1]</a>, <a href="moose_classes.html#MarkovChannel.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.process">(MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.process">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.process">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.process">[1]</a>, <a href="moose_classes.html#MarkovRateTable.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolver.process">(MarkovSolver method)</a>, <a href="moose_builtins.html#MarkovSolver.process">[1]</a>, <a href="moose_classes.html#MarkovSolver.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.process">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.process">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc.process">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.process">[1]</a>, <a href="moose_classes.html#MathFunc.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.process">(MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.process">[1]</a>, <a href="moose_classes.html#MeshEntry.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.process">(MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.process">[1]</a>, <a href="moose_classes.html#MgBlock.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.process">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.process">[1]</a>, <a href="moose_classes.html#PIDController.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.process">(PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.process">[1]</a>, <a href="moose_classes.html#PoolBase.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster.process">(PostMaster method)</a>, <a href="moose_builtins.html#PostMaster.process">[1]</a>, <a href="moose_classes.html#PostMaster.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.process">(PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.process">[1]</a>, <a href="moose_classes.html#PulseGen.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.process">(RC method)</a>, <a href="moose_builtins.html#RC.process">[1]</a>, <a href="moose_classes.html#RC.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.process">(ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.process">[1]</a>, <a href="moose_classes.html#ReacBase.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.process">(SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.process">[1]</a>, <a href="moose_classes.html#SpikeGen.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.process">(Stats method)</a>, <a href="tmp.html#Stats.process">[1]</a>, <a href="moose_builtins.html#Stats.process">[2]</a>, <a href="moose_builtins.html#Stats.process">[3]</a>, <a href="moose_classes.html#Stats.process">[4]</a>, <a href="moose_classes.html#Stats.process">[5]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.process">(StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.process">[1]</a>, <a href="moose_classes.html#StimulusTable.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.process">(SynChan method)</a>, <a href="moose_builtins.html#SynChan.process">[1]</a>, <a href="moose_classes.html#SynChan.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#Table.process">(Table method)</a>, <a href="moose_builtins.html#Table.process">[1]</a>, <a href="moose_classes.html#Table.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.process">(TimeTable method)</a>, <a href="moose_builtins.html#TimeTable.process">[1]</a>, <a href="moose_classes.html#TimeTable.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.process">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.process">[1]</a>, <a href="moose_classes.html#VClamp.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.process">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.process">[1]</a>, <a href="moose_classes.html#ZombieCaConc.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.process">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.process">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.process">[2]</a> - </dt> - - - <dt><a href="tmp.html#testSched.process">(testSched method)</a>, <a href="moose_builtins.html#testSched.process">[1]</a>, <a href="moose_classes.html#testSched.process">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.process0">process0 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process0">[1]</a>, <a href="moose_classes.html#Clock.process0">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process1">process1 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process1">[1]</a>, <a href="moose_classes.html#Clock.process1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process2">process2 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process2">[1]</a>, <a href="moose_classes.html#Clock.process2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process3">process3 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process3">[1]</a>, <a href="moose_classes.html#Clock.process3">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process4">process4 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process4">[1]</a>, <a href="moose_classes.html#Clock.process4">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process5">process5 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process5">[1]</a>, <a href="moose_classes.html#Clock.process5">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process6">process6 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process6">[1]</a>, <a href="moose_classes.html#Clock.process6">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process7">process7 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process7">[1]</a>, <a href="moose_classes.html#Clock.process7">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process8">process8 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process8">[1]</a>, <a href="moose_classes.html#Clock.process8">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.process9">process9 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.process9">[1]</a>, <a href="moose_classes.html#Clock.process9">[2]</a> - </dt> - - - <dt><a href="tmp.html#DifShell.process_0">process_0 (DifShell attribute)</a>, <a href="moose_builtins.html#DifShell.process_0">[1]</a>, <a href="moose_classes.html#DifShell.process_0">[2]</a> - </dt> - - - <dt><a href="tmp.html#DifShell.process_1">process_1 (DifShell attribute)</a>, <a href="moose_builtins.html#DifShell.process_1">[1]</a>, <a href="moose_classes.html#DifShell.process_1">[2]</a> - </dt> - - - <dt><a href="tmp.html#SymCompartment.proximal">proximal (SymCompartment attribute)</a>, <a href="moose_builtins.html#SymCompartment.proximal">[1]</a>, <a href="moose_classes.html#SymCompartment.proximal">[2]</a> - </dt> - - - <dt><a href="tmp.html#proximalOnly">proximalOnly</a>, <a href="moose_builtins.html#proximalOnly">[1]</a>, <a href="moose_classes.html#proximalOnly">[2]</a> - </dt> - - - <dt><a href="tmp.html#proximalOut">proximalOut</a>, <a href="tmp.html#proximalOut">[1]</a>, <a href="moose_builtins.html#proximalOut">[2]</a>, <a href="moose_builtins.html#proximalOut">[3]</a>, <a href="moose_classes.html#proximalOut">[4]</a>, <a href="moose_classes.html#proximalOut">[5]</a> - </dt> - - - <dt><a href="tmp.html#PsdMesh.psdList">psdList() (PsdMesh method)</a>, <a href="moose_builtins.html#PsdMesh.psdList">[1]</a>, <a href="moose_classes.html#PsdMesh.psdList">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.psdListOut">psdListOut (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.psdListOut">[1]</a>, <a href="moose_classes.html#NeuroMesh.psdListOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#PsdMesh">PsdMesh (built-in class)</a>, <a href="moose_builtins.html#PsdMesh">[1]</a>, <a href="moose_classes.html#PsdMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen">PulseGen (built-in class)</a>, <a href="moose_builtins.html#PulseGen">[1]</a>, <a href="moose_classes.html#PulseGen">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="Q">Q</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#MarkovRateTable.Q">Q (MarkovRateTable attribute)</a>, <a href="moose_builtins.html#MarkovRateTable.Q">[1]</a>, <a href="moose_classes.html#MarkovRateTable.Q">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.Q">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.Q">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.Q">[2]</a> - </dt> - - </dl></dd> - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Shell.quit">quit() (Shell method)</a>, <a href="moose_builtins.html#Shell.quit">[1]</a>, <a href="moose_classes.html#Shell.quit">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="R">R</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#RC.R">R (RC attribute)</a>, <a href="moose_builtins.html#RC.R">[1]</a>, <a href="moose_classes.html#RC.R">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.r0">r0 (CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.r0">[1]</a>, <a href="moose_classes.html#CylMesh.r0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.r1">r1 (CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.r1">[1]</a>, <a href="moose_classes.html#CylMesh.r1">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.Ra">Ra (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.Ra">[1]</a>, <a href="moose_classes.html#CompartmentBase.Ra">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.randInject">randInject() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.randInject">[1]</a>, <a href="moose_classes.html#CompartmentBase.randInject">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.randomInit">randomInit() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.randomInit">[1]</a>, <a href="moose_classes.html#SteadyState.randomInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.rank">rank (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.rank">[1]</a>, <a href="moose_classes.html#SteadyState.rank">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.ratio">ratio (CplxEnzBase attribute)</a>, <a href="moose_builtins.html#CplxEnzBase.ratio">[1]</a>, <a href="moose_classes.html#CplxEnzBase.ratio">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.raxial">raxial (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.raxial">[1]</a>, <a href="moose_classes.html#CompartmentBase.raxial">[2]</a> - </dt> - - - <dt><a href="tmp.html#raxialCylinder">raxialCylinder()</a>, <a href="moose_builtins.html#raxialCylinder">[1]</a>, <a href="moose_classes.html#raxialCylinder">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.raxialOut">raxialOut (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.raxialOut">[1]</a>, <a href="moose_classes.html#CompartmentBase.raxialOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#raxialSphere">raxialSphere()</a>, <a href="tmp.html#raxialSphere">[1]</a>, <a href="moose_builtins.html#raxialSphere">[2]</a>, <a href="moose_builtins.html#raxialSphere">[3]</a>, <a href="moose_classes.html#raxialSphere">[4]</a>, <a href="moose_classes.html#raxialSphere">[5]</a> - </dt> - - - <dt><a href="tmp.html#raxialSym">raxialSym()</a>, <a href="tmp.html#raxialSym">[1]</a>, <a href="tmp.html#raxialSym">[2]</a>, <a href="moose_builtins.html#raxialSym">[3]</a>, <a href="moose_builtins.html#raxialSym">[4]</a>, <a href="moose_builtins.html#raxialSym">[5]</a>, <a href="moose_classes.html#raxialSym">[6]</a>, <a href="moose_classes.html#raxialSym">[7]</a>, <a href="moose_classes.html#raxialSym">[8]</a> - </dt> - - - <dt><a href="tmp.html#RC">RC (built-in class)</a>, <a href="moose_builtins.html#RC">[1]</a>, <a href="moose_classes.html#RC">[2]</a> - </dt> - - - <dt><a href="tmp.html#Reac">Reac (built-in class)</a>, <a href="moose_builtins.html#Reac">[1]</a>, <a href="moose_classes.html#Reac">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.reac">reac (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.reac">[1]</a>, <a href="moose_classes.html#PoolBase.reac">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase">ReacBase (built-in class)</a>, <a href="moose_builtins.html#ReacBase">[1]</a>, <a href="moose_classes.html#ReacBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.reacDest">reacDest() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.reacDest">[1]</a>, <a href="moose_classes.html#PoolBase.reacDest">[2]</a> - </dt> - - - <dt><a href="tmp.html#reaction">reaction()</a>, <a href="moose_builtins.html#reaction">[1]</a>, <a href="moose_classes.html#reaction">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.refractoryPeriod">refractoryPeriod (IntFire attribute)</a>, <a href="moose_builtins.html#IntFire.refractoryPeriod">[1]</a>, <a href="moose_classes.html#IntFire.refractoryPeriod">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.refractT">refractT (SpikeGen attribute)</a>, <a href="moose_builtins.html#SpikeGen.refractT">[1]</a>, <a href="moose_classes.html#SpikeGen.refractT">[2]</a> - </dt> - - - <dt><a href="tmp.html#reinit">reinit()</a>, <a href="tmp.html#reinit">[1]</a>, <a href="tmp.html#reinit">[2]</a>, <a href="tmp.html#reinit">[3]</a>, <a href="tmp.html#reinit">[4]</a>, <a href="moose_builtins.html#reinit">[5]</a>, <a href="moose_builtins.html#reinit">[6]</a>, <a href="moose_builtins.html#reinit">[7]</a>, <a href="moose_builtins.html#reinit">[8]</a>, <a href="moose_builtins.html#reinit">[9]</a>, <a href="moose_classes.html#reinit">[10]</a>, <a href="moose_classes.html#reinit">[11]</a>, <a href="moose_classes.html#reinit">[12]</a>, <a href="moose_classes.html#reinit">[13]</a>, <a href="moose_classes.html#reinit">[14]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Adaptor.reinit">(Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.reinit">[1]</a>, <a href="moose_classes.html#Adaptor.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.reinit">(Arith method)</a>, <a href="moose_builtins.html#Arith.reinit">[1]</a>, <a href="moose_classes.html#Arith.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#BufPool.reinit">(BufPool method)</a>, <a href="moose_builtins.html#BufPool.reinit">[1]</a>, <a href="moose_classes.html#BufPool.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.reinit">(CaConc method)</a>, <a href="moose_builtins.html#CaConc.reinit">[1]</a>, <a href="moose_classes.html#CaConc.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit">(Clock method)</a>, <a href="moose_builtins.html#Clock.reinit">[1]</a>, <a href="moose_classes.html#Clock.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.reinit">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.reinit">[1]</a>, <a href="moose_classes.html#CompartmentBase.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.reinit">(DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.reinit">[1]</a>, <a href="moose_classes.html#DiffAmp.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.reinit">(Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.reinit">[1]</a>, <a href="moose_classes.html#Dsolve.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.reinit">(EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.reinit">[1]</a>, <a href="moose_classes.html#EnzBase.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncBase.reinit">(FuncBase method)</a>, <a href="moose_builtins.html#FuncBase.reinit">[1]</a>, <a href="moose_classes.html#FuncBase.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.reinit">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.reinit">[1]</a>, <a href="moose_classes.html#Gsolve.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.reinit">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.reinit">[1]</a>, <a href="moose_classes.html#HHChannel.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.reinit">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.reinit">[1]</a>, <a href="moose_classes.html#HHChannel2D.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.reinit">(HSolve method)</a>, <a href="moose_builtins.html#HSolve.reinit">[1]</a>, <a href="moose_classes.html#HSolve.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.reinit">(IntFire method)</a>, <a href="moose_builtins.html#IntFire.reinit">[1]</a>, <a href="moose_classes.html#IntFire.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.reinit">(Interpol method)</a>, <a href="moose_builtins.html#Interpol.reinit">[1]</a>, <a href="moose_classes.html#Interpol.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.reinit">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.reinit">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.reinit">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.reinit">[1]</a>, <a href="moose_classes.html#Ksolve.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.reinit">(MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.reinit">[1]</a>, <a href="moose_classes.html#MarkovChannel.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.reinit">(MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.reinit">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.reinit">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.reinit">[1]</a>, <a href="moose_classes.html#MarkovRateTable.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolver.reinit">(MarkovSolver method)</a>, <a href="moose_builtins.html#MarkovSolver.reinit">[1]</a>, <a href="moose_classes.html#MarkovSolver.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.reinit">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.reinit">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc.reinit">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.reinit">[1]</a>, <a href="moose_classes.html#MathFunc.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.reinit">(MeshEntry method)</a>, <a href="moose_builtins.html#MeshEntry.reinit">[1]</a>, <a href="moose_classes.html#MeshEntry.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.reinit">(MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.reinit">[1]</a>, <a href="moose_classes.html#MgBlock.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.reinit">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.reinit">[1]</a>, <a href="moose_classes.html#PIDController.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.reinit">(PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.reinit">[1]</a>, <a href="moose_classes.html#PoolBase.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#PostMaster.reinit">(PostMaster method)</a>, <a href="moose_builtins.html#PostMaster.reinit">[1]</a>, <a href="moose_classes.html#PostMaster.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.reinit">(PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.reinit">[1]</a>, <a href="moose_classes.html#PulseGen.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.reinit">(RC method)</a>, <a href="moose_builtins.html#RC.reinit">[1]</a>, <a href="moose_classes.html#RC.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.reinit">(ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.reinit">[1]</a>, <a href="moose_classes.html#ReacBase.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.reinit">(SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.reinit">[1]</a>, <a href="moose_classes.html#SpikeGen.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.reinit">(Stats method)</a>, <a href="tmp.html#Stats.reinit">[1]</a>, <a href="moose_builtins.html#Stats.reinit">[2]</a>, <a href="moose_builtins.html#Stats.reinit">[3]</a>, <a href="moose_classes.html#Stats.reinit">[4]</a>, <a href="moose_classes.html#Stats.reinit">[5]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.reinit">(StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.reinit">[1]</a>, <a href="moose_classes.html#StimulusTable.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.reinit">(SynChan method)</a>, <a href="moose_builtins.html#SynChan.reinit">[1]</a>, <a href="moose_classes.html#SynChan.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#Table.reinit">(Table method)</a>, <a href="moose_builtins.html#Table.reinit">[1]</a>, <a href="moose_classes.html#Table.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.reinit">(TimeTable method)</a>, <a href="moose_builtins.html#TimeTable.reinit">[1]</a>, <a href="moose_classes.html#TimeTable.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.reinit">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.reinit">[1]</a>, <a href="moose_classes.html#VClamp.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.reinit">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.reinit">[1]</a>, <a href="moose_classes.html#ZombieCaConc.reinit">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.reinit">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.reinit">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.reinit">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.reinit0">reinit0 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit0">[1]</a>, <a href="moose_classes.html#Clock.reinit0">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit1">reinit1 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit1">[1]</a>, <a href="moose_classes.html#Clock.reinit1">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Clock.reinit2">reinit2 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit2">[1]</a>, <a href="moose_classes.html#Clock.reinit2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit3">reinit3 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit3">[1]</a>, <a href="moose_classes.html#Clock.reinit3">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit4">reinit4 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit4">[1]</a>, <a href="moose_classes.html#Clock.reinit4">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit5">reinit5 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit5">[1]</a>, <a href="moose_classes.html#Clock.reinit5">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit6">reinit6 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit6">[1]</a>, <a href="moose_classes.html#Clock.reinit6">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit7">reinit7 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit7">[1]</a>, <a href="moose_classes.html#Clock.reinit7">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit8">reinit8 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit8">[1]</a>, <a href="moose_classes.html#Clock.reinit8">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.reinit9">reinit9 (Clock attribute)</a>, <a href="moose_builtins.html#Clock.reinit9">[1]</a>, <a href="moose_classes.html#Clock.reinit9">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.relativeAccuracy">relativeAccuracy (MarkovGslSolver attribute)</a>, <a href="moose_builtins.html#MarkovGslSolver.relativeAccuracy">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.relativeAccuracy">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.remesh">remesh() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.remesh">[1]</a>, <a href="moose_classes.html#EnzBase.remesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.remeshOut">remeshOut (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.remeshOut">[1]</a>, <a href="moose_classes.html#MeshEntry.remeshOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.remeshReacsOut">remeshReacsOut (MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.remeshReacsOut">[1]</a>, <a href="moose_classes.html#MeshEntry.remeshReacsOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.requestField">requestField (Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.requestField">[1]</a>, <a href="moose_classes.html#Adaptor.requestField">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.requestInput">requestInput (Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.requestInput">[1]</a>, <a href="moose_classes.html#Adaptor.requestInput">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.requestMolWt">requestMolWt (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.requestMolWt">[1]</a>, <a href="moose_classes.html#PoolBase.requestMolWt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Table.requestOut">requestOut (Table attribute)</a>, <a href="moose_builtins.html#Table.requestOut">[1]</a>, <a href="moose_classes.html#Table.requestOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.resetStencil">resetStencil() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.resetStencil">[1]</a>, <a href="moose_classes.html#ChemCompt.resetStencil">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.resettle">resettle() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.resettle">[1]</a>, <a href="moose_classes.html#SteadyState.resettle">[2]</a> - </dt> - - - <dt><a href="tmp.html#FuncBase.result">result (FuncBase attribute)</a>, <a href="moose_builtins.html#FuncBase.result">[1]</a>, <a href="moose_classes.html#FuncBase.result">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.result">(MathFunc attribute)</a>, <a href="moose_builtins.html#MathFunc.result">[1]</a>, <a href="moose_classes.html#MathFunc.result">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.Rm">Rm (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.Rm">[1]</a>, <a href="moose_classes.html#CompartmentBase.Rm">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.RmByTau">RmByTau (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.RmByTau">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.RmByTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.rowStart">rowStart (Stoich attribute)</a>, <a href="moose_builtins.html#Stoich.rowStart">[1]</a>, <a href="moose_classes.html#Stoich.rowStart">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.runTime">runTime (Clock attribute)</a>, <a href="moose_builtins.html#Clock.runTime">[1]</a>, <a href="moose_classes.html#Clock.runTime">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="S">S</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#DiffAmp.saturation">saturation (DiffAmp attribute)</a>, <a href="moose_builtins.html#DiffAmp.saturation">[1]</a>, <a href="moose_classes.html#DiffAmp.saturation">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PIDController.saturation">(PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.saturation">[1]</a>, <a href="moose_classes.html#PIDController.saturation">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Adaptor.scale">scale (Adaptor attribute)</a>, <a href="moose_builtins.html#Adaptor.scale">[1]</a>, <a href="moose_classes.html#Adaptor.scale">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Nernst.scale">(Nernst attribute)</a>, <a href="moose_builtins.html#Nernst.scale">[1]</a>, <a href="moose_classes.html#Nernst.scale">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Stats.sdev">sdev (Stats attribute)</a>, <a href="moose_builtins.html#Stats.sdev">[1]</a>, <a href="moose_classes.html#Stats.sdev">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.secondDelay">secondDelay (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.secondDelay">[1]</a>, <a href="moose_classes.html#PulseGen.secondDelay">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.secondLevel">secondLevel (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.secondLevel">[1]</a>, <a href="moose_classes.html#PulseGen.secondLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.secondWidth">secondWidth (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.secondWidth">[1]</a>, <a href="moose_classes.html#PulseGen.secondWidth">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.seed">seed (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.seed">[1]</a>, <a href="moose_classes.html#HSolve.seed">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SparseMsg.seed">(SparseMsg attribute)</a>, <a href="moose_builtins.html#SparseMsg.seed">[1]</a>, <a href="moose_classes.html#SparseMsg.seed">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PIDController.sensed">sensed (PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.sensed">[1]</a>, <a href="moose_classes.html#PIDController.sensed">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.sensed">(VClamp attribute)</a>, <a href="moose_builtins.html#VClamp.sensed">[1]</a>, <a href="moose_classes.html#VClamp.sensed">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PIDController.sensedIn">sensedIn() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.sensedIn">[1]</a>, <a href="moose_classes.html#PIDController.sensedIn">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.sensedIn">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.sensedIn">[1]</a>, <a href="moose_classes.html#VClamp.sensedIn">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.separateSpines">separateSpines (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.separateSpines">[1]</a>, <a href="moose_classes.html#NeuroMesh.separateSpines">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.set1d">set1d() (MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.set1d">[1]</a>, <a href="moose_classes.html#MarkovRateTable.set1d">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.set2d">set2d() (MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.set2d">[1]</a>, <a href="moose_classes.html#MarkovRateTable.set2d">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.setA">setA() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setA">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setA">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.setAbs_refract">setAbs_refract() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.setAbs_refract">[1]</a>, <a href="moose_classes.html#SpikeGen.setAbs_refract">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.setAbsoluteAccuracy">setAbsoluteAccuracy() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.setAbsoluteAccuracy">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.setAbsoluteAccuracy">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.setAccommodating">setAccommodating() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setAccommodating">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setAccommodating">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.setAlpha">setAlpha() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setAlpha">[1]</a>, <a href="moose_classes.html#HHGate.setAlpha">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.setAlpha">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setAlpha">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setAlpha">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.setAlphaParms">setAlphaParms() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setAlphaParms">[1]</a>, <a href="moose_classes.html#HHGate.setAlphaParms">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setAlwaysDiffuse">setAlwaysDiffuse() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setAlwaysDiffuse">[1]</a>, <a href="moose_classes.html#CubeMesh.setAlwaysDiffuse">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.setAnyValue">setAnyValue() (Arith method)</a>, <a href="moose_builtins.html#Arith.setAnyValue">[1]</a>, <a href="moose_classes.html#Arith.setAnyValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.setB">setB() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setB">[1]</a>, <a href="moose_classes.html#CaConc.setB">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.setB">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setB">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setB">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.setB">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setB">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setB">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.setBaseLevel">setBaseLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setBaseLevel">[1]</a>, <a href="moose_classes.html#PulseGen.setBaseLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.setBeta">setBeta() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setBeta">[1]</a>, <a href="moose_classes.html#HHGate.setBeta">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.setBeta">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setBeta">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setBeta">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PostMaster.setBufferSize">setBufferSize() (PostMaster method)</a>, <a href="moose_builtins.html#PostMaster.setBufferSize">[1]</a>, <a href="moose_classes.html#PostMaster.setBufferSize">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.setBufferTime">setBufferTime() (IntFire method)</a>, <a href="moose_builtins.html#IntFire.setBufferTime">[1]</a>, <a href="moose_classes.html#IntFire.setBufferTime">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.setBufferTime">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.setBufferTime">[1]</a>, <a href="moose_classes.html#SynChanBase.setBufferTime">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IzhikevichNrn.setC">setC() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setC">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setC">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#RC.setC">(RC method)</a>, <a href="moose_builtins.html#RC.setC">[1]</a>, <a href="moose_classes.html#RC.setC">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CaConc.setCa">setCa() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setCa">[1]</a>, <a href="moose_classes.html#CaConc.setCa">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.setCa">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setCa">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setCa">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CaConc.setCa_base">setCa_base() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setCa_base">[1]</a>, <a href="moose_classes.html#CaConc.setCa_base">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.setCa_base">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setCa_base">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setCa_base">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HSolve.setCaAdvance">setCaAdvance() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setCaAdvance">[1]</a>, <a href="moose_classes.html#HSolve.setCaAdvance">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.setCaBasal">setCaBasal() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setCaBasal">[1]</a>, <a href="moose_classes.html#CaConc.setCaBasal">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.setCaBasal">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setCaBasal">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setCaBasal">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HSolve.setCaDiv">setCaDiv() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setCaDiv">[1]</a>, <a href="moose_classes.html#HSolve.setCaDiv">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.setCaMax">setCaMax() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setCaMax">[1]</a>, <a href="moose_classes.html#HSolve.setCaMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.setCaMin">setCaMin() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setCaMin">[1]</a>, <a href="moose_classes.html#HSolve.setCaMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.setCeiling">setCeiling() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setCeiling">[1]</a>, <a href="moose_classes.html#CaConc.setCeiling">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.setCeiling">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setCeiling">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setCeiling">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.setCell">setCell() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.setCell">[1]</a>, <a href="moose_classes.html#NeuroMesh.setCell">[2]</a> - </dt> - - - <dt><a href="tmp.html#setCeq">setCeq()</a>, <a href="moose_builtins.html#setCeq">[1]</a>, <a href="moose_classes.html#setCeq">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.setCin">setCin() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.setCin">[1]</a>, <a href="moose_classes.html#Nernst.setCin">[2]</a> - </dt> - - - <dt><a href="tmp.html#Shell.setclock">setclock() (Shell method)</a>, <a href="moose_builtins.html#Shell.setclock">[1]</a>, <a href="moose_classes.html#Shell.setclock">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.setCm">setCm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setCm">[1]</a>, <a href="moose_classes.html#CompartmentBase.setCm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.setCMg">setCMg() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.setCMg">[1]</a>, <a href="moose_classes.html#MgBlock.setCMg">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.setColor">setColor() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.setColor">[1]</a>, <a href="moose_classes.html#Annotator.setColor">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.setCommand">setCommand() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.setCommand">[1]</a>, <a href="moose_classes.html#PIDController.setCommand">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.setCompartment">setCompartment() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.setCompartment">[1]</a>, <a href="moose_classes.html#Dsolve.setCompartment">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Ksolve.setCompartment">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setCompartment">[1]</a>, <a href="moose_classes.html#Ksolve.setCompartment">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.setCompartment">(Stoich method)</a>, <a href="moose_builtins.html#Stoich.setCompartment">[1]</a>, <a href="moose_classes.html#Stoich.setCompartment">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PoolBase.setConc">setConc() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setConc">[1]</a>, <a href="moose_classes.html#PoolBase.setConc">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.setConcInit">setConcInit() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setConcInit">[1]</a>, <a href="moose_classes.html#PoolBase.setConcInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.setConcK1">setConcK1() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.setConcK1">[1]</a>, <a href="moose_classes.html#CplxEnzBase.setConcK1">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.setconst">setconst() (MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.setconst">[1]</a>, <a href="moose_classes.html#MarkovRateTable.setconst">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.setConvergenceCriterion">setConvergenceCriterion() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.setConvergenceCriterion">[1]</a>, <a href="moose_classes.html#SteadyState.setConvergenceCriterion">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setCoords">setCoords() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setCoords">[1]</a>, <a href="moose_classes.html#CubeMesh.setCoords">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.setCoords">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setCoords">[1]</a>, <a href="moose_classes.html#CylMesh.setCoords">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.setCount">setCount() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setCount">[1]</a>, <a href="moose_classes.html#PulseGen.setCount">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.setCout">setCout() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.setCout">[1]</a>, <a href="moose_classes.html#Nernst.setCout">[2]</a> - </dt> - - - <dt><a href="tmp.html#setD">setD()</a>, <a href="moose_builtins.html#setD">[1]</a>, <a href="moose_classes.html#setD">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.setD">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setD">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setD">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.setDelay">setDelay() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setDelay">[1]</a>, <a href="moose_classes.html#PulseGen.setDelay">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Synapse.setDelay">(Synapse method)</a>, <a href="moose_builtins.html#Synapse.setDelay">[1]</a>, <a href="moose_classes.html#Synapse.setDelay">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#setDiameter">setDiameter()</a>, <a href="moose_builtins.html#setDiameter">[1]</a>, <a href="moose_classes.html#setDiameter">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.setDiameter">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setDiameter">[1]</a>, <a href="moose_classes.html#CompartmentBase.setDiameter">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PoolBase.setDiffConst">setDiffConst() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setDiffConst">[1]</a>, <a href="moose_classes.html#PoolBase.setDiffConst">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.setDiffLength">setDiffLength() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setDiffLength">[1]</a>, <a href="moose_classes.html#CylMesh.setDiffLength">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#NeuroMesh.setDiffLength">(NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.setDiffLength">[1]</a>, <a href="moose_classes.html#NeuroMesh.setDiffLength">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.setDivs">setDivs() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setDivs">[1]</a>, <a href="moose_classes.html#HHGate.setDivs">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.setDoLoop">setDoLoop() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.setDoLoop">[1]</a>, <a href="moose_classes.html#StimulusTable.setDoLoop">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.setDsolve">setDsolve() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setDsolve">[1]</a>, <a href="moose_classes.html#Ksolve.setDsolve">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Stoich.setDsolve">(Stoich method)</a>, <a href="moose_builtins.html#Stoich.setDsolve">[1]</a>, <a href="moose_classes.html#Stoich.setDsolve">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.setDt">setDt() (Clock method)</a>, <a href="moose_builtins.html#Clock.setDt">[1]</a>, <a href="moose_classes.html#Clock.setDt">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HSolve.setDt">(HSolve method)</a>, <a href="moose_builtins.html#HSolve.setDt">[1]</a>, <a href="moose_classes.html#HSolve.setDt">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setDx">setDx() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setDx">[1]</a>, <a href="moose_classes.html#CubeMesh.setDx">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.setDx">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setDx">[1]</a>, <a href="moose_classes.html#Interpol2D.setDx">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setDy">setDy() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setDy">[1]</a>, <a href="moose_classes.html#CubeMesh.setDy">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.setDy">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setDy">[1]</a>, <a href="moose_classes.html#Interpol2D.setDy">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setDz">setDz() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setDz">[1]</a>, <a href="moose_classes.html#CubeMesh.setDz">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.setEdgeTriggered">setEdgeTriggered() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.setEdgeTriggered">[1]</a>, <a href="moose_classes.html#SpikeGen.setEdgeTriggered">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.setEk">setEk() (ChanBase method)</a>, <a href="moose_builtins.html#ChanBase.setEk">[1]</a>, <a href="moose_classes.html#ChanBase.setEk">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SynChanBase.setEk">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.setEk">[1]</a>, <a href="moose_classes.html#SynChanBase.setEk">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setEk">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setEk">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setEk">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.setEm">setEm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setEm">[1]</a>, <a href="moose_classes.html#CompartmentBase.setEm">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.setEntry">setEntry() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.setEntry">[1]</a>, <a href="moose_classes.html#SparseMsg.setEntry">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.setEpsAbs">setEpsAbs() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setEpsAbs">[1]</a>, <a href="moose_classes.html#Ksolve.setEpsAbs">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.setEpsRel">setEpsRel() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setEpsRel">[1]</a>, <a href="moose_classes.html#Ksolve.setEpsRel">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.setExpr">setExpr() (Func method)</a>, <a href="moose_builtins.html#Func.setExpr">[1]</a>, <a href="moose_classes.html#Func.setExpr">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.setFilename">setFilename() (TimeTable method)</a>, <a href="moose_builtins.html#TimeTable.setFilename">[1]</a>, <a href="moose_classes.html#TimeTable.setFilename">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.setFirstDelay">setFirstDelay() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setFirstDelay">[1]</a>, <a href="moose_classes.html#PulseGen.setFirstDelay">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.setFirstLevel">setFirstLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setFirstLevel">[1]</a>, <a href="moose_classes.html#PulseGen.setFirstLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.setFirstWidth">setFirstWidth() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setFirstWidth">[1]</a>, <a href="moose_classes.html#PulseGen.setFirstWidth">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.setFloor">setFloor() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setFloor">[1]</a>, <a href="moose_classes.html#CaConc.setFloor">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.setFloor">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setFloor">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setFloor">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Arith.setFunction">setFunction() (Arith method)</a>, <a href="moose_builtins.html#Arith.setFunction">[1]</a>, <a href="moose_classes.html#Arith.setFunction">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MathFunc.setFunction">(MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.setFunction">[1]</a>, <a href="moose_classes.html#MathFunc.setFunction">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#DiffAmp.setGain">setGain() (DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.setGain">[1]</a>, <a href="moose_classes.html#DiffAmp.setGain">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PIDController.setGain">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.setGain">[1]</a>, <a href="moose_classes.html#PIDController.setGain">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.setGain">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.setGain">[1]</a>, <a href="moose_classes.html#VClamp.setGain">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IzhikevichNrn.setGamma">setGamma() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setGamma">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setGamma">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChanBase.setGbar">setGbar() (ChanBase method)</a>, <a href="moose_builtins.html#ChanBase.setGbar">[1]</a>, <a href="moose_classes.html#ChanBase.setGbar">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovChannel.setGbar">(MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.setGbar">[1]</a>, <a href="moose_classes.html#MarkovChannel.setGbar">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.setGbar">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.setGbar">[1]</a>, <a href="moose_classes.html#SynChanBase.setGbar">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setGbar">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setGbar">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setGbar">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.setGeometryPolicy">setGeometryPolicy() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.setGeometryPolicy">[1]</a>, <a href="moose_classes.html#NeuroMesh.setGeometryPolicy">[2]</a> - </dt> - - - <dt><a href="tmp.html#setGk">setGk()</a>, <a href="moose_builtins.html#setGk">[1]</a>, <a href="moose_classes.html#setGk">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ChanBase.setGk">(ChanBase method)</a>, <a href="moose_builtins.html#ChanBase.setGk">[1]</a>, <a href="moose_classes.html#ChanBase.setGk">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.setGk">(SynChanBase method)</a>, <a href="moose_builtins.html#SynChanBase.setGk">[1]</a>, <a href="moose_classes.html#SynChanBase.setGk">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setGk">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setGk">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setGk">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#OneToAllMsg.setI1">setI1() (OneToAllMsg method)</a>, <a href="moose_builtins.html#OneToAllMsg.setI1">[1]</a>, <a href="moose_classes.html#OneToAllMsg.setI1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SingleMsg.setI1">(SingleMsg method)</a>, <a href="moose_builtins.html#SingleMsg.setI1">[1]</a>, <a href="moose_classes.html#SingleMsg.setI1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SingleMsg.setI2">setI2() (SingleMsg method)</a>, <a href="moose_builtins.html#SingleMsg.setI2">[1]</a>, <a href="moose_classes.html#SingleMsg.setI2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.setIcon">setIcon() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.setIcon">[1]</a>, <a href="moose_classes.html#Annotator.setIcon">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.setIk">setIk() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.setIk">[1]</a>, <a href="moose_classes.html#MgBlock.setIk">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.setInitialState">setInitialState() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.setInitialState">[1]</a>, <a href="moose_classes.html#MarkovChannel.setInitialState">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.setInitialState">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.setInitialState">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.setInitialState">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IzhikevichNrn.setInitU">setInitU() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setInitU">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setInitU">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.setInitVm">setInitVm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setInitVm">[1]</a>, <a href="moose_classes.html#CompartmentBase.setInitVm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.setInitVm">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setInitVm">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setInitVm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.setInject">setInject() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setInject">[1]</a>, <a href="moose_classes.html#CompartmentBase.setInject">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.setInject">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setInject">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setInject">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.setInject">(RC method)</a>, <a href="moose_builtins.html#RC.setInject">[1]</a>, <a href="moose_classes.html#RC.setInject">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#setInnerArea">setInnerArea()</a>, <a href="moose_builtins.html#setInnerArea">[1]</a>, <a href="moose_classes.html#setInnerArea">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.setInputOffset">setInputOffset() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.setInputOffset">[1]</a>, <a href="moose_classes.html#Adaptor.setInputOffset">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setInstant">setInstant() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setInstant">[1]</a>, <a href="moose_classes.html#HHChannel.setInstant">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.setInstant">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setInstant">[1]</a>, <a href="moose_classes.html#HHChannel2D.setInstant">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setInstant">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setInstant">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setInstant">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovGslSolver.setInternalDt">setInternalDt() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.setInternalDt">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.setInternalDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setIsToroid">setIsToroid() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setIsToroid">[1]</a>, <a href="moose_classes.html#CubeMesh.setIsToroid">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.setK1">setK1() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.setK1">[1]</a>, <a href="moose_classes.html#CplxEnzBase.setK1">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.setK2">setK2() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.setK2">[1]</a>, <a href="moose_classes.html#CplxEnzBase.setK2">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.setK3">setK3() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.setK3">[1]</a>, <a href="moose_classes.html#CplxEnzBase.setK3">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.setKb">setKb() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.setKb">[1]</a>, <a href="moose_classes.html#ReacBase.setKb">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.setKcat">setKcat() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.setKcat">[1]</a>, <a href="moose_classes.html#EnzBase.setKcat">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.setKf">setKf() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.setKf">[1]</a>, <a href="moose_classes.html#ReacBase.setKf">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.setKm">setKm() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.setKm">[1]</a>, <a href="moose_classes.html#EnzBase.setKm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.setKMg_A">setKMg_A() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.setKMg_A">[1]</a>, <a href="moose_classes.html#MgBlock.setKMg_A">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.setKMg_B">setKMg_B() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.setKMg_B">[1]</a>, <a href="moose_classes.html#MgBlock.setKMg_B">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.setKsolve">setKsolve() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.setKsolve">[1]</a>, <a href="moose_classes.html#Stoich.setKsolve">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.setLabels">setLabels() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.setLabels">[1]</a>, <a href="moose_classes.html#MarkovChannel.setLabels">[2]</a> - </dt> - - - <dt><a href="tmp.html#setLeak">setLeak()</a>, <a href="moose_builtins.html#setLeak">[1]</a>, <a href="moose_classes.html#setLeak">[2]</a> - </dt> - - - <dt><a href="tmp.html#setLength">setLength()</a>, <a href="moose_builtins.html#setLength">[1]</a>, <a href="moose_classes.html#setLength">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.setLength">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setLength">[1]</a>, <a href="moose_classes.html#CompartmentBase.setLength">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.setLevel">setLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setLevel">[1]</a>, <a href="moose_classes.html#PulseGen.setLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.setLigandConc">setLigandConc() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.setLigandConc">[1]</a>, <a href="moose_classes.html#MarkovChannel.setLigandConc">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovRateTable.setLigandConc">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.setLigandConc">[1]</a>, <a href="moose_classes.html#MarkovRateTable.setLigandConc">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#StimulusTable.setLoopTime">setLoopTime() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.setLoopTime">[1]</a>, <a href="moose_classes.html#StimulusTable.setLoopTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#MathFunc.setMathML">setMathML() (MathFunc method)</a>, <a href="moose_builtins.html#MathFunc.setMathML">[1]</a>, <a href="moose_classes.html#MathFunc.setMathML">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.setMax">setMax() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setMax">[1]</a>, <a href="moose_classes.html#HHGate.setMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.setMaxIter">setMaxIter() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.setMaxIter">[1]</a>, <a href="moose_classes.html#SteadyState.setMaxIter">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setMeshToSpace">setMeshToSpace() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setMeshToSpace">[1]</a>, <a href="moose_classes.html#CubeMesh.setMeshToSpace">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.setMethod">setMethod() (Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setMethod">[1]</a>, <a href="moose_classes.html#Ksolve.setMethod">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovGslSolver.setMethod">(MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.setMethod">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.setMethod">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable.setMethod">(TimeTable method)</a>, <a href="moose_builtins.html#TimeTable.setMethod">[1]</a>, <a href="moose_classes.html#TimeTable.setMethod">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.setMin">setMin() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setMin">[1]</a>, <a href="moose_classes.html#HHGate.setMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.setMInfinity">setMInfinity() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setMInfinity">[1]</a>, <a href="moose_classes.html#HHGate.setMInfinity">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.setMode">setMode() (Func method)</a>, <a href="moose_builtins.html#Func.setMode">[1]</a>, <a href="moose_classes.html#Func.setMode">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VClamp.setMode">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.setMode">[1]</a>, <a href="moose_classes.html#VClamp.setMode">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Species.setMolWt">setMolWt() (Species method)</a>, <a href="moose_builtins.html#Species.setMolWt">[1]</a>, <a href="moose_classes.html#Species.setMolWt">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.setMotorConst">setMotorConst() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setMotorConst">[1]</a>, <a href="moose_classes.html#PoolBase.setMotorConst">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.setN">setN() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setN">[1]</a>, <a href="moose_classes.html#PoolBase.setN">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.setName">setName() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.setName">[1]</a>, <a href="moose_classes.html#Neutral.setName">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.setNInit">setNInit() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setNInit">[1]</a>, <a href="moose_classes.html#PoolBase.setNInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.setNormalizeWeights">setNormalizeWeights() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.setNormalizeWeights">[1]</a>, <a href="moose_classes.html#SynChan.setNormalizeWeights">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.setNotes">setNotes() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.setNotes">[1]</a>, <a href="moose_classes.html#Annotator.setNotes">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.setNumAllVoxels">setNumAllVoxels() (Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.setNumAllVoxels">[1]</a>, <a href="moose_classes.html#Gsolve.setNumAllVoxels">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Ksolve.setNumAllVoxels">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setNumAllVoxels">[1]</a>, <a href="moose_classes.html#Ksolve.setNumAllVoxels">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Neutral.setNumData">setNumData() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.setNumData">[1]</a>, <a href="moose_classes.html#Neutral.setNumData">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.setNumField">setNumField() (Neutral method)</a>, <a href="moose_builtins.html#Neutral.setNumField">[1]</a>, <a href="moose_classes.html#Neutral.setNumField">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setNumGateX">setNumGateX() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setNumGateX">[1]</a>, <a href="moose_classes.html#HHChannel.setNumGateX">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.setNumGateX">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setNumGateX">[1]</a>, <a href="moose_classes.html#HHChannel2D.setNumGateX">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setNumGateX">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setNumGateX">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setNumGateX">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel.setNumGateY">setNumGateY() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setNumGateY">[1]</a>, <a href="moose_classes.html#HHChannel.setNumGateY">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.setNumGateY">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setNumGateY">[1]</a>, <a href="moose_classes.html#HHChannel2D.setNumGateY">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setNumGateY">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setNumGateY">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setNumGateY">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel.setNumGateZ">setNumGateZ() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setNumGateZ">[1]</a>, <a href="moose_classes.html#HHChannel.setNumGateZ">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.setNumGateZ">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setNumGateZ">[1]</a>, <a href="moose_classes.html#HHChannel2D.setNumGateZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setNumGateZ">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setNumGateZ">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setNumGateZ">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ReacBase.setNumKb">setNumKb() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.setNumKb">[1]</a>, <a href="moose_classes.html#ReacBase.setNumKb">[2]</a> - </dt> - - - <dt><a href="tmp.html#ReacBase.setNumKf">setNumKf() (ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.setNumKf">[1]</a>, <a href="moose_classes.html#ReacBase.setNumKf">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.setNumKm">setNumKm() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.setNumKm">[1]</a>, <a href="moose_classes.html#EnzBase.setNumKm">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.setNumMesh">setNumMesh() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.setNumMesh">[1]</a>, <a href="moose_classes.html#ChemCompt.setNumMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.setNumOpenStates">setNumOpenStates() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.setNumOpenStates">[1]</a>, <a href="moose_classes.html#MarkovChannel.setNumOpenStates">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.setNumPools">setNumPools() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.setNumPools">[1]</a>, <a href="moose_classes.html#Dsolve.setNumPools">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.setNumPools">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.setNumPools">[1]</a>, <a href="moose_classes.html#Gsolve.setNumPools">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.setNumPools">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setNumPools">[1]</a>, <a href="moose_classes.html#Ksolve.setNumPools">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovChannel.setNumStates">setNumStates() (MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.setNumStates">[1]</a>, <a href="moose_classes.html#MarkovChannel.setNumStates">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynHandler.setNumSynapse">setNumSynapse() (SynHandler method)</a>, <a href="moose_builtins.html#SynHandler.setNumSynapse">[1]</a>, <a href="moose_classes.html#SynHandler.setNumSynapse">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynHandler.setNumSynapses">setNumSynapses() (SynHandler method)</a>, <a href="moose_builtins.html#SynHandler.setNumSynapses">[1]</a>, <a href="moose_classes.html#SynHandler.setNumSynapses">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.setNVec">setNVec() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.setNVec">[1]</a>, <a href="moose_classes.html#Dsolve.setNVec">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.setNVec">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.setNVec">[1]</a>, <a href="moose_classes.html#Gsolve.setNVec">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.setNVec">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setNVec">[1]</a>, <a href="moose_classes.html#Ksolve.setNVec">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setNx">setNx() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setNx">[1]</a>, <a href="moose_classes.html#CubeMesh.setNx">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setNy">setNy() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setNy">[1]</a>, <a href="moose_classes.html#CubeMesh.setNy">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setNz">setNz() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setNz">[1]</a>, <a href="moose_classes.html#CubeMesh.setNz">[2]</a> - </dt> - - - <dt><a href="tmp.html#setOuterArea">setOuterArea()</a>, <a href="moose_builtins.html#setOuterArea">[1]</a>, <a href="moose_classes.html#setOuterArea">[2]</a> - </dt> - - - <dt><a href="tmp.html#Adaptor.setOutputOffset">setOutputOffset() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.setOutputOffset">[1]</a>, <a href="moose_classes.html#Adaptor.setOutputOffset">[2]</a> - </dt> - - - <dt><a href="tmp.html#Arith.setOutputValue">setOutputValue() (Arith method)</a>, <a href="moose_builtins.html#Arith.setOutputValue">[1]</a>, <a href="moose_classes.html#Arith.setOutputValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.setPath">setPath() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.setPath">[1]</a>, <a href="moose_classes.html#Dsolve.setPath">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Stoich.setPath">(Stoich method)</a>, <a href="moose_builtins.html#Stoich.setPath">[1]</a>, <a href="moose_classes.html#Stoich.setPath">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setPreserveNumEntries">setPreserveNumEntries() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setPreserveNumEntries">[1]</a>, <a href="moose_classes.html#CubeMesh.setPreserveNumEntries">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.setProbability">setProbability() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.setProbability">[1]</a>, <a href="moose_classes.html#SparseMsg.setProbability">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.setR">setR() (RC method)</a>, <a href="moose_builtins.html#RC.setR">[1]</a>, <a href="moose_classes.html#RC.setR">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.setR0">setR0() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setR0">[1]</a>, <a href="moose_classes.html#CylMesh.setR0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.setR1">setR1() (CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setR1">[1]</a>, <a href="moose_classes.html#CylMesh.setR1">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.setRa">setRa() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setRa">[1]</a>, <a href="moose_classes.html#CompartmentBase.setRa">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.setRandomConnectivity">setRandomConnectivity() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.setRandomConnectivity">[1]</a>, <a href="moose_classes.html#SparseMsg.setRandomConnectivity">[2]</a> - </dt> - - - <dt><a href="tmp.html#CplxEnzBase.setRatio">setRatio() (CplxEnzBase method)</a>, <a href="moose_builtins.html#CplxEnzBase.setRatio">[1]</a>, <a href="moose_classes.html#CplxEnzBase.setRatio">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.setRefractoryPeriod">setRefractoryPeriod() (IntFire method)</a>, <a href="moose_builtins.html#IntFire.setRefractoryPeriod">[1]</a>, <a href="moose_classes.html#IntFire.setRefractoryPeriod">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.setRefractT">setRefractT() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.setRefractT">[1]</a>, <a href="moose_classes.html#SpikeGen.setRefractT">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovGslSolver.setRelativeAccuracy">setRelativeAccuracy() (MarkovGslSolver method)</a>, <a href="moose_builtins.html#MarkovGslSolver.setRelativeAccuracy">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.setRelativeAccuracy">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CompartmentBase.setRm">setRm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setRm">[1]</a>, <a href="moose_classes.html#CompartmentBase.setRm">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.setRmByTau">setRmByTau() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setRmByTau">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setRmByTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiffAmp.setSaturation">setSaturation() (DiffAmp method)</a>, <a href="moose_builtins.html#DiffAmp.setSaturation">[1]</a>, <a href="moose_classes.html#DiffAmp.setSaturation">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PIDController.setSaturation">(PIDController method)</a>, <a href="moose_builtins.html#PIDController.setSaturation">[1]</a>, <a href="moose_classes.html#PIDController.setSaturation">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Adaptor.setScale">setScale() (Adaptor method)</a>, <a href="moose_builtins.html#Adaptor.setScale">[1]</a>, <a href="moose_classes.html#Adaptor.setScale">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Nernst.setScale">(Nernst method)</a>, <a href="moose_builtins.html#Nernst.setScale">[1]</a>, <a href="moose_classes.html#Nernst.setScale">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#PulseGen.setSecondDelay">setSecondDelay() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setSecondDelay">[1]</a>, <a href="moose_classes.html#PulseGen.setSecondDelay">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.setSecondLevel">setSecondLevel() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setSecondLevel">[1]</a>, <a href="moose_classes.html#PulseGen.setSecondLevel">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.setSecondWidth">setSecondWidth() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setSecondWidth">[1]</a>, <a href="moose_classes.html#PulseGen.setSecondWidth">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.setSeed">setSeed() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setSeed">[1]</a>, <a href="moose_classes.html#HSolve.setSeed">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SparseMsg.setSeed">(SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.setSeed">[1]</a>, <a href="moose_classes.html#SparseMsg.setSeed">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.setSeparateSpines">setSeparateSpines() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.setSeparateSpines">[1]</a>, <a href="moose_classes.html#NeuroMesh.setSeparateSpines">[2]</a> - </dt> - - - <dt><a href="tmp.html#setShapeMode">setShapeMode()</a>, <a href="moose_builtins.html#setShapeMode">[1]</a>, <a href="moose_classes.html#setShapeMode">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setSpaceToMesh">setSpaceToMesh() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setSpaceToMesh">[1]</a>, <a href="moose_classes.html#CubeMesh.setSpaceToMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.setSpeciesId">setSpeciesId() (PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setSpeciesId">[1]</a>, <a href="moose_classes.html#PoolBase.setSpeciesId">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.setStartTime">setStartTime() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.setStartTime">[1]</a>, <a href="moose_classes.html#StimulusTable.setStartTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.setStepPosition">setStepPosition() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.setStepPosition">[1]</a>, <a href="moose_classes.html#StimulusTable.setStepPosition">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.setStepSize">setStepSize() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.setStepSize">[1]</a>, <a href="moose_classes.html#StimulusTable.setStepSize">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.setStoich">setStoich() (Dsolve method)</a>, <a href="moose_builtins.html#Dsolve.setStoich">[1]</a>, <a href="moose_classes.html#Dsolve.setStoich">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.setStoich">(Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.setStoich">[1]</a>, <a href="moose_classes.html#Gsolve.setStoich">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.setStoich">(Ksolve method)</a>, <a href="moose_builtins.html#Ksolve.setStoich">[1]</a>, <a href="moose_classes.html#Ksolve.setStoich">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.setStoich">(SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.setStoich">[1]</a>, <a href="moose_classes.html#SteadyState.setStoich">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#StimulusTable.setStopTime">setStopTime() (StimulusTable method)</a>, <a href="moose_builtins.html#StimulusTable.setStopTime">[1]</a>, <a href="moose_classes.html#StimulusTable.setStopTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiagonalMsg.setStride">setStride() (DiagonalMsg method)</a>, <a href="moose_builtins.html#DiagonalMsg.setStride">[1]</a>, <a href="moose_classes.html#DiagonalMsg.setStride">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.setSubTree">setSubTree() (NeuroMesh method)</a>, <a href="moose_builtins.html#NeuroMesh.setSubTree">[1]</a>, <a href="moose_classes.html#NeuroMesh.setSubTree">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.setSurface">setSurface() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setSurface">[1]</a>, <a href="moose_classes.html#CubeMesh.setSurface">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.setTable">setTable() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setTable">[1]</a>, <a href="moose_classes.html#Interpol2D.setTable">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VectorTable.setTable">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.setTable">[1]</a>, <a href="moose_classes.html#VectorTable.setTable">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.setTableA">setTableA() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setTableA">[1]</a>, <a href="moose_classes.html#HHGate.setTableA">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.setTableA">(HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setTableA">[1]</a>, <a href="moose_classes.html#HHGate2D.setTableA">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.setTableB">setTableB() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setTableB">[1]</a>, <a href="moose_classes.html#HHGate.setTableB">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.setTableB">(HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setTableB">[1]</a>, <a href="moose_classes.html#HHGate2D.setTableB">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.setTableVector2D">setTableVector2D() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setTableVector2D">[1]</a>, <a href="moose_classes.html#Interpol2D.setTableVector2D">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.setTarget">setTarget() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setTarget">[1]</a>, <a href="moose_classes.html#HSolve.setTarget">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.setTau">setTau() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setTau">[1]</a>, <a href="moose_classes.html#CaConc.setTau">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate.setTau">(HHGate method)</a>, <a href="moose_builtins.html#HHGate.setTau">[1]</a>, <a href="moose_classes.html#HHGate.setTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.setTau">(IntFire method)</a>, <a href="moose_builtins.html#IntFire.setTau">[1]</a>, <a href="moose_classes.html#IntFire.setTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.setTau">(VClamp method)</a>, <a href="moose_builtins.html#VClamp.setTau">[1]</a>, <a href="moose_classes.html#VClamp.setTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.setTau">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setTau">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setTau">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SynChan.setTau1">setTau1() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.setTau1">[1]</a>, <a href="moose_classes.html#SynChan.setTau1">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.setTau2">setTau2() (SynChan method)</a>, <a href="moose_builtins.html#SynChan.setTau2">[1]</a>, <a href="moose_classes.html#SynChan.setTau2">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.setTauD">setTauD() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.setTauD">[1]</a>, <a href="moose_classes.html#PIDController.setTauD">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.setTauI">setTauI() (PIDController method)</a>, <a href="moose_builtins.html#PIDController.setTauI">[1]</a>, <a href="moose_classes.html#PIDController.setTauI">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp.setTd">setTd() (VClamp method)</a>, <a href="moose_builtins.html#VClamp.setTd">[1]</a>, <a href="moose_classes.html#VClamp.setTd">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.setTemperature">setTemperature() (Nernst method)</a>, <a href="moose_builtins.html#Nernst.setTemperature">[1]</a>, <a href="moose_classes.html#Nernst.setTemperature">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.setTextColor">setTextColor() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.setTextColor">[1]</a>, <a href="moose_classes.html#Annotator.setTextColor">[2]</a> - </dt> - - - <dt><a href="tmp.html#CaConc.setThick">setThick() (CaConc method)</a>, <a href="moose_builtins.html#CaConc.setThick">[1]</a>, <a href="moose_classes.html#CaConc.setThick">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.setThick">(ZombieCaConc method)</a>, <a href="moose_builtins.html#ZombieCaConc.setThick">[1]</a>, <a href="moose_classes.html#ZombieCaConc.setThick">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#setThickness">setThickness()</a>, <a href="moose_builtins.html#setThickness">[1]</a>, <a href="moose_classes.html#setThickness">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PsdMesh.setThickness">(PsdMesh method)</a>, <a href="moose_builtins.html#PsdMesh.setThickness">[1]</a>, <a href="moose_classes.html#PsdMesh.setThickness">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Mstring.setThis">setThis() (Mstring method)</a>, <a href="moose_builtins.html#Mstring.setThis">[1]</a>, <a href="moose_classes.html#Mstring.setThis">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Neutral.setThis">(Neutral method)</a>, <a href="moose_builtins.html#Neutral.setThis">[1]</a>, <a href="moose_classes.html#Neutral.setThis">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IntFire.setThresh">setThresh() (IntFire method)</a>, <a href="moose_builtins.html#IntFire.setThresh">[1]</a>, <a href="moose_classes.html#IntFire.setThresh">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.setThreshold">setThreshold() (SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.setThreshold">[1]</a>, <a href="moose_classes.html#SpikeGen.setThreshold">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Table.setThreshold">(Table method)</a>, <a href="moose_builtins.html#Table.setThreshold">[1]</a>, <a href="moose_classes.html#Table.setThreshold">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#VClamp.setTi">setTi() (VClamp method)</a>, <a href="moose_builtins.html#VClamp.setTi">[1]</a>, <a href="moose_classes.html#VClamp.setTi">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.setTickDt">setTickDt() (Clock method)</a>, <a href="moose_builtins.html#Clock.setTickDt">[1]</a>, <a href="moose_classes.html#Clock.setTickDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.setTickStep">setTickStep() (Clock method)</a>, <a href="moose_builtins.html#Clock.setTickStep">[1]</a>, <a href="moose_classes.html#Clock.setTickStep">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.settle">settle() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.settle">[1]</a>, <a href="moose_classes.html#SteadyState.settle">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.setTotal">setTotal() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.setTotal">[1]</a>, <a href="moose_classes.html#SteadyState.setTotal">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.setTrigMode">setTrigMode() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setTrigMode">[1]</a>, <a href="moose_classes.html#PulseGen.setTrigMode">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.setU0">setU0() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setU0">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setU0">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.setupAlpha">setupAlpha() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setupAlpha">[1]</a>, <a href="moose_classes.html#HHGate.setupAlpha">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.setupGate">setupGate() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setupGate">[1]</a>, <a href="moose_classes.html#HHGate.setupGate">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.setupMatrix">setupMatrix() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.setupMatrix">[1]</a>, <a href="moose_classes.html#SteadyState.setupMatrix">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.setupTau">setupTau() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setupTau">[1]</a>, <a href="moose_classes.html#HHGate.setupTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setUseConcentration">setUseConcentration() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setUseConcentration">[1]</a>, <a href="moose_classes.html#HHChannel.setUseConcentration">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieHHChannel.setUseConcentration">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setUseConcentration">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setUseConcentration">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.setUseInterpolation">setUseInterpolation() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.setUseInterpolation">[1]</a>, <a href="moose_classes.html#HHGate.setUseInterpolation">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.setUseRandInit">setUseRandInit() (Gsolve method)</a>, <a href="moose_builtins.html#Gsolve.setUseRandInit">[1]</a>, <a href="moose_classes.html#Gsolve.setUseRandInit">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.setV0">setV0() (RC method)</a>, <a href="moose_builtins.html#RC.setV0">[1]</a>, <a href="moose_classes.html#RC.setV0">[2]</a> - </dt> - - - <dt><a href="tmp.html#setValence">setValence()</a>, <a href="moose_builtins.html#setValence">[1]</a>, <a href="moose_classes.html#setValence">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Nernst.setValence">(Nernst method)</a>, <a href="moose_builtins.html#Nernst.setValence">[1]</a>, <a href="moose_classes.html#Nernst.setValence">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Double.setValue">setValue() (Double method)</a>, <a href="moose_builtins.html#Double.setValue">[1]</a>, <a href="moose_classes.html#Double.setValue">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Long.setValue">(Long method)</a>, <a href="moose_builtins.html#Long.setValue">[1]</a>, <a href="moose_classes.html#Long.setValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Mstring.setValue">(Mstring method)</a>, <a href="moose_builtins.html#Mstring.setValue">[1]</a>, <a href="moose_classes.html#Mstring.setValue">[2]</a> - </dt> - - - <dt><a href="tmp.html#Unsigned.setValue">(Unsigned method)</a>, <a href="moose_builtins.html#Unsigned.setValue">[1]</a>, <a href="moose_classes.html#Unsigned.setValue">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Func.setVar">setVar() (Func method)</a>, <a href="moose_builtins.html#Func.setVar">[1]</a>, <a href="moose_classes.html#Func.setVar">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.setVDiv">setVDiv() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setVDiv">[1]</a>, <a href="moose_classes.html#HSolve.setVDiv">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.setVector">setVector() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.setVector">[1]</a>, <a href="moose_classes.html#TableBase.setVector">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.setVm">setVm() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setVm">[1]</a>, <a href="moose_classes.html#CompartmentBase.setVm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IntFire.setVm">(IntFire method)</a>, <a href="moose_builtins.html#IntFire.setVm">[1]</a>, <a href="moose_classes.html#IntFire.setVm">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.setVm">(IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setVm">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setVm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.setVm">(MarkovChannel method)</a>, <a href="moose_builtins.html#MarkovChannel.setVm">[1]</a>, <a href="moose_classes.html#MarkovChannel.setVm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.setVm">(MarkovRateTable method)</a>, <a href="moose_builtins.html#MarkovRateTable.setVm">[1]</a>, <a href="moose_classes.html#MarkovRateTable.setVm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HSolve.setVMax">setVMax() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setVMax">[1]</a>, <a href="moose_classes.html#HSolve.setVMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.setVmax">setVmax() (IzhikevichNrn method)</a>, <a href="moose_builtins.html#IzhikevichNrn.setVmax">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.setVmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.setVMin">setVMin() (HSolve method)</a>, <a href="moose_builtins.html#HSolve.setVMin">[1]</a>, <a href="moose_classes.html#HSolve.setVMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#setVolume">setVolume()</a>, <a href="moose_builtins.html#setVolume">[1]</a>, <a href="moose_classes.html#setVolume">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ChemCompt.setVolume">(ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.setVolume">[1]</a>, <a href="moose_classes.html#ChemCompt.setVolume">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.setVolume">(PoolBase method)</a>, <a href="moose_builtins.html#PoolBase.setVolume">[1]</a>, <a href="moose_classes.html#PoolBase.setVolume">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChemCompt.setVolumeNotRates">setVolumeNotRates() (ChemCompt method)</a>, <a href="moose_builtins.html#ChemCompt.setVolumeNotRates">[1]</a>, <a href="moose_classes.html#ChemCompt.setVolumeNotRates">[2]</a> - </dt> - - - <dt><a href="tmp.html#Synapse.setWeight">setWeight() (Synapse method)</a>, <a href="moose_builtins.html#Synapse.setWeight">[1]</a>, <a href="moose_classes.html#Synapse.setWeight">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.setWidth">setWidth() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.setWidth">[1]</a>, <a href="moose_classes.html#PulseGen.setWidth">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.setX">setX() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.setX">[1]</a>, <a href="moose_classes.html#Annotator.setX">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.setX">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setX">[1]</a>, <a href="moose_classes.html#CompartmentBase.setX">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.setX">(Func method)</a>, <a href="moose_builtins.html#Func.setX">[1]</a>, <a href="moose_classes.html#Func.setX">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setX">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setX">[1]</a>, <a href="moose_classes.html#HHChannel.setX">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.setX">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setX">[1]</a>, <a href="moose_classes.html#HHChannel2D.setX">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setX">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setX">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setX">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.setX0">setX0() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setX0">[1]</a>, <a href="moose_classes.html#CompartmentBase.setX0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.setX0">(CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setX0">[1]</a>, <a href="moose_classes.html#CubeMesh.setX0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.setX0">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setX0">[1]</a>, <a href="moose_classes.html#CylMesh.setX0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setX1">setX1() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setX1">[1]</a>, <a href="moose_classes.html#CubeMesh.setX1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.setX1">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setX1">[1]</a>, <a href="moose_classes.html#CylMesh.setX1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.setXdivs">setXdivs() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setXdivs">[1]</a>, <a href="moose_classes.html#Interpol2D.setXdivs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.setXdivs">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.setXdivs">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.setXdivs">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.setXdivs">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.setXdivs">[1]</a>, <a href="moose_classes.html#VectorTable.setXdivs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.setXdivsA">setXdivsA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setXdivsA">[1]</a>, <a href="moose_classes.html#HHGate2D.setXdivsA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.setXdivsB">setXdivsB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setXdivsB">[1]</a>, <a href="moose_classes.html#HHGate2D.setXdivsB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.setXindex">setXindex() (HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setXindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.setXindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.setXmax">setXmax() (Interpol method)</a>, <a href="moose_builtins.html#Interpol.setXmax">[1]</a>, <a href="moose_classes.html#Interpol.setXmax">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.setXmax">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setXmax">[1]</a>, <a href="moose_classes.html#Interpol2D.setXmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.setXmax">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.setXmax">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.setXmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.setXmax">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.setXmax">[1]</a>, <a href="moose_classes.html#VectorTable.setXmax">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.setXmaxA">setXmaxA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setXmaxA">[1]</a>, <a href="moose_classes.html#HHGate2D.setXmaxA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.setXmaxB">setXmaxB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setXmaxB">[1]</a>, <a href="moose_classes.html#HHGate2D.setXmaxB">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.setXmin">setXmin() (Interpol method)</a>, <a href="moose_builtins.html#Interpol.setXmin">[1]</a>, <a href="moose_classes.html#Interpol.setXmin">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.setXmin">(Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setXmin">[1]</a>, <a href="moose_classes.html#Interpol2D.setXmin">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.setXmin">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.setXmin">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.setXmin">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.setXmin">(VectorTable method)</a>, <a href="moose_builtins.html#VectorTable.setXmin">[1]</a>, <a href="moose_classes.html#VectorTable.setXmin">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.setXminA">setXminA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setXminA">[1]</a>, <a href="moose_classes.html#HHGate2D.setXminA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.setXminB">setXminB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setXminB">[1]</a>, <a href="moose_classes.html#HHGate2D.setXminB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setXpower">setXpower() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setXpower">[1]</a>, <a href="moose_classes.html#HHChannel.setXpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.setXpower">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setXpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.setXpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setXpower">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setXpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setXpower">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Annotator.setY">setY() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.setY">[1]</a>, <a href="moose_classes.html#Annotator.setY">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.setY">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setY">[1]</a>, <a href="moose_classes.html#CompartmentBase.setY">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.setY">(Func method)</a>, <a href="moose_builtins.html#Func.setY">[1]</a>, <a href="moose_classes.html#Func.setY">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setY">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setY">[1]</a>, <a href="moose_classes.html#HHChannel.setY">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.setY">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setY">[1]</a>, <a href="moose_classes.html#HHChannel2D.setY">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setY">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setY">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setY">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.setY0">setY0() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setY0">[1]</a>, <a href="moose_classes.html#CompartmentBase.setY0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.setY0">(CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setY0">[1]</a>, <a href="moose_classes.html#CubeMesh.setY0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.setY0">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setY0">[1]</a>, <a href="moose_classes.html#CylMesh.setY0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setY1">setY1() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setY1">[1]</a>, <a href="moose_classes.html#CubeMesh.setY1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.setY1">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setY1">[1]</a>, <a href="moose_classes.html#CylMesh.setY1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.setYdivs">setYdivs() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setYdivs">[1]</a>, <a href="moose_classes.html#Interpol2D.setYdivs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.setYdivs">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.setYdivs">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.setYdivs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.setYdivsA">setYdivsA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setYdivsA">[1]</a>, <a href="moose_classes.html#HHGate2D.setYdivsA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.setYdivsB">setYdivsB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setYdivsB">[1]</a>, <a href="moose_classes.html#HHGate2D.setYdivsB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.setYindex">setYindex() (HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setYindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.setYindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.setYmax">setYmax() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setYmax">[1]</a>, <a href="moose_classes.html#Interpol2D.setYmax">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.setYmax">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.setYmax">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.setYmax">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.setYmaxA">setYmaxA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setYmaxA">[1]</a>, <a href="moose_classes.html#HHGate2D.setYmaxA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.setYmaxB">setYmaxB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setYmaxB">[1]</a>, <a href="moose_classes.html#HHGate2D.setYmaxB">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.setYmin">setYmin() (Interpol2D method)</a>, <a href="moose_builtins.html#Interpol2D.setYmin">[1]</a>, <a href="moose_classes.html#Interpol2D.setYmin">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.setYmin">(MarkovSolverBase method)</a>, <a href="moose_builtins.html#MarkovSolverBase.setYmin">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.setYmin">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.setYminA">setYminA() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setYminA">[1]</a>, <a href="moose_classes.html#HHGate2D.setYminA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.setYminB">setYminB() (HHGate2D method)</a>, <a href="moose_builtins.html#HHGate2D.setYminB">[1]</a>, <a href="moose_classes.html#HHGate2D.setYminB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setYpower">setYpower() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setYpower">[1]</a>, <a href="moose_classes.html#HHChannel.setYpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.setYpower">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setYpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.setYpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setYpower">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setYpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setYpower">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Annotator.setZ">setZ() (Annotator method)</a>, <a href="moose_builtins.html#Annotator.setZ">[1]</a>, <a href="moose_classes.html#Annotator.setZ">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CompartmentBase.setZ">(CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setZ">[1]</a>, <a href="moose_classes.html#CompartmentBase.setZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.setZ">(Func method)</a>, <a href="moose_builtins.html#Func.setZ">[1]</a>, <a href="moose_classes.html#Func.setZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setZ">(HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setZ">[1]</a>, <a href="moose_classes.html#HHChannel.setZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.setZ">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setZ">[1]</a>, <a href="moose_classes.html#HHChannel2D.setZ">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setZ">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setZ">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setZ">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.setZ0">setZ0() (CompartmentBase method)</a>, <a href="moose_builtins.html#CompartmentBase.setZ0">[1]</a>, <a href="moose_classes.html#CompartmentBase.setZ0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.setZ0">(CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setZ0">[1]</a>, <a href="moose_classes.html#CubeMesh.setZ0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.setZ0">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setZ0">[1]</a>, <a href="moose_classes.html#CylMesh.setZ0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.setZ1">setZ1() (CubeMesh method)</a>, <a href="moose_builtins.html#CubeMesh.setZ1">[1]</a>, <a href="moose_classes.html#CubeMesh.setZ1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.setZ1">(CylMesh method)</a>, <a href="moose_builtins.html#CylMesh.setZ1">[1]</a>, <a href="moose_classes.html#CylMesh.setZ1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel2D.setZindex">setZindex() (HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setZindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.setZindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.setZk">setZk() (MgBlock method)</a>, <a href="moose_builtins.html#MgBlock.setZk">[1]</a>, <a href="moose_classes.html#MgBlock.setZk">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.setZpower">setZpower() (HHChannel method)</a>, <a href="moose_builtins.html#HHChannel.setZpower">[1]</a>, <a href="moose_classes.html#HHChannel.setZpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.setZpower">(HHChannel2D method)</a>, <a href="moose_builtins.html#HHChannel2D.setZpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.setZpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.setZpower">(ZombieHHChannel method)</a>, <a href="moose_builtins.html#ZombieHHChannel.setZpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.setZpower">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#shapeMode">shapeMode</a>, <a href="moose_builtins.html#shapeMode">[1]</a>, <a href="moose_classes.html#shapeMode">[2]</a> - </dt> - - - <dt><a href="tmp.html#Shell">Shell (built-in class)</a>, <a href="moose_builtins.html#Shell">[1]</a>, <a href="moose_classes.html#Shell">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.showMatrices">showMatrices() (SteadyState method)</a>, <a href="moose_builtins.html#SteadyState.showMatrices">[1]</a>, <a href="moose_classes.html#SteadyState.showMatrices">[2]</a> - </dt> - - - <dt><a href="tmp.html#sibling">sibling</a>, <a href="moose_builtins.html#sibling">[1]</a>, <a href="moose_classes.html#sibling">[2]</a> - </dt> - - - <dt><a href="tmp.html#SingleMsg">SingleMsg (built-in class)</a>, <a href="moose_builtins.html#SingleMsg">[1]</a>, <a href="moose_classes.html#SingleMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.size">size (MarkovRateTable attribute)</a>, <a href="moose_builtins.html#MarkovRateTable.size">[1]</a>, <a href="moose_classes.html#MarkovRateTable.size">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#TableBase.size">(TableBase attribute)</a>, <a href="moose_builtins.html#TableBase.size">[1]</a>, <a href="moose_classes.html#TableBase.size">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SteadyState.solutionStatus">solutionStatus (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.solutionStatus">[1]</a>, <a href="moose_classes.html#SteadyState.solutionStatus">[2]</a> - </dt> - - - <dt><a href="tmp.html#Neutral.sourceFields">sourceFields (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.sourceFields">[1]</a>, <a href="moose_classes.html#Neutral.sourceFields">[2]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.spaceToMesh">spaceToMesh (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.spaceToMesh">[1]</a>, <a href="moose_classes.html#CubeMesh.spaceToMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg">SparseMsg (built-in class)</a>, <a href="moose_builtins.html#SparseMsg">[1]</a>, <a href="moose_classes.html#SparseMsg">[2]</a> - </dt> - - - <dt><a href="tmp.html#Species">Species (built-in class)</a>, <a href="moose_builtins.html#Species">[1]</a>, <a href="moose_classes.html#Species">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.species">species (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.species">[1]</a>, <a href="moose_classes.html#PoolBase.species">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.speciesId">speciesId (PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.speciesId">[1]</a>, <a href="moose_classes.html#PoolBase.speciesId">[2]</a> - </dt> - - - <dt><a href="tmp.html#sphere">sphere</a>, <a href="moose_builtins.html#sphere">[1]</a>, <a href="moose_classes.html#sphere">[2]</a> - </dt> - - - <dt><a href="tmp.html#Table.spike">spike() (Table method)</a>, <a href="moose_builtins.html#Table.spike">[1]</a>, <a href="moose_classes.html#Table.spike">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen">SpikeGen (built-in class)</a>, <a href="moose_builtins.html#SpikeGen">[1]</a>, <a href="moose_classes.html#SpikeGen">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.spikeOut">spikeOut (IntFire attribute)</a>, <a href="moose_builtins.html#IntFire.spikeOut">[1]</a>, <a href="moose_classes.html#IntFire.spikeOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.spikeOut">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.spikeOut">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.spikeOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.spikeOut">(SpikeGen attribute)</a>, <a href="moose_builtins.html#SpikeGen.spikeOut">[1]</a>, <a href="moose_classes.html#SpikeGen.spikeOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SpineMesh.spineList">spineList() (SpineMesh method)</a>, <a href="moose_builtins.html#SpineMesh.spineList">[1]</a>, <a href="moose_classes.html#SpineMesh.spineList">[2]</a> - </dt> - - - <dt><a href="tmp.html#NeuroMesh.spineListOut">spineListOut (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.spineListOut">[1]</a>, <a href="moose_classes.html#NeuroMesh.spineListOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpineMesh">SpineMesh (built-in class)</a>, <a href="moose_builtins.html#SpineMesh">[1]</a>, <a href="moose_classes.html#SpineMesh">[2]</a> - </dt> - - - <dt><a href="tmp.html#Finfo.src">src (Finfo attribute)</a>, <a href="moose_builtins.html#Finfo.src">[1]</a>, <a href="moose_classes.html#Finfo.src">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.srcFieldsOnE1">srcFieldsOnE1 (Msg attribute)</a>, <a href="moose_builtins.html#Msg.srcFieldsOnE1">[1]</a>, <a href="moose_classes.html#Msg.srcFieldsOnE1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Msg.srcFieldsOnE2">srcFieldsOnE2 (Msg attribute)</a>, <a href="moose_builtins.html#Msg.srcFieldsOnE2">[1]</a>, <a href="moose_classes.html#Msg.srcFieldsOnE2">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.start">start() (Clock method)</a>, <a href="moose_builtins.html#Clock.start">[1]</a>, <a href="moose_classes.html#Clock.start">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.startTime">startTime (StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.startTime">[1]</a>, <a href="moose_classes.html#StimulusTable.startTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#state">state</a>, <a href="moose_builtins.html#state">[1]</a>, <a href="moose_classes.html#state">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovChannel.state">(MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.state">[1]</a>, <a href="moose_classes.html#MarkovChannel.state">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.state">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.state">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.state">[2]</a> - </dt> - - - <dt><a href="tmp.html#RC.state">(RC attribute)</a>, <a href="moose_builtins.html#RC.state">[1]</a>, <a href="moose_classes.html#RC.state">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#MarkovGslSolver.stateOut">stateOut (MarkovGslSolver attribute)</a>, <a href="moose_builtins.html#MarkovGslSolver.stateOut">[1]</a>, <a href="moose_classes.html#MarkovGslSolver.stateOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.stateOut">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.stateOut">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.stateOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SteadyState.stateType">stateType (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.stateType">[1]</a>, <a href="moose_classes.html#SteadyState.stateType">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats">Stats (built-in class)</a>, <a href="moose_builtins.html#Stats">[1]</a>, <a href="moose_classes.html#Stats">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.status">status (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.status">[1]</a>, <a href="moose_classes.html#SteadyState.status">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState">SteadyState (built-in class)</a>, <a href="moose_builtins.html#SteadyState">[1]</a>, <a href="moose_classes.html#SteadyState">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.stencilIndex">stencilIndex (ChemCompt attribute)</a>, <a href="moose_builtins.html#ChemCompt.stencilIndex">[1]</a>, <a href="moose_classes.html#ChemCompt.stencilIndex">[2]</a> - </dt> - - - <dt><a href="tmp.html#ChemCompt.stencilRate">stencilRate (ChemCompt attribute)</a>, <a href="moose_builtins.html#ChemCompt.stencilRate">[1]</a>, <a href="moose_classes.html#ChemCompt.stencilRate">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.step">step() (Clock method)</a>, <a href="moose_builtins.html#Clock.step">[1]</a>, <a href="moose_classes.html#Clock.step">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.stepPosition">stepPosition (StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.stepPosition">[1]</a>, <a href="moose_classes.html#StimulusTable.stepPosition">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.stepSize">stepSize (StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.stepSize">[1]</a>, <a href="moose_classes.html#StimulusTable.stepSize">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable">StimulusTable (built-in class)</a>, <a href="moose_builtins.html#StimulusTable">[1]</a>, <a href="moose_classes.html#StimulusTable">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich">Stoich (built-in class)</a>, <a href="moose_builtins.html#Stoich">[1]</a>, <a href="moose_classes.html#Stoich">[2]</a> - </dt> - - - <dt><a href="tmp.html#Dsolve.stoich">stoich (Dsolve attribute)</a>, <a href="moose_builtins.html#Dsolve.stoich">[1]</a>, <a href="moose_classes.html#Dsolve.stoich">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Gsolve.stoich">(Gsolve attribute)</a>, <a href="moose_builtins.html#Gsolve.stoich">[1]</a>, <a href="moose_classes.html#Gsolve.stoich">[2]</a> - </dt> - - - <dt><a href="tmp.html#Ksolve.stoich">(Ksolve attribute)</a>, <a href="moose_builtins.html#Ksolve.stoich">[1]</a>, <a href="moose_classes.html#Ksolve.stoich">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.stoich">(SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.stoich">[1]</a>, <a href="moose_classes.html#SteadyState.stoich">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Clock.stop">stop() (Clock method)</a>, <a href="moose_builtins.html#Clock.stop">[1]</a>, <a href="moose_classes.html#Clock.stop">[2]</a> - </dt> - - - <dt><a href="tmp.html#StimulusTable.stopTime">stopTime (StimulusTable attribute)</a>, <a href="moose_builtins.html#StimulusTable.stopTime">[1]</a>, <a href="moose_classes.html#StimulusTable.stopTime">[2]</a> - </dt> - - - <dt><a href="tmp.html#storeInflux">storeInflux()</a>, <a href="moose_builtins.html#storeInflux">[1]</a>, <a href="moose_classes.html#storeInflux">[2]</a> - </dt> - - - <dt><a href="tmp.html#storeOutflux">storeOutflux()</a>, <a href="moose_builtins.html#storeOutflux">[1]</a>, <a href="moose_classes.html#storeOutflux">[2]</a> - </dt> - - - <dt><a href="tmp.html#DiagonalMsg.stride">stride (DiagonalMsg attribute)</a>, <a href="moose_builtins.html#DiagonalMsg.stride">[1]</a>, <a href="moose_classes.html#DiagonalMsg.stride">[2]</a> - </dt> - - - <dt><a href="tmp.html#EnzBase.sub">sub (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.sub">[1]</a>, <a href="moose_classes.html#EnzBase.sub">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.sub">(ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.sub">[1]</a>, <a href="moose_classes.html#ReacBase.sub">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#EnzBase.subDest">subDest() (EnzBase method)</a>, <a href="moose_builtins.html#EnzBase.subDest">[1]</a>, <a href="moose_classes.html#EnzBase.subDest">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.subDest">(ReacBase method)</a>, <a href="moose_builtins.html#ReacBase.subDest">[1]</a>, <a href="moose_classes.html#ReacBase.subDest">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#EnzBase.subOut">subOut (EnzBase attribute)</a>, <a href="moose_builtins.html#EnzBase.subOut">[1]</a>, <a href="moose_classes.html#EnzBase.subOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ReacBase.subOut">(ReacBase attribute)</a>, <a href="moose_builtins.html#ReacBase.subOut">[1]</a>, <a href="moose_classes.html#ReacBase.subOut">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#NeuroMesh.subTree">subTree (NeuroMesh attribute)</a>, <a href="moose_builtins.html#NeuroMesh.subTree">[1]</a>, <a href="moose_classes.html#NeuroMesh.subTree">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stats.sum">sum (Stats attribute)</a>, <a href="moose_builtins.html#Stats.sum">[1]</a>, <a href="moose_classes.html#Stats.sum">[2]</a> - </dt> - - - <dt><a href="tmp.html#SumFunc">SumFunc (built-in class)</a>, <a href="moose_builtins.html#SumFunc">[1]</a>, <a href="moose_classes.html#SumFunc">[2]</a> - </dt> - - - <dt><a href="tmp.html#sumRaxial">sumRaxial()</a>, <a href="tmp.html#sumRaxial">[1]</a>, <a href="tmp.html#sumRaxial">[2]</a>, <a href="moose_builtins.html#sumRaxial">[3]</a>, <a href="moose_builtins.html#sumRaxial">[4]</a>, <a href="moose_builtins.html#sumRaxial">[5]</a>, <a href="moose_classes.html#sumRaxial">[6]</a>, <a href="moose_classes.html#sumRaxial">[7]</a>, <a href="moose_classes.html#sumRaxial">[8]</a> - </dt> - - - <dt><a href="tmp.html#sumRaxialOut">sumRaxialOut</a>, <a href="tmp.html#sumRaxialOut">[1]</a>, <a href="tmp.html#sumRaxialOut">[2]</a>, <a href="moose_builtins.html#sumRaxialOut">[3]</a>, <a href="moose_builtins.html#sumRaxialOut">[4]</a>, <a href="moose_builtins.html#sumRaxialOut">[5]</a>, <a href="moose_classes.html#sumRaxialOut">[6]</a>, <a href="moose_classes.html#sumRaxialOut">[7]</a>, <a href="moose_classes.html#sumRaxialOut">[8]</a> - </dt> - - - <dt><a href="tmp.html#CubeMesh.surface">surface (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.surface">[1]</a>, <a href="moose_classes.html#CubeMesh.surface">[2]</a> - </dt> - - - <dt><a href="tmp.html#SymCompartment">SymCompartment (built-in class)</a>, <a href="moose_builtins.html#SymCompartment">[1]</a>, <a href="moose_classes.html#SymCompartment">[2]</a> - </dt> - - - <dt><a href="tmp.html#Synapse">Synapse (built-in class)</a>, <a href="moose_builtins.html#Synapse">[1]</a>, <a href="moose_classes.html#Synapse">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan">SynChan (built-in class)</a>, <a href="moose_builtins.html#SynChan">[1]</a>, <a href="moose_classes.html#SynChan">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase">SynChanBase (built-in class)</a>, <a href="moose_builtins.html#SynChanBase">[1]</a>, <a href="moose_classes.html#SynChanBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynHandler">SynHandler (built-in class)</a>, <a href="moose_builtins.html#SynHandler">[1]</a>, <a href="moose_classes.html#SynHandler">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="T">T</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Table">Table (built-in class)</a>, <a href="moose_builtins.html#Table">[1]</a>, <a href="moose_classes.html#Table">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.table">table (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.table">[1]</a>, <a href="moose_classes.html#Interpol2D.table">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#VectorTable.table">(VectorTable attribute)</a>, <a href="moose_builtins.html#VectorTable.table">[1]</a>, <a href="moose_classes.html#VectorTable.table">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.tableA">tableA (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.tableA">[1]</a>, <a href="moose_classes.html#HHGate.tableA">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.tableA">(HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.tableA">[1]</a>, <a href="moose_classes.html#HHGate2D.tableA">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.tableB">tableB (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.tableB">[1]</a>, <a href="moose_classes.html#HHGate.tableB">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHGate2D.tableB">(HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.tableB">[1]</a>, <a href="moose_classes.html#HHGate2D.tableB">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#TableBase">TableBase (built-in class)</a>, <a href="moose_builtins.html#TableBase">[1]</a>, <a href="moose_classes.html#TableBase">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.tableVector2D">tableVector2D (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.tableVector2D">[1]</a>, <a href="moose_classes.html#Interpol2D.tableVector2D">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.target">target (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.target">[1]</a>, <a href="moose_classes.html#HSolve.target">[2]</a> - </dt> - - - <dt><a href="tmp.html#tau">tau</a>, <a href="moose_builtins.html#tau">[1]</a>, <a href="moose_classes.html#tau">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CaConc.tau">(CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.tau">[1]</a>, <a href="moose_classes.html#CaConc.tau">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.tau">(HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.tau">[1]</a>, <a href="moose_classes.html#HHGate.tau">[2]</a> - </dt> - - - <dt><a href="tmp.html#IntFire.tau">(IntFire attribute)</a>, <a href="moose_builtins.html#IntFire.tau">[1]</a>, <a href="moose_classes.html#IntFire.tau">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCaConc.tau">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.tau">[1]</a>, <a href="moose_classes.html#ZombieCaConc.tau">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#SynChan.tau1">tau1 (SynChan attribute)</a>, <a href="moose_builtins.html#SynChan.tau1">[1]</a>, <a href="moose_classes.html#SynChan.tau1">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChan.tau2">tau2 (SynChan attribute)</a>, <a href="moose_builtins.html#SynChan.tau2">[1]</a>, <a href="moose_classes.html#SynChan.tau2">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.tauD">tauD (PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.tauD">[1]</a>, <a href="moose_classes.html#PIDController.tauD">[2]</a> - </dt> - - - <dt><a href="tmp.html#PIDController.tauI">tauI (PIDController attribute)</a>, <a href="moose_builtins.html#PIDController.tauI">[1]</a>, <a href="moose_classes.html#PIDController.tauI">[2]</a> - </dt> - - - <dt><a href="tmp.html#tauPump">tauPump()</a>, <a href="moose_builtins.html#tauPump">[1]</a>, <a href="moose_classes.html#tauPump">[2]</a> - </dt> - - - <dt><a href="tmp.html#td">td</a>, <a href="moose_builtins.html#td">[1]</a>, <a href="moose_classes.html#td">[2]</a> - </dt> - - - <dt><a href="tmp.html#Nernst.Temperature">Temperature (Nernst attribute)</a>, <a href="moose_builtins.html#Nernst.Temperature">[1]</a>, <a href="moose_classes.html#Nernst.Temperature">[2]</a> - </dt> - - - <dt><a href="tmp.html#testSched">testSched (built-in class)</a>, <a href="moose_builtins.html#testSched">[1]</a>, <a href="moose_classes.html#testSched">[2]</a> - </dt> - - - <dt><a href="tmp.html#Annotator.textColor">textColor (Annotator attribute)</a>, <a href="moose_builtins.html#Annotator.textColor">[1]</a>, <a href="moose_classes.html#Annotator.textColor">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#CaConc.thick">thick (CaConc attribute)</a>, <a href="moose_builtins.html#CaConc.thick">[1]</a>, <a href="moose_classes.html#CaConc.thick">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieCaConc.thick">(ZombieCaConc attribute)</a>, <a href="moose_builtins.html#ZombieCaConc.thick">[1]</a>, <a href="moose_classes.html#ZombieCaConc.thick">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#thickness">thickness</a>, <a href="moose_builtins.html#thickness">[1]</a>, <a href="moose_classes.html#thickness">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#PsdMesh.thickness">(PsdMesh attribute)</a>, <a href="moose_builtins.html#PsdMesh.thickness">[1]</a>, <a href="moose_classes.html#PsdMesh.thickness">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Mstring.this">this (Mstring attribute)</a>, <a href="moose_builtins.html#Mstring.this">[1]</a>, <a href="moose_classes.html#Mstring.this">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Neutral.this">(Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.this">[1]</a>, <a href="moose_classes.html#Neutral.this">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#IntFire.thresh">thresh (IntFire attribute)</a>, <a href="moose_builtins.html#IntFire.thresh">[1]</a>, <a href="moose_classes.html#IntFire.thresh">[2]</a> - </dt> - - - <dt><a href="tmp.html#SpikeGen.threshold">threshold (SpikeGen attribute)</a>, <a href="moose_builtins.html#SpikeGen.threshold">[1]</a>, <a href="moose_classes.html#SpikeGen.threshold">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Table.threshold">(Table attribute)</a>, <a href="moose_builtins.html#Table.threshold">[1]</a>, <a href="moose_classes.html#Table.threshold">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ti">ti</a>, <a href="moose_builtins.html#ti">[1]</a>, <a href="moose_classes.html#ti">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.tickDt">tickDt (Clock attribute)</a>, <a href="moose_builtins.html#Clock.tickDt">[1]</a>, <a href="moose_classes.html#Clock.tickDt">[2]</a> - </dt> - - - <dt><a href="tmp.html#Clock.tickStep">tickStep (Clock attribute)</a>, <a href="moose_builtins.html#Clock.tickStep">[1]</a>, <a href="moose_classes.html#Clock.tickStep">[2]</a> - </dt> - - - <dt><a href="tmp.html#TimeTable">TimeTable (built-in class)</a>, <a href="moose_builtins.html#TimeTable">[1]</a>, <a href="moose_classes.html#TimeTable">[2]</a> - </dt> - - - <dt><a href="tmp.html#SteadyState.total">total (SteadyState attribute)</a>, <a href="moose_builtins.html#SteadyState.total">[1]</a>, <a href="moose_classes.html#SteadyState.total">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.totLength">totLength (CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.totLength">[1]</a>, <a href="moose_classes.html#CylMesh.totLength">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.transpose">transpose() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.transpose">[1]</a>, <a href="moose_classes.html#SparseMsg.transpose">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.trigMode">trigMode (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.trigMode">[1]</a>, <a href="moose_classes.html#PulseGen.trigMode">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.tripletFill">tripletFill() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.tripletFill">[1]</a>, <a href="moose_classes.html#SparseMsg.tripletFill">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.tweakAlpha">tweakAlpha() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.tweakAlpha">[1]</a>, <a href="moose_classes.html#HHGate.tweakAlpha">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate.tweakTau">tweakTau() (HHGate method)</a>, <a href="moose_builtins.html#HHGate.tweakTau">[1]</a>, <a href="moose_classes.html#HHGate.tweakTau">[2]</a> - </dt> - - - <dt><a href="tmp.html#Finfo.type">type (Finfo attribute)</a>, <a href="moose_builtins.html#Finfo.type">[1]</a>, <a href="moose_classes.html#Finfo.type">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="U">U</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#IzhikevichNrn.u">u (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.u">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.u">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.u0">u0 (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.u0">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.u0">[2]</a> - </dt> - - - <dt><a href="tmp.html#SparseMsg.unsetEntry">unsetEntry() (SparseMsg method)</a>, <a href="moose_builtins.html#SparseMsg.unsetEntry">[1]</a>, <a href="moose_classes.html#SparseMsg.unsetEntry">[2]</a> - </dt> - - - <dt><a href="tmp.html#Unsigned">Unsigned (built-in class)</a>, <a href="moose_builtins.html#Unsigned">[1]</a>, <a href="moose_classes.html#Unsigned">[2]</a> - </dt> - - - <dt><a href="tmp.html#Stoich.unzombify">unzombify() (Stoich method)</a>, <a href="moose_builtins.html#Stoich.unzombify">[1]</a>, <a href="moose_classes.html#Stoich.unzombify">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Shell.useClock">useClock() (Shell method)</a>, <a href="moose_builtins.html#Shell.useClock">[1]</a>, <a href="moose_classes.html#Shell.useClock">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.useConcentration">useConcentration (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.useConcentration">[1]</a>, <a href="moose_classes.html#HHChannel.useConcentration">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ZombieHHChannel.useConcentration">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.useConcentration">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.useConcentration">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate.useInterpolation">useInterpolation (HHGate attribute)</a>, <a href="moose_builtins.html#HHGate.useInterpolation">[1]</a>, <a href="moose_classes.html#HHGate.useInterpolation">[2]</a> - </dt> - - - <dt><a href="tmp.html#Gsolve.useRandInit">useRandInit (Gsolve attribute)</a>, <a href="moose_builtins.html#Gsolve.useRandInit">[1]</a>, <a href="moose_classes.html#Gsolve.useRandInit">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="V">V</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#RC.V0">V0 (RC attribute)</a>, <a href="moose_builtins.html#RC.V0">[1]</a>, <a href="moose_classes.html#RC.V0">[2]</a> - </dt> - - - <dt><a href="tmp.html#valence">valence</a>, <a href="moose_builtins.html#valence">[1]</a>, <a href="moose_classes.html#valence">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Nernst.valence">(Nernst attribute)</a>, <a href="moose_builtins.html#Nernst.valence">[1]</a>, <a href="moose_classes.html#Nernst.valence">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#value">value</a>, <a href="moose_builtins.html#value">[1]</a>, <a href="moose_classes.html#value">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Double.value">(Double attribute)</a>, <a href="moose_builtins.html#Double.value">[1]</a>, <a href="moose_classes.html#Double.value">[2]</a> - </dt> - - - <dt><a href="tmp.html#Long.value">(Long attribute)</a>, <a href="moose_builtins.html#Long.value">[1]</a>, <a href="moose_classes.html#Long.value">[2]</a> - </dt> - - - <dt><a href="tmp.html#Mstring.value">(Mstring attribute)</a>, <a href="moose_builtins.html#Mstring.value">[1]</a>, <a href="moose_classes.html#Mstring.value">[2]</a> - </dt> - - - <dt><a href="tmp.html#Unsigned.value">(Unsigned attribute)</a>, <a href="moose_builtins.html#Unsigned.value">[1]</a>, <a href="moose_classes.html#Unsigned.value">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Neutral.valueFields">valueFields (Neutral attribute)</a>, <a href="moose_builtins.html#Neutral.valueFields">[1]</a>, <a href="moose_classes.html#Neutral.valueFields">[2]</a> - </dt> - - - <dt><a href="tmp.html#valueOut">valueOut</a>, <a href="moose_builtins.html#valueOut">[1]</a>, <a href="moose_classes.html#valueOut">[2]</a> - </dt> - - - <dt><a href="tmp.html#var">var</a>, <a href="moose_builtins.html#var">[1]</a>, <a href="moose_classes.html#var">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.varIn">varIn() (Func method)</a>, <a href="moose_builtins.html#Func.varIn">[1]</a>, <a href="moose_classes.html#Func.varIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#vars">vars</a>, <a href="moose_builtins.html#vars">[1]</a>, <a href="moose_classes.html#vars">[2]</a> - </dt> - - - <dt><a href="tmp.html#VClamp">VClamp (built-in class)</a>, <a href="moose_builtins.html#VClamp">[1]</a>, <a href="moose_classes.html#VClamp">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.vDiv">vDiv (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.vDiv">[1]</a>, <a href="moose_classes.html#HSolve.vDiv">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.vector">vector (TableBase attribute)</a>, <a href="moose_builtins.html#TableBase.vector">[1]</a>, <a href="moose_classes.html#TableBase.vector">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#VectorTable">VectorTable (built-in class)</a>, <a href="moose_builtins.html#VectorTable">[1]</a>, <a href="moose_classes.html#VectorTable">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.Vm">Vm (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.Vm">[1]</a>, <a href="moose_classes.html#CompartmentBase.Vm">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IntFire.Vm">(IntFire attribute)</a>, <a href="moose_builtins.html#IntFire.Vm">[1]</a>, <a href="moose_classes.html#IntFire.Vm">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.Vm">(IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.Vm">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.Vm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovChannel.Vm">(MarkovChannel attribute)</a>, <a href="moose_builtins.html#MarkovChannel.Vm">[1]</a>, <a href="moose_classes.html#MarkovChannel.Vm">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovRateTable.Vm">(MarkovRateTable attribute)</a>, <a href="moose_builtins.html#MarkovRateTable.Vm">[1]</a>, <a href="moose_classes.html#MarkovRateTable.Vm">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChanBase.Vm">Vm() (ChanBase method)</a>, <a href="tmp.html#ChanBase.Vm">[1]</a>, <a href="moose_builtins.html#ChanBase.Vm">[2]</a>, <a href="moose_builtins.html#ChanBase.Vm">[3]</a>, <a href="moose_classes.html#ChanBase.Vm">[4]</a>, <a href="moose_classes.html#ChanBase.Vm">[5]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#SpikeGen.Vm">(SpikeGen method)</a>, <a href="moose_builtins.html#SpikeGen.Vm">[1]</a>, <a href="moose_classes.html#SpikeGen.Vm">[2]</a> - </dt> - - - <dt><a href="tmp.html#SynChanBase.Vm">(SynChanBase method)</a>, <a href="tmp.html#SynChanBase.Vm">[1]</a>, <a href="moose_builtins.html#SynChanBase.Vm">[2]</a>, <a href="moose_builtins.html#SynChanBase.Vm">[3]</a>, <a href="moose_classes.html#SynChanBase.Vm">[4]</a>, <a href="moose_classes.html#SynChanBase.Vm">[5]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Vm1">Vm1()</a>, <a href="moose_builtins.html#Vm1">[1]</a>, <a href="moose_classes.html#Vm1">[2]</a> - </dt> - - - <dt><a href="tmp.html#Vm2">Vm2()</a>, <a href="moose_builtins.html#Vm2">[1]</a>, <a href="moose_classes.html#Vm2">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.vMax">vMax (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.vMax">[1]</a>, <a href="moose_classes.html#HSolve.vMax">[2]</a> - </dt> - - - <dt><a href="tmp.html#IzhikevichNrn.Vmax">Vmax (IzhikevichNrn attribute)</a>, <a href="moose_builtins.html#IzhikevichNrn.Vmax">[1]</a>, <a href="moose_classes.html#IzhikevichNrn.Vmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#HSolve.vMin">vMin (HSolve attribute)</a>, <a href="moose_builtins.html#HSolve.vMin">[1]</a>, <a href="moose_classes.html#HSolve.vMin">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.VmOut">VmOut (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.VmOut">[1]</a>, <a href="moose_classes.html#CompartmentBase.VmOut">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#IzhikevichNrn.VmOut">(IzhikevichNrn attribute)</a>, <a href="tmp.html#IzhikevichNrn.VmOut">[1]</a>, <a href="moose_builtins.html#IzhikevichNrn.VmOut">[2]</a>, <a href="moose_builtins.html#IzhikevichNrn.VmOut">[3]</a>, <a href="moose_classes.html#IzhikevichNrn.VmOut">[4]</a>, <a href="moose_classes.html#IzhikevichNrn.VmOut">[5]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#volume">volume</a>, <a href="moose_builtins.html#volume">[1]</a>, <a href="moose_classes.html#volume">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#ChemCompt.volume">(ChemCompt attribute)</a>, <a href="moose_builtins.html#ChemCompt.volume">[1]</a>, <a href="moose_classes.html#ChemCompt.volume">[2]</a> - </dt> - - - <dt><a href="tmp.html#MeshEntry.volume">(MeshEntry attribute)</a>, <a href="moose_builtins.html#MeshEntry.volume">[1]</a>, <a href="moose_classes.html#MeshEntry.volume">[2]</a> - </dt> - - - <dt><a href="tmp.html#PoolBase.volume">(PoolBase attribute)</a>, <a href="moose_builtins.html#PoolBase.volume">[1]</a>, <a href="moose_classes.html#PoolBase.volume">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ChemCompt.voxelVolume">voxelVolume (ChemCompt attribute)</a>, <a href="moose_builtins.html#ChemCompt.voxelVolume">[1]</a>, <a href="moose_classes.html#ChemCompt.voxelVolume">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="W">W</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#Synapse.weight">weight (Synapse attribute)</a>, <a href="moose_builtins.html#Synapse.weight">[1]</a>, <a href="moose_classes.html#Synapse.weight">[2]</a> - </dt> - - - <dt><a href="tmp.html#PulseGen.width">width (PulseGen attribute)</a>, <a href="moose_builtins.html#PulseGen.width">[1]</a>, <a href="moose_classes.html#PulseGen.width">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#PulseGen.widthIn">widthIn() (PulseGen method)</a>, <a href="moose_builtins.html#PulseGen.widthIn">[1]</a>, <a href="moose_classes.html#PulseGen.widthIn">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="X">X</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#x">x</a>, <a href="moose_builtins.html#x">[1]</a>, <a href="moose_classes.html#x">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Annotator.x">(Annotator attribute)</a>, <a href="moose_builtins.html#Annotator.x">[1]</a>, <a href="moose_classes.html#Annotator.x">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.x">(CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.x">[1]</a>, <a href="moose_classes.html#CompartmentBase.x">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel.X">X (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.X">[1]</a>, <a href="moose_classes.html#HHChannel.X">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.X">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.X">[1]</a>, <a href="moose_classes.html#HHChannel2D.X">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.X">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.X">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.X">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CompartmentBase.x0">x0 (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.x0">[1]</a>, <a href="moose_classes.html#CompartmentBase.x0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.x0">(CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.x0">[1]</a>, <a href="moose_classes.html#CubeMesh.x0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.x0">(CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.x0">[1]</a>, <a href="moose_classes.html#CylMesh.x0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.x1">x1 (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.x1">[1]</a>, <a href="moose_classes.html#CubeMesh.x1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.x1">(CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.x1">[1]</a>, <a href="moose_classes.html#CylMesh.x1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.xdivs">xdivs (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.xdivs">[1]</a>, <a href="moose_classes.html#Interpol2D.xdivs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.xdivs">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.xdivs">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.xdivs">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.xdivs">(VectorTable attribute)</a>, <a href="moose_builtins.html#VectorTable.xdivs">[1]</a>, <a href="moose_classes.html#VectorTable.xdivs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.xdivsA">xdivsA (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.xdivsA">[1]</a>, <a href="moose_classes.html#HHGate2D.xdivsA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.xdivsB">xdivsB (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.xdivsB">[1]</a>, <a href="moose_classes.html#HHGate2D.xdivsB">[2]</a> - </dt> - - - <dt><a href="tmp.html#Func.xIn">xIn() (Func method)</a>, <a href="moose_builtins.html#Func.xIn">[1]</a>, <a href="moose_classes.html#Func.xIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.Xindex">Xindex (HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Xindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.Xindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.xmax">xmax (Interpol attribute)</a>, <a href="moose_builtins.html#Interpol.xmax">[1]</a>, <a href="moose_classes.html#Interpol.xmax">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.xmax">(Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.xmax">[1]</a>, <a href="moose_classes.html#Interpol2D.xmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.xmax">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.xmax">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.xmax">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.xmax">(VectorTable attribute)</a>, <a href="moose_builtins.html#VectorTable.xmax">[1]</a>, <a href="moose_classes.html#VectorTable.xmax">[2]</a> - </dt> - - </dl></dd> - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#HHGate2D.xmaxA">xmaxA (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.xmaxA">[1]</a>, <a href="moose_classes.html#HHGate2D.xmaxA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.xmaxB">xmaxB (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.xmaxB">[1]</a>, <a href="moose_classes.html#HHGate2D.xmaxB">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol.xmin">xmin (Interpol attribute)</a>, <a href="moose_builtins.html#Interpol.xmin">[1]</a>, <a href="moose_classes.html#Interpol.xmin">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Interpol2D.xmin">(Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.xmin">[1]</a>, <a href="moose_classes.html#Interpol2D.xmin">[2]</a> - </dt> - - - <dt><a href="tmp.html#MarkovSolverBase.xmin">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.xmin">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.xmin">[2]</a> - </dt> - - - <dt><a href="tmp.html#VectorTable.xmin">(VectorTable attribute)</a>, <a href="moose_builtins.html#VectorTable.xmin">[1]</a>, <a href="moose_classes.html#VectorTable.xmin">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.xminA">xminA (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.xminA">[1]</a>, <a href="moose_classes.html#HHGate2D.xminA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.xminB">xminB (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.xminB">[1]</a>, <a href="moose_classes.html#HHGate2D.xminB">[2]</a> - </dt> - - - <dt><a href="tmp.html#TableBase.xplot">xplot() (TableBase method)</a>, <a href="moose_builtins.html#TableBase.xplot">[1]</a>, <a href="moose_classes.html#TableBase.xplot">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.Xpower">Xpower (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.Xpower">[1]</a>, <a href="moose_classes.html#HHChannel.Xpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.Xpower">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Xpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.Xpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.Xpower">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Xpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Xpower">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#xyIn">xyIn()</a>, <a href="moose_builtins.html#xyIn">[1]</a>, <a href="moose_classes.html#xyIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#xyzIn">xyzIn()</a>, <a href="moose_builtins.html#xyzIn">[1]</a>, <a href="moose_classes.html#xyzIn">[2]</a> - </dt> - - </dl></td> -</tr></table> - -<h2 id="Y">Y</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#y">y</a>, <a href="moose_builtins.html#y">[1]</a>, <a href="moose_classes.html#y">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Annotator.y">(Annotator attribute)</a>, <a href="moose_builtins.html#Annotator.y">[1]</a>, <a href="moose_classes.html#Annotator.y">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.y">(CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.y">[1]</a>, <a href="moose_classes.html#CompartmentBase.y">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel.Y">Y (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.Y">[1]</a>, <a href="moose_classes.html#HHChannel.Y">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.Y">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Y">[1]</a>, <a href="moose_classes.html#HHChannel2D.Y">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol.y">y (Interpol attribute)</a>, <a href="moose_builtins.html#Interpol.y">[1]</a>, <a href="moose_classes.html#Interpol.y">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#TableBase.y">(TableBase attribute)</a>, <a href="moose_builtins.html#TableBase.y">[1]</a>, <a href="moose_classes.html#TableBase.y">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#ZombieHHChannel.Y">Y (ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Y">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Y">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.y0">y0 (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.y0">[1]</a>, <a href="moose_classes.html#CompartmentBase.y0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.y0">(CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.y0">[1]</a>, <a href="moose_classes.html#CubeMesh.y0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.y0">(CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.y0">[1]</a>, <a href="moose_classes.html#CylMesh.y0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.y1">y1 (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.y1">[1]</a>, <a href="moose_classes.html#CubeMesh.y1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.y1">(CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.y1">[1]</a>, <a href="moose_classes.html#CylMesh.y1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.ydivs">ydivs (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.ydivs">[1]</a>, <a href="moose_classes.html#Interpol2D.ydivs">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.ydivs">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.ydivs">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.ydivs">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.ydivsA">ydivsA (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.ydivsA">[1]</a>, <a href="moose_classes.html#HHGate2D.ydivsA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.ydivsB">ydivsB (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.ydivsB">[1]</a>, <a href="moose_classes.html#HHGate2D.ydivsB">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#yIn">yIn()</a>, <a href="moose_builtins.html#yIn">[1]</a>, <a href="moose_classes.html#yIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.Yindex">Yindex (HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Yindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.Yindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.ymax">ymax (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.ymax">[1]</a>, <a href="moose_classes.html#Interpol2D.ymax">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.ymax">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.ymax">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.ymax">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.ymaxA">ymaxA (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.ymaxA">[1]</a>, <a href="moose_classes.html#HHGate2D.ymaxA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.ymaxB">ymaxB (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.ymaxB">[1]</a>, <a href="moose_classes.html#HHGate2D.ymaxB">[2]</a> - </dt> - - - <dt><a href="tmp.html#Interpol2D.ymin">ymin (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.ymin">[1]</a>, <a href="moose_classes.html#Interpol2D.ymin">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#MarkovSolverBase.ymin">(MarkovSolverBase attribute)</a>, <a href="moose_builtins.html#MarkovSolverBase.ymin">[1]</a>, <a href="moose_classes.html#MarkovSolverBase.ymin">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHGate2D.yminA">yminA (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.yminA">[1]</a>, <a href="moose_classes.html#HHGate2D.yminA">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHGate2D.yminB">yminB (HHGate2D attribute)</a>, <a href="moose_builtins.html#HHGate2D.yminB">[1]</a>, <a href="moose_classes.html#HHGate2D.yminB">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.Ypower">Ypower (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.Ypower">[1]</a>, <a href="moose_classes.html#HHChannel.Ypower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.Ypower">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Ypower">[1]</a>, <a href="moose_classes.html#HHChannel2D.Ypower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.Ypower">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Ypower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Ypower">[2]</a> - </dt> - - </dl></dd> - </dl></td> -</tr></table> - -<h2 id="Z">Z</h2> -<table style="width: 100%" class="indextable genindextable"><tr> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#z">z</a>, <a href="moose_builtins.html#z">[1]</a>, <a href="moose_classes.html#z">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#Annotator.z">(Annotator attribute)</a>, <a href="moose_builtins.html#Annotator.z">[1]</a>, <a href="moose_classes.html#Annotator.z">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.z">(CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.z">[1]</a>, <a href="moose_classes.html#CompartmentBase.z">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#HHChannel.Z">Z (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.Z">[1]</a>, <a href="moose_classes.html#HHChannel.Z">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.Z">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Z">[1]</a>, <a href="moose_classes.html#HHChannel2D.Z">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#Interpol2D.z">z (Interpol2D attribute)</a>, <a href="moose_builtins.html#Interpol2D.z">[1]</a>, <a href="moose_classes.html#Interpol2D.z">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.Z">Z (ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Z">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Z">[2]</a> - </dt> - - - <dt><a href="tmp.html#CompartmentBase.z0">z0 (CompartmentBase attribute)</a>, <a href="moose_builtins.html#CompartmentBase.z0">[1]</a>, <a href="moose_classes.html#CompartmentBase.z0">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CubeMesh.z0">(CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.z0">[1]</a>, <a href="moose_classes.html#CubeMesh.z0">[2]</a> - </dt> - - - <dt><a href="tmp.html#CylMesh.z0">(CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.z0">[1]</a>, <a href="moose_classes.html#CylMesh.z0">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#CubeMesh.z1">z1 (CubeMesh attribute)</a>, <a href="moose_builtins.html#CubeMesh.z1">[1]</a>, <a href="moose_classes.html#CubeMesh.z1">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#CylMesh.z1">(CylMesh attribute)</a>, <a href="moose_builtins.html#CylMesh.z1">[1]</a>, <a href="moose_classes.html#CylMesh.z1">[2]</a> - </dt> - - </dl></dd> - - <dt><a href="tmp.html#zIn">zIn()</a>, <a href="moose_builtins.html#zIn">[1]</a>, <a href="moose_classes.html#zIn">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel2D.Zindex">Zindex (HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Zindex">[1]</a>, <a href="moose_classes.html#HHChannel2D.Zindex">[2]</a> - </dt> - - - <dt><a href="tmp.html#MgBlock.Zk">Zk (MgBlock attribute)</a>, <a href="moose_builtins.html#MgBlock.Zk">[1]</a>, <a href="moose_classes.html#MgBlock.Zk">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieBufPool">ZombieBufPool (built-in class)</a>, <a href="moose_builtins.html#ZombieBufPool">[1]</a>, <a href="moose_classes.html#ZombieBufPool">[2]</a> - </dt> - - </dl></td> - <td style="width: 33%" valign="top"><dl> - - <dt><a href="tmp.html#ZombieCaConc">ZombieCaConc (built-in class)</a>, <a href="moose_builtins.html#ZombieCaConc">[1]</a>, <a href="moose_classes.html#ZombieCaConc">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieCompartment">ZombieCompartment (built-in class)</a>, <a href="moose_builtins.html#ZombieCompartment">[1]</a>, <a href="moose_classes.html#ZombieCompartment">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieEnz">ZombieEnz (built-in class)</a>, <a href="moose_builtins.html#ZombieEnz">[1]</a>, <a href="moose_classes.html#ZombieEnz">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieFuncPool">ZombieFuncPool (built-in class)</a>, <a href="moose_builtins.html#ZombieFuncPool">[1]</a>, <a href="moose_classes.html#ZombieFuncPool">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel">ZombieHHChannel (built-in class)</a>, <a href="moose_builtins.html#ZombieHHChannel">[1]</a>, <a href="moose_classes.html#ZombieHHChannel">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieMMenz">ZombieMMenz (built-in class)</a>, <a href="moose_builtins.html#ZombieMMenz">[1]</a>, <a href="moose_classes.html#ZombieMMenz">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombiePool">ZombiePool (built-in class)</a>, <a href="moose_builtins.html#ZombiePool">[1]</a>, <a href="moose_classes.html#ZombiePool">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieReac">ZombieReac (built-in class)</a>, <a href="moose_builtins.html#ZombieReac">[1]</a>, <a href="moose_classes.html#ZombieReac">[2]</a> - </dt> - - - <dt><a href="tmp.html#HHChannel.Zpower">Zpower (HHChannel attribute)</a>, <a href="moose_builtins.html#HHChannel.Zpower">[1]</a>, <a href="moose_classes.html#HHChannel.Zpower">[2]</a> - </dt> - - <dd><dl> - - <dt><a href="tmp.html#HHChannel2D.Zpower">(HHChannel2D attribute)</a>, <a href="moose_builtins.html#HHChannel2D.Zpower">[1]</a>, <a href="moose_classes.html#HHChannel2D.Zpower">[2]</a> - </dt> - - - <dt><a href="tmp.html#ZombieHHChannel.Zpower">(ZombieHHChannel attribute)</a>, <a href="moose_builtins.html#ZombieHHChannel.Zpower">[1]</a>, <a href="moose_classes.html#ZombieHHChannel.Zpower">[2]</a> - </dt> - - </dl></dd> - </dl></td> -</tr></table> - - - - </div> - </div> - </div> - <div class="sphinxsidebar"> - <div class="sphinxsidebarwrapper"> - <p class="logo"><a href="index.html"> - <img class="logo" src="_static/moose_logo.png" alt="Logo"/> - </a></p> - - - -<div id="searchbox" style="display: none"> - <h3>Quick search</h3> - <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> - <input type="submit" value="Go" /> - <input type="hidden" name="check_keywords" value="yes" /> - <input type="hidden" name="area" value="default" /> - </form> - <p class="searchtip" style="font-size: 90%"> - Enter search terms or a module, class or function name. - </p> -</div> -<script type="text/javascript">$('#searchbox').show(0);</script> - </div> - </div> - <div class="clearer"></div> - </div> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="#" title="General Index" - >index</a></li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - <div class="footer"> - © Copyright 2014, Upinder Bhalla, Niraj Dudani, Aditya Gilra, Aviral Goel, Subhasis Ray and Dilawar Singh. - Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. - </div> - </body> -</html> \ No newline at end of file diff --git a/docs/user/html/pymoose/index.html b/docs/user/html/pymoose/index.html deleted file mode 100644 index 2e6f71cff3a19254ccfc305f0478432cf1d6dc5f..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - - <title>the Multiscale Object-Oriented Simulation Environment — MOOSE 3.0 documentation</title> - - <link rel="stylesheet" href="_static/default.css" type="text/css" /> - <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - - <script type="text/javascript"> - var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', - VERSION: '3.0', - COLLAPSE_INDEX: false, - FILE_SUFFIX: '.html', - HAS_SOURCE: true - }; - </script> - <script type="text/javascript" src="_static/jquery.js"></script> - <script type="text/javascript" src="_static/underscore.js"></script> - <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="MOOSE 3.0 documentation" href="#" /> - <link rel="next" title="MOOSE = Multiscale Object Oriented Simulation Environment." href="moose_overview.html" /> - </head> - <body> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - accesskey="I">index</a></li> - <li class="right" > - <a href="moose_overview.html" title="MOOSE = Multiscale Object Oriented Simulation Environment." - accesskey="N">next</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="#">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - - <div class="document"> - <div class="documentwrapper"> - <div class="bodywrapper"> - <div class="body"> - - <div class="section" id="the-multiscale-object-oriented-simulation-environment"> -<h1>the Multiscale Object-Oriented Simulation Environment<a class="headerlink" href="#the-multiscale-object-oriented-simulation-environment" title="Permalink to this headline">¶</a></h1> -<p>Contents:</p> -<div class="toctree-wrapper compound"> -<ul> -<li class="toctree-l1"><a class="reference internal" href="moose_overview.html">MOOSE = Multiscale Object Oriented Simulation Environment.</a><ul> -<li class="toctree-l2"><a class="reference internal" href="moose_overview.html#how-to-use-the-documentation">How to use the documentation</a></li> -</ul> -</li> -<li class="toctree-l1"><a class="reference internal" href="moose_overview.html#brief-overview-of-pymoose">Brief overview of PyMOOSE</a><ul> -<li class="toctree-l2"><a class="reference internal" href="moose_overview.html#vec">vec</a></li> -<li class="toctree-l2"><a class="reference internal" href="moose_overview.html#melement">melement</a></li> -<li class="toctree-l2"><a class="reference internal" href="moose_overview.html#creating-melements">Creating melements</a></li> -<li class="toctree-l2"><a class="reference internal" href="moose_overview.html#module-functions">module functions</a></li> -</ul> -</li> -<li class="toctree-l1"><a class="reference internal" href="moose_builtins.html">MOOSE Builtins</a></li> -<li class="toctree-l1"><a class="reference internal" href="moose_classes.html">MOOSE Classes</a></li> -</ul> -</div> -</div> -<div class="section" id="indices-and-tables"> -<h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h1> -<ul class="simple"> -<li><a class="reference internal" href="genindex.html"><em>Index</em></a></li> -<li><a class="reference internal" href="py-modindex.html"><em>Module Index</em></a></li> -<li><a class="reference internal" href="search.html"><em>Search Page</em></a></li> -</ul> -</div> - - - </div> - </div> - </div> - <div class="sphinxsidebar"> - <div class="sphinxsidebarwrapper"> - <p class="logo"><a href="#"> - <img class="logo" src="_static/moose_logo.png" alt="Logo"/> - </a></p> - <h3><a href="#">Table Of Contents</a></h3> - <ul> -<li><a class="reference internal" href="#">the Multiscale Object-Oriented Simulation Environment</a><ul> -</ul> -</li> -<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li> -</ul> - - <h4>Next topic</h4> - <p class="topless"><a href="moose_overview.html" - title="next chapter">MOOSE = Multiscale Object Oriented Simulation Environment.</a></p> - <h3>This Page</h3> - <ul class="this-page-menu"> - <li><a href="_sources/index.txt" - rel="nofollow">Show Source</a></li> - </ul> -<div id="searchbox" style="display: none"> - <h3>Quick search</h3> - <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> - <input type="submit" value="Go" /> - <input type="hidden" name="check_keywords" value="yes" /> - <input type="hidden" name="area" value="default" /> - </form> - <p class="searchtip" style="font-size: 90%"> - Enter search terms or a module, class or function name. - </p> -</div> -<script type="text/javascript">$('#searchbox').show(0);</script> - </div> - </div> - <div class="clearer"></div> - </div> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - >index</a></li> - <li class="right" > - <a href="moose_overview.html" title="MOOSE = Multiscale Object Oriented Simulation Environment." - >next</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="#">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - <div class="footer"> - © Copyright 2014, Upinder Bhalla, Niraj Dudani, Aditya Gilra, Aviral Goel, Subhasis Ray and Dilawar Singh. - Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. - </div> - </body> -</html> \ No newline at end of file diff --git a/docs/user/html/pymoose/moose_builtins.html b/docs/user/html/pymoose/moose_builtins.html deleted file mode 100644 index 8280c4d392ac6ef373028e5de0c4c617b27ca1eb..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/moose_builtins.html +++ /dev/null @@ -1,889 +0,0 @@ - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - - <title>MOOSE builtins — MOOSE 3.0 documentation</title> - - <link rel="stylesheet" href="_static/default.css" type="text/css" /> - <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - - <script type="text/javascript"> - var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', - VERSION: '3.0', - COLLAPSE_INDEX: false, - FILE_SUFFIX: '.html', - HAS_SOURCE: true - }; - </script> - <script type="text/javascript" src="_static/jquery.js"></script> - <script type="text/javascript" src="_static/underscore.js"></script> - <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="MOOSE 3.0 documentation" href="index.html" /> - <link rel="next" title="MOOSE Classes" href="moose_classes.html" /> - <link rel="prev" title="Welcome to MOOSE documentation!" href="index.html" /> - </head> - <body> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - accesskey="I">index</a></li> - <li class="right" > - <a href="py-modindex.html" title="Python Module Index" - >modules</a> |</li> - <li class="right" > - <a href="moose_classes.html" title="MOOSE Classes" - accesskey="N">next</a> |</li> - <li class="right" > - <a href="index.html" title="Welcome to MOOSE documentation!" - accesskey="P">previous</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - </ul> - </div> - - <div class="document"> - <div class="documentwrapper"> - <div class="bodywrapper"> - <div class="body"> - - <div class="section" id="module-moose"> -<span id="moose-builtins"></span><h1>MOOSE builtins<a class="headerlink" href="#module-moose" title="Permalink to this headline">¶</a></h1> -<div class="section" id="moose-multiscale-object-oriented-simulation-environment"> -<h2>MOOSE = Multiscale Object Oriented Simulation Environment.<a class="headerlink" href="#moose-multiscale-object-oriented-simulation-environment" title="Permalink to this headline">¶</a></h2> -<div class="section" id="how-to-use-the-documentation"> -<h3>How to use the documentation<a class="headerlink" href="#how-to-use-the-documentation" title="Permalink to this headline">¶</a></h3> -<p>MOOSE documentation is split into Python documentation and builtin -documentation. The functions and classes that are only part of the -Python interface can be viewed via Python’s builtin <tt class="docutils literal"><span class="pre">help</span></tt> -function:</p> -<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">help</span><span class="p">(</span><span class="n">moose</span><span class="o">.</span><span class="n">connect</span><span class="p">)</span> -</pre></div> -</div> -<p>...</p> -<p>The documentation built into main C++ code of MOOSE can be accessed -via the module function <tt class="docutils literal"><span class="pre">doc</span></tt>:</p> -<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">moose</span><span class="o">.</span><span class="n">doc</span><span class="p">(</span><span class="s">'Neutral'</span><span class="p">)</span> -</pre></div> -</div> -<p>...</p> -<p>To get documentation about a particular field:</p> -<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">moose</span><span class="o">.</span><span class="n">doc</span><span class="p">(</span><span class="s">'Neutral.childMsg'</span><span class="p">)</span> -</pre></div> -</div> -</div> -</div> -<div class="section" id="brief-overview-of-pymoose"> -<h2>Brief overview of PyMOOSE<a class="headerlink" href="#brief-overview-of-pymoose" title="Permalink to this headline">¶</a></h2> -<p>Classes:</p> -<div class="section" id="vec"> -<h3>vec<a class="headerlink" href="#vec" title="Permalink to this headline">¶</a></h3> -<p>this is the unique identifier of a MOOSE object. Note that you can -create multiple references to the same MOOSE object in Python, but as -long as they have the same path/id value, they all point to the same -entity in MOOSE.</p> -<p>Constructor:</p> -<p>You can create a new vec using the constructor:</p> -<p>vec(path, dimension, classname)</p> -<p>Fields:</p> -<p>value – unsigned integer representation of id of this vec</p> -<p>path – string representing the path corresponding this vec</p> -<p>shape – tuple containing the dimensions of this vec</p> -<p>Apart from these, every vec exposes the fields of all its elements -in a vectorized form. For example:</p> -<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">iaf</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">vec</span><span class="p">(</span><span class="s">'/iaf'</span><span class="p">,</span> <span class="p">(</span><span class="mi">10</span><span class="p">),</span> <span class="s">'IntFire'</span><span class="p">)</span> -<span class="gp">>>> </span><span class="n">iaf</span><span class="o">.</span><span class="n">Vm</span> <span class="o">=</span> <span class="nb">range</span><span class="p">(</span><span class="mi">10</span><span class="p">)</span> -<span class="gp">>>> </span><span class="k">print</span> <span class="n">iaf</span><span class="p">[</span><span class="mi">5</span><span class="p">]</span><span class="o">.</span><span class="n">Vm</span> -<span class="go">5.0</span> -<span class="gp">>>> </span><span class="k">print</span> <span class="n">iaf</span><span class="o">.</span><span class="n">Vm</span> -<span class="go">array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9.])</span> -</pre></div> -</div> -<p>Methods:</p> -<p>vec implements part of the sequence protocol:</p> -<p>len(em) – the first dimension of em.</p> -<p>em[n] – the n-th element in em.</p> -<p>em[n1:n2] – a tuple containing n1 to n2-th (exclusive) element in em.</p> -<p>elem in em – True if elem is contained in em.</p> -</div> -<div class="section" id="melement"> -<h3>melement<a class="headerlink" href="#melement" title="Permalink to this headline">¶</a></h3> -<p>Single moose object. It has three numbers to uniquely identify it:</p> -<p>id - id of the vec containing this element</p> -<p>dataIndex - index of this element in the container vec</p> -<p>fieldIndex - if this is a tertiary object, i.e. acts -as a field in another element (like synapse[0] in IntFire[1]), then -the index of this field in the containing element.</p> -<p>Methods:</p> -<p>getId – vec object containing this element. -vec() – vec object containing this element.</p> -<p>getDataIndex() – unsigned integer representing the index of this -element in containing MOOSE object.</p> -<p>getFieldIndex() – unsigned integer representing the index of this -element as a field in the containing Element.</p> -<p>getFieldType(field) – human readable datatype information of field</p> -<p>getField(field) – get value of field</p> -<p>setField(field, value) – assign value to field</p> -<p>getFieldNames(fieldType) – tuple containing names of all the fields -of type fieldType. fieldType can be valueFinfo, lookupFinfo, srcFinfo, -destFinfo and sharedFinfo. If nothing is passed, a union of all of the -above is used and all the fields are returned.</p> -<p>connect(srcField, destObj, destField, msgType) – connect srcField of -this element to destField of destObj.</p> -<p>melement is something like an abstract base class in C++. The concrete -base class is Neutral. However you do not need to cast objects down to -access their fields. The PyMOOSE interface will automatically do the -check for you and raise an exception if the specified field does not -exist for the current element.</p> -</div> -<div class="section" id="creating-melements"> -<h3>Creating melements<a class="headerlink" href="#creating-melements" title="Permalink to this headline">¶</a></h3> -<p>To create the objects of concrete subclasses of melement, the class -can be called as follows:</p> -<p>melement(path, dims, dtype, parent)</p> -<p>path: This is like unix filesystem path and is the concatenation of -name of the element to be created and that of all its ancestors -spearated by <cite>/</cite>. For example, path=`/a/b` will create the element -named <cite>b</cite> under element <cite>a</cite>. Note that if <cite>a</cite> does not exist, this -will raise an error. However, if <cite>parent</cite> is specified, <cite>path</cite> should -contain only the name of the element.</p> -<p>dims: (optional) tuple specifying the dimension of the containing melement to be -created. It is (1,) by default.</p> -<p>dtype: string specifying the class name of the element to be created.</p> -<p>parent: (optional) string specifying the path of the parent element or -the Id or the ObjId of the parent element or a reference to the parent -element. If this is specified, the first argument <cite>path</cite> is treated as -the name of the element to be created.</p> -<p>All arguments can be passed as keyword arguments.</p> -<p>For concrete subclasses of melement, you do not need to pass the class -argument because the class name is passed automatically to <cite>melement</cite> -__init__ method.</p> -<p>a = Neutral(‘alpha’) # Creates element named <cite>alpha</cite> under current working element -b = Neutral(‘alpha/beta’) # Creates the element named <cite>beta</cite> under <cite>alpha</cite> -c = Cell(‘charlie’, parent=a) # creates element <cite>charlie</cite> under <cite>alpha</cite> -d = DiffAmp(‘delta’, parent=’alpha/beta’) # creates element <cite>delta</cite> under <cite>beta</cite></p> -</div> -<div class="section" id="module-functions"> -<h3>module functions<a class="headerlink" href="#module-functions" title="Permalink to this headline">¶</a></h3> -<p>element(path) - returns a reference to an existing object converted to -the right class. Raises ValueError if path does not exist.</p> -<p>copy(src=<src>, dest=<dest>, name=<name_of_the_copy>, n=<num_copies>, -copyMsg=<whether_to_copy_messages) – make a copy of source object as -a child of the destination object.</p> -<p>move(src, dest) – move src object under dest object.</p> -<p>useClock(tick, path, update_function) – schedule <update_function> of -every object that matches <path> on clock no. <tick>. Most commonly -the function is ‘process’. NOTE: unlike earlier versions, now -autoschedule is not available. You have to call useClock for every -element that should be updated during the simulation.</p> -<p>The sequence of clockticks with the same dt is according to their -number. This is utilized for controlling the order of updates in -various objects where it matters.</p> -<p>The following convention should be observed when assigning clockticks -to various components of a model:</p> -<p>Clock ticks 0-3 are for electrical (biophysical) components, 4 and 5 -are for chemical kinetics, 6 and 7 are for lookup tables and stimulus, -8 and 9 are for recording tables.</p> -<p>Generally, ‘process’ is the method to be assigned a clock -tick. Notable exception is ‘init’ method of Compartment class which is -assigned tick 0.</p> -<p>0 : Compartment: ‘init’ -1 : Compartment: ‘process’ -2 : HHChannel and other channels: ‘process’ -3 : CaConc : ‘process’ -4,5 : Elements for chemical kinetics : ‘process’ -6,7 : Lookup (tables), stimulus : ‘process’ -8,9 : Tables for plotting : process</p> -<p>Example: -moose.useClock(0, ‘/model/compartment_1’, ‘init’) -moose.useClock(1, ‘/model/compartment_1’, ‘process’)</p> -<p>setClock(tick, dt) – set dt of clock no <tick>.</p> -<p>start(runtime) – start simulation of <runtime> time.</p> -<p>reinit() – reinitialize simulation.</p> -<p>stop() – stop simulation</p> -<p>isRunning() – true if simulation is in progress, false otherwise.</p> -<p>exists(path) – true if there is a pre-existing object with the specified path.</p> -<p>loadModel(filepath, modelpath) – load file in <filepath> into node -<modelpath> of the moose model-tree.</p> -<p>setCwe(obj) – set the current working element to <obj> - which can be -either a string representing the path of the object in the moose -model-tree, or an vec. -ce(obj) – an alias for setCwe.</p> -<p>getCwe() – returns vec containing the current working element. -pwe() – an alias for getCwe.</p> -<p>showfields(obj) – print the fields in object in human readable format</p> -<p>le(obj) – list element under object, if no parameter specified, list -elements under current working element</p> -<dl class="function"> -<dt id="moose.pwe"> -<tt class="descclassname">moose.</tt><tt class="descname">pwe</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.pwe" title="Permalink to this definition">¶</a></dt> -<dd><p>Print present working element. Convenience function for GENESIS -users. If you want to retrieve the element in stead of printing -the path, use moose.getCwe()</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.le"> -<tt class="descclassname">moose.</tt><tt class="descname">le</tt><big>(</big><em>el=None</em><big>)</big><a class="headerlink" href="#moose.le" title="Permalink to this definition">¶</a></dt> -<dd><p>List elements under <cite>el</cite> or current element if no argument -specified.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>el</strong> : str/melement/vec/None</p> -<blockquote> -<div><dl class="docutils"> -<dt>The element or the path under which to look. If <cite>None</cite>, children</dt> -<dd><p class="first last">of current working element are displayed.</p> -</dd> -</dl> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">None</p> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.ce"> -<tt class="descclassname">moose.</tt><tt class="descname">ce</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.ce" title="Permalink to this definition">¶</a></dt> -<dd><p>Set the current working element. ‘ce’ is an alias of this function</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.showfield"> -<tt class="descclassname">moose.</tt><tt class="descname">showfield</tt><big>(</big><em>el</em>, <em>field='*'</em>, <em>showtype=False</em><big>)</big><a class="headerlink" href="#moose.showfield" title="Permalink to this definition">¶</a></dt> -<dd><p>Show the fields of the element <cite>el</cite>, their data types and -values in human readable format. Convenience function for GENESIS -users.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>el</strong> : melement/str</p> -<blockquote> -<div><p>Element or path of an existing element.</p> -</div></blockquote> -<p><strong>field</strong> : str</p> -<blockquote> -<div><p>Field to be displayed. If ‘*’ (default), all fields are displayed.</p> -</div></blockquote> -<p><strong>showtype</strong> : bool</p> -<blockquote> -<div><p>If True show the data type of each field. False by default.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">None</p> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.showmsg"> -<tt class="descclassname">moose.</tt><tt class="descname">showmsg</tt><big>(</big><em>el</em><big>)</big><a class="headerlink" href="#moose.showmsg" title="Permalink to this definition">¶</a></dt> -<dd><p>Print the incoming and outgoing messages of <cite>el</cite>.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>el</strong> : melement/vec/str</p> -<blockquote> -<div><p>Object whose messages are to be displayed.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">None</p> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.doc"> -<tt class="descclassname">moose.</tt><tt class="descname">doc</tt><big>(</big><em>arg</em>, <em>inherited=True</em>, <em>paged=True</em><big>)</big><a class="headerlink" href="#moose.doc" title="Permalink to this definition">¶</a></dt> -<dd><p>Display the documentation for class or field in a class.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>arg</strong> : str/class/melement/vec</p> -<blockquote> -<div><p>A string specifying a moose class name and a field name -separated by a dot. e.g., ‘Neutral.name’. Prepending <cite>moose.</cite> -is allowed. Thus moose.doc(‘moose.Neutral.name’) is equivalent -to the above. -It can also be string specifying just a moose class name or a -moose class or a moose object (instance of melement or vec -or there subclasses). In that case, the builtin documentation -for the corresponding moose class is displayed.</p> -</div></blockquote> -<p><strong>paged: bool</strong></p> -<blockquote> -<div><p>Whether to display the docs via builtin pager or print and -exit. If not specified, it defaults to False and -moose.doc(xyz) will print help on xyz and return control to -command line.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">None</p> -</td> -</tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><strong>NameError</strong></p> -<blockquote class="last"> -<div><p>If class or field does not exist.</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.element"> -<tt class="descclassname">moose.</tt><tt class="descname">element</tt><big>(</big><em>arg</em><big>)</big> → moose object<a class="headerlink" href="#moose.element" title="Permalink to this definition">¶</a></dt> -<dd><p>Convert a path or an object to the appropriate builtin moose class -instance</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>arg</strong> : str/vec/moose object</p> -<blockquote> -<div><p>path of the moose element to be converted or another element (possibly -available as a superclass instance).</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">melement</p> -<blockquote class="last"> -<div><p>MOOSE element (object) corresponding to the <cite>arg</cite> converted to write subclass.</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.getFieldNames"> -<tt class="descclassname">moose.</tt><tt class="descname">getFieldNames</tt><big>(</big><em>className</em>, <em>finfoType='valueFinfo'</em><big>)</big> → tuple<a class="headerlink" href="#moose.getFieldNames" title="Permalink to this definition">¶</a></dt> -<dd><p>Get a tuple containing the name of all the fields of <cite>finfoType</cite> -kind.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>className</strong> : string</p> -<blockquote> -<div><p>Name of the class to look up.</p> -</div></blockquote> -<p><strong>finfoType</strong> : string</p> -<blockquote> -<div><p>The kind of field (<cite>valueFinfo</cite>, <cite>srcFinfo</cite>, <cite>destFinfo</cite>, -<cite>lookupFinfo</cite>, <cite>fieldElementFinfo</cite>.).</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">tuple</p> -<blockquote class="last"> -<div><p>Names of the fields of type <cite>finfoType</cite> in class <cite>className</cite>.</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.copy"> -<tt class="descclassname">moose.</tt><tt class="descname">copy</tt><big>(</big><em>src</em>, <em>dest</em>, <em>name</em>, <em>n</em>, <em>toGlobal</em>, <em>copyExtMsg</em><big>)</big> → bool<a class="headerlink" href="#moose.copy" title="Permalink to this definition">¶</a></dt> -<dd><p>Make copies of a moose object.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>src</strong> : vec, element or str</p> -<blockquote> -<div><p>source object.</p> -</div></blockquote> -<p><strong>dest</strong> : vec, element or str</p> -<blockquote> -<div><p>Destination object to copy into.</p> -</div></blockquote> -<p><strong>name</strong> : str</p> -<blockquote> -<div><p>Name of the new object. If omitted, name of the original will be used.</p> -</div></blockquote> -<p><strong>n</strong> : int</p> -<blockquote> -<div><p>Number of copies to make.</p> -</div></blockquote> -<p><strong>toGlobal</strong> : int</p> -<blockquote> -<div><p>Relevant for parallel environments only. If false, the copies will -reside on local node, otherwise all nodes get the copies.</p> -</div></blockquote> -<p><strong>copyExtMsg</strong> : int</p> -<blockquote> -<div><p>If true, messages to/from external objects are also copied.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">vec</p> -<blockquote class="last"> -<div><p>newly copied vec</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.move"> -<tt class="descclassname">moose.</tt><tt class="descname">move</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.move" title="Permalink to this definition">¶</a></dt> -<dd><p>Move a vec object to a destination.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.delete"> -<tt class="descclassname">moose.</tt><tt class="descname">delete</tt><big>(</big><em>obj</em><big>)</big> → None<a class="headerlink" href="#moose.delete" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete the underlying moose object. This does not delete any of the -Python objects referring to this vec but does invalidate them. Any -attempt to access them will raise a ValueError.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>id</strong> : vec</p> -<blockquote> -<div><p>vec of the object to be deleted.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">None</p> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.useClock"> -<tt class="descclassname">moose.</tt><tt class="descname">useClock</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.useClock" title="Permalink to this definition">¶</a></dt> -<dd><p>Schedule objects on a specified clock</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.setClock"> -<tt class="descclassname">moose.</tt><tt class="descname">setClock</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.setClock" title="Permalink to this definition">¶</a></dt> -<dd><p>Set the dt of a clock.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.start"> -<tt class="descclassname">moose.</tt><tt class="descname">start</tt><big>(</big><em>time</em><big>)</big> → None<a class="headerlink" href="#moose.start" title="Permalink to this definition">¶</a></dt> -<dd><p>Run simulation for <cite>t</cite> time. Advances the simulator clock by <cite>t</cite> -time.</p> -<p>After setting up a simulation, YOU MUST CALL MOOSE.REINIT() before -CALLING MOOSE.START() TO EXECUTE THE SIMULATION. Otherwise, the -simulator behaviour will be undefined. Once moose.reinit() has been -called, you can call moose.start(t) as many time as you like. This -will continue the simulation from the last state for <cite>t</cite> time.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>t</strong> : float</p> -<blockquote> -<div><p>duration of simulation.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">None</p> -</td> -</tr> -</tbody> -</table> -<div class="admonition-see-also admonition seealso"> -<p class="first admonition-title">See also</p> -<dl class="last docutils"> -<dt><a class="reference internal" href="#moose.reinit" title="moose.reinit"><tt class="xref py py-obj docutils literal"><span class="pre">moose.reinit</span></tt></a></dt> -<dd>(Re)initialize simulation</dd> -</dl> -</div> -</dd></dl> - -<dl class="function"> -<dt id="moose.reinit"> -<tt class="descclassname">moose.</tt><tt class="descname">reinit</tt><big>(</big><big>)</big> → None<a class="headerlink" href="#moose.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>Reinitialize simulation.</p> -<p>This function (re)initializes moose simulation. It must be called -before you start the simulation (see moose.start). If you want to -continue simulation after you have called moose.reinit() and -moose.start(), you must NOT call moose.reinit() again. Calling -moose.reinit() again will take the system back to initial setting -(like clear out all data recording tables, set state variables to -their initial values, etc.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.stop"> -<tt class="descclassname">moose.</tt><tt class="descname">stop</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.stop" title="Permalink to this definition">¶</a></dt> -<dd><p>Stop simulation</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.isRunning"> -<tt class="descclassname">moose.</tt><tt class="descname">isRunning</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.isRunning" title="Permalink to this definition">¶</a></dt> -<dd><p>True if the simulation is currently running.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.exists"> -<tt class="descclassname">moose.</tt><tt class="descname">exists</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.exists" title="Permalink to this definition">¶</a></dt> -<dd><p>True if there is an object with specified path.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.writeSBML"> -<tt class="descclassname">moose.</tt><tt class="descname">writeSBML</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.writeSBML" title="Permalink to this definition">¶</a></dt> -<dd><p>Export biochemical model to an SBML file.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.readSBML"> -<tt class="descclassname">moose.</tt><tt class="descname">readSBML</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.readSBML" title="Permalink to this definition">¶</a></dt> -<dd><p>Import SBML model to Moose.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.loadModel"> -<tt class="descclassname">moose.</tt><tt class="descname">loadModel</tt><big>(</big><em>filename</em>, <em>modelpath</em>, <em>solverclass</em><big>)</big> → vec<a class="headerlink" href="#moose.loadModel" title="Permalink to this definition">¶</a></dt> -<dd><p>Load model from a file to a specified path.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>filename</strong> : str</p> -<blockquote> -<div><p>model description file.</p> -</div></blockquote> -<p><strong>modelpath</strong> : str</p> -<blockquote> -<div><p>moose path for the top level element of the model to be created.</p> -</div></blockquote> -<p><strong>solverclass</strong> : str, optional</p> -<blockquote> -<div><p>solver type to be used for simulating the model.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">vec</p> -<blockquote class="last"> -<div><p>loaded model container vec.</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.saveModel"> -<tt class="descclassname">moose.</tt><tt class="descname">saveModel</tt><big>(</big><em>source</em>, <em>filename</em><big>)</big> → None<a class="headerlink" href="#moose.saveModel" title="Permalink to this definition">¶</a></dt> -<dd><p>Save model rooted at <cite>source</cite> to file <cite>filename</cite>.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>source</strong> : vec/element/str</p> -<blockquote> -<div><p>root of the model tree</p> -</div></blockquote> -<p><strong>filename</strong> : str</p> -<blockquote> -<div><p>destination file to save the model in.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">None</p> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.connect"> -<tt class="descclassname">moose.</tt><tt class="descname">connect</tt><big>(</big><em>src</em>, <em>src_field</em>, <em>dest</em>, <em>dest_field</em>, <em>message_type</em><big>)</big> → bool<a class="headerlink" href="#moose.connect" title="Permalink to this definition">¶</a></dt> -<dd><p>Create a message between <cite>src_field</cite> on <cite>src</cite> object to <cite>dest_field</cite> -on <cite>dest</cite> object.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>src</strong> : element/vec/string</p> -<blockquote> -<div><p>the source object (or its path)</p> -</div></blockquote> -<p><strong>src_field</strong> : str</p> -<blockquote> -<div><p>the source field name. Fields listed under <cite>srcFinfo</cite> and -<cite>sharedFinfo</cite> qualify for this.</p> -</div></blockquote> -<p><strong>dest</strong> : element/vec/string</p> -<blockquote> -<div><p>the destination object.</p> -</div></blockquote> -<p><strong>dest_field</strong> : str</p> -<blockquote> -<div><p>the destination field name. Fields listed under <cite>destFinfo</cite> -and <cite>sharedFinfo</cite> qualify for this.</p> -</div></blockquote> -<p><strong>message_type</strong> : str (optional)</p> -<blockquote> -<div><p>Type of the message. Can be <cite>Single</cite>, <cite>OneToOne</cite>, <cite>OneToAll</cite>. -If not specified, it defaults to <cite>Single</cite>.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">melement</p> -<blockquote class="last"> -<div><p>message-manager for the newly created message.</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.getCwe"> -<tt class="descclassname">moose.</tt><tt class="descname">getCwe</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.getCwe" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the current working element. ‘pwe’ is an alias of this function.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.setCwe"> -<tt class="descclassname">moose.</tt><tt class="descname">setCwe</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.setCwe" title="Permalink to this definition">¶</a></dt> -<dd><p>Set the current working element. ‘ce’ is an alias of this function</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.getFieldDict"> -<tt class="descclassname">moose.</tt><tt class="descname">getFieldDict</tt><big>(</big><em>className</em>, <em>finfoType</em><big>)</big> → dict<a class="headerlink" href="#moose.getFieldDict" title="Permalink to this definition">¶</a></dt> -<dd><p>Get dictionary of field names and types for specified class.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>className</strong> : str</p> -<blockquote> -<div><p>MOOSE class to find the fields of.</p> -</div></blockquote> -<p><strong>finfoType</strong> : str (optional)</p> -<blockquote> -<div><p>Finfo type of the fields to find. If empty or not specified, all -fields will be retrieved.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">dict</p> -<blockquote class="last"> -<div><p>field names and their types.</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -<p class="rubric">Notes</p> -<p>This behaviour is different from <cite>getFieldNames</cite> where only -<cite>valueFinfo`s are returned when `finfoType</cite> remains unspecified.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.getField"> -<tt class="descclassname">moose.</tt><tt class="descname">getField</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.getField" title="Permalink to this definition">¶</a></dt> -<dd><p>getField(element, field, fieldtype) – Get specified field of specified type from object vec.</p> -</dd></dl> - -<dl class="function"> -<dt id="moose.seed"> -<tt class="descclassname">moose.</tt><tt class="descname">seed</tt><big>(</big><em>seedvalue</em><big>)</big> → None<a class="headerlink" href="#moose.seed" title="Permalink to this definition">¶</a></dt> -<dd><p>Reseed MOOSE random number generator.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>seed</strong> : int</p> -<blockquote> -<div><p>Optional value to use for seeding. If 0, a random seed is -automatically created using the current system time and other -information. If not specified, it defaults to 0.</p> -</div></blockquote> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">None</p> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.rand"> -<tt class="descclassname">moose.</tt><tt class="descname">rand</tt><big>(</big><em>) -> [0</em>, <em>1</em><big>)</big><a class="headerlink" href="#moose.rand" title="Permalink to this definition">¶</a></dt> -<dd><table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">float in [0, 1) real interval generated by MT19937.</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.wildcardFind"> -<tt class="descclassname">moose.</tt><tt class="descname">wildcardFind</tt><big>(</big><em>expression</em><big>)</big> → tuple of melements.<a class="headerlink" href="#moose.wildcardFind" title="Permalink to this definition">¶</a></dt> -<dd><p>Find an object by wildcard.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>expression</strong> : str</p> -<blockquote class="last"> -<div><p>MOOSE allows wildcard expressions of the form:</p> -<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span><span class="n">PATH</span><span class="p">}</span><span class="o">/</span><span class="p">{</span><span class="n">WILDCARD</span><span class="p">}[{</span><span class="n">CONDITION</span><span class="p">}]</span> -</pre></div> -</div> -<p>where {PATH} is valid path in the element tree. -{WILDCARD} can be <cite>#</cite> or <cite>##</cite>.</p> -<p><cite>#</cite> causes the search to be restricted to the children of the -element specified by {PATH}.</p> -<p><cite>##</cite> makes the search to recursively go through all the descendants -of the {PATH} element. -{CONDITION} can be:</p> -<div class="highlight-python"><pre>TYPE={CLASSNAME} : an element satisfies this condition if it is of -class {CLASSNAME}. -ISA={CLASSNAME} : alias for TYPE={CLASSNAME} -CLASS={CLASSNAME} : alias for TYPE={CLASSNAME} -FIELD({FIELDNAME}){OPERATOR}{VALUE} : compare field {FIELDNAME} with -{VALUE} by {OPERATOR} where {OPERATOR} is a comparison operator (=, -!=, >, <, >=, <=).</pre> -</div> -<p>For example, /mymodel/##[FIELD(Vm)>=-65] will return a list of all -the objects under /mymodel whose Vm field is >= -65.</p> -</div></blockquote> -</td> -</tr> -</tbody> -</table> -</dd></dl> - -<dl class="function"> -<dt id="moose.quit"> -<tt class="descclassname">moose.</tt><tt class="descname">quit</tt><big>(</big><big>)</big><a class="headerlink" href="#moose.quit" title="Permalink to this definition">¶</a></dt> -<dd><p>Finalize MOOSE threads and quit MOOSE. This is made available for debugging purpose only. It will automatically get called when moose module is unloaded. End user should not use this function.</p> -</dd></dl> - -</div> -</div> -<p>,</p> -</div> - - - </div> - </div> - </div> - <div class="sphinxsidebar"> - <div class="sphinxsidebarwrapper"> - <h3><a href="index.html">Table Of Contents</a></h3> - <ul> -<li><a class="reference internal" href="#">MOOSE builtins</a><ul> -<li><a class="reference internal" href="#moose-multiscale-object-oriented-simulation-environment">MOOSE = Multiscale Object Oriented Simulation Environment.</a><ul> -<li><a class="reference internal" href="#how-to-use-the-documentation">How to use the documentation</a></li> -</ul> -</li> -<li><a class="reference internal" href="#brief-overview-of-pymoose">Brief overview of PyMOOSE</a><ul> -<li><a class="reference internal" href="#vec">vec</a></li> -<li><a class="reference internal" href="#melement">melement</a></li> -<li><a class="reference internal" href="#creating-melements">Creating melements</a></li> -<li><a class="reference internal" href="#module-functions">module functions</a></li> -</ul> -</li> -</ul> -</li> -</ul> - - <h4>Previous topic</h4> - <p class="topless"><a href="index.html" - title="previous chapter">Welcome to MOOSE documentation!</a></p> - <h4>Next topic</h4> - <p class="topless"><a href="moose_classes.html" - title="next chapter">MOOSE Classes</a></p> - <h3>This Page</h3> - <ul class="this-page-menu"> - <li><a href="_sources/moose_builtins.txt" - rel="nofollow">Show Source</a></li> - </ul> -<div id="searchbox" style="display: none"> - <h3>Quick search</h3> - <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> - <input type="submit" value="Go" /> - <input type="hidden" name="check_keywords" value="yes" /> - <input type="hidden" name="area" value="default" /> - </form> - <p class="searchtip" style="font-size: 90%"> - Enter search terms or a module, class or function name. - </p> -</div> -<script type="text/javascript">$('#searchbox').show(0);</script> - </div> - </div> - <div class="clearer"></div> - </div> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - >index</a></li> - <li class="right" > - <a href="py-modindex.html" title="Python Module Index" - >modules</a> |</li> - <li class="right" > - <a href="moose_classes.html" title="MOOSE Classes" - >next</a> |</li> - <li class="right" > - <a href="index.html" title="Welcome to MOOSE documentation!" - >previous</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - </ul> - </div> - <div class="footer"> - © Copyright 2014, Upinder Bhalla, Niraj Dudani, Aditya Gilra, Aviral Goel, Subhasis Ray and Dilawar Singh. - Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. - </div> - </body> -</html> \ No newline at end of file diff --git a/docs/user/html/pymoose/moose_classes.html b/docs/user/html/pymoose/moose_classes.html deleted file mode 100644 index da20c04767a5e07fb2cd515858627154a94a221d..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/moose_classes.html +++ /dev/null @@ -1,11794 +0,0 @@ - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - - <title>MOOSE Classes — MOOSE 3.0 documentation</title> - - <link rel="stylesheet" href="_static/default.css" type="text/css" /> - <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - - <script type="text/javascript"> - var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', - VERSION: '3.0', - COLLAPSE_INDEX: false, - FILE_SUFFIX: '.html', - HAS_SOURCE: true - }; - </script> - <script type="text/javascript" src="_static/jquery.js"></script> - <script type="text/javascript" src="_static/underscore.js"></script> - <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="MOOSE 3.0 documentation" href="index.html" /> - <link rel="prev" title="MOOSE Builtins" href="moose_builtins.html" /> - </head> - <body> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - accesskey="I">index</a></li> - <li class="right" > - <a href="moose_builtins.html" title="MOOSE Builtins" - accesskey="P">previous</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - - <div class="document"> - <div class="documentwrapper"> - <div class="bodywrapper"> - <div class="body"> - - <div class="section" id="moose-classes"> -<h1>MOOSE Classes<a class="headerlink" href="#moose-classes" title="Permalink to this headline">¶</a></h1> -<dl class="class"> -<dt id="Adaptor"> -<em class="property">class </em><tt class="descname">Adaptor</tt><a class="headerlink" href="#Adaptor" title="Permalink to this definition">¶</a></dt> -<dd><p>Averages and rescales values to couple different kinds of simulation</p> -<dl class="attribute"> -<dt id="Adaptor.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Adaptor.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from the scheduler.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.setInputOffset"> -<tt class="descname">setInputOffset</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.setInputOffset" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.getInputOffset"> -<tt class="descname">getInputOffset</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.getInputOffset" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.setOutputOffset"> -<tt class="descname">setOutputOffset</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.setOutputOffset" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.getOutputOffset"> -<tt class="descname">getOutputOffset</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.getOutputOffset" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.setScale"> -<tt class="descname">setScale</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.setScale" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.getScale"> -<tt class="descname">getScale</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.getScale" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.getOutputValue"> -<tt class="descname">getOutputValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.getOutputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.input"> -<tt class="descname">input</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.input" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Input message to the adaptor. If multiple inputs are received, the system averages the inputs.</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘process’ call</p> -</dd></dl> - -<dl class="method"> -<dt id="Adaptor.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Adaptor.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘reinit’ call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Adaptor.output"> -<tt class="descname">output</tt><a class="headerlink" href="#Adaptor.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends the output value every timestep.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Adaptor.requestInput"> -<tt class="descname">requestInput</tt><a class="headerlink" href="#Adaptor.requestInput" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>source message field</em>) Sends out the request. Issued from the process call.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Adaptor.requestField"> -<tt class="descname">requestField</tt><a class="headerlink" href="#Adaptor.requestField" title="Permalink to this definition">¶</a></dt> -<dd><p>Pd (<em>source message field</em>) Sends out a request to a generic double field. Issued from the process call.Works for any number of targets.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Adaptor.inputOffset"> -<tt class="descname">inputOffset</tt><a class="headerlink" href="#Adaptor.inputOffset" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Offset to apply to input message, before scaling</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Adaptor.outputOffset"> -<tt class="descname">outputOffset</tt><a class="headerlink" href="#Adaptor.outputOffset" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Offset to apply at output, after scaling</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Adaptor.scale"> -<tt class="descname">scale</tt><a class="headerlink" href="#Adaptor.scale" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Scaling factor to apply to input</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Adaptor.outputValue"> -<tt class="descname">outputValue</tt><a class="headerlink" href="#Adaptor.outputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) This is the linearly transformed output.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Annotator"> -<em class="property">class </em><tt class="descname">Annotator</tt><a class="headerlink" href="#Annotator" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Annotator.setX"> -<tt class="descname">setX</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.setX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.getX"> -<tt class="descname">getX</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.getX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.setY"> -<tt class="descname">setY</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.setY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.setZ"> -<tt class="descname">setZ</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.setZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.getZ"> -<tt class="descname">getZ</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.getZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.setNotes"> -<tt class="descname">setNotes</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.setNotes" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.getNotes"> -<tt class="descname">getNotes</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.getNotes" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.setColor"> -<tt class="descname">setColor</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.setColor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.getColor"> -<tt class="descname">getColor</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.getColor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.setTextColor"> -<tt class="descname">setTextColor</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.setTextColor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.getTextColor"> -<tt class="descname">getTextColor</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.getTextColor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.setIcon"> -<tt class="descname">setIcon</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.setIcon" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Annotator.getIcon"> -<tt class="descname">getIcon</tt><big>(</big><big>)</big><a class="headerlink" href="#Annotator.getIcon" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Annotator.x"> -<tt class="descname">x</tt><a class="headerlink" href="#Annotator.x" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) x field. Typically display coordinate x</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Annotator.y"> -<tt class="descname">y</tt><a class="headerlink" href="#Annotator.y" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) y field. Typically display coordinate y</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Annotator.z"> -<tt class="descname">z</tt><a class="headerlink" href="#Annotator.z" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) z field. Typically display coordinate z</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Annotator.notes"> -<tt class="descname">notes</tt><a class="headerlink" href="#Annotator.notes" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) A string to hold some text notes about parent object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Annotator.color"> -<tt class="descname">color</tt><a class="headerlink" href="#Annotator.color" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) A string to hold a text string specifying display color.Can be a regular English color name, or an rgb code rrrgggbbb</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Annotator.textColor"> -<tt class="descname">textColor</tt><a class="headerlink" href="#Annotator.textColor" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) A string to hold a text string specifying color for text labelthat might be on the display for this object.Can be a regular English color name, or an rgb code rrrgggbbb</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Annotator.icon"> -<tt class="descname">icon</tt><a class="headerlink" href="#Annotator.icon" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) A string to specify icon to use for display</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Arith"> -<em class="property">class </em><tt class="descname">Arith</tt><a class="headerlink" href="#Arith" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Arith.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Arith.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.setFunction"> -<tt class="descname">setFunction</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.setFunction" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.getFunction"> -<tt class="descname">getFunction</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.getFunction" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.setOutputValue"> -<tt class="descname">setOutputValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.setOutputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.getOutputValue"> -<tt class="descname">getOutputValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.getOutputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.getArg1Value"> -<tt class="descname">getArg1Value</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.getArg1Value" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.setAnyValue"> -<tt class="descname">setAnyValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.setAnyValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.getAnyValue"> -<tt class="descname">getAnyValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.getAnyValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.arg1"> -<tt class="descname">arg1</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.arg1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles argument 1. This just assigns it</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.arg2"> -<tt class="descname">arg2</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.arg2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles argument 2. This just assigns it</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.arg3"> -<tt class="descname">arg3</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.arg3" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles argument 3. This sums in each input, and clears each clock tick.</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.arg1x2"> -<tt class="descname">arg1x2</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.arg1x2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Store the product of the two arguments in <a href="#id13"><span class="problematic" id="id14">output_</span></a></p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="Arith.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Arith.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Arith.output"> -<tt class="descname">output</tt><a class="headerlink" href="#Arith.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out the computed value</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Arith.function"> -<tt class="descname">function</tt><a class="headerlink" href="#Arith.function" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Arithmetic function to perform on inputs.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Arith.outputValue"> -<tt class="descname">outputValue</tt><a class="headerlink" href="#Arith.outputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Value of output as computed last timestep.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Arith.arg1Value"> -<tt class="descname">arg1Value</tt><a class="headerlink" href="#Arith.arg1Value" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Value of arg1 as computed last timestep.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Arith.anyValue"> -<tt class="descname">anyValue</tt><a class="headerlink" href="#Arith.anyValue" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Value of any of the internal fields, output, arg1, arg2, arg3,as specified by the index argument from 0 to 3.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="BufPool"> -<em class="property">class </em><tt class="descname">BufPool</tt><a class="headerlink" href="#BufPool" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="BufPool.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#BufPool.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="BufPool.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#BufPool.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="BufPool.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#BufPool.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="CaConc"> -<em class="property">class </em><tt class="descname">CaConc</tt><a class="headerlink" href="#CaConc" title="Permalink to this definition">¶</a></dt> -<dd><p>CaConc: Calcium concentration pool. Takes current from a channel and keeps track of calcium buildup and depletion by a single exponential process.</p> -<dl class="attribute"> -<dt id="CaConc.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#CaConc.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message to receive Process message from scheduler</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setCa"> -<tt class="descname">setCa</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setCa" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getCa"> -<tt class="descname">getCa</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getCa" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setCaBasal"> -<tt class="descname">setCaBasal</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setCaBasal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getCaBasal"> -<tt class="descname">getCaBasal</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getCaBasal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setCa_base"> -<tt class="descname">setCa_base</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setCa_base" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getCa_base"> -<tt class="descname">getCa_base</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getCa_base" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setTau"> -<tt class="descname">setTau</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getTau"> -<tt class="descname">getTau</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setB"> -<tt class="descname">setB</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getB"> -<tt class="descname">getB</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setThick"> -<tt class="descname">setThick</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setThick" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getThick"> -<tt class="descname">getThick</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getThick" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setCeiling"> -<tt class="descname">setCeiling</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setCeiling" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getCeiling"> -<tt class="descname">getCeiling</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getCeiling" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.setFloor"> -<tt class="descname">setFloor</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.setFloor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.getFloor"> -<tt class="descname">getFloor</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.getFloor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.current"> -<tt class="descname">current</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.current" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Calcium Ion current, due to be converted to conc.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.currentFraction"> -<tt class="descname">currentFraction</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.currentFraction" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Fraction of total Ion current, that is carried by Ca2+.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.increase"> -<tt class="descname">increase</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.increase" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Any input current that increases the concentration.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.decrease"> -<tt class="descname">decrease</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.decrease" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Any input current that decreases the concentration.</p> -</dd></dl> - -<dl class="method"> -<dt id="CaConc.basal"> -<tt class="descname">basal</tt><big>(</big><big>)</big><a class="headerlink" href="#CaConc.basal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Synonym for assignment of basal conc.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.concOut"> -<tt class="descname">concOut</tt><a class="headerlink" href="#CaConc.concOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Concentration of Ca in pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.Ca"> -<tt class="descname">Ca</tt><a class="headerlink" href="#CaConc.Ca" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Calcium concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.CaBasal"> -<tt class="descname">CaBasal</tt><a class="headerlink" href="#CaConc.CaBasal" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Basal Calcium concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.Ca_base"> -<tt class="descname">Ca_base</tt><a class="headerlink" href="#CaConc.Ca_base" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Basal Calcium concentration, synonym for CaBasal</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.tau"> -<tt class="descname">tau</tt><a class="headerlink" href="#CaConc.tau" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Settling time for Ca concentration</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.B"> -<tt class="descname">B</tt><a class="headerlink" href="#CaConc.B" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Volume scaling factor</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.thick"> -<tt class="descname">thick</tt><a class="headerlink" href="#CaConc.thick" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Thickness of Ca shell.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.ceiling"> -<tt class="descname">ceiling</tt><a class="headerlink" href="#CaConc.ceiling" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Ceiling value for Ca concentration. If Ca > ceiling, Ca = ceiling. If ceiling <= 0.0, there is no upper limit on Ca concentration value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CaConc.floor"> -<tt class="descname">floor</tt><a class="headerlink" href="#CaConc.floor" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Floor value for Ca concentration. If Ca < floor, Ca = floor</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="ChanBase"> -<em class="property">class </em><tt class="descname">ChanBase</tt><a class="headerlink" href="#ChanBase" title="Permalink to this definition">¶</a></dt> -<dd><p>ChanBase: Base class for assorted ion channels.Presents a common interface for all of them.</p> -<dl class="attribute"> -<dt id="ChanBase.channel"> -<tt class="descname">channel</tt><a class="headerlink" href="#ChanBase.channel" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.ghk"> -<tt class="descname">ghk</tt><a class="headerlink" href="#ChanBase.ghk" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Message to Goldman-Hodgkin-Katz object</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.Vm"> -<tt class="descname">Vm</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Vm message coming in from compartment</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">Vm</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles Vm message coming in from compartment</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.setGbar"> -<tt class="descname">setGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.setGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.getGbar"> -<tt class="descname">getGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.getGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.setEk"> -<tt class="descname">setEk</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.setEk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.getEk"> -<tt class="descname">getEk</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.getEk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.setGk"> -<tt class="descname">setGk</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.setGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.getGk"> -<tt class="descname">getGk</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.getGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChanBase.getIk"> -<tt class="descname">getIk</tt><big>(</big><big>)</big><a class="headerlink" href="#ChanBase.getIk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.channelOut"> -<tt class="descname">channelOut</tt><a class="headerlink" href="#ChanBase.channelOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends channel variables Gk and Ek to compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.permeabilityOut"> -<tt class="descname">permeabilityOut</tt><a class="headerlink" href="#ChanBase.permeabilityOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Conductance term going out to GHK object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.IkOut"> -<tt class="descname">IkOut</tt><a class="headerlink" href="#ChanBase.IkOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Channel current. This message typically goes to concenobjects that keep track of ion concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.Gbar"> -<tt class="descname">Gbar</tt><a class="headerlink" href="#ChanBase.Gbar" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximal channel conductance</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.Ek"> -<tt class="descname">Ek</tt><a class="headerlink" href="#ChanBase.Ek" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reversal potential of channel</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.Gk"> -<tt class="descname">Gk</tt><a class="headerlink" href="#ChanBase.Gk" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Channel conductance variable</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChanBase.Ik"> -<tt class="descname">Ik</tt><a class="headerlink" href="#ChanBase.Ik" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Channel current variable</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="ChemCompt"> -<em class="property">class </em><tt class="descname">ChemCompt</tt><a class="headerlink" href="#ChemCompt" title="Permalink to this definition">¶</a></dt> -<dd><p>Pure virtual base class for chemical compartments</p> -<dl class="method"> -<dt id="ChemCompt.setVolume"> -<tt class="descname">setVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.setVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.getVolume"> -<tt class="descname">getVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.getVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.getVoxelVolume"> -<tt class="descname">getVoxelVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.getVoxelVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.getOneVoxelVolume"> -<tt class="descname">getOneVoxelVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.getOneVoxelVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.getNumDimensions"> -<tt class="descname">getNumDimensions</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.getNumDimensions" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.getStencilRate"> -<tt class="descname">getStencilRate</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.getStencilRate" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.getStencilIndex"> -<tt class="descname">getStencilIndex</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.getStencilIndex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.buildDefaultMesh"> -<tt class="descname">buildDefaultMesh</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.buildDefaultMesh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Tells ChemCompt derived class to build a default mesh with thespecified volume and number of meshEntries.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.setVolumeNotRates"> -<tt class="descname">setVolumeNotRates</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.setVolumeNotRates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Changes volume but does not notify any child objects.Only works if the ChemCompt has just one voxel.This function will invalidate any concentration term inthe model. If you don’t know why you would want to do this,then you shouldn’t use this function.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.resetStencil"> -<tt class="descname">resetStencil</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.resetStencil" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Resets the diffusion stencil to the core stencil that only includes the within-mesh diffusion. This is needed prior to building up the cross-mesh diffusion through junctions.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.setNumMesh"> -<tt class="descname">setNumMesh</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.setNumMesh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="ChemCompt.getNumMesh"> -<tt class="descname">getNumMesh</tt><big>(</big><big>)</big><a class="headerlink" href="#ChemCompt.getNumMesh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChemCompt.volume"> -<tt class="descname">volume</tt><a class="headerlink" href="#ChemCompt.volume" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Volume of entire chemical domain.Assigning this only works if the chemical compartment hasonly a single voxel. Otherwise ignored.This function goes through all objects below this on thetree, and rescales their molecule #s and rates as per thevolume change. This keeps concentration the same, and alsomaintains rates as expressed in volume units.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChemCompt.voxelVolume"> -<tt class="descname">voxelVolume</tt><a class="headerlink" href="#ChemCompt.voxelVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Vector of volumes of each of the voxels.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChemCompt.numDimensions"> -<tt class="descname">numDimensions</tt><a class="headerlink" href="#ChemCompt.numDimensions" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of spatial dimensions of this compartment. Usually 3 or 2</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChemCompt.oneVoxelVolume"> -<tt class="descname">oneVoxelVolume</tt><a class="headerlink" href="#ChemCompt.oneVoxelVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Volume of specified voxel.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChemCompt.stencilRate"> -<tt class="descname">stencilRate</tt><a class="headerlink" href="#ChemCompt.stencilRate" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,vector<double> (<em>lookup field</em>) vector of diffusion rates in the stencil for specified voxel.The identity of the coupled voxels is given by the partner field ‘stencilIndex’.Returns an empty vector for non-voxelized compartments.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ChemCompt.stencilIndex"> -<tt class="descname">stencilIndex</tt><a class="headerlink" href="#ChemCompt.stencilIndex" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,vector<unsigned int> (<em>lookup field</em>) vector of voxels diffusively coupled to the specified voxel.The diffusion rates into the coupled voxels is given by the partner field ‘stencilRate’.Returns an empty vector for non-voxelized compartments.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Cinfo"> -<em class="property">class </em><tt class="descname">Cinfo</tt><a class="headerlink" href="#Cinfo" title="Permalink to this definition">¶</a></dt> -<dd><p>Class information object.</p> -<dl class="method"> -<dt id="Cinfo.getDocs"> -<tt class="descname">getDocs</tt><big>(</big><big>)</big><a class="headerlink" href="#Cinfo.getDocs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Cinfo.getBaseClass"> -<tt class="descname">getBaseClass</tt><big>(</big><big>)</big><a class="headerlink" href="#Cinfo.getBaseClass" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Cinfo.docs"> -<tt class="descname">docs</tt><a class="headerlink" href="#Cinfo.docs" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Documentation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Cinfo.baseClass"> -<tt class="descname">baseClass</tt><a class="headerlink" href="#Cinfo.baseClass" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Name of base class</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Clock"> -<em class="property">class </em><tt class="descname">Clock</tt><a class="headerlink" href="#Clock" title="Permalink to this definition">¶</a></dt> -<dd><p>Clock: Clock class. Handles sequencing of operations in simulations.Every object scheduled for operations in MOOSE is connected to oneof the ‘Tick’ entries on the Clock.The Clock manages ten ‘Ticks’, each of which has its own dt,which is an integral multiple of the base clock <a href="#id15"><span class="problematic" id="id16">dt_</span></a>. On every clock step the ticks are examined to see which of themis due for updating. When a tick is updated, the ‘process’ call of all the objects scheduled on that tick is called.The default scheduling (should not be overridden) has the following assignment of classes to Ticks:0. Biophysics: Init call on Compartments in EE method1. Biophysics: Channels2. Biophysics: Process call on Compartments3. Undefined 4. Kinetics: Pools, or in ksolve mode: Mesh to handle diffusion5. Kinetics: Reacs, enzymes, etc, or in ksolve mode: Stoich/GSL6. Stimulus tables7. More stimulus tables8. Plots9. Postmaster. This must be called last of all and nothing else should use this Tick. The Postmaster is automatically scheduled at set up time. The Tick should be given the longest possible value, typically but not always equal to one of the other ticks, so as to batch the communications. For spiking-only communications, it is usually possible to space the communication tick by as much as 1-2 ms which is the axonal + synaptic delay.</p> -<dl class="attribute"> -<dt id="Clock.clockControl"> -<tt class="descname">clockControl</tt><a class="headerlink" href="#Clock.clockControl" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Controls all scheduling aspects of Clock, usually from Shell</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc0"> -<tt class="descname">proc0</tt><a class="headerlink" href="#Clock.proc0" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc1"> -<tt class="descname">proc1</tt><a class="headerlink" href="#Clock.proc1" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc2"> -<tt class="descname">proc2</tt><a class="headerlink" href="#Clock.proc2" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc3"> -<tt class="descname">proc3</tt><a class="headerlink" href="#Clock.proc3" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc4"> -<tt class="descname">proc4</tt><a class="headerlink" href="#Clock.proc4" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc5"> -<tt class="descname">proc5</tt><a class="headerlink" href="#Clock.proc5" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc6"> -<tt class="descname">proc6</tt><a class="headerlink" href="#Clock.proc6" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc7"> -<tt class="descname">proc7</tt><a class="headerlink" href="#Clock.proc7" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc8"> -<tt class="descname">proc8</tt><a class="headerlink" href="#Clock.proc8" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.proc9"> -<tt class="descname">proc9</tt><a class="headerlink" href="#Clock.proc9" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared proc/reinit message</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.setDt"> -<tt class="descname">setDt</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.setDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getDt"> -<tt class="descname">getDt</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getRunTime"> -<tt class="descname">getRunTime</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getRunTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getCurrentTime"> -<tt class="descname">getCurrentTime</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getCurrentTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getNsteps"> -<tt class="descname">getNsteps</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getNsteps" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getNumTicks"> -<tt class="descname">getNumTicks</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getNumTicks" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getCurrentStep"> -<tt class="descname">getCurrentStep</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getCurrentStep" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getDts"> -<tt class="descname">getDts</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getDts" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getIsRunning"> -<tt class="descname">getIsRunning</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getIsRunning" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.setTickStep"> -<tt class="descname">setTickStep</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.setTickStep" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getTickStep"> -<tt class="descname">getTickStep</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getTickStep" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.setTickDt"> -<tt class="descname">setTickDt</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.setTickDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.getTickDt"> -<tt class="descname">getTickDt</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.getTickDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.start"> -<tt class="descname">start</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.start" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Sets off the simulation for the specified duration</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.step"> -<tt class="descname">step</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.step" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Sets off the simulation for the specified # of steps</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.stop"> -<tt class="descname">stop</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.stop" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Halts the simulation, with option to restart seamlessly</p> -</dd></dl> - -<dl class="method"> -<dt id="Clock.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Clock.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Zeroes out all ticks, starts at t = 0</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.finished"> -<tt class="descname">finished</tt><a class="headerlink" href="#Clock.finished" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>source message field</em>) Signal for completion of run</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process0"> -<tt class="descname">process0</tt><a class="headerlink" href="#Clock.process0" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 0</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit0"> -<tt class="descname">reinit0</tt><a class="headerlink" href="#Clock.reinit0" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 0</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process1"> -<tt class="descname">process1</tt><a class="headerlink" href="#Clock.process1" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 1</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit1"> -<tt class="descname">reinit1</tt><a class="headerlink" href="#Clock.reinit1" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 1</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process2"> -<tt class="descname">process2</tt><a class="headerlink" href="#Clock.process2" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 2</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit2"> -<tt class="descname">reinit2</tt><a class="headerlink" href="#Clock.reinit2" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 2</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process3"> -<tt class="descname">process3</tt><a class="headerlink" href="#Clock.process3" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 3</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit3"> -<tt class="descname">reinit3</tt><a class="headerlink" href="#Clock.reinit3" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 3</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process4"> -<tt class="descname">process4</tt><a class="headerlink" href="#Clock.process4" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 4</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit4"> -<tt class="descname">reinit4</tt><a class="headerlink" href="#Clock.reinit4" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 4</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process5"> -<tt class="descname">process5</tt><a class="headerlink" href="#Clock.process5" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 5</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit5"> -<tt class="descname">reinit5</tt><a class="headerlink" href="#Clock.reinit5" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 5</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process6"> -<tt class="descname">process6</tt><a class="headerlink" href="#Clock.process6" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 6</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit6"> -<tt class="descname">reinit6</tt><a class="headerlink" href="#Clock.reinit6" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 6</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process7"> -<tt class="descname">process7</tt><a class="headerlink" href="#Clock.process7" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 7</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit7"> -<tt class="descname">reinit7</tt><a class="headerlink" href="#Clock.reinit7" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 7</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process8"> -<tt class="descname">process8</tt><a class="headerlink" href="#Clock.process8" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 8</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit8"> -<tt class="descname">reinit8</tt><a class="headerlink" href="#Clock.reinit8" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 8</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.process9"> -<tt class="descname">process9</tt><a class="headerlink" href="#Clock.process9" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Process for Tick 9</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.reinit9"> -<tt class="descname">reinit9</tt><a class="headerlink" href="#Clock.reinit9" title="Permalink to this definition">¶</a></dt> -<dd><p>PK8ProcInfo (<em>source message field</em>) Reinit for Tick 9</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.dt"> -<tt class="descname">dt</tt><a class="headerlink" href="#Clock.dt" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Base timestep for simulation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.runTime"> -<tt class="descname">runTime</tt><a class="headerlink" href="#Clock.runTime" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Duration to run the simulation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.currentTime"> -<tt class="descname">currentTime</tt><a class="headerlink" href="#Clock.currentTime" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Current simulation time</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.nsteps"> -<tt class="descname">nsteps</tt><a class="headerlink" href="#Clock.nsteps" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of steps to advance the simulation, in units of the smallest timestep on the clock ticks</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.numTicks"> -<tt class="descname">numTicks</tt><a class="headerlink" href="#Clock.numTicks" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of clock ticks</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.currentStep"> -<tt class="descname">currentStep</tt><a class="headerlink" href="#Clock.currentStep" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Current simulation step</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.dts"> -<tt class="descname">dts</tt><a class="headerlink" href="#Clock.dts" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Utility function returning the dt (timestep) of all ticks.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.isRunning"> -<tt class="descname">isRunning</tt><a class="headerlink" href="#Clock.isRunning" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Utility function to report if simulation is in progress.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.tickStep"> -<tt class="descname">tickStep</tt><a class="headerlink" href="#Clock.tickStep" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,unsigned int (<em>lookup field</em>) Step size of specified Tick, as integral multiple of <a href="#id17"><span class="problematic" id="id18">dt_</span></a> A zero step size means that the Tick is inactive</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Clock.tickDt"> -<tt class="descname">tickDt</tt><a class="headerlink" href="#Clock.tickDt" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Timestep dt of specified Tick. Always integral multiple of <a href="#id19"><span class="problematic" id="id20">dt_</span></a>. If you assign a non-integer multiple it will round off. A zero timestep means that the Tick is inactive</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Compartment"> -<em class="property">class </em><tt class="descname">Compartment</tt><a class="headerlink" href="#Compartment" title="Permalink to this definition">¶</a></dt> -<dd><p>Compartment object, for branching neuron models.</p> -</dd></dl> - -<dl class="class"> -<dt id="CompartmentBase"> -<em class="property">class </em><tt class="descname">CompartmentBase</tt><a class="headerlink" href="#CompartmentBase" title="Permalink to this definition">¶</a></dt> -<dd><p>CompartmentBase object, for branching neuron models.</p> -<dl class="attribute"> -<dt id="CompartmentBase.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#CompartmentBase.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process messages from the scheduler objects. The Process should be called _second_ in each clock tick, after the Init message.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.init"> -<tt class="descname">init</tt><a class="headerlink" href="#CompartmentBase.init" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Init messages from the scheduler objects. Its job is to separate the compartmental calculations from the message passing. It doesn’t really need to be shared, as it does not use the reinit part, but the scheduler objects expect this form of message for all scheduled output. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a dummy MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.channel"> -<tt class="descname">channel</tt><a class="headerlink" href="#CompartmentBase.channel" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message from a compartment to channels. The first entry is a MsgDest for the info coming from the channel. It expects Gk and Ek from the channel as args. The second entry is a MsgSrc sending Vm</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.axial"> -<tt class="descname">axial</tt><a class="headerlink" href="#CompartmentBase.axial" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message between asymmetric compartments. axial messages (this kind) connect up to raxial messages (defined below). The soma should use raxial messages to connect to the axial message of all the immediately adjacent dendritic compartments.This puts the (low) somatic resistance in series with these dendrites. Dendrites should then use raxial messages toconnect on to more distal dendrites. In other words, raxial messages should face outward from the soma. The first entry is a MsgSrc sending Vm to the axialFuncof the target compartment. The second entry is a MsgDest for the info coming from the other compt. It expects Ra and Vm from the other compt as args. Note that the message is named after the source type.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.raxial"> -<tt class="descname">raxial</tt><a class="headerlink" href="#CompartmentBase.raxial" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a raxial shared message between asymmetric compartments. The first entry is a MsgDest for the info coming from the other compt. It expects Vm from the other compt as an arg. The second is a MsgSrc sending Ra and Vm to the raxialFunc of the target compartment.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setVm"> -<tt class="descname">setVm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getVm"> -<tt class="descname">getVm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setCm"> -<tt class="descname">setCm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setCm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getCm"> -<tt class="descname">getCm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getCm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setEm"> -<tt class="descname">setEm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setEm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getEm"> -<tt class="descname">getEm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getEm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getIm"> -<tt class="descname">getIm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getIm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setInject"> -<tt class="descname">setInject</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setInject" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getInject"> -<tt class="descname">getInject</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getInject" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setInitVm"> -<tt class="descname">setInitVm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setInitVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getInitVm"> -<tt class="descname">getInitVm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getInitVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setRm"> -<tt class="descname">setRm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setRm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getRm"> -<tt class="descname">getRm</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getRm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setRa"> -<tt class="descname">setRa</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setRa" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getRa"> -<tt class="descname">getRa</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getRa" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setDiameter"> -<tt class="descname">setDiameter</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setDiameter" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getDiameter"> -<tt class="descname">getDiameter</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getDiameter" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setLength"> -<tt class="descname">setLength</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getLength"> -<tt class="descname">getLength</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setX0"> -<tt class="descname">setX0</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setX0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getX0"> -<tt class="descname">getX0</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getX0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setY0"> -<tt class="descname">setY0</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setY0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getY0"> -<tt class="descname">getY0</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getY0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setZ0"> -<tt class="descname">setZ0</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setZ0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getZ0"> -<tt class="descname">getZ0</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getZ0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setX"> -<tt class="descname">setX</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getX"> -<tt class="descname">getX</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setY"> -<tt class="descname">setY</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.setZ"> -<tt class="descname">setZ</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.setZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.getZ"> -<tt class="descname">getZ</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.getZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.injectMsg"> -<tt class="descname">injectMsg</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.injectMsg" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the ‘inject’ field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.randInject"> -<tt class="descname">randInject</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.randInject" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Sends a random injection current to the compartment. Must beupdated each timestep.Arguments to randInject are probability and current.</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">injectMsg</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) The injectMsg corresponds to the INJECT message in the GENESIS compartment. Unlike the ‘inject’ field, any value assigned by handleInject applies only for a single timestep.So it needs to be updated every dt for a steady (or varying)injection current</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.cable"> -<tt class="descname">cable</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.cable" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Message for organizing compartments into groups, calledcables. Doesn’t do anything.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘process’ call</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘reinit’ call</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.initProc"> -<tt class="descname">initProc</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.initProc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Process call for the ‘init’ phase of the CompartmentBase calculations. These occur as a separate Tick cycle from the regular proc cycle, and should be called before the proc msg.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.initReinit"> -<tt class="descname">initReinit</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.initReinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Reinit call for the ‘init’ phase of the CompartmentBase calculations.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.handleChannel"> -<tt class="descname">handleChannel</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.handleChannel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles conductance and Reversal potential arguments from Channel</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.handleRaxial"> -<tt class="descname">handleRaxial</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.handleRaxial" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Raxial info: arguments are Ra and Vm.</p> -</dd></dl> - -<dl class="method"> -<dt id="CompartmentBase.handleAxial"> -<tt class="descname">handleAxial</tt><big>(</big><big>)</big><a class="headerlink" href="#CompartmentBase.handleAxial" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Axial information. Argument is just Vm.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.VmOut"> -<tt class="descname">VmOut</tt><a class="headerlink" href="#CompartmentBase.VmOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out Vm value of compartment on each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.axialOut"> -<tt class="descname">axialOut</tt><a class="headerlink" href="#CompartmentBase.axialOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out Vm value of compartment to adjacent compartments,on each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.raxialOut"> -<tt class="descname">raxialOut</tt><a class="headerlink" href="#CompartmentBase.raxialOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out Raxial information on each timestep, fields are Ra and Vm</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.Vm"> -<tt class="descname">Vm</tt><a class="headerlink" href="#CompartmentBase.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) membrane potential</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.Cm"> -<tt class="descname">Cm</tt><a class="headerlink" href="#CompartmentBase.Cm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Membrane capacitance</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.Em"> -<tt class="descname">Em</tt><a class="headerlink" href="#CompartmentBase.Em" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Resting membrane potential</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.Im"> -<tt class="descname">Im</tt><a class="headerlink" href="#CompartmentBase.Im" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Current going through membrane</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.inject"> -<tt class="descname">inject</tt><a class="headerlink" href="#CompartmentBase.inject" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Current injection to deliver into compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.initVm"> -<tt class="descname">initVm</tt><a class="headerlink" href="#CompartmentBase.initVm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Initial value for membrane potential</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.Rm"> -<tt class="descname">Rm</tt><a class="headerlink" href="#CompartmentBase.Rm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Membrane resistance</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.Ra"> -<tt class="descname">Ra</tt><a class="headerlink" href="#CompartmentBase.Ra" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Axial resistance of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.diameter"> -<tt class="descname">diameter</tt><a class="headerlink" href="#CompartmentBase.diameter" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Diameter of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.length"> -<tt class="descname">length</tt><a class="headerlink" href="#CompartmentBase.length" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Length of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.x0"> -<tt class="descname">x0</tt><a class="headerlink" href="#CompartmentBase.x0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) X coordinate of start of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.y0"> -<tt class="descname">y0</tt><a class="headerlink" href="#CompartmentBase.y0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Y coordinate of start of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.z0"> -<tt class="descname">z0</tt><a class="headerlink" href="#CompartmentBase.z0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Z coordinate of start of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.x"> -<tt class="descname">x</tt><a class="headerlink" href="#CompartmentBase.x" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) x coordinate of end of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.y"> -<tt class="descname">y</tt><a class="headerlink" href="#CompartmentBase.y" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) y coordinate of end of compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CompartmentBase.z"> -<tt class="descname">z</tt><a class="headerlink" href="#CompartmentBase.z" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) z coordinate of end of compartment</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="CplxEnzBase"> -<em class="property">class </em><tt class="descname">CplxEnzBase</tt><a class="headerlink" href="#CplxEnzBase" title="Permalink to this definition">¶</a></dt> -<dd><p>: Base class for mass-action enzymes in which there is an explicit pool for the enzyme-substrate complex. It models the reaction: E + S <===> E.S —-> E + P</p> -<dl class="attribute"> -<dt id="CplxEnzBase.enz"> -<tt class="descname">enz</tt><a class="headerlink" href="#CplxEnzBase.enz" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to enzyme pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.cplx"> -<tt class="descname">cplx</tt><a class="headerlink" href="#CplxEnzBase.cplx" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to enz-sub complex pool</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.setK1"> -<tt class="descname">setK1</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.setK1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.getK1"> -<tt class="descname">getK1</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.getK1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.setK2"> -<tt class="descname">setK2</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.setK2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.getK2"> -<tt class="descname">getK2</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.getK2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.setK3"> -<tt class="descname">setK3</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.setK3" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.getK3"> -<tt class="descname">getK3</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.getK3" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.setRatio"> -<tt class="descname">setRatio</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.setRatio" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.getRatio"> -<tt class="descname">getRatio</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.getRatio" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.setConcK1"> -<tt class="descname">setConcK1</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.setConcK1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.getConcK1"> -<tt class="descname">getConcK1</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.getConcK1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.enzDest"> -<tt class="descname">enzDest</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.enzDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles # of molecules of Enzyme</p> -</dd></dl> - -<dl class="method"> -<dt id="CplxEnzBase.cplxDest"> -<tt class="descname">cplxDest</tt><big>(</big><big>)</big><a class="headerlink" href="#CplxEnzBase.cplxDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles # of molecules of enz-sub complex</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.enzOut"> -<tt class="descname">enzOut</tt><a class="headerlink" href="#CplxEnzBase.enzOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out increment of molecules on product each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.cplxOut"> -<tt class="descname">cplxOut</tt><a class="headerlink" href="#CplxEnzBase.cplxOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out increment of molecules on product each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.k1"> -<tt class="descname">k1</tt><a class="headerlink" href="#CplxEnzBase.k1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Forward reaction from enz + sub to complex, in # units.This parameter is subordinate to the Km. This means thatwhen Km is changed, this changes. It also means that whenk2 or k3 (aka kcat) are changed, we assume that Km remainsfixed, and as a result k1 must change. It is only whenk1 is assigned directly that we assume that the user knowswhat they are doing, and we adjust Km accordingly.k1 is also subordinate to the ‘ratio’ field, since setting the ratio reassigns k2.Should you wish to assign the elementary rates k1, k2, k3,of an enzyme directly, always assign k1 last.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.k2"> -<tt class="descname">k2</tt><a class="headerlink" href="#CplxEnzBase.k2" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reverse reaction from complex to enz + sub</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.k3"> -<tt class="descname">k3</tt><a class="headerlink" href="#CplxEnzBase.k3" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Forward rate constant from complex to product + enz</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.ratio"> -<tt class="descname">ratio</tt><a class="headerlink" href="#CplxEnzBase.ratio" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Ratio of k2/k3</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CplxEnzBase.concK1"> -<tt class="descname">concK1</tt><a class="headerlink" href="#CplxEnzBase.concK1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) K1 expressed in concentration (1/millimolar.sec) unitsThis parameter is subordinate to the Km. This means thatwhen Km is changed, this changes. It also means that whenk2 or k3 (aka kcat) are changed, we assume that Km remainsfixed, and as a result concK1 must change. It is only whenconcK1 is assigned directly that we assume that the user knowswhat they are doing, and we adjust Km accordingly.concK1 is also subordinate to the ‘ratio’ field, sincesetting the ratio reassigns k2.Should you wish to assign the elementary rates concK1, k2, k3,of an enzyme directly, always assign concK1 last.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="CubeMesh"> -<em class="property">class </em><tt class="descname">CubeMesh</tt><a class="headerlink" href="#CubeMesh" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="CubeMesh.setIsToroid"> -<tt class="descname">setIsToroid</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setIsToroid" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getIsToroid"> -<tt class="descname">getIsToroid</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getIsToroid" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setPreserveNumEntries"> -<tt class="descname">setPreserveNumEntries</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setPreserveNumEntries" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getPreserveNumEntries"> -<tt class="descname">getPreserveNumEntries</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getPreserveNumEntries" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setAlwaysDiffuse"> -<tt class="descname">setAlwaysDiffuse</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setAlwaysDiffuse" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getAlwaysDiffuse"> -<tt class="descname">getAlwaysDiffuse</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getAlwaysDiffuse" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setX0"> -<tt class="descname">setX0</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setX0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getX0"> -<tt class="descname">getX0</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getX0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setY0"> -<tt class="descname">setY0</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setY0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getY0"> -<tt class="descname">getY0</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getY0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setZ0"> -<tt class="descname">setZ0</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setZ0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getZ0"> -<tt class="descname">getZ0</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getZ0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setX1"> -<tt class="descname">setX1</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setX1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getX1"> -<tt class="descname">getX1</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getX1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setY1"> -<tt class="descname">setY1</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setY1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getY1"> -<tt class="descname">getY1</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getY1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setZ1"> -<tt class="descname">setZ1</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setZ1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getZ1"> -<tt class="descname">getZ1</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getZ1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setDx"> -<tt class="descname">setDx</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setDx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getDx"> -<tt class="descname">getDx</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getDx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setDy"> -<tt class="descname">setDy</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setDy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getDy"> -<tt class="descname">getDy</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getDy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setDz"> -<tt class="descname">setDz</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setDz" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getDz"> -<tt class="descname">getDz</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getDz" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setNx"> -<tt class="descname">setNx</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setNx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getNx"> -<tt class="descname">getNx</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getNx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setNy"> -<tt class="descname">setNy</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setNy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getNy"> -<tt class="descname">getNy</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getNy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setNz"> -<tt class="descname">setNz</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setNz" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getNz"> -<tt class="descname">getNz</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getNz" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setCoords"> -<tt class="descname">setCoords</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setCoords" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getCoords"> -<tt class="descname">getCoords</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getCoords" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setMeshToSpace"> -<tt class="descname">setMeshToSpace</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setMeshToSpace" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getMeshToSpace"> -<tt class="descname">getMeshToSpace</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getMeshToSpace" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setSpaceToMesh"> -<tt class="descname">setSpaceToMesh</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setSpaceToMesh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getSpaceToMesh"> -<tt class="descname">getSpaceToMesh</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getSpaceToMesh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.setSurface"> -<tt class="descname">setSurface</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.setSurface" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CubeMesh.getSurface"> -<tt class="descname">getSurface</tt><big>(</big><big>)</big><a class="headerlink" href="#CubeMesh.getSurface" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.isToroid"> -<tt class="descname">isToroid</tt><a class="headerlink" href="#CubeMesh.isToroid" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag. True when the mesh should be toroidal, that is,when going beyond the right face brings us around to theleft-most mesh entry, and so on. If we have nx, ny, nzentries, this rule means that the coordinate (x, ny, z)will map onto (x, 0, z). Similarly,(-1, y, z) -> (nx-1, y, z)Default is false</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.preserveNumEntries"> -<tt class="descname">preserveNumEntries</tt><a class="headerlink" href="#CubeMesh.preserveNumEntries" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag. When it is true, the numbers nx, ny, nz remainunchanged when x0, x1, y0, y1, z0, z1 are altered. Thusdx, dy, dz would change instead. When it is false, thendx, dy, dz remain the same and nx, ny, nz are altered.Default is true</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.alwaysDiffuse"> -<tt class="descname">alwaysDiffuse</tt><a class="headerlink" href="#CubeMesh.alwaysDiffuse" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag. When it is true, the mesh matches up sequential mesh entries for diffusion and chmestry. This is regardless of spatial location, and is guaranteed to set up at least the home reaction systemDefault is false</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.x0"> -<tt class="descname">x0</tt><a class="headerlink" href="#CubeMesh.x0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) X coord of one end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.y0"> -<tt class="descname">y0</tt><a class="headerlink" href="#CubeMesh.y0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Y coord of one end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.z0"> -<tt class="descname">z0</tt><a class="headerlink" href="#CubeMesh.z0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Z coord of one end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.x1"> -<tt class="descname">x1</tt><a class="headerlink" href="#CubeMesh.x1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) X coord of other end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.y1"> -<tt class="descname">y1</tt><a class="headerlink" href="#CubeMesh.y1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Y coord of other end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.z1"> -<tt class="descname">z1</tt><a class="headerlink" href="#CubeMesh.z1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Z coord of other end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.dx"> -<tt class="descname">dx</tt><a class="headerlink" href="#CubeMesh.dx" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) X size for mesh</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.dy"> -<tt class="descname">dy</tt><a class="headerlink" href="#CubeMesh.dy" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Y size for mesh</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.dz"> -<tt class="descname">dz</tt><a class="headerlink" href="#CubeMesh.dz" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Z size for mesh</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.nx"> -<tt class="descname">nx</tt><a class="headerlink" href="#CubeMesh.nx" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of subdivisions in mesh in X</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.ny"> -<tt class="descname">ny</tt><a class="headerlink" href="#CubeMesh.ny" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of subdivisions in mesh in Y</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.nz"> -<tt class="descname">nz</tt><a class="headerlink" href="#CubeMesh.nz" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of subdivisions in mesh in Z</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.coords"> -<tt class="descname">coords</tt><a class="headerlink" href="#CubeMesh.coords" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Set all the coords of the cuboid at once. Order is:x0 y0 z0 x1 y1 z1 dx dy dzWhen this is done, it recalculates the numEntries since dx, dy and dz are given explicitly.As a special hack, you can leave out dx, dy and dz and use a vector of size 6. In this case the operation assumes that nx, ny and nz are to be preserved and dx, dy and dz will be recalculated.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.meshToSpace"> -<tt class="descname">meshToSpace</tt><a class="headerlink" href="#CubeMesh.meshToSpace" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Array in which each mesh entry stores spatial (cubic) index</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.spaceToMesh"> -<tt class="descname">spaceToMesh</tt><a class="headerlink" href="#CubeMesh.spaceToMesh" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Array in which each space index (obtained by linearizing the xyz coords) specifies which meshIndex is present.In many cases the index will store the EMPTY flag if there isno mesh entry at that spatial location</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CubeMesh.surface"> -<tt class="descname">surface</tt><a class="headerlink" href="#CubeMesh.surface" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Array specifying surface of arbitrary volume within the CubeMesh. All entries must fall within the cuboid. Each entry of the array is a spatial index obtained by linearizing the ix, iy, iz coordinates within the cuboid. So, each entry == ( iz * ny + iy ) * nx + ixNote that the voxels listed on the surface are WITHIN the volume of the CubeMesh object</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="CylMesh"> -<em class="property">class </em><tt class="descname">CylMesh</tt><a class="headerlink" href="#CylMesh" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="CylMesh.setX0"> -<tt class="descname">setX0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setX0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getX0"> -<tt class="descname">getX0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getX0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setY0"> -<tt class="descname">setY0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setY0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getY0"> -<tt class="descname">getY0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getY0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setZ0"> -<tt class="descname">setZ0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setZ0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getZ0"> -<tt class="descname">getZ0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getZ0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setR0"> -<tt class="descname">setR0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setR0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getR0"> -<tt class="descname">getR0</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getR0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setX1"> -<tt class="descname">setX1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setX1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getX1"> -<tt class="descname">getX1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getX1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setY1"> -<tt class="descname">setY1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setY1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getY1"> -<tt class="descname">getY1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getY1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setZ1"> -<tt class="descname">setZ1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setZ1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getZ1"> -<tt class="descname">getZ1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getZ1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setR1"> -<tt class="descname">setR1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setR1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getR1"> -<tt class="descname">getR1</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getR1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setDiffLength"> -<tt class="descname">setDiffLength</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setDiffLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getDiffLength"> -<tt class="descname">getDiffLength</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getDiffLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.setCoords"> -<tt class="descname">setCoords</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.setCoords" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getCoords"> -<tt class="descname">getCoords</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getCoords" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getNumDiffCompts"> -<tt class="descname">getNumDiffCompts</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getNumDiffCompts" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="CylMesh.getTotLength"> -<tt class="descname">getTotLength</tt><big>(</big><big>)</big><a class="headerlink" href="#CylMesh.getTotLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.x0"> -<tt class="descname">x0</tt><a class="headerlink" href="#CylMesh.x0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) x coord of one end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.y0"> -<tt class="descname">y0</tt><a class="headerlink" href="#CylMesh.y0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) y coord of one end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.z0"> -<tt class="descname">z0</tt><a class="headerlink" href="#CylMesh.z0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) z coord of one end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.r0"> -<tt class="descname">r0</tt><a class="headerlink" href="#CylMesh.r0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Radius of one end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.x1"> -<tt class="descname">x1</tt><a class="headerlink" href="#CylMesh.x1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) x coord of other end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.y1"> -<tt class="descname">y1</tt><a class="headerlink" href="#CylMesh.y1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) y coord of other end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.z1"> -<tt class="descname">z1</tt><a class="headerlink" href="#CylMesh.z1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) z coord of other end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.r1"> -<tt class="descname">r1</tt><a class="headerlink" href="#CylMesh.r1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Radius of other end</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.diffLength"> -<tt class="descname">diffLength</tt><a class="headerlink" href="#CylMesh.diffLength" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Length constant to use for subdivisionsThe system will attempt to subdivide using compartments oflength diffLength on average. If the cylinder has different enddiameters r0 and r1, it will scale to smaller lengthsfor the smaller diameter end and vice versa.Once the value is set it will recompute diffLength as totLength/numEntries</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.coords"> -<tt class="descname">coords</tt><a class="headerlink" href="#CylMesh.coords" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) All the coords as a single vector: x0 y0 z0 x1 y1 z1 r0 r1 diffLength</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.numDiffCompts"> -<tt class="descname">numDiffCompts</tt><a class="headerlink" href="#CylMesh.numDiffCompts" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of diffusive compartments in model</p> -</dd></dl> - -<dl class="attribute"> -<dt id="CylMesh.totLength"> -<tt class="descname">totLength</tt><a class="headerlink" href="#CylMesh.totLength" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Total length of cylinder</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="DiagonalMsg"> -<em class="property">class </em><tt class="descname">DiagonalMsg</tt><a class="headerlink" href="#DiagonalMsg" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="DiagonalMsg.setStride"> -<tt class="descname">setStride</tt><big>(</big><big>)</big><a class="headerlink" href="#DiagonalMsg.setStride" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiagonalMsg.getStride"> -<tt class="descname">getStride</tt><big>(</big><big>)</big><a class="headerlink" href="#DiagonalMsg.getStride" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="DiagonalMsg.stride"> -<tt class="descname">stride</tt><a class="headerlink" href="#DiagonalMsg.stride" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) The stride is the increment to the src DataId that gives thedest DataId. It can be positive or negative, but bounds checkingtakes place and it does not wrap around.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="DifShell"> -<em class="property">class </em><tt class="descname">DifShell</tt><a class="headerlink" href="#DifShell" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><p>DifShell object: Models diffusion of an ion (typically calcium) within an electric compartment. A DifShell is an iso-concentration region with respect to the ion. Adjoining DifShells exchange flux of this ion, and also keep track of changes in concentration due to pumping, buffering and channel currents, by talking to the appropriate objects.</p> -<dl class="attribute"> -<dt id="DifShell.process_0"> -<tt class="descname">process_0</tt><a class="headerlink" href="#DifShell.process_0" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Here we create 2 shared finfos to attach with the Ticks. This is because we want to perform DifShell computations in 2 stages, much as in the Compartment object. In the first stage we send out the concentration value to other DifShells and Buffer elements. We also receive fluxes and currents and sum them up to compute ( dC / dt ). In the second stage we find the new C value using an explicit integration method. This 2-stage procedure eliminates the need to store and send prev_C values, as was common in GENESIS.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="DifShell.process_1"> -<tt class="descname">process_1</tt><a class="headerlink" href="#DifShell.process_1" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Second process call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="DifShell.buffer"> -<tt class="descname">buffer</tt><a class="headerlink" href="#DifShell.buffer" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message from a DifShell to a Buffer (FixBuffer or DifBuffer). During stage 0:</p> -</dd></dl> - -</div></blockquote> -<ul class="simple"> -<li>DifShell sends ion concentration</li> -</ul> -</dd></dl> - -<ul class="simple"> -<li>Buffer updates buffer concentration and sends it back immediately using a call-back.</li> -<li>DifShell updates the time-derivative ( dC / dt )</li> -</ul> -<p>During stage 1: -- DifShell advances concentration C -This scheme means that the Buffer does not need to be scheduled, and it does its computations when it receives a cue from the DifShell. May not be the best idea, but it saves us from doing the above computations in 3 stages instead of 2.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="innerDif"> -<tt class="descname">innerDif</tt><a class="headerlink" href="#innerDif" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This shared message (and the next) is between DifShells: adjoining shells exchange information to find out the flux between them. Using this message, an inner shell sends to, and receives from its outer shell.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="outerDif"> -<tt class="descname">outerDif</tt><a class="headerlink" href="#outerDif" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Using this message, an outer shell sends to, and receives from its inner shell.</p> -</dd></dl> - -<dl class="method"> -<dt id="getC"> -<tt class="descname">getC</tt><big>(</big><big>)</big><a class="headerlink" href="#getC" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setCeq"> -<tt class="descname">setCeq</tt><big>(</big><big>)</big><a class="headerlink" href="#setCeq" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getCeq"> -<tt class="descname">getCeq</tt><big>(</big><big>)</big><a class="headerlink" href="#getCeq" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setD"> -<tt class="descname">setD</tt><big>(</big><big>)</big><a class="headerlink" href="#setD" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getD"> -<tt class="descname">getD</tt><big>(</big><big>)</big><a class="headerlink" href="#getD" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setValence"> -<tt class="descname">setValence</tt><big>(</big><big>)</big><a class="headerlink" href="#setValence" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getValence"> -<tt class="descname">getValence</tt><big>(</big><big>)</big><a class="headerlink" href="#getValence" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setLeak"> -<tt class="descname">setLeak</tt><big>(</big><big>)</big><a class="headerlink" href="#setLeak" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getLeak"> -<tt class="descname">getLeak</tt><big>(</big><big>)</big><a class="headerlink" href="#getLeak" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setShapeMode"> -<tt class="descname">setShapeMode</tt><big>(</big><big>)</big><a class="headerlink" href="#setShapeMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getShapeMode"> -<tt class="descname">getShapeMode</tt><big>(</big><big>)</big><a class="headerlink" href="#getShapeMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setLength"> -<tt class="descname">setLength</tt><big>(</big><big>)</big><a class="headerlink" href="#setLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getLength"> -<tt class="descname">getLength</tt><big>(</big><big>)</big><a class="headerlink" href="#getLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setDiameter"> -<tt class="descname">setDiameter</tt><big>(</big><big>)</big><a class="headerlink" href="#setDiameter" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getDiameter"> -<tt class="descname">getDiameter</tt><big>(</big><big>)</big><a class="headerlink" href="#getDiameter" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setThickness"> -<tt class="descname">setThickness</tt><big>(</big><big>)</big><a class="headerlink" href="#setThickness" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getThickness"> -<tt class="descname">getThickness</tt><big>(</big><big>)</big><a class="headerlink" href="#getThickness" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setVolume"> -<tt class="descname">setVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#setVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getVolume"> -<tt class="descname">getVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#getVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setOuterArea"> -<tt class="descname">setOuterArea</tt><big>(</big><big>)</big><a class="headerlink" href="#setOuterArea" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getOuterArea"> -<tt class="descname">getOuterArea</tt><big>(</big><big>)</big><a class="headerlink" href="#getOuterArea" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="setInnerArea"> -<tt class="descname">setInnerArea</tt><big>(</big><big>)</big><a class="headerlink" href="#setInnerArea" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getInnerArea"> -<tt class="descname">getInnerArea</tt><big>(</big><big>)</big><a class="headerlink" href="#getInnerArea" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Reinit happens only in stage 0</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">process</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handle process call</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">reinit</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Reinit happens only in stage 0</p> -</dd></dl> - -<dl class="method"> -<dt id="reaction"> -<tt class="descname">reaction</tt><big>(</big><big>)</big><a class="headerlink" href="#reaction" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Here the DifShell receives reaction rates (forward and backward), and concentrations for the free-buffer and bound-buffer molecules.</p> -</dd></dl> - -<dl class="method"> -<dt id="fluxFromOut"> -<tt class="descname">fluxFromOut</tt><big>(</big><big>)</big><a class="headerlink" href="#fluxFromOut" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destination message</p> -</dd></dl> - -<dl class="method"> -<dt id="fluxFromIn"> -<tt class="descname">fluxFromIn</tt><big>(</big><big>)</big><a class="headerlink" href="#fluxFromIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="influx"> -<tt class="descname">influx</tt><big>(</big><big>)</big><a class="headerlink" href="#influx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="outflux"> -<tt class="descname">outflux</tt><big>(</big><big>)</big><a class="headerlink" href="#outflux" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="fInflux"> -<tt class="descname">fInflux</tt><big>(</big><big>)</big><a class="headerlink" href="#fInflux" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="fOutflux"> -<tt class="descname">fOutflux</tt><big>(</big><big>)</big><a class="headerlink" href="#fOutflux" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="storeInflux"> -<tt class="descname">storeInflux</tt><big>(</big><big>)</big><a class="headerlink" href="#storeInflux" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="storeOutflux"> -<tt class="descname">storeOutflux</tt><big>(</big><big>)</big><a class="headerlink" href="#storeOutflux" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="tauPump"> -<tt class="descname">tauPump</tt><big>(</big><big>)</big><a class="headerlink" href="#tauPump" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="eqTauPump"> -<tt class="descname">eqTauPump</tt><big>(</big><big>)</big><a class="headerlink" href="#eqTauPump" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="mmPump"> -<tt class="descname">mmPump</tt><big>(</big><big>)</big><a class="headerlink" href="#mmPump" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="hillPump"> -<tt class="descname">hillPump</tt><big>(</big><big>)</big><a class="headerlink" href="#hillPump" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="concentrationOut"> -<tt class="descname">concentrationOut</tt><a class="headerlink" href="#concentrationOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out concentration</p> -</dd></dl> - -<dl class="attribute"> -<dt id="innerDifSourceOut"> -<tt class="descname">innerDifSourceOut</tt><a class="headerlink" href="#innerDifSourceOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out source information.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="outerDifSourceOut"> -<tt class="descname">outerDifSourceOut</tt><a class="headerlink" href="#outerDifSourceOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out source information.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="C"> -<tt class="descname">C</tt><a class="headerlink" href="#C" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Concentration C is computed by the DifShell and is read-only</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ceq"> -<tt class="descname">Ceq</tt><a class="headerlink" href="#Ceq" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="D"> -<tt class="descname">D</tt><a class="headerlink" href="#D" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="valence"> -<tt class="descname">valence</tt><a class="headerlink" href="#valence" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="leak"> -<tt class="descname">leak</tt><a class="headerlink" href="#leak" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="shapeMode"> -<tt class="descname">shapeMode</tt><a class="headerlink" href="#shapeMode" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="length"> -<tt class="descname">length</tt><a class="headerlink" href="#length" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="diameter"> -<tt class="descname">diameter</tt><a class="headerlink" href="#diameter" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="thickness"> -<tt class="descname">thickness</tt><a class="headerlink" href="#thickness" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="volume"> -<tt class="descname">volume</tt><a class="headerlink" href="#volume" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="outerArea"> -<tt class="descname">outerArea</tt><a class="headerlink" href="#outerArea" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="innerArea"> -<tt class="descname">innerArea</tt><a class="headerlink" href="#innerArea" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>)</p> -</dd></dl> - -</div></blockquote> -<dl class="class"> -<dt id="DiffAmp"> -<em class="property">class </em><tt class="descname">DiffAmp</tt><a class="headerlink" href="#DiffAmp" title="Permalink to this definition">¶</a></dt> -<dd><p>A difference amplifier. Output is the difference between the total plus inputs and the total minus inputs multiplied by gain. Gain can be set statically as a field or can be a destination message and thus dynamically determined by the output of another object. Same as GENESIS diffamp object.</p> -<dl class="attribute"> -<dt id="DiffAmp.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#DiffAmp.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.setGain"> -<tt class="descname">setGain</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.setGain" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.getGain"> -<tt class="descname">getGain</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.getGain" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.setSaturation"> -<tt class="descname">setSaturation</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.setSaturation" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.getSaturation"> -<tt class="descname">getSaturation</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.getSaturation" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.getOutputValue"> -<tt class="descname">getOutputValue</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.getOutputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.gainIn"> -<tt class="descname">gainIn</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.gainIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destination message to control gain dynamically.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.plusIn"> -<tt class="descname">plusIn</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.plusIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Positive input terminal of the amplifier. All the messages connected here are summed up to get total positive input.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.minusIn"> -<tt class="descname">minusIn</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.minusIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Negative input terminal of the amplifier. All the messages connected here are summed up to get total positive input.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call, updates internal time stamp.</p> -</dd></dl> - -<dl class="method"> -<dt id="DiffAmp.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#DiffAmp.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="DiffAmp.output"> -<tt class="descname">output</tt><a class="headerlink" href="#DiffAmp.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Current output level.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="DiffAmp.gain"> -<tt class="descname">gain</tt><a class="headerlink" href="#DiffAmp.gain" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Gain of the amplifier. The output of the amplifier is the difference between the totals in plus and minus inputs multiplied by the gain. Defaults to 1</p> -</dd></dl> - -<dl class="attribute"> -<dt id="DiffAmp.saturation"> -<tt class="descname">saturation</tt><a class="headerlink" href="#DiffAmp.saturation" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Saturation is the bound on the output. If output goes beyond the +/-saturation range, it is truncated to the closer of +saturation and -saturation. Defaults to the maximum double precision floating point number representable on the system.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="DiffAmp.outputValue"> -<tt class="descname">outputValue</tt><a class="headerlink" href="#DiffAmp.outputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Output of the amplifier, i.e. gain * (plus - minus).</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Double"> -<em class="property">class </em><tt class="descname">Double</tt><a class="headerlink" href="#Double" title="Permalink to this definition">¶</a></dt> -<dd><p>Variable for storing values.</p> -<dl class="method"> -<dt id="Double.setValue"> -<tt class="descname">setValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Double.setValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Double.getValue"> -<tt class="descname">getValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Double.getValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Double.value"> -<tt class="descname">value</tt><a class="headerlink" href="#Double.value" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Variable value</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Dsolve"> -<em class="property">class </em><tt class="descname">Dsolve</tt><a class="headerlink" href="#Dsolve" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Dsolve.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Dsolve.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.setStoich"> -<tt class="descname">setStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.setStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.getStoich"> -<tt class="descname">getStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.getStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.setPath"> -<tt class="descname">setPath</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.setPath" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.getPath"> -<tt class="descname">getPath</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.getPath" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.setCompartment"> -<tt class="descname">setCompartment</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.setCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.getCompartment"> -<tt class="descname">getCompartment</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.getCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.getNumVoxels"> -<tt class="descname">getNumVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.getNumVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.getNumAllVoxels"> -<tt class="descname">getNumAllVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.getNumAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.setNVec"> -<tt class="descname">setNVec</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.setNVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.getNVec"> -<tt class="descname">getNVec</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.getNVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.setNumPools"> -<tt class="descname">setNumPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.setNumPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.getNumPools"> -<tt class="descname">getNumPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.getNumPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.buildNeuroMeshJunctions"> -<tt class="descname">buildNeuroMeshJunctions</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.buildNeuroMeshJunctions" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Builds junctions between NeuroMesh, SpineMesh and PsdMesh</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="Dsolve.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Dsolve.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Dsolve.stoich"> -<tt class="descname">stoich</tt><a class="headerlink" href="#Dsolve.stoich" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Stoichiometry object for handling this reaction system.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Dsolve.path"> -<tt class="descname">path</tt><a class="headerlink" href="#Dsolve.path" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Path of reaction system. Must include all the pools that are to be handled by the Dsolve, can also include other random objects, which will be ignored.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Dsolve.compartment"> -<tt class="descname">compartment</tt><a class="headerlink" href="#Dsolve.compartment" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Reac-diff compartment in which this diffusion system is embedded.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Dsolve.numVoxels"> -<tt class="descname">numVoxels</tt><a class="headerlink" href="#Dsolve.numVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of voxels in the core reac-diff system, on the current diffusion solver.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Dsolve.numAllVoxels"> -<tt class="descname">numAllVoxels</tt><a class="headerlink" href="#Dsolve.numAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of voxels in the core reac-diff system, on the current diffusion solver.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Dsolve.numPools"> -<tt class="descname">numPools</tt><a class="headerlink" href="#Dsolve.numPools" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of molecular pools in the entire reac-diff system, including variable, function and buffered.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Dsolve.nVec"> -<tt class="descname">nVec</tt><a class="headerlink" href="#Dsolve.nVec" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,vector<double> (<em>lookup field</em>) vector of # of molecules along diffusion length, looked up by pool index</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Enz"> -<em class="property">class </em><tt class="descname">Enz</tt><a class="headerlink" href="#Enz" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="EnzBase"> -<em class="property">class </em><tt class="descname">EnzBase</tt><a class="headerlink" href="#EnzBase" title="Permalink to this definition">¶</a></dt> -<dd><p>Abstract base class for enzymes.</p> -<dl class="attribute"> -<dt id="EnzBase.sub"> -<tt class="descname">sub</tt><a class="headerlink" href="#EnzBase.sub" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to substrate molecule</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.prd"> -<tt class="descname">prd</tt><a class="headerlink" href="#EnzBase.prd" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to product molecule</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#EnzBase.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.setKm"> -<tt class="descname">setKm</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.setKm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.getKm"> -<tt class="descname">getKm</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.getKm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.setNumKm"> -<tt class="descname">setNumKm</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.setNumKm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.getNumKm"> -<tt class="descname">getNumKm</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.getNumKm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.setKcat"> -<tt class="descname">setKcat</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.setKcat" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.getKcat"> -<tt class="descname">getKcat</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.getKcat" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.getNumSubstrates"> -<tt class="descname">getNumSubstrates</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.getNumSubstrates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.enzDest"> -<tt class="descname">enzDest</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.enzDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles # of molecules of Enzyme</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.subDest"> -<tt class="descname">subDest</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.subDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles # of molecules of substrate</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.prdDest"> -<tt class="descname">prdDest</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.prdDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles # of molecules of product. Dummy.</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="EnzBase.remesh"> -<tt class="descname">remesh</tt><big>(</big><big>)</big><a class="headerlink" href="#EnzBase.remesh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Tells the MMEnz to recompute its numKm after remeshing</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.subOut"> -<tt class="descname">subOut</tt><a class="headerlink" href="#EnzBase.subOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out increment of molecules on product each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.prdOut"> -<tt class="descname">prdOut</tt><a class="headerlink" href="#EnzBase.prdOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out increment of molecules on product each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.Km"> -<tt class="descname">Km</tt><a class="headerlink" href="#EnzBase.Km" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Michaelis-Menten constant in SI conc units (milliMolar)</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.numKm"> -<tt class="descname">numKm</tt><a class="headerlink" href="#EnzBase.numKm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Michaelis-Menten constant in number units, volume dependent</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.kcat"> -<tt class="descname">kcat</tt><a class="headerlink" href="#EnzBase.kcat" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Forward rate constant for enzyme, units 1/sec</p> -</dd></dl> - -<dl class="attribute"> -<dt id="EnzBase.numSubstrates"> -<tt class="descname">numSubstrates</tt><a class="headerlink" href="#EnzBase.numSubstrates" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of substrates in this MM reaction. Usually 1.Does not include the enzyme itself</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Finfo"> -<em class="property">class </em><tt class="descname">Finfo</tt><a class="headerlink" href="#Finfo" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Finfo.getFieldName"> -<tt class="descname">getFieldName</tt><big>(</big><big>)</big><a class="headerlink" href="#Finfo.getFieldName" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Finfo.getDocs"> -<tt class="descname">getDocs</tt><big>(</big><big>)</big><a class="headerlink" href="#Finfo.getDocs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Finfo.getType"> -<tt class="descname">getType</tt><big>(</big><big>)</big><a class="headerlink" href="#Finfo.getType" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Finfo.getSrc"> -<tt class="descname">getSrc</tt><big>(</big><big>)</big><a class="headerlink" href="#Finfo.getSrc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Finfo.getDest"> -<tt class="descname">getDest</tt><big>(</big><big>)</big><a class="headerlink" href="#Finfo.getDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Finfo.fieldName"> -<tt class="descname">fieldName</tt><a class="headerlink" href="#Finfo.fieldName" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Name of field handled by Finfo</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Finfo.docs"> -<tt class="descname">docs</tt><a class="headerlink" href="#Finfo.docs" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Documentation for Finfo</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Finfo.type"> -<tt class="descname">type</tt><a class="headerlink" href="#Finfo.type" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) RTTI type info for this Finfo</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Finfo.src"> -<tt class="descname">src</tt><a class="headerlink" href="#Finfo.src" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Subsidiary SrcFinfos. Useful for SharedFinfos</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Finfo.dest"> -<tt class="descname">dest</tt><a class="headerlink" href="#Finfo.dest" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Subsidiary DestFinfos. Useful for SharedFinfos</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Func"> -<em class="property">class </em><tt class="descname">Func</tt><a class="headerlink" href="#Func" title="Permalink to this definition">¶</a></dt> -<dd><p>Func: general purpose function calculator using real numbers. It can</p> -<p>parse mathematical expression defining a function and evaluate it</p> -<p>and/or its derivative for specified variable values.</p> -<p>The variables can be input from other moose objects. In case of</p> -<p>arbitrary variable names, the source message must have the variable</p> -<p>name as the first argument. For most common cases, input messages to</p> -<p>set x, y, z and xy, xyz are made available without such</p> -<p>requirement. This class handles only real numbers</p> -<blockquote> -<div>pi=3.141592...,</div></blockquote> -<p>e=2.718281...</p> -<dl class="attribute"> -<dt id="Func.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Func.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getValue"> -<tt class="descname">getValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getDerivative"> -<tt class="descname">getDerivative</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getDerivative" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.setMode"> -<tt class="descname">setMode</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.setMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getMode"> -<tt class="descname">getMode</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.setExpr"> -<tt class="descname">setExpr</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.setExpr" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getExpr"> -<tt class="descname">getExpr</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getExpr" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.setVar"> -<tt class="descname">setVar</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.setVar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getVar"> -<tt class="descname">getVar</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getVar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getVars"> -<tt class="descname">getVars</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getVars" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.setX"> -<tt class="descname">setX</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.setX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getX"> -<tt class="descname">getX</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.setY"> -<tt class="descname">setY</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.setY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.setZ"> -<tt class="descname">setZ</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.setZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.getZ"> -<tt class="descname">getZ</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.getZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.varIn"> -<tt class="descname">varIn</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.varIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle value for specified variable coming from other objects</p> -</dd></dl> - -<dl class="method"> -<dt id="Func.xIn"> -<tt class="descname">xIn</tt><big>(</big><big>)</big><a class="headerlink" href="#Func.xIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle value for variable named x. This is a shorthand. If the</p> -</dd></dl> - -</dd></dl> - -<p>expression does not have any variable named x, this the first variable -in the sequence <cite>vars</cite>.</p> -<blockquote> -<div><blockquote> -<div><dl class="method"> -<dt id="yIn"> -<tt class="descname">yIn</tt><big>(</big><big>)</big><a class="headerlink" href="#yIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle value for variable named y. This is a utility for two/three</p> -</dd></dl> - -</div></blockquote> -<p>variable functions where the y value comes from a source separate -from that of x. This is a shorthand. If the</p> -</div></blockquote> -<p>expression does not have any variable named y, this the second -variable in the sequence <cite>vars</cite>.</p> -<blockquote> -<div><blockquote> -<div><dl class="method"> -<dt id="zIn"> -<tt class="descname">zIn</tt><big>(</big><big>)</big><a class="headerlink" href="#zIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle value for variable named z. This is a utility for three</p> -</dd></dl> - -</div></blockquote> -<p>variable functions where the z value comes from a source separate -from that of x or y. This is a shorthand. If the expression does not -have any variable named y, this the second variable in the sequence <cite>vars</cite>.</p> -<blockquote> -<div><dl class="method"> -<dt id="xyIn"> -<tt class="descname">xyIn</tt><big>(</big><big>)</big><a class="headerlink" href="#xyIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle value for variables x and y for two-variable function</p> -</dd></dl> - -<dl class="method"> -<dt id="xyzIn"> -<tt class="descname">xyzIn</tt><big>(</big><big>)</big><a class="headerlink" href="#xyzIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle value for variables x, y and z for three-variable function</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">process</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles process call, updates internal time stamp.</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">reinit</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="valueOut"> -<tt class="descname">valueOut</tt><a class="headerlink" href="#valueOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Evaluated value of the function for the current variable values.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="derivativeOut"> -<tt class="descname">derivativeOut</tt><a class="headerlink" href="#derivativeOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Value of derivative of the function for the current variable values</p> -</dd></dl> - -<dl class="attribute"> -<dt id="value"> -<tt class="descname">value</tt><a class="headerlink" href="#value" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Result of the function evaluation with current variable values.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="derivative"> -<tt class="descname">derivative</tt><a class="headerlink" href="#derivative" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Derivative of the function at given variable values.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="mode"> -<tt class="descname">mode</tt><a class="headerlink" href="#mode" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Mode of operation:</p> -</dd></dl> - -</div></blockquote> -<p>1: only the function value will be funculated -2: only the derivative will be funculated -3: both function value and derivative at current variable values will be funculated.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="expr"> -<tt class="descname">expr</tt><a class="headerlink" href="#expr" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Mathematical expression defining the function. The underlying parser</p> -</dd></dl> - -</div></blockquote> -</div></blockquote> -<p>is muParser. Hence the available functions and operators are (from -muParser docs):</p> -<p>Functions -Name args explanation -sin 1 sine function -cos 1 cosine function -tan 1 tangens function -asin 1 arcus sine function -acos 1 arcus cosine function -atan 1 arcus tangens function -sinh 1 hyperbolic sine function -cosh 1 hyperbolic cosine -tanh 1 hyperbolic tangens function -asinh 1 hyperbolic arcus sine function -acosh 1 hyperbolic arcus tangens function -atanh 1 hyperbolic arcur tangens function -log2 1 logarithm to the base 2 -log10 1 logarithm to the base 10 -log 1 logarithm to the base 10 -ln 1 logarithm to base e (2.71828...) -exp 1 e raised to the power of x -sqrt 1 square root of a value -sign 1 sign function -1 if x<0; 1 if x>0 -rint 1 round to nearest integer -abs 1 absolute value -min var. min of all arguments -max var. max of all arguments -sum var. sum of all arguments -avg var. mean value of all arguments</p> -<p>Operators -Op meaning prioroty -= assignement -1 -&& logical and 1 -|| logical or 2 -<= less or equal 4 ->= greater or equal 4 -!= not equal 4 -== equal 4 -> greater than 4 -< less than 4 -+ addition 5 -- subtraction 5 -* multiplication 6 -/ division 6 -^ raise x to the power of y 7</p> -<p>?: if then else operator C++ style syntax</p> -<blockquote> -<div><dl class="attribute"> -<dt id="vars"> -<tt class="descname">vars</tt><a class="headerlink" href="#vars" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Variable names in the expression</p> -</dd></dl> - -<dl class="attribute"> -<dt id="x"> -<tt class="descname">x</tt><a class="headerlink" href="#x" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Value for variable named x. This is a shorthand. If the</p> -</dd></dl> - -</div></blockquote> -<p>expression does not have any variable named x, this the first variable -in the sequence <cite>vars</cite>.</p> -<blockquote> -<div><blockquote> -<div><dl class="attribute"> -<dt id="y"> -<tt class="descname">y</tt><a class="headerlink" href="#y" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Value for variable named y. This is a utility for two/three</p> -</dd></dl> - -</div></blockquote> -<p>variable functions where the y value comes from a source separate -from that of x. This is a shorthand. If the</p> -</div></blockquote> -<p>expression does not have any variable named y, this the second -variable in the sequence <cite>vars</cite>.</p> -<blockquote> -<div><blockquote> -<div><dl class="attribute"> -<dt id="z"> -<tt class="descname">z</tt><a class="headerlink" href="#z" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Value for variable named z. This is a utility for three</p> -</dd></dl> - -</div></blockquote> -<p>variable functions where the z value comes from a source separate -from that of x or z. This is a shorthand. If the expression does not -have any variable named z, this the third variable in the sequence <cite>vars</cite>.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="var"> -<tt class="descname">var</tt><a class="headerlink" href="#var" title="Permalink to this definition">¶</a></dt> -<dd><p>string,double (<em>lookup field</em>) Lookup table for variable values.</p> -</dd></dl> - -</div></blockquote> -</div></blockquote> -<dl class="class"> -<dt id="FuncBase"> -<em class="property">class </em><tt class="descname">FuncBase</tt><a class="headerlink" href="#FuncBase" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="FuncBase.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#FuncBase.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="FuncBase.getResult"> -<tt class="descname">getResult</tt><big>(</big><big>)</big><a class="headerlink" href="#FuncBase.getResult" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="FuncBase.input"> -<tt class="descname">input</tt><big>(</big><big>)</big><a class="headerlink" href="#FuncBase.input" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles input values. This generic message works only in cases where the inputs are commutative, so ordering does not matter. In due course will implement a synapse type extendable, identified system of inputs so that arbitrary numbers of inputs can be unambiguaously defined.</p> -</dd></dl> - -<dl class="method"> -<dt id="FuncBase.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#FuncBase.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="FuncBase.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#FuncBase.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="FuncBase.output"> -<tt class="descname">output</tt><a class="headerlink" href="#FuncBase.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out sum on each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="FuncBase.result"> -<tt class="descname">result</tt><a class="headerlink" href="#FuncBase.result" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Outcome of function computation</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="FuncPool"> -<em class="property">class </em><tt class="descname">FuncPool</tt><a class="headerlink" href="#FuncPool" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="FuncPool.input"> -<tt class="descname">input</tt><big>(</big><big>)</big><a class="headerlink" href="#FuncPool.input" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles input to control value of <a href="#id21"><span class="problematic" id="id22">n_</span></a></p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="GapJunction"> -<em class="property">class </em><tt class="descname">GapJunction</tt><a class="headerlink" href="#GapJunction" title="Permalink to this definition">¶</a></dt> -<dd><p>Implementation of gap junction between two compartments. The shared</p> -<p>fields, ‘channel1’ and ‘channel2’ can be connected to the ‘channel’</p> -<p>message of the compartments at either end of the gap junction. The</p> -<p>compartments will send their Vm to the gap junction and receive the</p> -<p>conductance ‘Gk’ of the gap junction and the Vm of the other</p> -<p>compartment.</p> -<dl class="attribute"> -<dt id="GapJunction.channel1"> -<tt class="descname">channel1</tt><a class="headerlink" href="#GapJunction.channel1" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to couple the conductance and Vm from</p> -</dd></dl> - -</dd></dl> - -<p>terminal 2 to the compartment at terminal 1. The first entry is source -sending out Gk and Vm2, the second entry is destination for Vm1.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="channel2"> -<tt class="descname">channel2</tt><a class="headerlink" href="#channel2" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to couple the conductance and Vm from</p> -</dd></dl> - -</div></blockquote> -<p>terminal 1 to the compartment at terminal 2. The first entry is source -sending out Gk and Vm1, the second entry is destination for Vm2.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process messages from the scheduler objects. The Process should be called _second_ in each clock tick, after the Init message.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="Vm1"> -<tt class="descname">Vm1</tt><big>(</big><big>)</big><a class="headerlink" href="#Vm1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Vm message from compartment</p> -</dd></dl> - -<dl class="method"> -<dt id="Vm2"> -<tt class="descname">Vm2</tt><big>(</big><big>)</big><a class="headerlink" href="#Vm2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Vm message from another compartment</p> -</dd></dl> - -<dl class="method"> -<dt id="setGk"> -<tt class="descname">setGk</tt><big>(</big><big>)</big><a class="headerlink" href="#setGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="getGk"> -<tt class="descname">getGk</tt><big>(</big><big>)</big><a class="headerlink" href="#getGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">process</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles ‘process’ call</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">reinit</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles ‘reinit’ call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="channel1Out"> -<tt class="descname">channel1Out</tt><a class="headerlink" href="#channel1Out" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends Gk and Vm from one compartment to the other</p> -</dd></dl> - -<dl class="attribute"> -<dt id="channel2Out"> -<tt class="descname">channel2Out</tt><a class="headerlink" href="#channel2Out" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends Gk and Vm from one compartment to the other</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Gk"> -<tt class="descname">Gk</tt><a class="headerlink" href="#Gk" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Conductance of the gap junction</p> -</dd></dl> - -</div></blockquote> -<dl class="class"> -<dt id="Group"> -<em class="property">class </em><tt class="descname">Group</tt><a class="headerlink" href="#Group" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Group.group"> -<tt class="descname">group</tt><a class="headerlink" href="#Group.group" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>source message field</em>) Handle for grouping Elements</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Gsolve"> -<em class="property">class </em><tt class="descname">Gsolve</tt><a class="headerlink" href="#Gsolve" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Gsolve.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Gsolve.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.setStoich"> -<tt class="descname">setStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.setStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.getStoich"> -<tt class="descname">getStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.getStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.getNumLocalVoxels"> -<tt class="descname">getNumLocalVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.getNumLocalVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.setNVec"> -<tt class="descname">setNVec</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.setNVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.getNVec"> -<tt class="descname">getNVec</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.getNVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.setNumAllVoxels"> -<tt class="descname">setNumAllVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.setNumAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.getNumAllVoxels"> -<tt class="descname">getNumAllVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.getNumAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.setNumPools"> -<tt class="descname">setNumPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.setNumPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.getNumPools"> -<tt class="descname">getNumPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.getNumPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.setUseRandInit"> -<tt class="descname">setUseRandInit</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.setUseRandInit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Gsolve.getUseRandInit"> -<tt class="descname">getUseRandInit</tt><big>(</big><big>)</big><a class="headerlink" href="#Gsolve.getUseRandInit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Gsolve.stoich"> -<tt class="descname">stoich</tt><a class="headerlink" href="#Gsolve.stoich" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Stoichiometry object for handling this reaction system.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Gsolve.numLocalVoxels"> -<tt class="descname">numLocalVoxels</tt><a class="headerlink" href="#Gsolve.numLocalVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of voxels in the core reac-diff system, on the current solver.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Gsolve.numAllVoxels"> -<tt class="descname">numAllVoxels</tt><a class="headerlink" href="#Gsolve.numAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of voxels in the entire reac-diff system, including proxy voxels to represent abutting compartments.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Gsolve.numPools"> -<tt class="descname">numPools</tt><a class="headerlink" href="#Gsolve.numPools" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of molecular pools in the entire reac-diff system, including variable, function and buffered.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Gsolve.useRandInit"> -<tt class="descname">useRandInit</tt><a class="headerlink" href="#Gsolve.useRandInit" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag: True when using probabilistic (random) rounding. When initializing the mol# from floating-point Sinit values, we have two options. One is to look at each Sinit, and round to the nearest integer. The other is to look at each Sinit, and probabilistically round up or down depending on the value. For example, if we had a Sinit value of 1.49, this would always be rounded to 1.0 if the flag is false, and would be rounded to 1.0 and 2.0 in the ratio 51:49 if the flag is true.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Gsolve.nVec"> -<tt class="descname">nVec</tt><a class="headerlink" href="#Gsolve.nVec" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,vector<double> (<em>lookup field</em>) vector of pool counts</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="HHChannel"> -<em class="property">class </em><tt class="descname">HHChannel</tt><a class="headerlink" href="#HHChannel" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><p>HHChannel: Hodgkin-Huxley type voltage-gated Ion channel. Something like the old tabchannel from GENESIS, but also presents a similar interface as hhchan from GENESIS.</p> -<dl class="attribute"> -<dt id="HHChannel.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#HHChannel.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on.</p> -</dd></dl> - -</div></blockquote> -<p>The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -<blockquote> -<div><dl class="method"> -<dt id="HHChannel.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setXpower"> -<tt class="descname">setXpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setXpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getXpower"> -<tt class="descname">getXpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getXpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setYpower"> -<tt class="descname">setYpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setYpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getYpower"> -<tt class="descname">getYpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getYpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setZpower"> -<tt class="descname">setZpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setZpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getZpower"> -<tt class="descname">getZpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getZpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setInstant"> -<tt class="descname">setInstant</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setInstant" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getInstant"> -<tt class="descname">getInstant</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getInstant" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setX"> -<tt class="descname">setX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getX"> -<tt class="descname">getX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setY"> -<tt class="descname">setY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setZ"> -<tt class="descname">setZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getZ"> -<tt class="descname">getZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setUseConcentration"> -<tt class="descname">setUseConcentration</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setUseConcentration" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getUseConcentration"> -<tt class="descname">getUseConcentration</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getUseConcentration" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.concen"> -<tt class="descname">concen</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.concen" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Incoming message from Concen object to specific conc to usein the Z gate calculations</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.createGate"> -<tt class="descname">createGate</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.createGate" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Function to create specified gate.Argument: Gate type [X Y Z]</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setNumGateX"> -<tt class="descname">setNumGateX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setNumGateX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getNumGateX"> -<tt class="descname">getNumGateX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getNumGateX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setNumGateY"> -<tt class="descname">setNumGateY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setNumGateY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getNumGateY"> -<tt class="descname">getNumGateY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getNumGateY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.setNumGateZ"> -<tt class="descname">setNumGateZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.setNumGateZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel.getNumGateZ"> -<tt class="descname">getNumGateZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel.getNumGateZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.Xpower"> -<tt class="descname">Xpower</tt><a class="headerlink" href="#HHChannel.Xpower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for X gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.Ypower"> -<tt class="descname">Ypower</tt><a class="headerlink" href="#HHChannel.Ypower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.Zpower"> -<tt class="descname">Zpower</tt><a class="headerlink" href="#HHChannel.Zpower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for Z gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.instant"> -<tt class="descname">instant</tt><a class="headerlink" href="#HHChannel.instant" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Bitmapped flag: bit 0 = Xgate, bit 1 = Ygate, bit 2 = ZgateWhen true, specifies that the lookup table value should beused directly as the state of the channel, rather than usedas a rate term for numerical integration for the state</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.X"> -<tt class="descname">X</tt><a class="headerlink" href="#HHChannel.X" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for X gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.Y"> -<tt class="descname">Y</tt><a class="headerlink" href="#HHChannel.Y" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.Z"> -<tt class="descname">Z</tt><a class="headerlink" href="#HHChannel.Z" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel.useConcentration"> -<tt class="descname">useConcentration</tt><a class="headerlink" href="#HHChannel.useConcentration" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Flag: when true, use concentration message rather than Vm tocontrol Z gate</p> -</dd></dl> - -</div></blockquote> -</dd></dl> - -<dl class="class"> -<dt id="HHChannel2D"> -<em class="property">class </em><tt class="descname">HHChannel2D</tt><a class="headerlink" href="#HHChannel2D" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><p>HHChannel2D: Hodgkin-Huxley type voltage-gated Ion channel. Something like the old tabchannel from GENESIS, but also presents a similar interface as hhchan from GENESIS.</p> -<dl class="attribute"> -<dt id="HHChannel2D.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#HHChannel2D.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on.</p> -</dd></dl> - -</div></blockquote> -<p>The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -<blockquote> -<div><dl class="method"> -<dt id="HHChannel2D.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setXindex"> -<tt class="descname">setXindex</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setXindex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getXindex"> -<tt class="descname">getXindex</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getXindex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setYindex"> -<tt class="descname">setYindex</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setYindex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getYindex"> -<tt class="descname">getYindex</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getYindex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setZindex"> -<tt class="descname">setZindex</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setZindex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getZindex"> -<tt class="descname">getZindex</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getZindex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setXpower"> -<tt class="descname">setXpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setXpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getXpower"> -<tt class="descname">getXpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getXpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setYpower"> -<tt class="descname">setYpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setYpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getYpower"> -<tt class="descname">getYpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getYpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setZpower"> -<tt class="descname">setZpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setZpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getZpower"> -<tt class="descname">getZpower</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getZpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setInstant"> -<tt class="descname">setInstant</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setInstant" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getInstant"> -<tt class="descname">getInstant</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getInstant" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setX"> -<tt class="descname">setX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getX"> -<tt class="descname">getX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setY"> -<tt class="descname">setY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setZ"> -<tt class="descname">setZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getZ"> -<tt class="descname">getZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.concen"> -<tt class="descname">concen</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.concen" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Incoming message from Concen object to specific conc to useas the first concen variable</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.concen2"> -<tt class="descname">concen2</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.concen2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Incoming message from Concen object to specific conc to useas the second concen variable</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setNumGateX"> -<tt class="descname">setNumGateX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setNumGateX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getNumGateX"> -<tt class="descname">getNumGateX</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getNumGateX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setNumGateY"> -<tt class="descname">setNumGateY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setNumGateY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getNumGateY"> -<tt class="descname">getNumGateY</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getNumGateY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.setNumGateZ"> -<tt class="descname">setNumGateZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.setNumGateZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHChannel2D.getNumGateZ"> -<tt class="descname">getNumGateZ</tt><big>(</big><big>)</big><a class="headerlink" href="#HHChannel2D.getNumGateZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Xindex"> -<tt class="descname">Xindex</tt><a class="headerlink" href="#HHChannel2D.Xindex" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) String for setting X index.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Yindex"> -<tt class="descname">Yindex</tt><a class="headerlink" href="#HHChannel2D.Yindex" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) String for setting Y index.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Zindex"> -<tt class="descname">Zindex</tt><a class="headerlink" href="#HHChannel2D.Zindex" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) String for setting Z index.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Xpower"> -<tt class="descname">Xpower</tt><a class="headerlink" href="#HHChannel2D.Xpower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for X gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Ypower"> -<tt class="descname">Ypower</tt><a class="headerlink" href="#HHChannel2D.Ypower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Zpower"> -<tt class="descname">Zpower</tt><a class="headerlink" href="#HHChannel2D.Zpower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for Z gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.instant"> -<tt class="descname">instant</tt><a class="headerlink" href="#HHChannel2D.instant" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Bitmapped flag: bit 0 = Xgate, bit 1 = Ygate, bit 2 = ZgateWhen true, specifies that the lookup table value should beused directly as the state of the channel, rather than usedas a rate term for numerical integration for the state</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.X"> -<tt class="descname">X</tt><a class="headerlink" href="#HHChannel2D.X" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for X gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Y"> -<tt class="descname">Y</tt><a class="headerlink" href="#HHChannel2D.Y" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHChannel2D.Z"> -<tt class="descname">Z</tt><a class="headerlink" href="#HHChannel2D.Z" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for Y gate</p> -</dd></dl> - -</div></blockquote> -</dd></dl> - -<dl class="class"> -<dt id="HHGate"> -<em class="property">class </em><tt class="descname">HHGate</tt><a class="headerlink" href="#HHGate" title="Permalink to this definition">¶</a></dt> -<dd><p>HHGate: Gate for Hodkgin-Huxley type channels, equivalent to the m and h terms on the Na squid channel and the n term on K. This takes the voltage and state variable from the channel, computes the new value of the state variable and a scaling, depending on gate power, for the conductance.</p> -<dl class="method"> -<dt id="HHGate.getA"> -<tt class="descname">getA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getB"> -<tt class="descname">getB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setAlpha"> -<tt class="descname">setAlpha</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setAlpha" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getAlpha"> -<tt class="descname">getAlpha</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getAlpha" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setBeta"> -<tt class="descname">setBeta</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setBeta" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getBeta"> -<tt class="descname">getBeta</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getBeta" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setTau"> -<tt class="descname">setTau</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getTau"> -<tt class="descname">getTau</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setMInfinity"> -<tt class="descname">setMInfinity</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setMInfinity" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getMInfinity"> -<tt class="descname">getMInfinity</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getMInfinity" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setMin"> -<tt class="descname">setMin</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setMin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getMin"> -<tt class="descname">getMin</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getMin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setMax"> -<tt class="descname">setMax</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setMax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getMax"> -<tt class="descname">getMax</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getMax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setDivs"> -<tt class="descname">setDivs</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setDivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getDivs"> -<tt class="descname">getDivs</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getDivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setTableA"> -<tt class="descname">setTableA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setTableA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getTableA"> -<tt class="descname">getTableA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getTableA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setTableB"> -<tt class="descname">setTableB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setTableB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getTableB"> -<tt class="descname">getTableB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getTableB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setUseInterpolation"> -<tt class="descname">setUseInterpolation</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setUseInterpolation" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getUseInterpolation"> -<tt class="descname">getUseInterpolation</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getUseInterpolation" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setAlphaParms"> -<tt class="descname">setAlphaParms</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setAlphaParms" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.getAlphaParms"> -<tt class="descname">getAlphaParms</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.getAlphaParms" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setupAlpha"> -<tt class="descname">setupAlpha</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setupAlpha" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Set up both gates using 13 parameters, as follows:setupAlpha AA AB AC AD AF BA BB BC BD BF xdivs xmin xmaxHere AA-AF are Coefficients A to F of the alpha (forward) termHere BA-BF are Coefficients A to F of the beta (reverse) termHere xdivs is the number of entries in the table,xmin and xmax define the range for lookup.Outside this range the returned value will be the low [high]entry of the table.The equation describing each table is:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setupTau"> -<tt class="descname">setupTau</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setupTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Identical to setupAlpha, except that the forms specified bythe 13 parameters are for the tau and m-infinity curves ratherthan the alpha and beta terms. So the parameters are:setupTau TA TB TC TD TF MA MB MC MD MF xdivs xmin xmaxAs before, the equation describing each curve is:y(x) = (A + B * x) / (C + exp((x + D) / F))</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.tweakAlpha"> -<tt class="descname">tweakAlpha</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.tweakAlpha" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Dummy function for backward compatibility. It used to convertthe tables from alpha, beta values to alpha, alpha+betabecause the internal calculations used these forms. Notneeded now, deprecated.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.tweakTau"> -<tt class="descname">tweakTau</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.tweakTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Dummy function for backward compatibility. It used to convertthe tables from tau, minf values to alpha, alpha+betabecause the internal calculations used these forms. Notneeded now, deprecated.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate.setupGate"> -<tt class="descname">setupGate</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate.setupGate" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Sets up one gate at a time using the alpha/beta form.Has 9 parameters, as follows:setupGate A B C D F xdivs xmin xmax is_betaThis sets up the gate using the equation:y(x) = (A + B * x) / (C + exp((x + D) / F))Deprecated.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.alpha"> -<tt class="descname">alpha</tt><a class="headerlink" href="#HHGate.alpha" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Parameters for voltage-dependent rates, alpha:Set up alpha term using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.beta"> -<tt class="descname">beta</tt><a class="headerlink" href="#HHGate.beta" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Parameters for voltage-dependent rates, beta:Set up beta term using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.tau"> -<tt class="descname">tau</tt><a class="headerlink" href="#HHGate.tau" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Parameters for voltage-dependent rates, tau:Set up tau curve using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.mInfinity"> -<tt class="descname">mInfinity</tt><a class="headerlink" href="#HHGate.mInfinity" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Parameters for voltage-dependent rates, mInfinity:Set up mInfinity curve using 5 parameters, as follows:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.min"> -<tt class="descname">min</tt><a class="headerlink" href="#HHGate.min" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.max"> -<tt class="descname">max</tt><a class="headerlink" href="#HHGate.max" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.divs"> -<tt class="descname">divs</tt><a class="headerlink" href="#HHGate.divs" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Divisions for lookup. Zero means to use linear interpolation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.tableA"> -<tt class="descname">tableA</tt><a class="headerlink" href="#HHGate.tableA" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Table of A entries</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.tableB"> -<tt class="descname">tableB</tt><a class="headerlink" href="#HHGate.tableB" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Table of alpha + beta entries</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.useInterpolation"> -<tt class="descname">useInterpolation</tt><a class="headerlink" href="#HHGate.useInterpolation" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag: use linear interpolation if true, else direct lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.alphaParms"> -<tt class="descname">alphaParms</tt><a class="headerlink" href="#HHGate.alphaParms" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Set up both gates using 13 parameters, as follows:setupAlpha AA AB AC AD AF BA BB BC BD BF xdivs xmin xmaxHere AA-AF are Coefficients A to F of the alpha (forward) termHere BA-BF are Coefficients A to F of the beta (reverse) termHere xdivs is the number of entries in the table,xmin and xmax define the range for lookup.Outside this range the returned value will be the low [high]entry of the table.The equation describing each table is:y(x) = (A + B * x) / (C + exp((x + D) / F))The original HH equations can readily be cast into this form</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.A"> -<tt class="descname">A</tt><a class="headerlink" href="#HHGate.A" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>lookup field</em>) lookupA: Look up the A gate value from a double. Usually doesso by direct scaling and offset to an integer lookup, usinga fine enough table granularity that there is little error.Alternatively uses linear interpolation.The range of the double is predefined based on knowledge ofvoltage or conc ranges, and the granularity is specified bythe xmin, xmax, and dV fields.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate.B"> -<tt class="descname">B</tt><a class="headerlink" href="#HHGate.B" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>lookup field</em>) lookupB: Look up the B gate value from a double.Note that this looks up the raw tables, which are transformedfrom the reference parameters.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="HHGate2D"> -<em class="property">class </em><tt class="descname">HHGate2D</tt><a class="headerlink" href="#HHGate2D" title="Permalink to this definition">¶</a></dt> -<dd><p>HHGate2D: Gate for Hodkgin-Huxley type channels, equivalent to the m and h terms on the Na squid channel and the n term on K. This takes the voltage and state variable from the channel, computes the new value of the state variable and a scaling, depending on gate power, for the conductance. These two terms are sent right back in a message to the channel.</p> -<dl class="method"> -<dt id="HHGate2D.getA"> -<tt class="descname">getA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getB"> -<tt class="descname">getB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setTableA"> -<tt class="descname">setTableA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setTableA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getTableA"> -<tt class="descname">getTableA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getTableA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setTableB"> -<tt class="descname">setTableB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setTableB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getTableB"> -<tt class="descname">getTableB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getTableB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setXminA"> -<tt class="descname">setXminA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setXminA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getXminA"> -<tt class="descname">getXminA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getXminA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setXmaxA"> -<tt class="descname">setXmaxA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setXmaxA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getXmaxA"> -<tt class="descname">getXmaxA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getXmaxA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setXdivsA"> -<tt class="descname">setXdivsA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setXdivsA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getXdivsA"> -<tt class="descname">getXdivsA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getXdivsA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setYminA"> -<tt class="descname">setYminA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setYminA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getYminA"> -<tt class="descname">getYminA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getYminA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setYmaxA"> -<tt class="descname">setYmaxA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setYmaxA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getYmaxA"> -<tt class="descname">getYmaxA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getYmaxA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setYdivsA"> -<tt class="descname">setYdivsA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setYdivsA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getYdivsA"> -<tt class="descname">getYdivsA</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getYdivsA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setXminB"> -<tt class="descname">setXminB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setXminB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getXminB"> -<tt class="descname">getXminB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getXminB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setXmaxB"> -<tt class="descname">setXmaxB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setXmaxB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getXmaxB"> -<tt class="descname">getXmaxB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getXmaxB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setXdivsB"> -<tt class="descname">setXdivsB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setXdivsB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getXdivsB"> -<tt class="descname">getXdivsB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getXdivsB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setYminB"> -<tt class="descname">setYminB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setYminB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getYminB"> -<tt class="descname">getYminB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getYminB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setYmaxB"> -<tt class="descname">setYmaxB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setYmaxB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getYmaxB"> -<tt class="descname">getYmaxB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getYmaxB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.setYdivsB"> -<tt class="descname">setYdivsB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.setYdivsB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HHGate2D.getYdivsB"> -<tt class="descname">getYdivsB</tt><big>(</big><big>)</big><a class="headerlink" href="#HHGate2D.getYdivsB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.tableA"> -<tt class="descname">tableA</tt><a class="headerlink" href="#HHGate2D.tableA" title="Permalink to this definition">¶</a></dt> -<dd><p>vector< vector<double> > (<em>value field</em>) Table of A entries</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.tableB"> -<tt class="descname">tableB</tt><a class="headerlink" href="#HHGate2D.tableB" title="Permalink to this definition">¶</a></dt> -<dd><p>vector< vector<double> > (<em>value field</em>) Table of B entries</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.xminA"> -<tt class="descname">xminA</tt><a class="headerlink" href="#HHGate2D.xminA" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.xmaxA"> -<tt class="descname">xmaxA</tt><a class="headerlink" href="#HHGate2D.xmaxA" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.xdivsA"> -<tt class="descname">xdivsA</tt><a class="headerlink" href="#HHGate2D.xdivsA" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Divisions for lookup. Zero means to use linear interpolation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.yminA"> -<tt class="descname">yminA</tt><a class="headerlink" href="#HHGate2D.yminA" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.ymaxA"> -<tt class="descname">ymaxA</tt><a class="headerlink" href="#HHGate2D.ymaxA" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.ydivsA"> -<tt class="descname">ydivsA</tt><a class="headerlink" href="#HHGate2D.ydivsA" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Divisions for lookup. Zero means to use linear interpolation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.xminB"> -<tt class="descname">xminB</tt><a class="headerlink" href="#HHGate2D.xminB" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.xmaxB"> -<tt class="descname">xmaxB</tt><a class="headerlink" href="#HHGate2D.xmaxB" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.xdivsB"> -<tt class="descname">xdivsB</tt><a class="headerlink" href="#HHGate2D.xdivsB" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Divisions for lookup. Zero means to use linear interpolation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.yminB"> -<tt class="descname">yminB</tt><a class="headerlink" href="#HHGate2D.yminB" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.ymaxB"> -<tt class="descname">ymaxB</tt><a class="headerlink" href="#HHGate2D.ymaxB" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum range for lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.ydivsB"> -<tt class="descname">ydivsB</tt><a class="headerlink" href="#HHGate2D.ydivsB" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Divisions for lookup. Zero means to use linear interpolation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.A"> -<tt class="descname">A</tt><a class="headerlink" href="#HHGate2D.A" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double>,double (<em>lookup field</em>) lookupA: Look up the A gate value from two doubles, passedin as a vector. Uses linear interpolation in the 2D tableThe range of the lookup doubles is predefined based on knowledge of voltage or conc ranges, and the granularity is specified by the xmin, xmax, and dx field, and their y-axis counterparts.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HHGate2D.B"> -<tt class="descname">B</tt><a class="headerlink" href="#HHGate2D.B" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double>,double (<em>lookup field</em>) lookupB: Look up B gate value from two doubles in a vector.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="HSolve"> -<em class="property">class </em><tt class="descname">HSolve</tt><a class="headerlink" href="#HSolve" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="HSolve.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#HSolve.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Handles ‘reinit’ and ‘process’ calls from a clock.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setSeed"> -<tt class="descname">setSeed</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setSeed" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getSeed"> -<tt class="descname">getSeed</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getSeed" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setTarget"> -<tt class="descname">setTarget</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setTarget" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getTarget"> -<tt class="descname">getTarget</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getTarget" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setDt"> -<tt class="descname">setDt</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getDt"> -<tt class="descname">getDt</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setCaAdvance"> -<tt class="descname">setCaAdvance</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setCaAdvance" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getCaAdvance"> -<tt class="descname">getCaAdvance</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getCaAdvance" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setVDiv"> -<tt class="descname">setVDiv</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setVDiv" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getVDiv"> -<tt class="descname">getVDiv</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getVDiv" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setVMin"> -<tt class="descname">setVMin</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setVMin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getVMin"> -<tt class="descname">getVMin</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getVMin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setVMax"> -<tt class="descname">setVMax</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setVMax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getVMax"> -<tt class="descname">getVMax</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getVMax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setCaDiv"> -<tt class="descname">setCaDiv</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setCaDiv" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getCaDiv"> -<tt class="descname">getCaDiv</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getCaDiv" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setCaMin"> -<tt class="descname">setCaMin</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setCaMin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getCaMin"> -<tt class="descname">getCaMin</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getCaMin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.setCaMax"> -<tt class="descname">setCaMax</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.setCaMax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.getCaMax"> -<tt class="descname">getCaMax</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.getCaMax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘process’ call: Solver advances by one time-step.</p> -</dd></dl> - -<dl class="method"> -<dt id="HSolve.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#HSolve.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘reinit’ call: Solver reads in model.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.seed"> -<tt class="descname">seed</tt><a class="headerlink" href="#HSolve.seed" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Use this field to specify path to a ‘seed’ compartment, that is, any compartment within a neuron. The HSolve object uses this seed as a handle to discover the rest of the neuronal model, which means all the remaining compartments, channels, synapses, etc.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.target"> -<tt class="descname">target</tt><a class="headerlink" href="#HSolve.target" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Specifies the path to a compartmental model to be taken over. This can be the path to any container object that has the model under it (found by performing a deep search). Alternatively, this can also be the path to any compartment within the neuron. This compartment will be used as a handle to discover the rest of the model, which means all the remaining compartments, channels, synapses, etc.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.dt"> -<tt class="descname">dt</tt><a class="headerlink" href="#HSolve.dt" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The time-step for this solver.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.caAdvance"> -<tt class="descname">caAdvance</tt><a class="headerlink" href="#HSolve.caAdvance" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) This flag determines how current flowing into a calcium pool is computed. A value of 0 means that the membrane potential at the beginning of the time-step is used for the calculation. This is how GENESIS does its computations. A value of 1 means the membrane potential at the middle of the time-step is used. This is the correct way of integration, and is the default way.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.vDiv"> -<tt class="descname">vDiv</tt><a class="headerlink" href="#HSolve.vDiv" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Specifies number of divisions for lookup tables of voltage-sensitive channels.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.vMin"> -<tt class="descname">vMin</tt><a class="headerlink" href="#HSolve.vMin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Specifies the lower bound for lookup tables of voltage-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.vMax"> -<tt class="descname">vMax</tt><a class="headerlink" href="#HSolve.vMax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Specifies the upper bound for lookup tables of voltage-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.caDiv"> -<tt class="descname">caDiv</tt><a class="headerlink" href="#HSolve.caDiv" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Specifies number of divisions for lookup tables of calcium-sensitive channels.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.caMin"> -<tt class="descname">caMin</tt><a class="headerlink" href="#HSolve.caMin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Specifies the lower bound for lookup tables of calcium-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="HSolve.caMax"> -<tt class="descname">caMax</tt><a class="headerlink" href="#HSolve.caMax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Specifies the upper bound for lookup tables of calcium-sensitive channels. Default is to automatically decide based on the tables of the channels that the solver reads in.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="IntFire"> -<em class="property">class </em><tt class="descname">IntFire</tt><a class="headerlink" href="#IntFire" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="IntFire.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#IntFire.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.setVm"> -<tt class="descname">setVm</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.setVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.getVm"> -<tt class="descname">getVm</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.getVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.setTau"> -<tt class="descname">setTau</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.setTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.getTau"> -<tt class="descname">getTau</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.getTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.setThresh"> -<tt class="descname">setThresh</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.setThresh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.getThresh"> -<tt class="descname">getThresh</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.getThresh" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.setRefractoryPeriod"> -<tt class="descname">setRefractoryPeriod</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.setRefractoryPeriod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.getRefractoryPeriod"> -<tt class="descname">getRefractoryPeriod</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.getRefractoryPeriod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.setBufferTime"> -<tt class="descname">setBufferTime</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.setBufferTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.getBufferTime"> -<tt class="descname">getBufferTime</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.getBufferTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="IntFire.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#IntFire.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IntFire.spikeOut"> -<tt class="descname">spikeOut</tt><a class="headerlink" href="#IntFire.spikeOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out spike events</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IntFire.Vm"> -<tt class="descname">Vm</tt><a class="headerlink" href="#IntFire.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Membrane potential</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IntFire.tau"> -<tt class="descname">tau</tt><a class="headerlink" href="#IntFire.tau" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) charging time-course</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IntFire.thresh"> -<tt class="descname">thresh</tt><a class="headerlink" href="#IntFire.thresh" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) firing threshold</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IntFire.refractoryPeriod"> -<tt class="descname">refractoryPeriod</tt><a class="headerlink" href="#IntFire.refractoryPeriod" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum time between successive spikes</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IntFire.bufferTime"> -<tt class="descname">bufferTime</tt><a class="headerlink" href="#IntFire.bufferTime" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Duration of spike buffer.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Interpol"> -<em class="property">class </em><tt class="descname">Interpol</tt><a class="headerlink" href="#Interpol" title="Permalink to this definition">¶</a></dt> -<dd><p>Interpol: Interpolation class. Handles lookup from a 1-dimensional array of real-numbered values.Returns ‘y’ value based on given ‘x’ value. Can either use interpolation or roundoff to the nearest index.</p> -<dl class="attribute"> -<dt id="Interpol.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Interpol.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.setXmin"> -<tt class="descname">setXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.setXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.getXmin"> -<tt class="descname">getXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.getXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.setXmax"> -<tt class="descname">setXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.setXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.getXmax"> -<tt class="descname">getXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.getXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.input"> -<tt class="descname">input</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.input" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Interpolates using the input as x value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call, updates internal time stamp.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol.lookupOut"> -<tt class="descname">lookupOut</tt><a class="headerlink" href="#Interpol.lookupOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) respond to a request for a value lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol.xmin"> -<tt class="descname">xmin</tt><a class="headerlink" href="#Interpol.xmin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum value of x. x below this will result in y[0] being returned.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol.xmax"> -<tt class="descname">xmax</tt><a class="headerlink" href="#Interpol.xmax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum value of x. x above this will result in y[last] being returned.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol.y"> -<tt class="descname">y</tt><a class="headerlink" href="#Interpol.y" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Looked up value.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Interpol2D"> -<em class="property">class </em><tt class="descname">Interpol2D</tt><a class="headerlink" href="#Interpol2D" title="Permalink to this definition">¶</a></dt> -<dd><p>Interpol2D: Interpolation class. Handles lookup from a 2-dimensional grid of real-numbered values. Returns ‘z’ value based on given ‘x’ and ‘y’ values. Can either use interpolation or roundoff to the nearest index.</p> -<dl class="attribute"> -<dt id="Interpol2D.lookupReturn2D"> -<tt class="descname">lookupReturn2D</tt><a class="headerlink" href="#Interpol2D.lookupReturn2D" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message for doing lookups on the table. Receives 2 doubles: x, y. Sends back a double with the looked-up z value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.lookup"> -<tt class="descname">lookup</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.lookup" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Looks up table value based on indices v1 and v2, and sendsvalue back using the ‘lookupOut’ message</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setXmin"> -<tt class="descname">setXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getXmin"> -<tt class="descname">getXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setXmax"> -<tt class="descname">setXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getXmax"> -<tt class="descname">getXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setXdivs"> -<tt class="descname">setXdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setXdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getXdivs"> -<tt class="descname">getXdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getXdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setDx"> -<tt class="descname">setDx</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setDx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getDx"> -<tt class="descname">getDx</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getDx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setYmin"> -<tt class="descname">setYmin</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setYmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getYmin"> -<tt class="descname">getYmin</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getYmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setYmax"> -<tt class="descname">setYmax</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setYmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getYmax"> -<tt class="descname">getYmax</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getYmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setYdivs"> -<tt class="descname">setYdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setYdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getYdivs"> -<tt class="descname">getYdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getYdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setDy"> -<tt class="descname">setDy</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setDy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getDy"> -<tt class="descname">getDy</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getDy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setTable"> -<tt class="descname">setTable</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setTable" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getTable"> -<tt class="descname">getTable</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getTable" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getZ"> -<tt class="descname">getZ</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.setTableVector2D"> -<tt class="descname">setTableVector2D</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.setTableVector2D" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Interpol2D.getTableVector2D"> -<tt class="descname">getTableVector2D</tt><big>(</big><big>)</big><a class="headerlink" href="#Interpol2D.getTableVector2D" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.lookupOut"> -<tt class="descname">lookupOut</tt><a class="headerlink" href="#Interpol2D.lookupOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) respond to a request for a value lookup</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.xmin"> -<tt class="descname">xmin</tt><a class="headerlink" href="#Interpol2D.xmin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum value for x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.xmax"> -<tt class="descname">xmax</tt><a class="headerlink" href="#Interpol2D.xmax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum value for x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.xdivs"> -<tt class="descname">xdivs</tt><a class="headerlink" href="#Interpol2D.xdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) # of divisions on x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.dx"> -<tt class="descname">dx</tt><a class="headerlink" href="#Interpol2D.dx" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Increment on x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.ymin"> -<tt class="descname">ymin</tt><a class="headerlink" href="#Interpol2D.ymin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum value for y axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.ymax"> -<tt class="descname">ymax</tt><a class="headerlink" href="#Interpol2D.ymax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum value for y axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.ydivs"> -<tt class="descname">ydivs</tt><a class="headerlink" href="#Interpol2D.ydivs" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) # of divisions on y axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.dy"> -<tt class="descname">dy</tt><a class="headerlink" href="#Interpol2D.dy" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Increment on y axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.tableVector2D"> -<tt class="descname">tableVector2D</tt><a class="headerlink" href="#Interpol2D.tableVector2D" title="Permalink to this definition">¶</a></dt> -<dd><p>vector< vector<double> > (<em>value field</em>) Get the entire table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.table"> -<tt class="descname">table</tt><a class="headerlink" href="#Interpol2D.table" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int>,double (<em>lookup field</em>) Lookup an entry on the table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Interpol2D.z"> -<tt class="descname">z</tt><a class="headerlink" href="#Interpol2D.z" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double>,double (<em>lookup field</em>) Interpolated value for specified x and y. This is provided for debugging. Normally other objects will retrieve interpolated values via lookup message.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="IzhikevichNrn"> -<em class="property">class </em><tt class="descname">IzhikevichNrn</tt><a class="headerlink" href="#IzhikevichNrn" title="Permalink to this definition">¶</a></dt> -<dd><p>Izhikevich model of spiking neuron (Izhikevich,EM. 2003. Simple model of spiking neurons. Neural Networks, IEEE Transactions on 14(6). pp 1569-1572).</p> -<blockquote> -<div><blockquote> -<div><p>dVm/dt = 0.04 * Vm^2 + 5 * Vm + 140 - u + inject</p> -<p>du/dt = a * (b * Vm - u)</p> -</div></blockquote> -<p>if Vm >= Vmax then Vm = c and u = u + d</p> -<p>Vmax = 30 mV in the paper.</p> -</div></blockquote> -<dl class="attribute"> -<dt id="IzhikevichNrn.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#IzhikevichNrn.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message to receive Process message from scheduler</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.channel"> -<tt class="descname">channel</tt><a class="headerlink" href="#IzhikevichNrn.channel" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message from a IzhikevichNrn to channels.The first entry is a MsgDest for the info coming from the channel. It expects Gk and Ek from the channel as args. The second entry is a MsgSrc sending Vm</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setVmax"> -<tt class="descname">setVmax</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setVmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getVmax"> -<tt class="descname">getVmax</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getVmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setC"> -<tt class="descname">setC</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setC" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getC"> -<tt class="descname">getC</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getC" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setD"> -<tt class="descname">setD</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setD" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getD"> -<tt class="descname">getD</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getD" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setA"> -<tt class="descname">setA</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getA"> -<tt class="descname">getA</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getA" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setB"> -<tt class="descname">setB</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getB"> -<tt class="descname">getB</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getU"> -<tt class="descname">getU</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getU" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setVm"> -<tt class="descname">setVm</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getVm"> -<tt class="descname">getVm</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getIm"> -<tt class="descname">getIm</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getIm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setInject"> -<tt class="descname">setInject</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setInject" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getInject"> -<tt class="descname">getInject</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getInject" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setRmByTau"> -<tt class="descname">setRmByTau</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setRmByTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getRmByTau"> -<tt class="descname">getRmByTau</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getRmByTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setAccommodating"> -<tt class="descname">setAccommodating</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setAccommodating" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getAccommodating"> -<tt class="descname">getAccommodating</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getAccommodating" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setU0"> -<tt class="descname">setU0</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setU0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getU0"> -<tt class="descname">getU0</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getU0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setInitVm"> -<tt class="descname">setInitVm</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setInitVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getInitVm"> -<tt class="descname">getInitVm</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getInitVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setInitU"> -<tt class="descname">setInitU</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setInitU" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getInitU"> -<tt class="descname">getInitU</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getInitU" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setAlpha"> -<tt class="descname">setAlpha</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setAlpha" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getAlpha"> -<tt class="descname">getAlpha</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getAlpha" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setBeta"> -<tt class="descname">setBeta</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setBeta" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getBeta"> -<tt class="descname">getBeta</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getBeta" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.setGamma"> -<tt class="descname">setGamma</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.setGamma" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.getGamma"> -<tt class="descname">getGamma</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.getGamma" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.injectMsg"> -<tt class="descname">injectMsg</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.injectMsg" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Injection current into the neuron.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.cDest"> -<tt class="descname">cDest</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.cDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destination message to modify parameter c at runtime.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.dDest"> -<tt class="descname">dDest</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.dDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destination message to modify parameter d at runtime.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.bDest"> -<tt class="descname">bDest</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.bDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destination message to modify parameter b at runtime</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.aDest"> -<tt class="descname">aDest</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.aDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destination message modify parameter a at runtime.</p> -</dd></dl> - -<dl class="method"> -<dt id="IzhikevichNrn.handleChannel"> -<tt class="descname">handleChannel</tt><big>(</big><big>)</big><a class="headerlink" href="#IzhikevichNrn.handleChannel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles conductance and reversal potential arguments from Channel</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.VmOut"> -<tt class="descname">VmOut</tt><a class="headerlink" href="#IzhikevichNrn.VmOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out Vm</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.spikeOut"> -<tt class="descname">spikeOut</tt><a class="headerlink" href="#IzhikevichNrn.spikeOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out spike events</p> -</dd></dl> - -<dl class="attribute"> -<dt> -<tt class="descname">VmOut</tt></dt> -<dd><p>double (<em>source message field</em>) Sends out Vm</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.Vmax"> -<tt class="descname">Vmax</tt><a class="headerlink" href="#IzhikevichNrn.Vmax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum membrane potential. Membrane potential is reset to c whenever it reaches Vmax. NOTE: Izhikevich model specifies the PEAK voltage, rather than THRSHOLD voltage. The threshold depends on the previous history.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.c"> -<tt class="descname">c</tt><a class="headerlink" href="#IzhikevichNrn.c" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reset potential. Membrane potential is reset to c whenever it reaches Vmax.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.d"> -<tt class="descname">d</tt><a class="headerlink" href="#IzhikevichNrn.d" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Parameter d in Izhikevich model. Unit is V/s.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.a"> -<tt class="descname">a</tt><a class="headerlink" href="#IzhikevichNrn.a" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Parameter a in Izhikevich model. Unit is s^{-1}</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.b"> -<tt class="descname">b</tt><a class="headerlink" href="#IzhikevichNrn.b" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Parameter b in Izhikevich model. Unit is s^{-1}</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.u"> -<tt class="descname">u</tt><a class="headerlink" href="#IzhikevichNrn.u" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Parameter u in Izhikevich equation. Unit is V/s</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.Vm"> -<tt class="descname">Vm</tt><a class="headerlink" href="#IzhikevichNrn.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Membrane potential, equivalent to v in Izhikevich equation.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.Im"> -<tt class="descname">Im</tt><a class="headerlink" href="#IzhikevichNrn.Im" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Total current going through the membrane. Unit is A.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.inject"> -<tt class="descname">inject</tt><a class="headerlink" href="#IzhikevichNrn.inject" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) External current injection into the neuron</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.RmByTau"> -<tt class="descname">RmByTau</tt><a class="headerlink" href="#IzhikevichNrn.RmByTau" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Hidden coefficient of input current term (I) in Izhikevich model. Defaults to 1e9 Ohm/s.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.accommodating"> -<tt class="descname">accommodating</tt><a class="headerlink" href="#IzhikevichNrn.accommodating" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) True if this neuron is an accommodating one. The equation for recovery variable u is special in this case.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.u0"> -<tt class="descname">u0</tt><a class="headerlink" href="#IzhikevichNrn.u0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) This is used for accommodating neurons where recovery variables u is computed as: u += tau*a*(b*(Vm-u0))</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.initVm"> -<tt class="descname">initVm</tt><a class="headerlink" href="#IzhikevichNrn.initVm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Initial membrane potential. Unit is V.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.initU"> -<tt class="descname">initU</tt><a class="headerlink" href="#IzhikevichNrn.initU" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Initial value of u.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.alpha"> -<tt class="descname">alpha</tt><a class="headerlink" href="#IzhikevichNrn.alpha" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Coefficient of v^2 in Izhikevich equation. Defaults to 0.04 in physiological unit. In SI it should be 40000.0. Unit is V^-1 s^{-1}</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.beta"> -<tt class="descname">beta</tt><a class="headerlink" href="#IzhikevichNrn.beta" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Coefficient of v in Izhikevich model. Defaults to 5 in physiological unit, 5000.0 for SI units. Unit is s^{-1}</p> -</dd></dl> - -<dl class="attribute"> -<dt id="IzhikevichNrn.gamma"> -<tt class="descname">gamma</tt><a class="headerlink" href="#IzhikevichNrn.gamma" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Constant term in Izhikevich model. Defaults to 140 in both physiological and SI units. unit is V/s.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Ksolve"> -<em class="property">class </em><tt class="descname">Ksolve</tt><a class="headerlink" href="#Ksolve" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Ksolve.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Ksolve.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setMethod"> -<tt class="descname">setMethod</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setMethod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getMethod"> -<tt class="descname">getMethod</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getMethod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setEpsAbs"> -<tt class="descname">setEpsAbs</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setEpsAbs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getEpsAbs"> -<tt class="descname">getEpsAbs</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getEpsAbs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setEpsRel"> -<tt class="descname">setEpsRel</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setEpsRel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getEpsRel"> -<tt class="descname">getEpsRel</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getEpsRel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setStoich"> -<tt class="descname">setStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getStoich"> -<tt class="descname">getStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setDsolve"> -<tt class="descname">setDsolve</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setDsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getDsolve"> -<tt class="descname">getDsolve</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getDsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setCompartment"> -<tt class="descname">setCompartment</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getCompartment"> -<tt class="descname">getCompartment</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getNumLocalVoxels"> -<tt class="descname">getNumLocalVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getNumLocalVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setNVec"> -<tt class="descname">setNVec</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setNVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getNVec"> -<tt class="descname">getNVec</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getNVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setNumAllVoxels"> -<tt class="descname">setNumAllVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setNumAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getNumAllVoxels"> -<tt class="descname">getNumAllVoxels</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getNumAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.setNumPools"> -<tt class="descname">setNumPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.setNumPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.getNumPools"> -<tt class="descname">getNumPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.getNumPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="Ksolve.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Ksolve.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.method"> -<tt class="descname">method</tt><a class="headerlink" href="#Ksolve.method" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Integration method, using GSL. So far only explict. Options are:rk5: The default Runge-Kutta-Fehlberg 5th order adaptive dt methodgsl: alias for the aboverk4: The Runge-Kutta 4th order fixed dt methodrk2: The Runge-Kutta 2,3 embedded fixed dt methodrkck: The Runge-Kutta Cash-Karp (4,5) methodrk8: The Runge-Kutta Prince-Dormand (8,9) method</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.epsAbs"> -<tt class="descname">epsAbs</tt><a class="headerlink" href="#Ksolve.epsAbs" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Absolute permissible integration error range.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.epsRel"> -<tt class="descname">epsRel</tt><a class="headerlink" href="#Ksolve.epsRel" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Relative permissible integration error range.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.stoich"> -<tt class="descname">stoich</tt><a class="headerlink" href="#Ksolve.stoich" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Stoichiometry object for handling this reaction system.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.dsolve"> -<tt class="descname">dsolve</tt><a class="headerlink" href="#Ksolve.dsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Diffusion solver object handling this reactin system.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.compartment"> -<tt class="descname">compartment</tt><a class="headerlink" href="#Ksolve.compartment" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Compartment in which the Ksolve reaction system lives.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.numLocalVoxels"> -<tt class="descname">numLocalVoxels</tt><a class="headerlink" href="#Ksolve.numLocalVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of voxels in the core reac-diff system, on the current solver.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.numAllVoxels"> -<tt class="descname">numAllVoxels</tt><a class="headerlink" href="#Ksolve.numAllVoxels" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of voxels in the entire reac-diff system, including proxy voxels to represent abutting compartments.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.numPools"> -<tt class="descname">numPools</tt><a class="headerlink" href="#Ksolve.numPools" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of molecular pools in the entire reac-diff system, including variable, function and buffered.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Ksolve.nVec"> -<tt class="descname">nVec</tt><a class="headerlink" href="#Ksolve.nVec" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,vector<double> (<em>lookup field</em>) vector of pool counts. Index specifies which voxel.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Leakage"> -<em class="property">class </em><tt class="descname">Leakage</tt><a class="headerlink" href="#Leakage" title="Permalink to this definition">¶</a></dt> -<dd><p>Leakage: Passive leakage channel.</p> -<dl class="attribute"> -<dt id="Leakage.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Leakage.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from the scheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on.</p> -</dd></dl> - -</dd></dl> - -<p>The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -<blockquote> -<div><dl class="method"> -<dt> -<tt class="descname">process</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">reinit</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -</div></blockquote> -<dl class="class"> -<dt id="Long"> -<em class="property">class </em><tt class="descname">Long</tt><a class="headerlink" href="#Long" title="Permalink to this definition">¶</a></dt> -<dd><p>Variable for storing values.</p> -<dl class="method"> -<dt id="Long.setValue"> -<tt class="descname">setValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Long.setValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Long.getValue"> -<tt class="descname">getValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Long.getValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Long.value"> -<tt class="descname">value</tt><a class="headerlink" href="#Long.value" title="Permalink to this definition">¶</a></dt> -<dd><p>long (<em>value field</em>) Variable value</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MMenz"> -<em class="property">class </em><tt class="descname">MMenz</tt><a class="headerlink" href="#MMenz" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="MarkovChannel"> -<em class="property">class </em><tt class="descname">MarkovChannel</tt><a class="headerlink" href="#MarkovChannel" title="Permalink to this definition">¶</a></dt> -<dd><p>MarkovChannel : Multistate ion channel class.It deals with ion channels which can be found in one of multiple states, some of which are conducting. This implementation assumes the occurence of first order kinetics to calculate the probabilities of the channel being found in all states. Further, the rates of transition between these states can be constant, voltage-dependent or ligand dependent (only one ligand species). The current flow obtained from the channel is calculated in a deterministic method by solving the system of differential equations obtained from the assumptions above.</p> -<dl class="attribute"> -<dt id="MarkovChannel.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MarkovChannel.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.setLigandConc"> -<tt class="descname">setLigandConc</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.setLigandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getLigandConc"> -<tt class="descname">getLigandConc</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getLigandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.setVm"> -<tt class="descname">setVm</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.setVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getVm"> -<tt class="descname">getVm</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.setNumStates"> -<tt class="descname">setNumStates</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.setNumStates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getNumStates"> -<tt class="descname">getNumStates</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getNumStates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.setNumOpenStates"> -<tt class="descname">setNumOpenStates</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.setNumOpenStates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getNumOpenStates"> -<tt class="descname">getNumOpenStates</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getNumOpenStates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getState"> -<tt class="descname">getState</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.setInitialState"> -<tt class="descname">setInitialState</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.setInitialState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getInitialState"> -<tt class="descname">getInitialState</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getInitialState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.setLabels"> -<tt class="descname">setLabels</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.setLabels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getLabels"> -<tt class="descname">getLabels</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getLabels" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.setGbar"> -<tt class="descname">setGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.setGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.getGbar"> -<tt class="descname">getGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.getGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.handleLigandConc"> -<tt class="descname">handleLigandConc</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.handleLigandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Deals with incoming messages containing information of ligand concentration</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovChannel.handleState"> -<tt class="descname">handleState</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovChannel.handleState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Deals with incoming message from MarkovSolver object containing state information of the channel.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.ligandConc"> -<tt class="descname">ligandConc</tt><a class="headerlink" href="#MarkovChannel.ligandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Ligand concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.Vm"> -<tt class="descname">Vm</tt><a class="headerlink" href="#MarkovChannel.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Membrane voltage.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.numStates"> -<tt class="descname">numStates</tt><a class="headerlink" href="#MarkovChannel.numStates" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) The number of states that the channel can occupy.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.numOpenStates"> -<tt class="descname">numOpenStates</tt><a class="headerlink" href="#MarkovChannel.numOpenStates" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) The number of states which are open/conducting.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.state"> -<tt class="descname">state</tt><a class="headerlink" href="#MarkovChannel.state" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) This is a row vector that contains the probabilities of finding the channel in each state.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.initialState"> -<tt class="descname">initialState</tt><a class="headerlink" href="#MarkovChannel.initialState" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) This is a row vector that contains the probabilities of finding the channel in each state at t = 0. The state of the channel is reset to this value during a call to reinit()</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.labels"> -<tt class="descname">labels</tt><a class="headerlink" href="#MarkovChannel.labels" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Labels for each state.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovChannel.gbar"> -<tt class="descname">gbar</tt><a class="headerlink" href="#MarkovChannel.gbar" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) A row vector containing the conductance associated with each of the open/conducting states.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MarkovGslSolver"> -<em class="property">class </em><tt class="descname">MarkovGslSolver</tt><a class="headerlink" href="#MarkovGslSolver" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="MarkovGslSolver.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MarkovGslSolver.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.getIsInitialized"> -<tt class="descname">getIsInitialized</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.getIsInitialized" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.setMethod"> -<tt class="descname">setMethod</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.setMethod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.getMethod"> -<tt class="descname">getMethod</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.getMethod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.setRelativeAccuracy"> -<tt class="descname">setRelativeAccuracy</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.setRelativeAccuracy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.getRelativeAccuracy"> -<tt class="descname">getRelativeAccuracy</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.getRelativeAccuracy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.setAbsoluteAccuracy"> -<tt class="descname">setAbsoluteAccuracy</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.setAbsoluteAccuracy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.getAbsoluteAccuracy"> -<tt class="descname">getAbsoluteAccuracy</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.getAbsoluteAccuracy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.setInternalDt"> -<tt class="descname">setInternalDt</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.setInternalDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.getInternalDt"> -<tt class="descname">getInternalDt</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.getInternalDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.init"> -<tt class="descname">init</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.init" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Initialize solver parameters.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.handleQ"> -<tt class="descname">handleQ</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.handleQ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles information regarding the instantaneous rate matrix from the MarkovRateTable class.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovGslSolver.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovGslSolver.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovGslSolver.stateOut"> -<tt class="descname">stateOut</tt><a class="headerlink" href="#MarkovGslSolver.stateOut" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>source message field</em>) Sends updated state to the MarkovChannel class.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovGslSolver.isInitialized"> -<tt class="descname">isInitialized</tt><a class="headerlink" href="#MarkovGslSolver.isInitialized" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) True if the message has come in to set solver parameters.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovGslSolver.method"> -<tt class="descname">method</tt><a class="headerlink" href="#MarkovGslSolver.method" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Numerical method to use.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovGslSolver.relativeAccuracy"> -<tt class="descname">relativeAccuracy</tt><a class="headerlink" href="#MarkovGslSolver.relativeAccuracy" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Accuracy criterion</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovGslSolver.absoluteAccuracy"> -<tt class="descname">absoluteAccuracy</tt><a class="headerlink" href="#MarkovGslSolver.absoluteAccuracy" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Another accuracy criterion</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovGslSolver.internalDt"> -<tt class="descname">internalDt</tt><a class="headerlink" href="#MarkovGslSolver.internalDt" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) internal timestep to use.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MarkovRateTable"> -<em class="property">class </em><tt class="descname">MarkovRateTable</tt><a class="headerlink" href="#MarkovRateTable" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="MarkovRateTable.channel"> -<tt class="descname">channel</tt><a class="headerlink" href="#MarkovRateTable.channel" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This message couples the rate table to the compartment. The rate table needs updates on voltage in order to compute the rate table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovRateTable.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MarkovRateTable.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.handleVm"> -<tt class="descname">handleVm</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.handleVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles incoming message containing voltage information.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.init"> -<tt class="descname">init</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.init" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Initialization of the class. Allocates memory for all the tables.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.handleLigandConc"> -<tt class="descname">handleLigandConc</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.handleLigandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles incoming message containing ligand concentration.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.set1d"> -<tt class="descname">set1d</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.set1d" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Setting up of 1D lookup table for the (i,j)’th rate.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.set2d"> -<tt class="descname">set2d</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.set2d" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Setting up of 2D lookup table for the (i,j)’th rate.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.setconst"> -<tt class="descname">setconst</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.setconst" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Setting a constant value for the (i,j)’th rate. Internally, this is stored as a 1-D rate with a lookup table containing 1 entry.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.setVm"> -<tt class="descname">setVm</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.setVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.getVm"> -<tt class="descname">getVm</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.getVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.setLigandConc"> -<tt class="descname">setLigandConc</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.setLigandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.getLigandConc"> -<tt class="descname">getLigandConc</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.getLigandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.getQ"> -<tt class="descname">getQ</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.getQ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovRateTable.getSize"> -<tt class="descname">getSize</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovRateTable.getSize" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovRateTable.instratesOut"> -<tt class="descname">instratesOut</tt><a class="headerlink" href="#MarkovRateTable.instratesOut" title="Permalink to this definition">¶</a></dt> -<dd><p>vector< vector<double> > (<em>source message field</em>) Sends out instantaneous rate information of varying transition ratesat each time step.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovRateTable.Vm"> -<tt class="descname">Vm</tt><a class="headerlink" href="#MarkovRateTable.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Membrane voltage.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovRateTable.ligandConc"> -<tt class="descname">ligandConc</tt><a class="headerlink" href="#MarkovRateTable.ligandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Ligand concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovRateTable.Q"> -<tt class="descname">Q</tt><a class="headerlink" href="#MarkovRateTable.Q" title="Permalink to this definition">¶</a></dt> -<dd><p>vector< vector<double> > (<em>value field</em>) Instantaneous rate matrix.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovRateTable.size"> -<tt class="descname">size</tt><a class="headerlink" href="#MarkovRateTable.size" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Dimension of the families of lookup tables. Is always equal to the number of states in the model.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MarkovSolver"> -<em class="property">class </em><tt class="descname">MarkovSolver</tt><a class="headerlink" href="#MarkovSolver" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="MarkovSolver.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MarkovSolver.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolver.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolver.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolver.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolver.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MarkovSolverBase"> -<em class="property">class </em><tt class="descname">MarkovSolverBase</tt><a class="headerlink" href="#MarkovSolverBase" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="MarkovSolverBase.channel"> -<tt class="descname">channel</tt><a class="headerlink" href="#MarkovSolverBase.channel" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This message couples the MarkovSolverBase to the Compartment. The compartment needs Vm in order to look up the correct matrix exponential for computing the state.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MarkovSolverBase.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.handleVm"> -<tt class="descname">handleVm</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.handleVm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles incoming message containing voltage information.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.ligandConc"> -<tt class="descname">ligandConc</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.ligandConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles incoming message containing ligand concentration.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.init"> -<tt class="descname">init</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.init" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Setups the table of matrix exponentials associated with the solver object.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getQ"> -<tt class="descname">getQ</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getQ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getState"> -<tt class="descname">getState</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.setInitialState"> -<tt class="descname">setInitialState</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.setInitialState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getInitialState"> -<tt class="descname">getInitialState</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getInitialState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.setXmin"> -<tt class="descname">setXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.setXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getXmin"> -<tt class="descname">getXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.setXmax"> -<tt class="descname">setXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.setXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getXmax"> -<tt class="descname">getXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.setXdivs"> -<tt class="descname">setXdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.setXdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getXdivs"> -<tt class="descname">getXdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getXdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getInvdx"> -<tt class="descname">getInvdx</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getInvdx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.setYmin"> -<tt class="descname">setYmin</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.setYmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getYmin"> -<tt class="descname">getYmin</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getYmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.setYmax"> -<tt class="descname">setYmax</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.setYmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getYmax"> -<tt class="descname">getYmax</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getYmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.setYdivs"> -<tt class="descname">setYdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.setYdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getYdivs"> -<tt class="descname">getYdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getYdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MarkovSolverBase.getInvdy"> -<tt class="descname">getInvdy</tt><big>(</big><big>)</big><a class="headerlink" href="#MarkovSolverBase.getInvdy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.stateOut"> -<tt class="descname">stateOut</tt><a class="headerlink" href="#MarkovSolverBase.stateOut" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>source message field</em>) Sends updated state to the MarkovChannel class.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.Q"> -<tt class="descname">Q</tt><a class="headerlink" href="#MarkovSolverBase.Q" title="Permalink to this definition">¶</a></dt> -<dd><p>vector< vector<double> > (<em>value field</em>) Instantaneous rate matrix.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.state"> -<tt class="descname">state</tt><a class="headerlink" href="#MarkovSolverBase.state" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Current state of the channel.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.initialState"> -<tt class="descname">initialState</tt><a class="headerlink" href="#MarkovSolverBase.initialState" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Initial state of the channel.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.xmin"> -<tt class="descname">xmin</tt><a class="headerlink" href="#MarkovSolverBase.xmin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum value for x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.xmax"> -<tt class="descname">xmax</tt><a class="headerlink" href="#MarkovSolverBase.xmax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum value for x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.xdivs"> -<tt class="descname">xdivs</tt><a class="headerlink" href="#MarkovSolverBase.xdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) # of divisions on x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.invdx"> -<tt class="descname">invdx</tt><a class="headerlink" href="#MarkovSolverBase.invdx" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reciprocal of increment on x axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.ymin"> -<tt class="descname">ymin</tt><a class="headerlink" href="#MarkovSolverBase.ymin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum value for y axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.ymax"> -<tt class="descname">ymax</tt><a class="headerlink" href="#MarkovSolverBase.ymax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum value for y axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.ydivs"> -<tt class="descname">ydivs</tt><a class="headerlink" href="#MarkovSolverBase.ydivs" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) # of divisions on y axis of lookup table</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MarkovSolverBase.invdy"> -<tt class="descname">invdy</tt><a class="headerlink" href="#MarkovSolverBase.invdy" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reciprocal of increment on y axis of lookup table</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MathFunc"> -<em class="property">class </em><tt class="descname">MathFunc</tt><a class="headerlink" href="#MathFunc" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="MathFunc.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MathFunc.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.setMathML"> -<tt class="descname">setMathML</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.setMathML" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.getMathML"> -<tt class="descname">getMathML</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.getMathML" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.setFunction"> -<tt class="descname">setFunction</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.setFunction" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.getFunction"> -<tt class="descname">getFunction</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.getFunction" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.getResult"> -<tt class="descname">getResult</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.getResult" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.arg1"> -<tt class="descname">arg1</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.arg1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle arg1</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.arg2"> -<tt class="descname">arg2</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.arg2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle arg2</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.arg3"> -<tt class="descname">arg3</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.arg3" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle arg3</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.arg4"> -<tt class="descname">arg4</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.arg4" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle arg4</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MathFunc.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MathFunc.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MathFunc.output"> -<tt class="descname">output</tt><a class="headerlink" href="#MathFunc.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out result of computation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MathFunc.mathML"> -<tt class="descname">mathML</tt><a class="headerlink" href="#MathFunc.mathML" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) MathML version of expression to compute</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MathFunc.function"> -<tt class="descname">function</tt><a class="headerlink" href="#MathFunc.function" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) function is for functions of form f(x, y) = x + y</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MathFunc.result"> -<tt class="descname">result</tt><a class="headerlink" href="#MathFunc.result" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) result value</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MeshEntry"> -<em class="property">class </em><tt class="descname">MeshEntry</tt><a class="headerlink" href="#MeshEntry" title="Permalink to this definition">¶</a></dt> -<dd><p>One voxel in a chemical reaction compartment</p> -<dl class="attribute"> -<dt id="MeshEntry.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MeshEntry.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.mesh"> -<tt class="descname">mesh</tt><a class="headerlink" href="#MeshEntry.mesh" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for updating mesh volumes and subdivisions,typically controls pool volumes</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.getVolume"> -<tt class="descname">getVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.getVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.getDimensions"> -<tt class="descname">getDimensions</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.getDimensions" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.getMeshType"> -<tt class="descname">getMeshType</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.getMeshType" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.getCoordinates"> -<tt class="descname">getCoordinates</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.getCoordinates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.getNeighbors"> -<tt class="descname">getNeighbors</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.getNeighbors" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.getDiffusionArea"> -<tt class="descname">getDiffusionArea</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.getDiffusionArea" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.getDiffusionScaling"> -<tt class="descname">getDiffusionScaling</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.getDiffusionScaling" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MeshEntry.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MeshEntry.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">getVolume</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.remeshOut"> -<tt class="descname">remeshOut</tt><a class="headerlink" href="#MeshEntry.remeshOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,unsigned int,unsigned int,vector<unsigned int>,vector<double> (<em>source message field</em>) Tells the target pool or other entity that the compartment subdivision(meshing) has changed, and that it has to redo its volume and memory allocation accordingly.Arguments are: oldvol, numTotalEntries, startEntry, localIndices, volsThe vols specifies volumes of each local mesh entry. It also specifieshow many meshEntries are present on the local node.The localIndices vector is used for general load balancing only.It has a list of the all meshEntries on current node.If it is empty, we assume block load balancing. In this secondcase the contents of the current node go from startEntry to startEntry + vols.size().</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.remeshReacsOut"> -<tt class="descname">remeshReacsOut</tt><a class="headerlink" href="#MeshEntry.remeshReacsOut" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>source message field</em>) Tells connected enz or reac that the compartment subdivision(meshing) has changed, and that it has to redo its volume-dependent rate terms like <a href="#id23"><span class="problematic" id="id24">numKf_</span></a> accordingly.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.volume"> -<tt class="descname">volume</tt><a class="headerlink" href="#MeshEntry.volume" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Volume of this MeshEntry</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.dimensions"> -<tt class="descname">dimensions</tt><a class="headerlink" href="#MeshEntry.dimensions" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) number of dimensions of this MeshEntry</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.meshType"> -<tt class="descname">meshType</tt><a class="headerlink" href="#MeshEntry.meshType" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) The MeshType defines the shape of the mesh entry. 0: Not assigned 1: cuboid 2: cylinder 3. cylindrical shell 4: cylindrical shell segment 5: sphere 6: spherical shell 7: spherical shell segment 8: Tetrahedral</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.Coordinates"> -<tt class="descname">Coordinates</tt><a class="headerlink" href="#MeshEntry.Coordinates" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Coordinates that define current MeshEntry. Depend on MeshType.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.neighbors"> -<tt class="descname">neighbors</tt><a class="headerlink" href="#MeshEntry.neighbors" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Indices of other MeshEntries that this one connects to</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.DiffusionArea"> -<tt class="descname">DiffusionArea</tt><a class="headerlink" href="#MeshEntry.DiffusionArea" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Diffusion area for geometry of interface</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MeshEntry.DiffusionScaling"> -<tt class="descname">DiffusionScaling</tt><a class="headerlink" href="#MeshEntry.DiffusionScaling" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) Diffusion scaling for geometry of interface</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="MgBlock"> -<em class="property">class </em><tt class="descname">MgBlock</tt><a class="headerlink" href="#MgBlock" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><p>MgBlock: Hodgkin-Huxley type voltage-gated Ion channel. Something like the old tabchannel from GENESIS, but also presents a similar interface as hhchan from GENESIS.</p> -<dl class="attribute"> -<dt id="MgBlock.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#MgBlock.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on.</p> -</dd></dl> - -</div></blockquote> -<p>The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -<blockquote> -<div><dl class="method"> -<dt id="MgBlock.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.origChannel"> -<tt class="descname">origChannel</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.origChannel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>)</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.setKMg_A"> -<tt class="descname">setKMg_A</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.setKMg_A" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.getKMg_A"> -<tt class="descname">getKMg_A</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.getKMg_A" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.setKMg_B"> -<tt class="descname">setKMg_B</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.setKMg_B" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.getKMg_B"> -<tt class="descname">getKMg_B</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.getKMg_B" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.setCMg"> -<tt class="descname">setCMg</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.setCMg" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.getCMg"> -<tt class="descname">getCMg</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.getCMg" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.setIk"> -<tt class="descname">setIk</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.setIk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.getIk"> -<tt class="descname">getIk</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.getIk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.setZk"> -<tt class="descname">setZk</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.setZk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="MgBlock.getZk"> -<tt class="descname">getZk</tt><big>(</big><big>)</big><a class="headerlink" href="#MgBlock.getZk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MgBlock.KMg_A"> -<tt class="descname">KMg_A</tt><a class="headerlink" href="#MgBlock.KMg_A" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) 1/eta</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MgBlock.KMg_B"> -<tt class="descname">KMg_B</tt><a class="headerlink" href="#MgBlock.KMg_B" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) 1/gamma</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MgBlock.CMg"> -<tt class="descname">CMg</tt><a class="headerlink" href="#MgBlock.CMg" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) [Mg] in mM</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MgBlock.Ik"> -<tt class="descname">Ik</tt><a class="headerlink" href="#MgBlock.Ik" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Current through MgBlock</p> -</dd></dl> - -<dl class="attribute"> -<dt id="MgBlock.Zk"> -<tt class="descname">Zk</tt><a class="headerlink" href="#MgBlock.Zk" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Charge on ion</p> -</dd></dl> - -</div></blockquote> -</dd></dl> - -<dl class="class"> -<dt id="Msg"> -<em class="property">class </em><tt class="descname">Msg</tt><a class="headerlink" href="#Msg" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Msg.getE1"> -<tt class="descname">getE1</tt><big>(</big><big>)</big><a class="headerlink" href="#Msg.getE1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Msg.getE2"> -<tt class="descname">getE2</tt><big>(</big><big>)</big><a class="headerlink" href="#Msg.getE2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Msg.getSrcFieldsOnE1"> -<tt class="descname">getSrcFieldsOnE1</tt><big>(</big><big>)</big><a class="headerlink" href="#Msg.getSrcFieldsOnE1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Msg.getDestFieldsOnE2"> -<tt class="descname">getDestFieldsOnE2</tt><big>(</big><big>)</big><a class="headerlink" href="#Msg.getDestFieldsOnE2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Msg.getSrcFieldsOnE2"> -<tt class="descname">getSrcFieldsOnE2</tt><big>(</big><big>)</big><a class="headerlink" href="#Msg.getSrcFieldsOnE2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Msg.getDestFieldsOnE1"> -<tt class="descname">getDestFieldsOnE1</tt><big>(</big><big>)</big><a class="headerlink" href="#Msg.getDestFieldsOnE1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Msg.getAdjacent"> -<tt class="descname">getAdjacent</tt><big>(</big><big>)</big><a class="headerlink" href="#Msg.getAdjacent" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Msg.e1"> -<tt class="descname">e1</tt><a class="headerlink" href="#Msg.e1" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Id of source Element.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Msg.e2"> -<tt class="descname">e2</tt><a class="headerlink" href="#Msg.e2" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Id of source Element.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Msg.srcFieldsOnE1"> -<tt class="descname">srcFieldsOnE1</tt><a class="headerlink" href="#Msg.srcFieldsOnE1" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Names of SrcFinfos for messages going from e1 to e2. There arematching entries in the destFieldsOnE2 vector</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Msg.destFieldsOnE2"> -<tt class="descname">destFieldsOnE2</tt><a class="headerlink" href="#Msg.destFieldsOnE2" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Names of DestFinfos for messages going from e1 to e2. There arematching entries in the srcFieldsOnE1 vector</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Msg.srcFieldsOnE2"> -<tt class="descname">srcFieldsOnE2</tt><a class="headerlink" href="#Msg.srcFieldsOnE2" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Names of SrcFinfos for messages going from e2 to e1. There arematching entries in the destFieldsOnE1 vector</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Msg.destFieldsOnE1"> -<tt class="descname">destFieldsOnE1</tt><a class="headerlink" href="#Msg.destFieldsOnE1" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) Names of destFinfos for messages going from e2 to e1. There arematching entries in the srcFieldsOnE2 vector</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Msg.adjacent"> -<tt class="descname">adjacent</tt><a class="headerlink" href="#Msg.adjacent" title="Permalink to this definition">¶</a></dt> -<dd><p>ObjId,ObjId (<em>lookup field</em>) The element adjacent to the specified element</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Mstring"> -<em class="property">class </em><tt class="descname">Mstring</tt><a class="headerlink" href="#Mstring" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Mstring.setThis"> -<tt class="descname">setThis</tt><big>(</big><big>)</big><a class="headerlink" href="#Mstring.setThis" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Mstring.getThis"> -<tt class="descname">getThis</tt><big>(</big><big>)</big><a class="headerlink" href="#Mstring.getThis" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Mstring.setValue"> -<tt class="descname">setValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Mstring.setValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Mstring.getValue"> -<tt class="descname">getValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Mstring.getValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Mstring.this"> -<tt class="descname">this</tt><a class="headerlink" href="#Mstring.this" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Access function for entire Mstring object.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Mstring.value"> -<tt class="descname">value</tt><a class="headerlink" href="#Mstring.value" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Access function for value field of Mstring object,which happens also to be the entire contents of the object.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Nernst"> -<em class="property">class </em><tt class="descname">Nernst</tt><a class="headerlink" href="#Nernst" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Nernst.getE"> -<tt class="descname">getE</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.getE" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.setTemperature"> -<tt class="descname">setTemperature</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.setTemperature" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.getTemperature"> -<tt class="descname">getTemperature</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.getTemperature" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.setValence"> -<tt class="descname">setValence</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.setValence" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.getValence"> -<tt class="descname">getValence</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.getValence" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.setCin"> -<tt class="descname">setCin</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.setCin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.getCin"> -<tt class="descname">getCin</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.getCin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.setCout"> -<tt class="descname">setCout</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.setCout" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.getCout"> -<tt class="descname">getCout</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.getCout" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.setScale"> -<tt class="descname">setScale</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.setScale" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.getScale"> -<tt class="descname">getScale</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.getScale" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.ci"> -<tt class="descname">ci</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.ci" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Set internal conc of ion, and immediately send out the updated E</p> -</dd></dl> - -<dl class="method"> -<dt id="Nernst.co"> -<tt class="descname">co</tt><big>(</big><big>)</big><a class="headerlink" href="#Nernst.co" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Set external conc of ion, and immediately send out the updated E</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Nernst.Eout"> -<tt class="descname">Eout</tt><a class="headerlink" href="#Nernst.Eout" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Computed reversal potential</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Nernst.E"> -<tt class="descname">E</tt><a class="headerlink" href="#Nernst.E" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Computed reversal potential</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Nernst.Temperature"> -<tt class="descname">Temperature</tt><a class="headerlink" href="#Nernst.Temperature" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Temperature of cell</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Nernst.valence"> -<tt class="descname">valence</tt><a class="headerlink" href="#Nernst.valence" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Valence of ion in Nernst calculation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Nernst.Cin"> -<tt class="descname">Cin</tt><a class="headerlink" href="#Nernst.Cin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Internal conc of ion</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Nernst.Cout"> -<tt class="descname">Cout</tt><a class="headerlink" href="#Nernst.Cout" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) External conc of ion</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Nernst.scale"> -<tt class="descname">scale</tt><a class="headerlink" href="#Nernst.scale" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Voltage scale factor</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="NeuroMesh"> -<em class="property">class </em><tt class="descname">NeuroMesh</tt><a class="headerlink" href="#NeuroMesh" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="NeuroMesh.setCell"> -<tt class="descname">setCell</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.setCell" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getCell"> -<tt class="descname">getCell</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getCell" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.setSubTree"> -<tt class="descname">setSubTree</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.setSubTree" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getSubTree"> -<tt class="descname">getSubTree</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getSubTree" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.setSeparateSpines"> -<tt class="descname">setSeparateSpines</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.setSeparateSpines" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getSeparateSpines"> -<tt class="descname">getSeparateSpines</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getSeparateSpines" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getNumSegments"> -<tt class="descname">getNumSegments</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getNumSegments" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getNumDiffCompts"> -<tt class="descname">getNumDiffCompts</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getNumDiffCompts" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getParentVoxel"> -<tt class="descname">getParentVoxel</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getParentVoxel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.setDiffLength"> -<tt class="descname">setDiffLength</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.setDiffLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getDiffLength"> -<tt class="descname">getDiffLength</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getDiffLength" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.setGeometryPolicy"> -<tt class="descname">setGeometryPolicy</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.setGeometryPolicy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.getGeometryPolicy"> -<tt class="descname">getGeometryPolicy</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.getGeometryPolicy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="NeuroMesh.cellPortion"> -<tt class="descname">cellPortion</tt><big>(</big><big>)</big><a class="headerlink" href="#NeuroMesh.cellPortion" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Tells NeuroMesh to mesh up a subpart of a cell. For nowassumed contiguous.The first argument is the cell Id. The second is the wildcardpath of compartments to use for the subpart.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.spineListOut"> -<tt class="descname">spineListOut</tt><a class="headerlink" href="#NeuroMesh.spineListOut" title="Permalink to this definition">¶</a></dt> -<dd><p>Id,vector<Id>,vector<Id>,vector<unsigned int> (<em>source message field</em>) Request SpineMesh to construct self based on list of electrical compartments that this NeuroMesh has determined are spine shaft and spine head respectively. Also passes in the info about where each spine is connected to the NeuroMesh. Arguments: Cell Id, shaft compartment Ids, head compartment Ids,index of matching parent voxels for each spine</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.psdListOut"> -<tt class="descname">psdListOut</tt><a class="headerlink" href="#NeuroMesh.psdListOut" title="Permalink to this definition">¶</a></dt> -<dd><p>Id,vector<double>,vector<unsigned int> (<em>source message field</em>) Tells PsdMesh to build a mesh. Arguments: Cell Id, Coordinates of each psd, index of matching parent voxels for each spineThe coordinates each have 8 entries:xyz of centre of psd, xyz of vector perpendicular to psd, psd diameter, diffusion distance from parent compartment to PSD</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.cell"> -<tt class="descname">cell</tt><a class="headerlink" href="#NeuroMesh.cell" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Id for base element of cell model. Uses this to traverse theentire tree of the cell to build the mesh.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.subTree"> -<tt class="descname">subTree</tt><a class="headerlink" href="#NeuroMesh.subTree" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<Id> (<em>value field</em>) Set of compartments to model. If they happen to be contiguousthen also set up diffusion between the compartments. Can alsohandle cases where the same cell is divided into multiplenon-diffusively-coupled compartments</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.separateSpines"> -<tt class="descname">separateSpines</tt><a class="headerlink" href="#NeuroMesh.separateSpines" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag: when separateSpines is true, the traversal separates any compartment with the strings ‘spine’, ‘head’, ‘shaft’ or ‘neck’ in its name,Allows to set up separate mesh for spines, based on the same cell model. Requires for the spineListOut message tobe sent to the target SpineMesh object.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.numSegments"> -<tt class="descname">numSegments</tt><a class="headerlink" href="#NeuroMesh.numSegments" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of cylindrical/spherical segments in model</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.numDiffCompts"> -<tt class="descname">numDiffCompts</tt><a class="headerlink" href="#NeuroMesh.numDiffCompts" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of diffusive compartments in model</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.parentVoxel"> -<tt class="descname">parentVoxel</tt><a class="headerlink" href="#NeuroMesh.parentVoxel" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Vector of indices of parents of each voxel.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.diffLength"> -<tt class="descname">diffLength</tt><a class="headerlink" href="#NeuroMesh.diffLength" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Diffusive length constant to use for subdivisions. The system willattempt to subdivide cell using diffusive compartments ofthe specified diffusion lengths as a maximum.In order to get integral numbersof compartments in each segment, it may subdivide more finely.Uses default of 0.5 microns, that is, half typical lambda.For default, consider a tau of about 1 second for mostreactions, and a diffusion const of about 1e-12 um^2/sec.This gives lambda of 1 micron</p> -</dd></dl> - -<dl class="attribute"> -<dt id="NeuroMesh.geometryPolicy"> -<tt class="descname">geometryPolicy</tt><a class="headerlink" href="#NeuroMesh.geometryPolicy" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Policy for how to interpret electrical model geometry (which is a branching 1-dimensional tree) in terms of 3-D constructslike spheres, cylinders, and cones.There are three options, default, trousers, and cylinder:default mode: - Use frustrums of cones. Distal diameter is always from compt dia. - For linear dendrites (no branching), proximal diameter is diameter of the parent compartment - For branching dendrites and dendrites emerging from soma, proximal diameter is from compt dia. Don’t worry about overlap. - Place somatic dendrites on surface of spherical soma, or at ends of cylindrical soma - Place dendritic spines on surface of cylindrical dendrites, not emerging from their middle.trousers mode: - Use frustrums of cones. Distal diameter is always from compt dia. - For linear dendrites (no branching), proximal diameter is diameter of the parent compartment - For branching dendrites, use a trouser function. Avoid overlap. - For soma, use some variant of trousers. Here we must avoid overlap - For spines, use a way to smoothly merge into parent dend. Radius of curvature should be similar to that of the spine neck. - Place somatic dendrites on surface of spherical soma, or at ends of cylindrical soma - Place dendritic spines on surface of cylindrical dendrites, not emerging from their middle.cylinder mode: - Use cylinders. Diameter is just compartment dia. - Place somatic dendrites on surface of spherical soma, or at ends of cylindrical soma - Place dendritic spines on surface of cylindrical dendrites, not emerging from their middle. - Ignore spatial overlap.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Neuron"> -<em class="property">class </em><tt class="descname">Neuron</tt><a class="headerlink" href="#Neuron" title="Permalink to this definition">¶</a></dt> -<dd><p>Neuron - A compartment container</p> -</dd></dl> - -<dl class="class"> -<dt id="Neutral"> -<em class="property">class </em><tt class="descname">Neutral</tt><a class="headerlink" href="#Neutral" title="Permalink to this definition">¶</a></dt> -<dd><p>Neutral: Base class for all MOOSE classes. Providesaccess functions for housekeeping fields and operations, messagetraversal, and so on.</p> -<dl class="method"> -<dt id="Neutral.parentMsg"> -<tt class="descname">parentMsg</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.parentMsg" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Message from Parent Element(s)</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.setThis"> -<tt class="descname">setThis</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.setThis" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getThis"> -<tt class="descname">getThis</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getThis" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.setName"> -<tt class="descname">setName</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.setName" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getName"> -<tt class="descname">getName</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getName" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getMe"> -<tt class="descname">getMe</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getMe" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getParent"> -<tt class="descname">getParent</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getParent" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getChildren"> -<tt class="descname">getChildren</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getChildren" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getPath"> -<tt class="descname">getPath</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getPath" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getClassName"> -<tt class="descname">getClassName</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getClassName" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.setNumData"> -<tt class="descname">setNumData</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.setNumData" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getNumData"> -<tt class="descname">getNumData</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getNumData" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.setNumField"> -<tt class="descname">setNumField</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.setNumField" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getNumField"> -<tt class="descname">getNumField</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getNumField" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getValueFields"> -<tt class="descname">getValueFields</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getValueFields" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getSourceFields"> -<tt class="descname">getSourceFields</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getSourceFields" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getDestFields"> -<tt class="descname">getDestFields</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getDestFields" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getMsgOut"> -<tt class="descname">getMsgOut</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getMsgOut" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getMsgIn"> -<tt class="descname">getMsgIn</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getMsgIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getNeighbors"> -<tt class="descname">getNeighbors</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getNeighbors" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getMsgDests"> -<tt class="descname">getMsgDests</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getMsgDests" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Neutral.getMsgDestFunctions"> -<tt class="descname">getMsgDestFunctions</tt><big>(</big><big>)</big><a class="headerlink" href="#Neutral.getMsgDestFunctions" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.childOut"> -<tt class="descname">childOut</tt><a class="headerlink" href="#Neutral.childOut" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>source message field</em>) Message to child Elements</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.this"> -<tt class="descname">this</tt><a class="headerlink" href="#Neutral.this" title="Permalink to this definition">¶</a></dt> -<dd><p>Neutral (<em>value field</em>) Access function for entire object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.name"> -<tt class="descname">name</tt><a class="headerlink" href="#Neutral.name" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Name of object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.me"> -<tt class="descname">me</tt><a class="headerlink" href="#Neutral.me" title="Permalink to this definition">¶</a></dt> -<dd><p>ObjId (<em>value field</em>) ObjId for current object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.parent"> -<tt class="descname">parent</tt><a class="headerlink" href="#Neutral.parent" title="Permalink to this definition">¶</a></dt> -<dd><p>ObjId (<em>value field</em>) Parent ObjId for current object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.children"> -<tt class="descname">children</tt><a class="headerlink" href="#Neutral.children" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<Id> (<em>value field</em>) vector of ObjIds listing all children of current object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.path"> -<tt class="descname">path</tt><a class="headerlink" href="#Neutral.path" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) text path for object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.className"> -<tt class="descname">className</tt><a class="headerlink" href="#Neutral.className" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Class Name of object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.numData"> -<tt class="descname">numData</tt><a class="headerlink" href="#Neutral.numData" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) # of Data entries on Element.Note that on a FieldElement this does NOT refer to field entries,but to the number of DataEntries on the parent of the FieldElement.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.numField"> -<tt class="descname">numField</tt><a class="headerlink" href="#Neutral.numField" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) For a FieldElement: number of entries of self.For a regular Element: One.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.valueFields"> -<tt class="descname">valueFields</tt><a class="headerlink" href="#Neutral.valueFields" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) List of all value fields on Element.These fields are accessed through the assignment operations in the Python interface.These fields may also be accessed as functions through the set<FieldName> and get<FieldName> commands.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.sourceFields"> -<tt class="descname">sourceFields</tt><a class="headerlink" href="#Neutral.sourceFields" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) List of all source fields on Element, that is fields that can act as message sources.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.destFields"> -<tt class="descname">destFields</tt><a class="headerlink" href="#Neutral.destFields" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<string> (<em>value field</em>) List of all destination fields on Element, that is, fieldsthat are accessed as Element functions.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.msgOut"> -<tt class="descname">msgOut</tt><a class="headerlink" href="#Neutral.msgOut" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<ObjId> (<em>value field</em>) Messages going out from this Element</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.msgIn"> -<tt class="descname">msgIn</tt><a class="headerlink" href="#Neutral.msgIn" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<ObjId> (<em>value field</em>) Messages coming in to this Element</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.neighbors"> -<tt class="descname">neighbors</tt><a class="headerlink" href="#Neutral.neighbors" title="Permalink to this definition">¶</a></dt> -<dd><p>string,vector<Id> (<em>lookup field</em>) Ids of Elements connected this Element on specified field.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.msgDests"> -<tt class="descname">msgDests</tt><a class="headerlink" href="#Neutral.msgDests" title="Permalink to this definition">¶</a></dt> -<dd><p>string,vector<ObjId> (<em>lookup field</em>) ObjIds receiving messages from the specified SrcFinfo</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Neutral.msgDestFunctions"> -<tt class="descname">msgDestFunctions</tt><a class="headerlink" href="#Neutral.msgDestFunctions" title="Permalink to this definition">¶</a></dt> -<dd><p>string,vector<string> (<em>lookup field</em>) Matching function names for each ObjId receiving a msg from the specified SrcFinfo</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="OneToAllMsg"> -<em class="property">class </em><tt class="descname">OneToAllMsg</tt><a class="headerlink" href="#OneToAllMsg" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="OneToAllMsg.setI1"> -<tt class="descname">setI1</tt><big>(</big><big>)</big><a class="headerlink" href="#OneToAllMsg.setI1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="OneToAllMsg.getI1"> -<tt class="descname">getI1</tt><big>(</big><big>)</big><a class="headerlink" href="#OneToAllMsg.getI1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="OneToAllMsg.i1"> -<tt class="descname">i1</tt><a class="headerlink" href="#OneToAllMsg.i1" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) DataId of source Element.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="OneToOneDataIndexMsg"> -<em class="property">class </em><tt class="descname">OneToOneDataIndexMsg</tt><a class="headerlink" href="#OneToOneDataIndexMsg" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="OneToOneMsg"> -<em class="property">class </em><tt class="descname">OneToOneMsg</tt><a class="headerlink" href="#OneToOneMsg" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="PIDController"> -<em class="property">class </em><tt class="descname">PIDController</tt><a class="headerlink" href="#PIDController" title="Permalink to this definition">¶</a></dt> -<dd><p>PID feedback controller.PID stands for Proportional-Integral-Derivative. It is used to feedback control dynamical systems. It tries to create a feedback output such that the sensed (measured) parameter is held at command value. Refer to wikipedia (<a class="reference external" href="http://wikipedia.org">http://wikipedia.org</a>) for details on PID Controller.</p> -<dl class="attribute"> -<dt id="PIDController.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#PIDController.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.setGain"> -<tt class="descname">setGain</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.setGain" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getGain"> -<tt class="descname">getGain</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getGain" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.setSaturation"> -<tt class="descname">setSaturation</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.setSaturation" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getSaturation"> -<tt class="descname">getSaturation</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getSaturation" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.setCommand"> -<tt class="descname">setCommand</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.setCommand" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getCommand"> -<tt class="descname">getCommand</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getCommand" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getSensed"> -<tt class="descname">getSensed</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getSensed" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.setTauI"> -<tt class="descname">setTauI</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.setTauI" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getTauI"> -<tt class="descname">getTauI</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getTauI" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.setTauD"> -<tt class="descname">setTauD</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.setTauD" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getTauD"> -<tt class="descname">getTauD</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getTauD" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getOutputValue"> -<tt class="descname">getOutputValue</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getOutputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getError"> -<tt class="descname">getError</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getError" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getIntegral"> -<tt class="descname">getIntegral</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getIntegral" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getDerivative"> -<tt class="descname">getDerivative</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getDerivative" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.getE_previous"> -<tt class="descname">getE_previous</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.getE_previous" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.commandIn"> -<tt class="descname">commandIn</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.commandIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Command (desired value) input. This is known as setpoint (SP) in control theory.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.sensedIn"> -<tt class="descname">sensedIn</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.sensedIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Sensed parameter - this is the one to be tuned. This is known as process variable (PV) in control theory. This comes from the process we are trying to control.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.gainDest"> -<tt class="descname">gainDest</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.gainDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destination message to control the PIDController gain dynamically.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle process calls.</p> -</dd></dl> - -<dl class="method"> -<dt id="PIDController.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#PIDController.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Reinitialize the object.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.output"> -<tt class="descname">output</tt><a class="headerlink" href="#PIDController.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends the output of the PIDController. This is known as manipulated variable (MV) in control theory. This should be fed into the process which we are trying to control.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.gain"> -<tt class="descname">gain</tt><a class="headerlink" href="#PIDController.gain" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) This is the proportional gain (Kp). This tuning parameter scales the proportional term. Larger gain usually results in faster response, but too much will lead to instability and oscillation.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.saturation"> -<tt class="descname">saturation</tt><a class="headerlink" href="#PIDController.saturation" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Bound on the permissible range of output. Defaults to maximum double value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.command"> -<tt class="descname">command</tt><a class="headerlink" href="#PIDController.command" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The command (desired) value of the sensed parameter. In control theory this is commonly known as setpoint(SP).</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.sensed"> -<tt class="descname">sensed</tt><a class="headerlink" href="#PIDController.sensed" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Sensed (measured) value. This is commonly known as process variable(PV) in control theory.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.tauI"> -<tt class="descname">tauI</tt><a class="headerlink" href="#PIDController.tauI" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The integration time constant, typically = dt. This is actually proportional gain divided by integral gain (Kp/Ki)). Larger Ki (smaller tauI) usually leads to fast elimination of steady state errors at the cost of larger overshoot.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.tauD"> -<tt class="descname">tauD</tt><a class="headerlink" href="#PIDController.tauD" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The differentiation time constant, typically = dt / 4. This is derivative gain (Kd) times proportional gain (Kp). Larger Kd (tauD) decreases overshoot at the cost of slowing down transient response and may lead to instability.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PIDController.outputValue"> -<tt class="descname">outputValue</tt><a class="headerlink" href="#PIDController.outputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Output of the PIDController. This is given by: gain * ( error + INTEGRAL[ error dt ] / tau_i + tau_d * d(error)/dt )</p> -</dd></dl> - -</dd></dl> - -<p>Where gain = proportional gain (Kp), tau_i = integral gain (Kp/Ki) and tau_d = derivative gain (Kd/Kp). In control theory this is also known as the manipulated variable (MV)</p> -<blockquote> -<div><dl class="attribute"> -<dt id="error"> -<tt class="descname">error</tt><a class="headerlink" href="#error" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The error term, which is the difference between command and sensed value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="integral"> -<tt class="descname">integral</tt><a class="headerlink" href="#integral" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The integral term. It is calculated as INTEGRAL(error dt) = previous_integral + dt * (error + e_previous)/2.</p> -</dd></dl> - -<dl class="attribute"> -<dt> -<tt class="descname">derivative</tt></dt> -<dd><p>double (<em>value field</em>) The derivative term. This is (error - e_previous)/dt.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="e_previous"> -<tt class="descname">e_previous</tt><a class="headerlink" href="#e_previous" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The error term for previous step.</p> -</dd></dl> - -</div></blockquote> -<dl class="class"> -<dt id="Pool"> -<em class="property">class </em><tt class="descname">Pool</tt><a class="headerlink" href="#Pool" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Pool.increment"> -<tt class="descname">increment</tt><big>(</big><big>)</big><a class="headerlink" href="#Pool.increment" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Increments mol numbers by specified amount. Can be +ve or -ve</p> -</dd></dl> - -<dl class="method"> -<dt id="Pool.decrement"> -<tt class="descname">decrement</tt><big>(</big><big>)</big><a class="headerlink" href="#Pool.decrement" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Decrements mol numbers by specified amount. Can be +ve or -ve</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="PoolBase"> -<em class="property">class </em><tt class="descname">PoolBase</tt><a class="headerlink" href="#PoolBase" title="Permalink to this definition">¶</a></dt> -<dd><p>Abstract base class for pools.</p> -<dl class="attribute"> -<dt id="PoolBase.reac"> -<tt class="descname">reac</tt><a class="headerlink" href="#PoolBase.reac" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to reaction</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#PoolBase.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.species"> -<tt class="descname">species</tt><a class="headerlink" href="#PoolBase.species" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for connecting to species objects</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setN"> -<tt class="descname">setN</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setN" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getN"> -<tt class="descname">getN</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getN" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setNInit"> -<tt class="descname">setNInit</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setNInit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getNInit"> -<tt class="descname">getNInit</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getNInit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setDiffConst"> -<tt class="descname">setDiffConst</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setDiffConst" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getDiffConst"> -<tt class="descname">getDiffConst</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getDiffConst" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setMotorConst"> -<tt class="descname">setMotorConst</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setMotorConst" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getMotorConst"> -<tt class="descname">getMotorConst</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getMotorConst" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setConc"> -<tt class="descname">setConc</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getConc"> -<tt class="descname">getConc</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getConc" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setConcInit"> -<tt class="descname">setConcInit</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setConcInit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getConcInit"> -<tt class="descname">getConcInit</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getConcInit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setVolume"> -<tt class="descname">setVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getVolume"> -<tt class="descname">getVolume</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getVolume" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.setSpeciesId"> -<tt class="descname">setSpeciesId</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.setSpeciesId" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.getSpeciesId"> -<tt class="descname">getSpeciesId</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.getSpeciesId" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.reacDest"> -<tt class="descname">reacDest</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.reacDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reaction input</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="PoolBase.handleMolWt"> -<tt class="descname">handleMolWt</tt><big>(</big><big>)</big><a class="headerlink" href="#PoolBase.handleMolWt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Separate finfo to assign molWt, and consequently diffusion const.Should only be used in SharedMsg with species.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.nOut"> -<tt class="descname">nOut</tt><a class="headerlink" href="#PoolBase.nOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out # of molecules in pool on each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.requestMolWt"> -<tt class="descname">requestMolWt</tt><a class="headerlink" href="#PoolBase.requestMolWt" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>source message field</em>) Requests Species object for mol wt</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.n"> -<tt class="descname">n</tt><a class="headerlink" href="#PoolBase.n" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Number of molecules in pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.nInit"> -<tt class="descname">nInit</tt><a class="headerlink" href="#PoolBase.nInit" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Initial value of number of molecules in pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.diffConst"> -<tt class="descname">diffConst</tt><a class="headerlink" href="#PoolBase.diffConst" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Diffusion constant of molecule</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.motorConst"> -<tt class="descname">motorConst</tt><a class="headerlink" href="#PoolBase.motorConst" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Motor transport rate molecule. + is away from soma, - is towards soma. Only relevant for ZombiePool subclasses.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.conc"> -<tt class="descname">conc</tt><a class="headerlink" href="#PoolBase.conc" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Concentration of molecules in this pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.concInit"> -<tt class="descname">concInit</tt><a class="headerlink" href="#PoolBase.concInit" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Initial value of molecular concentration in pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.volume"> -<tt class="descname">volume</tt><a class="headerlink" href="#PoolBase.volume" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Volume of compartment. Units are SI. Utility field, the actual volume info is stored on a volume mesh entry in the parent compartment.This mapping is implicit: the parent compartment must be somewhere up the element tree, and must have matching mesh entries. If the compartment isn’tavailable the volume is just taken as 1</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PoolBase.speciesId"> -<tt class="descname">speciesId</tt><a class="headerlink" href="#PoolBase.speciesId" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Species identifier for this mol pool. Eventually link to ontology.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="PostMaster"> -<em class="property">class </em><tt class="descname">PostMaster</tt><a class="headerlink" href="#PostMaster" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="PostMaster.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#PostMaster.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="PostMaster.getNumNodes"> -<tt class="descname">getNumNodes</tt><big>(</big><big>)</big><a class="headerlink" href="#PostMaster.getNumNodes" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PostMaster.getMyNode"> -<tt class="descname">getMyNode</tt><big>(</big><big>)</big><a class="headerlink" href="#PostMaster.getMyNode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PostMaster.setBufferSize"> -<tt class="descname">setBufferSize</tt><big>(</big><big>)</big><a class="headerlink" href="#PostMaster.setBufferSize" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PostMaster.getBufferSize"> -<tt class="descname">getBufferSize</tt><big>(</big><big>)</big><a class="headerlink" href="#PostMaster.getBufferSize" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PostMaster.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#PostMaster.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="PostMaster.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#PostMaster.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PostMaster.numNodes"> -<tt class="descname">numNodes</tt><a class="headerlink" href="#PostMaster.numNodes" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Returns number of nodes that simulation runs on.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PostMaster.myNode"> -<tt class="descname">myNode</tt><a class="headerlink" href="#PostMaster.myNode" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Returns index of current node.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PostMaster.bufferSize"> -<tt class="descname">bufferSize</tt><a class="headerlink" href="#PostMaster.bufferSize" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Size of the send a receive buffers for each node.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="PsdMesh"> -<em class="property">class </em><tt class="descname">PsdMesh</tt><a class="headerlink" href="#PsdMesh" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="PsdMesh.setThickness"> -<tt class="descname">setThickness</tt><big>(</big><big>)</big><a class="headerlink" href="#PsdMesh.setThickness" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PsdMesh.getThickness"> -<tt class="descname">getThickness</tt><big>(</big><big>)</big><a class="headerlink" href="#PsdMesh.getThickness" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PsdMesh.psdList"> -<tt class="descname">psdList</tt><big>(</big><big>)</big><a class="headerlink" href="#PsdMesh.psdList" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Specifies the geometry of the spine,and the associated parent voxelArguments: cell container, disk params vector with 8 entriesper psd, parent voxel index</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PsdMesh.thickness"> -<tt class="descname">thickness</tt><a class="headerlink" href="#PsdMesh.thickness" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) An assumed thickness for PSD. The volume is computed as thePSD area passed in to each PSD, times this value.defaults to 50 nanometres. For reference, membranes are 5 nm.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="PulseGen"> -<em class="property">class </em><tt class="descname">PulseGen</tt><a class="headerlink" href="#PulseGen" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><p>PulseGen: general purpose pulse generator. This can generate any number of pulses with specified level and duration.</p> -<dl class="attribute"> -<dt id="PulseGen.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#PulseGen.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getOutputValue"> -<tt class="descname">getOutputValue</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getOutputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setBaseLevel"> -<tt class="descname">setBaseLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setBaseLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getBaseLevel"> -<tt class="descname">getBaseLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getBaseLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setFirstLevel"> -<tt class="descname">setFirstLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setFirstLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getFirstLevel"> -<tt class="descname">getFirstLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getFirstLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setFirstWidth"> -<tt class="descname">setFirstWidth</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setFirstWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getFirstWidth"> -<tt class="descname">getFirstWidth</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getFirstWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setFirstDelay"> -<tt class="descname">setFirstDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setFirstDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getFirstDelay"> -<tt class="descname">getFirstDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getFirstDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setSecondLevel"> -<tt class="descname">setSecondLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setSecondLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getSecondLevel"> -<tt class="descname">getSecondLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getSecondLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setSecondWidth"> -<tt class="descname">setSecondWidth</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setSecondWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getSecondWidth"> -<tt class="descname">getSecondWidth</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getSecondWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setSecondDelay"> -<tt class="descname">setSecondDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setSecondDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getSecondDelay"> -<tt class="descname">getSecondDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getSecondDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setCount"> -<tt class="descname">setCount</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setCount" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getCount"> -<tt class="descname">getCount</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getCount" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setTrigMode"> -<tt class="descname">setTrigMode</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setTrigMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getTrigMode"> -<tt class="descname">getTrigMode</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getTrigMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setLevel"> -<tt class="descname">setLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getLevel"> -<tt class="descname">getLevel</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setWidth"> -<tt class="descname">setWidth</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getWidth"> -<tt class="descname">getWidth</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.setDelay"> -<tt class="descname">setDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.setDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.getDelay"> -<tt class="descname">getDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.getDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.input"> -<tt class="descname">input</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.input" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle incoming input that determines gating/triggering onset.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.levelIn"> -<tt class="descname">levelIn</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.levelIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle level value coming from other objects</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.widthIn"> -<tt class="descname">widthIn</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.widthIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle width value coming from other objects</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.delayIn"> -<tt class="descname">delayIn</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.delayIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle delay value coming from other objects</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call, updates internal time stamp.</p> -</dd></dl> - -<dl class="method"> -<dt id="PulseGen.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#PulseGen.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.output"> -<tt class="descname">output</tt><a class="headerlink" href="#PulseGen.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Current output level.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.outputValue"> -<tt class="descname">outputValue</tt><a class="headerlink" href="#PulseGen.outputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Output amplitude</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.baseLevel"> -<tt class="descname">baseLevel</tt><a class="headerlink" href="#PulseGen.baseLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Basal level of the stimulus</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.firstLevel"> -<tt class="descname">firstLevel</tt><a class="headerlink" href="#PulseGen.firstLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Amplitude of the first pulse in a sequence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.firstWidth"> -<tt class="descname">firstWidth</tt><a class="headerlink" href="#PulseGen.firstWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Width of the first pulse in a sequence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.firstDelay"> -<tt class="descname">firstDelay</tt><a class="headerlink" href="#PulseGen.firstDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Delay to start of the first pulse in a sequence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.secondLevel"> -<tt class="descname">secondLevel</tt><a class="headerlink" href="#PulseGen.secondLevel" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Amplitude of the second pulse in a sequence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.secondWidth"> -<tt class="descname">secondWidth</tt><a class="headerlink" href="#PulseGen.secondWidth" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Width of the second pulse in a sequence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.secondDelay"> -<tt class="descname">secondDelay</tt><a class="headerlink" href="#PulseGen.secondDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Delay to start of of the second pulse in a sequence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.count"> -<tt class="descname">count</tt><a class="headerlink" href="#PulseGen.count" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of pulses in a sequence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.trigMode"> -<tt class="descname">trigMode</tt><a class="headerlink" href="#PulseGen.trigMode" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Trigger mode for pulses in the sequence.</p> -</dd></dl> - -</div></blockquote> -<p>0 : free-running mode where it keeps looping its output -1 : external trigger, where it is triggered by an external input (and stops after creating the first train of pulses) -2 : external gate mode, where it keeps generating the pulses in a loop as long as the input is high.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="PulseGen.level"> -<tt class="descname">level</tt><a class="headerlink" href="#PulseGen.level" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Level of the pulse at specified index</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.width"> -<tt class="descname">width</tt><a class="headerlink" href="#PulseGen.width" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Width of the pulse at specified index</p> -</dd></dl> - -<dl class="attribute"> -<dt id="PulseGen.delay"> -<tt class="descname">delay</tt><a class="headerlink" href="#PulseGen.delay" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Delay of the pulse at specified index</p> -</dd></dl> - -</div></blockquote> -</dd></dl> - -<dl class="class"> -<dt id="RC"> -<em class="property">class </em><tt class="descname">RC</tt><a class="headerlink" href="#RC" title="Permalink to this definition">¶</a></dt> -<dd><p>RC circuit: a series resistance R shunted by a capacitance C.</p> -<dl class="attribute"> -<dt id="RC.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#RC.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process messages from the scheduler objects.The first entry in the shared msg is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt and so on. The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.setV0"> -<tt class="descname">setV0</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.setV0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.getV0"> -<tt class="descname">getV0</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.getV0" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.setR"> -<tt class="descname">setR</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.setR" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.getR"> -<tt class="descname">getR</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.getR" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.setC"> -<tt class="descname">setC</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.setC" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.getC"> -<tt class="descname">getC</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.getC" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.getState"> -<tt class="descname">getState</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.getState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.setInject"> -<tt class="descname">setInject</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.setInject" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.getInject"> -<tt class="descname">getInject</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.getInject" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.injectIn"> -<tt class="descname">injectIn</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.injectIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Receives input to the RC circuit. All incoming messages are summed up to give the total input current.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call.</p> -</dd></dl> - -<dl class="method"> -<dt id="RC.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#RC.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle reinitialization</p> -</dd></dl> - -<dl class="attribute"> -<dt id="RC.output"> -<tt class="descname">output</tt><a class="headerlink" href="#RC.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Current output level.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="RC.V0"> -<tt class="descname">V0</tt><a class="headerlink" href="#RC.V0" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Initial value of ‘state’</p> -</dd></dl> - -<dl class="attribute"> -<dt id="RC.R"> -<tt class="descname">R</tt><a class="headerlink" href="#RC.R" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Series resistance of the RC circuit.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="RC.C"> -<tt class="descname">C</tt><a class="headerlink" href="#RC.C" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Parallel capacitance of the RC circuit.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="RC.state"> -<tt class="descname">state</tt><a class="headerlink" href="#RC.state" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Output value of the RC circuit. This is the voltage across the capacitor.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="RC.inject"> -<tt class="descname">inject</tt><a class="headerlink" href="#RC.inject" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Input value to the RC circuit.This is handled as an input current to the circuit.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Reac"> -<em class="property">class </em><tt class="descname">Reac</tt><a class="headerlink" href="#Reac" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="ReacBase"> -<em class="property">class </em><tt class="descname">ReacBase</tt><a class="headerlink" href="#ReacBase" title="Permalink to this definition">¶</a></dt> -<dd><p>Base class for reactions. Provides the MOOSE APIfunctions, but ruthlessly refers almost all of them to derivedclasses, which have to provide the man page output.</p> -<dl class="attribute"> -<dt id="ReacBase.sub"> -<tt class="descname">sub</tt><a class="headerlink" href="#ReacBase.sub" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to substrate pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.prd"> -<tt class="descname">prd</tt><a class="headerlink" href="#ReacBase.prd" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to substrate pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#ReacBase.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.setNumKf"> -<tt class="descname">setNumKf</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.setNumKf" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.getNumKf"> -<tt class="descname">getNumKf</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.getNumKf" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.setNumKb"> -<tt class="descname">setNumKb</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.setNumKb" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.getNumKb"> -<tt class="descname">getNumKb</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.getNumKb" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.setKf"> -<tt class="descname">setKf</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.setKf" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.getKf"> -<tt class="descname">getKf</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.getKf" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.setKb"> -<tt class="descname">setKb</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.setKb" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.getKb"> -<tt class="descname">getKb</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.getKb" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.getNumSubstrates"> -<tt class="descname">getNumSubstrates</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.getNumSubstrates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.getNumProducts"> -<tt class="descname">getNumProducts</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.getNumProducts" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.subDest"> -<tt class="descname">subDest</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.subDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles # of molecules of substrate</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.prdDest"> -<tt class="descname">prdDest</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.prdDest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles # of molecules of product</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="ReacBase.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#ReacBase.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.subOut"> -<tt class="descname">subOut</tt><a class="headerlink" href="#ReacBase.subOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out increment of molecules on product each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.prdOut"> -<tt class="descname">prdOut</tt><a class="headerlink" href="#ReacBase.prdOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out increment of molecules on product each timestep</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.numKf"> -<tt class="descname">numKf</tt><a class="headerlink" href="#ReacBase.numKf" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Forward rate constant, in # units</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.numKb"> -<tt class="descname">numKb</tt><a class="headerlink" href="#ReacBase.numKb" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reverse rate constant, in # units</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.Kf"> -<tt class="descname">Kf</tt><a class="headerlink" href="#ReacBase.Kf" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Forward rate constant, in concentration units</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.Kb"> -<tt class="descname">Kb</tt><a class="headerlink" href="#ReacBase.Kb" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reverse rate constant, in concentration units</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.numSubstrates"> -<tt class="descname">numSubstrates</tt><a class="headerlink" href="#ReacBase.numSubstrates" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of substrates of reaction</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ReacBase.numProducts"> -<tt class="descname">numProducts</tt><a class="headerlink" href="#ReacBase.numProducts" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of products of reaction</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Shell"> -<em class="property">class </em><tt class="descname">Shell</tt><a class="headerlink" href="#Shell" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Shell.setclock"> -<tt class="descname">setclock</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.setclock" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns clock ticks. Args: tick#, dt</p> -</dd></dl> - -<dl class="method"> -<dt id="Shell.create"> -<tt class="descname">create</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.create" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) create( class, parent, newElm, name, numData, isGlobal )</p> -</dd></dl> - -<dl class="method"> -<dt id="Shell.delete"> -<tt class="descname">delete</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.delete" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Destroys Element, all its messages, and all its children. Args: Id</p> -</dd></dl> - -<dl class="method"> -<dt id="Shell.copy"> -<tt class="descname">copy</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.copy" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) handleCopy( vector< Id > args, string newName, unsigned int nCopies, bool toGlobal, bool copyExtMsgs ): The vector< Id > has Id orig, Id newParent, Id newElm. This function copies an Element and all its children to a new parent. May also expand out the original into nCopies copies. Normally all messages within the copy tree are also copied. If the flag copyExtMsgs is true, then all msgs going out are also copied.</p> -</dd></dl> - -<dl class="method"> -<dt id="Shell.move"> -<tt class="descname">move</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.move" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) handleMove( Id orig, Id newParent ): moves an Element to a new parent</p> -</dd></dl> - -<dl class="method"> -<dt id="Shell.addMsg"> -<tt class="descname">addMsg</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.addMsg" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Makes a msg. Arguments are: msgtype, src object, src field, dest object, dest field</p> -</dd></dl> - -<dl class="method"> -<dt id="Shell.quit"> -<tt class="descname">quit</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.quit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Stops simulation running and quits the simulator</p> -</dd></dl> - -<dl class="method"> -<dt id="Shell.useClock"> -<tt class="descname">useClock</tt><big>(</big><big>)</big><a class="headerlink" href="#Shell.useClock" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Deals with assignment of path to a given clock. Arguments: path, field, tick number.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SingleMsg"> -<em class="property">class </em><tt class="descname">SingleMsg</tt><a class="headerlink" href="#SingleMsg" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="SingleMsg.setI1"> -<tt class="descname">setI1</tt><big>(</big><big>)</big><a class="headerlink" href="#SingleMsg.setI1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SingleMsg.getI1"> -<tt class="descname">getI1</tt><big>(</big><big>)</big><a class="headerlink" href="#SingleMsg.getI1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SingleMsg.setI2"> -<tt class="descname">setI2</tt><big>(</big><big>)</big><a class="headerlink" href="#SingleMsg.setI2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SingleMsg.getI2"> -<tt class="descname">getI2</tt><big>(</big><big>)</big><a class="headerlink" href="#SingleMsg.getI2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SingleMsg.i1"> -<tt class="descname">i1</tt><a class="headerlink" href="#SingleMsg.i1" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Index of source object.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SingleMsg.i2"> -<tt class="descname">i2</tt><a class="headerlink" href="#SingleMsg.i2" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Index of dest object.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SparseMsg"> -<em class="property">class </em><tt class="descname">SparseMsg</tt><a class="headerlink" href="#SparseMsg" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="SparseMsg.getNumRows"> -<tt class="descname">getNumRows</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.getNumRows" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.getNumColumns"> -<tt class="descname">getNumColumns</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.getNumColumns" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.getNumEntries"> -<tt class="descname">getNumEntries</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.getNumEntries" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.setProbability"> -<tt class="descname">setProbability</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.setProbability" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.getProbability"> -<tt class="descname">getProbability</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.getProbability" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.setSeed"> -<tt class="descname">setSeed</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.setSeed" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.getSeed"> -<tt class="descname">getSeed</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.getSeed" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.setRandomConnectivity"> -<tt class="descname">setRandomConnectivity</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.setRandomConnectivity" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns connectivity with specified probability and seed</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.setEntry"> -<tt class="descname">setEntry</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.setEntry" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns single row,column value</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.unsetEntry"> -<tt class="descname">unsetEntry</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.unsetEntry" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Clears single row,column entry</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.clear"> -<tt class="descname">clear</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.clear" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Clears out the entire matrix</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.transpose"> -<tt class="descname">transpose</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.transpose" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Transposes the sparse matrix</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.pairFill"> -<tt class="descname">pairFill</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.pairFill" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Fills entire matrix using pairs of (x,y) indices to indicate presence of a connection. If the target is a FieldElement itautomagically assigns FieldIndices.</p> -</dd></dl> - -<dl class="method"> -<dt id="SparseMsg.tripletFill"> -<tt class="descname">tripletFill</tt><big>(</big><big>)</big><a class="headerlink" href="#SparseMsg.tripletFill" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Fills entire matrix using triplets of (x,y,fieldIndex) to fully specify every connection in the sparse matrix.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SparseMsg.numRows"> -<tt class="descname">numRows</tt><a class="headerlink" href="#SparseMsg.numRows" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of rows in matrix.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SparseMsg.numColumns"> -<tt class="descname">numColumns</tt><a class="headerlink" href="#SparseMsg.numColumns" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of columns in matrix.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SparseMsg.numEntries"> -<tt class="descname">numEntries</tt><a class="headerlink" href="#SparseMsg.numEntries" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of Entries in matrix.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SparseMsg.probability"> -<tt class="descname">probability</tt><a class="headerlink" href="#SparseMsg.probability" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) connection probability for random connectivity.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SparseMsg.seed"> -<tt class="descname">seed</tt><a class="headerlink" href="#SparseMsg.seed" title="Permalink to this definition">¶</a></dt> -<dd><p>long (<em>value field</em>) Random number seed for generating probabilistic connectivity.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Species"> -<em class="property">class </em><tt class="descname">Species</tt><a class="headerlink" href="#Species" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Species.pool"> -<tt class="descname">pool</tt><a class="headerlink" href="#Species.pool" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Connects to pools of this Species type</p> -</dd></dl> - -<dl class="method"> -<dt id="Species.setMolWt"> -<tt class="descname">setMolWt</tt><big>(</big><big>)</big><a class="headerlink" href="#Species.setMolWt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Species.getMolWt"> -<tt class="descname">getMolWt</tt><big>(</big><big>)</big><a class="headerlink" href="#Species.getMolWt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Species.handleMolWtRequest"> -<tt class="descname">handleMolWtRequest</tt><big>(</big><big>)</big><a class="headerlink" href="#Species.handleMolWtRequest" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle requests for molWt.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Species.molWtOut"> -<tt class="descname">molWtOut</tt><a class="headerlink" href="#Species.molWtOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) returns molWt.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Species.molWt"> -<tt class="descname">molWt</tt><a class="headerlink" href="#Species.molWt" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Molecular weight of species</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SpikeGen"> -<em class="property">class </em><tt class="descname">SpikeGen</tt><a class="headerlink" href="#SpikeGen" title="Permalink to this definition">¶</a></dt> -<dd><p>SpikeGen object, for detecting threshold crossings.The threshold detection can work in multiple modes.</p> -<blockquote> -<div>If the refractT < 0.0, then it fires an event only at the rising edge of the input voltage waveform</div></blockquote> -<dl class="attribute"> -<dt id="SpikeGen.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#SpikeGen.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message to receive Process message from scheduler</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.Vm"> -<tt class="descname">Vm</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Vm message coming in from compartment</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.setThreshold"> -<tt class="descname">setThreshold</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.setThreshold" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.getThreshold"> -<tt class="descname">getThreshold</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.getThreshold" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.setRefractT"> -<tt class="descname">setRefractT</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.setRefractT" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.getRefractT"> -<tt class="descname">getRefractT</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.getRefractT" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.setAbs_refract"> -<tt class="descname">setAbs_refract</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.setAbs_refract" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.getAbs_refract"> -<tt class="descname">getAbs_refract</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.getAbs_refract" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.getHasFired"> -<tt class="descname">getHasFired</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.getHasFired" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.setEdgeTriggered"> -<tt class="descname">setEdgeTriggered</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.setEdgeTriggered" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpikeGen.getEdgeTriggered"> -<tt class="descname">getEdgeTriggered</tt><big>(</big><big>)</big><a class="headerlink" href="#SpikeGen.getEdgeTriggered" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SpikeGen.spikeOut"> -<tt class="descname">spikeOut</tt><a class="headerlink" href="#SpikeGen.spikeOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out a trigger for an event.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SpikeGen.threshold"> -<tt class="descname">threshold</tt><a class="headerlink" href="#SpikeGen.threshold" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Spiking threshold, must cross it going up</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SpikeGen.refractT"> -<tt class="descname">refractT</tt><a class="headerlink" href="#SpikeGen.refractT" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Refractory Time.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SpikeGen.abs_refract"> -<tt class="descname">abs_refract</tt><a class="headerlink" href="#SpikeGen.abs_refract" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Absolute refractory time. Synonym for refractT.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SpikeGen.hasFired"> -<tt class="descname">hasFired</tt><a class="headerlink" href="#SpikeGen.hasFired" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) True if SpikeGen has just fired</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SpikeGen.edgeTriggered"> -<tt class="descname">edgeTriggered</tt><a class="headerlink" href="#SpikeGen.edgeTriggered" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) When edgeTriggered = 0, the SpikeGen will fire an event in each timestep while incoming Vm is > threshold and at least abs_refracttime has passed since last event. This may be problematic if the incoming Vm remains above threshold for longer than abs_refract. Setting edgeTriggered to 1 resolves this as the SpikeGen generatesan event only on the rising edge of the incoming Vm and will remain idle unless the incoming Vm goes below threshold.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SpineMesh"> -<em class="property">class </em><tt class="descname">SpineMesh</tt><a class="headerlink" href="#SpineMesh" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="SpineMesh.getParentVoxel"> -<tt class="descname">getParentVoxel</tt><big>(</big><big>)</big><a class="headerlink" href="#SpineMesh.getParentVoxel" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SpineMesh.spineList"> -<tt class="descname">spineList</tt><big>(</big><big>)</big><a class="headerlink" href="#SpineMesh.spineList" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Specifies the list of electrical compartments for the spine,and the associated parent voxelArguments: cell container, shaft compartments, head compartments, parent voxel index</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SpineMesh.parentVoxel"> -<tt class="descname">parentVoxel</tt><a class="headerlink" href="#SpineMesh.parentVoxel" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Vector of indices of proximal voxels within this mesh.Spines are at present modeled with just one compartment,so each entry in this vector is always set to EMPTY == -1U</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Stats"> -<em class="property">class </em><tt class="descname">Stats</tt><a class="headerlink" href="#Stats" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Stats.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Stats.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="Stats.getMean"> -<tt class="descname">getMean</tt><big>(</big><big>)</big><a class="headerlink" href="#Stats.getMean" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stats.getSdev"> -<tt class="descname">getSdev</tt><big>(</big><big>)</big><a class="headerlink" href="#Stats.getSdev" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stats.getSum"> -<tt class="descname">getSum</tt><big>(</big><big>)</big><a class="headerlink" href="#Stats.getSum" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stats.getNum"> -<tt class="descname">getNum</tt><big>(</big><big>)</big><a class="headerlink" href="#Stats.getNum" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stats.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Stats.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="Stats.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Stats.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">process</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">reinit</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stats.mean"> -<tt class="descname">mean</tt><a class="headerlink" href="#Stats.mean" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Mean of all sampled values.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stats.sdev"> -<tt class="descname">sdev</tt><a class="headerlink" href="#Stats.sdev" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Standard Deviation of all sampled values.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stats.sum"> -<tt class="descname">sum</tt><a class="headerlink" href="#Stats.sum" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Sum of all sampled values.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stats.num"> -<tt class="descname">num</tt><a class="headerlink" href="#Stats.num" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of all sampled values.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SteadyState"> -<em class="property">class </em><tt class="descname">SteadyState</tt><a class="headerlink" href="#SteadyState" title="Permalink to this definition">¶</a></dt> -<dd><p>SteadyState: works out a steady-state value for a reaction system. It uses GSL heavily, and isn’t even compiled if the flag isn’t set. It finds the ss value closest to the initial conditions, defined by current molecular concentrations.If you want to find multiple stable states, use the MultiStable object,which operates a SteadyState object to find multiple states.If you want to carry out a dose-response calculation, use the DoseResponse object.If you want to follow a stable state in phase space, use the StateTrajectory object.</p> -<dl class="method"> -<dt id="SteadyState.setStoich"> -<tt class="descname">setStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.setStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getStoich"> -<tt class="descname">getStoich</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getStoich" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getBadStoichiometry"> -<tt class="descname">getBadStoichiometry</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getBadStoichiometry" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getIsInitialized"> -<tt class="descname">getIsInitialized</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getIsInitialized" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getNIter"> -<tt class="descname">getNIter</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getNIter" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getStatus"> -<tt class="descname">getStatus</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getStatus" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.setMaxIter"> -<tt class="descname">setMaxIter</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.setMaxIter" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getMaxIter"> -<tt class="descname">getMaxIter</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getMaxIter" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.setConvergenceCriterion"> -<tt class="descname">setConvergenceCriterion</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.setConvergenceCriterion" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getConvergenceCriterion"> -<tt class="descname">getConvergenceCriterion</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getConvergenceCriterion" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getNumVarPools"> -<tt class="descname">getNumVarPools</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getNumVarPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getRank"> -<tt class="descname">getRank</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getRank" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getStateType"> -<tt class="descname">getStateType</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getStateType" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getNNegEigenvalues"> -<tt class="descname">getNNegEigenvalues</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getNNegEigenvalues" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getNPosEigenvalues"> -<tt class="descname">getNPosEigenvalues</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getNPosEigenvalues" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getSolutionStatus"> -<tt class="descname">getSolutionStatus</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getSolutionStatus" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.setTotal"> -<tt class="descname">setTotal</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.setTotal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getTotal"> -<tt class="descname">getTotal</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getTotal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.getEigenvalues"> -<tt class="descname">getEigenvalues</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.getEigenvalues" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.setupMatrix"> -<tt class="descname">setupMatrix</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.setupMatrix" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) This function initializes and rebuilds the matrices used in the calculation.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.settle"> -<tt class="descname">settle</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.settle" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Finds the nearest steady state to the current initial conditions. This function rebuilds the entire calculation only if the object has not yet been initialized.</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.resettle"> -<tt class="descname">resettle</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.resettle" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Finds the nearest steady state to the current initial conditions. This function rebuilds the entire calculation</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.showMatrices"> -<tt class="descname">showMatrices</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.showMatrices" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Utility function to show the matrices derived for the calculations on the reaction system. Shows the Nr, gamma, and total matrices</p> -</dd></dl> - -<dl class="method"> -<dt id="SteadyState.randomInit"> -<tt class="descname">randomInit</tt><big>(</big><big>)</big><a class="headerlink" href="#SteadyState.randomInit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Generate random initial conditions consistent with the massconservation rules. Typically invoked in order to scanstates</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.stoich"> -<tt class="descname">stoich</tt><a class="headerlink" href="#SteadyState.stoich" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Specify the Id of the stoichiometry system to use</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.badStoichiometry"> -<tt class="descname">badStoichiometry</tt><a class="headerlink" href="#SteadyState.badStoichiometry" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Bool: True if there is a problem with the stoichiometry</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.isInitialized"> -<tt class="descname">isInitialized</tt><a class="headerlink" href="#SteadyState.isInitialized" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) True if the model has been initialized successfully</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.nIter"> -<tt class="descname">nIter</tt><a class="headerlink" href="#SteadyState.nIter" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of iterations done by steady state solver</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.status"> -<tt class="descname">status</tt><a class="headerlink" href="#SteadyState.status" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Status of solver</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.maxIter"> -<tt class="descname">maxIter</tt><a class="headerlink" href="#SteadyState.maxIter" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Max permissible number of iterations to try before giving up</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.convergenceCriterion"> -<tt class="descname">convergenceCriterion</tt><a class="headerlink" href="#SteadyState.convergenceCriterion" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Fractional accuracy required to accept convergence</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.numVarPools"> -<tt class="descname">numVarPools</tt><a class="headerlink" href="#SteadyState.numVarPools" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of variable molecules in reaction system.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.rank"> -<tt class="descname">rank</tt><a class="headerlink" href="#SteadyState.rank" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of independent molecules in reaction system</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.stateType"> -<tt class="descname">stateType</tt><a class="headerlink" href="#SteadyState.stateType" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) 0: stable; 1: unstable; 2: saddle; 3: osc?; 4: one near-zero eigenvalue; 5: other</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.nNegEigenvalues"> -<tt class="descname">nNegEigenvalues</tt><a class="headerlink" href="#SteadyState.nNegEigenvalues" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of negative eigenvalues: indicates type of solution</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.nPosEigenvalues"> -<tt class="descname">nPosEigenvalues</tt><a class="headerlink" href="#SteadyState.nPosEigenvalues" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of positive eigenvalues: indicates type of solution</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.solutionStatus"> -<tt class="descname">solutionStatus</tt><a class="headerlink" href="#SteadyState.solutionStatus" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) 0: Good; 1: Failed to find steady states; 2: Failed to find eigenvalues</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.total"> -<tt class="descname">total</tt><a class="headerlink" href="#SteadyState.total" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Totals table for conservation laws. The exact mapping ofthis to various sums of molecules is given by the conservation matrix, and is currently a bit opaque.The value of ‘total’ is set to initial conditions whenthe ‘SteadyState::settle’ function is called.Assigning values to the total is a special operation:it rescales the concentrations of all the affectedmolecules so that they are at the specified total.This happens the next time ‘settle’ is called.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SteadyState.eigenvalues"> -<tt class="descname">eigenvalues</tt><a class="headerlink" href="#SteadyState.eigenvalues" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Eigenvalues computed for steady state</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="StimulusTable"> -<em class="property">class </em><tt class="descname">StimulusTable</tt><a class="headerlink" href="#StimulusTable" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="StimulusTable.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#StimulusTable.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.setStartTime"> -<tt class="descname">setStartTime</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.setStartTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.getStartTime"> -<tt class="descname">getStartTime</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.getStartTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.setStopTime"> -<tt class="descname">setStopTime</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.setStopTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.getStopTime"> -<tt class="descname">getStopTime</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.getStopTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.setLoopTime"> -<tt class="descname">setLoopTime</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.setLoopTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.getLoopTime"> -<tt class="descname">getLoopTime</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.getLoopTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.setStepSize"> -<tt class="descname">setStepSize</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.setStepSize" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.getStepSize"> -<tt class="descname">getStepSize</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.getStepSize" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.setStepPosition"> -<tt class="descname">setStepPosition</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.setStepPosition" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.getStepPosition"> -<tt class="descname">getStepPosition</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.getStepPosition" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.setDoLoop"> -<tt class="descname">setDoLoop</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.setDoLoop" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.getDoLoop"> -<tt class="descname">getDoLoop</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.getDoLoop" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call, updates internal time stamp.</p> -</dd></dl> - -<dl class="method"> -<dt id="StimulusTable.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#StimulusTable.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="StimulusTable.output"> -<tt class="descname">output</tt><a class="headerlink" href="#StimulusTable.output" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out tabulated data according to lookup parameters.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="StimulusTable.startTime"> -<tt class="descname">startTime</tt><a class="headerlink" href="#StimulusTable.startTime" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Start time used when table is emitting values. For lookupvalues below this, the table just sends out its zero entry.Corresponds to zeroth entry of table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="StimulusTable.stopTime"> -<tt class="descname">stopTime</tt><a class="headerlink" href="#StimulusTable.stopTime" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Time to stop emitting values.If time exceeds this, then the table sends out its last entry.The stopTime corresponds to the last entry of table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="StimulusTable.loopTime"> -<tt class="descname">loopTime</tt><a class="headerlink" href="#StimulusTable.loopTime" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) If looping, this is the time between successive cycle starts.Defaults to the difference between stopTime and startTime, so that the output waveform cycles with precisely the same duration as the table contents.If larger than stopTime - startTime, then it pauses at the last table value till it is time to go around again.If smaller than stopTime - startTime, then it begins the next cycle even before the first one has reached the end of the table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="StimulusTable.stepSize"> -<tt class="descname">stepSize</tt><a class="headerlink" href="#StimulusTable.stepSize" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Increment in lookup (x) value on every timestep. If it isless than or equal to zero, the StimulusTable uses the current timeas the lookup value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="StimulusTable.stepPosition"> -<tt class="descname">stepPosition</tt><a class="headerlink" href="#StimulusTable.stepPosition" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Current value of lookup (x) value.If stepSize is less than or equal to zero, this is set tothe current time to use as the lookup value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="StimulusTable.doLoop"> -<tt class="descname">doLoop</tt><a class="headerlink" href="#StimulusTable.doLoop" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag: Should it loop around to startTime once it has reachedstopTime. Default (zero) is to do a single pass.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Stoich"> -<em class="property">class </em><tt class="descname">Stoich</tt><a class="headerlink" href="#Stoich" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="Stoich.setPath"> -<tt class="descname">setPath</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.setPath" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getPath"> -<tt class="descname">getPath</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getPath" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.setKsolve"> -<tt class="descname">setKsolve</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.setKsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getKsolve"> -<tt class="descname">getKsolve</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getKsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.setDsolve"> -<tt class="descname">setDsolve</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.setDsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getDsolve"> -<tt class="descname">getDsolve</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getDsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.setCompartment"> -<tt class="descname">setCompartment</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.setCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getCompartment"> -<tt class="descname">getCompartment</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getEstimatedDt"> -<tt class="descname">getEstimatedDt</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getEstimatedDt" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getNumVarPools"> -<tt class="descname">getNumVarPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getNumVarPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getNumAllPools"> -<tt class="descname">getNumAllPools</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getNumAllPools" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getPoolIdMap"> -<tt class="descname">getPoolIdMap</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getPoolIdMap" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getNumRates"> -<tt class="descname">getNumRates</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getNumRates" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getMatrixEntry"> -<tt class="descname">getMatrixEntry</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getMatrixEntry" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getColumnIndex"> -<tt class="descname">getColumnIndex</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getColumnIndex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.getRowStart"> -<tt class="descname">getRowStart</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.getRowStart" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Stoich.unzombify"> -<tt class="descname">unzombify</tt><big>(</big><big>)</big><a class="headerlink" href="#Stoich.unzombify" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Restore all zombies to their native state</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.path"> -<tt class="descname">path</tt><a class="headerlink" href="#Stoich.path" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) Wildcard path for reaction system handled by Stoich</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.ksolve"> -<tt class="descname">ksolve</tt><a class="headerlink" href="#Stoich.ksolve" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Id of Kinetic reaction solver class that works with this Stoich. Must be of class Ksolve, or Gsolve (at present) Must be assigned before the path is set.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.dsolve"> -<tt class="descname">dsolve</tt><a class="headerlink" href="#Stoich.dsolve" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Id of Diffusion solver class that works with this Stoich. Must be of class Dsolve If left unset then the system will be assumed to work in a non-diffusive, well-stirred cell. If it is going to be used it must be assigned before the path is set.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.compartment"> -<tt class="descname">compartment</tt><a class="headerlink" href="#Stoich.compartment" title="Permalink to this definition">¶</a></dt> -<dd><p>Id (<em>value field</em>) Id of chemical compartment class that works with this Stoich. Must be derived from class ChemCompt. If left unset then the system will be assumed to work in a non-diffusive, well-stirred cell. If it is going to be used it must be assigned before the path is set.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.estimatedDt"> -<tt class="descname">estimatedDt</tt><a class="headerlink" href="#Stoich.estimatedDt" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Estimated timestep for reac system based on Euler error</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.numVarPools"> -<tt class="descname">numVarPools</tt><a class="headerlink" href="#Stoich.numVarPools" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of time-varying pools to be computed by the numerical engine</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.numAllPools"> -<tt class="descname">numAllPools</tt><a class="headerlink" href="#Stoich.numAllPools" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Total number of pools handled by the numerical engine. This includes variable ones, buffered ones, and functions</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.poolIdMap"> -<tt class="descname">poolIdMap</tt><a class="headerlink" href="#Stoich.poolIdMap" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Map to look up the index of the pool from its Id.poolIndex = poolIdMap[ Id::value() - poolOffset ] where the poolOffset is the smallest Id::value. poolOffset is passed back as the last entry of this vector. Any Ids that are not pools return EMPTY=~0.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.numRates"> -<tt class="descname">numRates</tt><a class="headerlink" href="#Stoich.numRates" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Total number of rate terms in the reaction system.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.matrixEntry"> -<tt class="descname">matrixEntry</tt><a class="headerlink" href="#Stoich.matrixEntry" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<int> (<em>value field</em>) The non-zero matrix entries in the sparse matrix. Theircolumn indices are in a separate vector and the rowinformatino in a third</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.columnIndex"> -<tt class="descname">columnIndex</tt><a class="headerlink" href="#Stoich.columnIndex" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Column Index of each matrix entry</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Stoich.rowStart"> -<tt class="descname">rowStart</tt><a class="headerlink" href="#Stoich.rowStart" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<unsigned int> (<em>value field</em>) Row start for each block of entries and column indices</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SumFunc"> -<em class="property">class </em><tt class="descname">SumFunc</tt><a class="headerlink" href="#SumFunc" title="Permalink to this definition">¶</a></dt> -<dd><p>SumFunc object. Adds up all inputs</p> -</dd></dl> - -<dl class="class"> -<dt id="SymCompartment"> -<em class="property">class </em><tt class="descname">SymCompartment</tt><a class="headerlink" href="#SymCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>SymCompartment object, for branching neuron models. In symmetric</p> -<p>compartments the axial resistance is equally divided on two sides of</p> -<blockquote> -<div><p>you must use a fixed-width font like Courier for correct rendition of the diagrams below.]</p> -<blockquote> -<div><blockquote> -<div>Ra/2 B Ra/2</div></blockquote> -<p>A-///_____///– C</p> -<blockquote> -<div><blockquote> -<div><blockquote> -<div><blockquote> -<div><div class="line-block"> -<div class="line"><br /></div> -</div> -</div></blockquote> -<p>____|____</p> -</div></blockquote> -<div class="line-block"> -<div class="line"><a href="#id1"><span class="problematic" id="id2">|</span></a></div> -</div> -<div class="line-block"> -<div class="line"></div> -</div> -<div class="line-block"> -<div class="line">/ Rm</div> -</div> -</div></blockquote> -<p>—- Cm </p> -<p>—- /</p> -<blockquote> -<div><div class="line-block"> -<div class="line"><a href="#id3"><span class="problematic" id="id4">|</span></a></div> -</div> -<div class="line-block"> -<div class="line">_____</div> -</div> -<div class="line-block"> -<div class="line">— Em</div> -</div> -<p><a href="#id11"><span class="problematic" id="id12">|_________|</span></a></p> -<blockquote> -<div><blockquote> -<div><div class="line-block"> -<div class="line"><br /></div> -</div> -</div></blockquote> -<p>__|__</p> -</div></blockquote> -</div></blockquote> -</div></blockquote> -</div></blockquote> -</div></blockquote> -<p>In case of branching, the B-C part of the parent’s axial resistance</p> -<p>forms a Y with the A-B part of the children.</p> -<blockquote> -<div><blockquote> -<div><blockquote> -<div><p>B’</p> -<div class="line-block"> -<div class="line"><br /></div> -</div> -<p>/</p> -<p></p> -<p>/</p> -<p></p> -<p>/</p> -<p><a href="#id5"><span class="problematic" id="id6">|</span></a>A’</p> -</div></blockquote> -<p>B |</p> -</div></blockquote> -<p>A—–///—–///——<a href="#id7"><span class="problematic" id="id8">|</span></a>C</p> -<blockquote> -<div><div class="line-block"> -<div class="line"><br /></div> -</div> -<p><a href="#id9"><span class="problematic" id="id10">|</span></a>A”</p> -<p>/</p> -<p></p> -<p>/</p> -<p></p> -<p>/</p> -<div class="line-block"> -<div class="line"><br /></div> -</div> -<p>B”</p> -</div></blockquote> -</div></blockquote> -<p>As per basic circuit analysis techniques, the C node is replaced using</p> -<p>star-mesh transform. This requires all sibling compartments at a</p> -<p>branch point to be connected via ‘sibling’ messages by the user (or</p> -<p>by the cell reader in case of prototypes). For the same reason, the</p> -<p>child compartment must be connected to the parent by</p> -<p>distal-proximal message pair. The calculation of the</p> -<p>coefficient for computing equivalent resistances in the mesh is done</p> -<p>at reinit.</p> -<dl class="attribute"> -<dt id="SymCompartment.proximal"> -<tt class="descname">proximal</tt><a class="headerlink" href="#SymCompartment.proximal" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message between symmetric compartments.</p> -</dd></dl> - -</dd></dl> - -<p>It goes from the proximal end of the current compartment to -distal end of the compartment closer to the soma.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="distal"> -<tt class="descname">distal</tt><a class="headerlink" href="#distal" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message between symmetric compartments.</p> -</dd></dl> - -</div></blockquote> -<dl class="docutils"> -<dt>It goes from the distal end of the current compartment to the</dt> -<dd>proximal end of one further from the soma.</dd> -</dl> -<p>The Ra values collected from children and -sibling nodes are used for computing the equivalent resistance -between each pair of nodes using star-mesh transformation. -Mathematically this is the same as the proximal message, but -the distinction is important for traversal and clarity.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="sibling"> -<tt class="descname">sibling</tt><a class="headerlink" href="#sibling" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message between symmetric compartments.</p> -</dd></dl> - -</div></blockquote> -<p>Conceptually, this goes from the proximal end of the current -compartment to the proximal end of a sibling compartment -on a branch in a dendrite. However, -this works out to the same as a ‘distal’ message in terms of -equivalent circuit. The Ra values collected from siblings -and parent node are used for -computing the equivalent resistance between each pair of -nodes using star-mesh transformation.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="sphere"> -<tt class="descname">sphere</tt><a class="headerlink" href="#sphere" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message between a spherical compartment</p> -</dd></dl> - -</div></blockquote> -<p>(typically soma) and a number of evenly spaced cylindrical -compartments, typically primary dendrites. -The sphere contributes the usual Ra/2 to the resistance -between itself and children. The child compartments -do not connect across to each other -through sibling messages. Instead they just connect to the soma -through the ‘proximalOnly’ message</p> -<blockquote> -<div><dl class="attribute"> -<dt id="cylinder"> -<tt class="descname">cylinder</tt><a class="headerlink" href="#cylinder" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message between a cylindrical compartment</p> -</dd></dl> - -</div></blockquote> -<p>(typically a dendrite) and a number of evenly spaced child -compartments, typically dendritic spines, protruding from the -curved surface of the cylinder. We assume that the resistance -from the cylinder curved surface to its axis is negligible. -The child compartments do not need to connect across to each -other through sibling messages. Instead they just connect to the -parent dendrite through the ‘proximalOnly’ message</p> -<blockquote> -<div><dl class="attribute"> -<dt id="proximalOnly"> -<tt class="descname">proximalOnly</tt><a class="headerlink" href="#proximalOnly" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message between a dendrite and a parent</p> -</dd></dl> - -</div></blockquote> -<p>compartment whose offspring are spatially separated from each -other. For example, evenly spaced dendrites emerging from a soma -or spines emerging from a common parent dendrite. In these cases -the sibling dendrites do not need to connect to each other -through ‘sibling’ messages. Instead they just connect to the -parent compartment (soma or dendrite) through this message</p> -<blockquote> -<div><dl class="method"> -<dt id="raxialSym"> -<tt class="descname">raxialSym</tt><big>(</big><big>)</big><a class="headerlink" href="#raxialSym" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Expects Ra and Vm from other compartment.</p> -</dd></dl> - -<dl class="method"> -<dt id="sumRaxial"> -<tt class="descname">sumRaxial</tt><big>(</big><big>)</big><a class="headerlink" href="#sumRaxial" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Expects Ra from other compartment.</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">raxialSym</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Expects Ra and Vm from other compartment.</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">sumRaxial</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Expects Ra from other compartment.</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">raxialSym</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Expects Ra and Vm from other compartment.</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">sumRaxial</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Expects Ra from other compartment.</p> -</dd></dl> - -<dl class="method"> -<dt id="raxialSphere"> -<tt class="descname">raxialSphere</tt><big>(</big><big>)</big><a class="headerlink" href="#raxialSphere" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Expects Ra and Vm from other compartment. This is a special case when</p> -</dd></dl> - -</div></blockquote> -<p>other compartments are evenly distributed on a spherical compartment.</p> -<blockquote> -<div><dl class="method"> -<dt id="raxialCylinder"> -<tt class="descname">raxialCylinder</tt><big>(</big><big>)</big><a class="headerlink" href="#raxialCylinder" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Expects Ra and Vm from other compartment. This is a special case when</p> -</dd></dl> - -</div></blockquote> -<p>other compartments are evenly distributed on the curved surface of the cylindrical compartment, so we assume that the cylinder does not add any further resistance.</p> -<blockquote> -<div><dl class="method"> -<dt> -<tt class="descname">raxialSphere</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Expects Ra and Vm from other compartment. This is a special case when</p> -</dd></dl> - -</div></blockquote> -<p>other compartments are evenly distributed on a spherical compartment.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="proximalOut"> -<tt class="descname">proximalOut</tt><a class="headerlink" href="#proximalOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out Ra and Vm on each timestep, on the proximalend of a compartment. That is, this end should be pointed toward the soma. Mathematically the same as raxialOutbut provides a logical orientation of the dendrite.One can traverse proximalOut messages to get to the soma.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="sumRaxialOut"> -<tt class="descname">sumRaxialOut</tt><a class="headerlink" href="#sumRaxialOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out Ra</p> -</dd></dl> - -<dl class="attribute"> -<dt id="distalOut"> -<tt class="descname">distalOut</tt><a class="headerlink" href="#distalOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out Ra and Vm on each timestep, on the distal endof a compartment. This end should be pointed away from thesoma. Mathematically the same as proximalOut, but givesan orientation to the dendrite and helps traversal.</p> -</dd></dl> - -<dl class="attribute"> -<dt> -<tt class="descname">sumRaxialOut</tt></dt> -<dd><p>double (<em>source message field</em>) Sends out Ra</p> -</dd></dl> - -<dl class="attribute"> -<dt> -<tt class="descname">distalOut</tt></dt> -<dd><p>double,double (<em>source message field</em>) Sends out Ra and Vm on each timestep, on the distal endof a compartment. This end should be pointed away from thesoma. Mathematically the same as proximalOut, but givesan orientation to the dendrite and helps traversal.</p> -</dd></dl> - -<dl class="attribute"> -<dt> -<tt class="descname">sumRaxialOut</tt></dt> -<dd><p>double (<em>source message field</em>) Sends out Ra</p> -</dd></dl> - -<dl class="attribute"> -<dt> -<tt class="descname">distalOut</tt></dt> -<dd><p>double,double (<em>source message field</em>) Sends out Ra and Vm on each timestep, on the distal endof a compartment. This end should be pointed away from thesoma. Mathematically the same as proximalOut, but givesan orientation to the dendrite and helps traversal.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="cylinderOut"> -<tt class="descname">cylinderOut</tt><a class="headerlink" href="#cylinderOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends out Ra and Vm to compartments (typically spines) on thecurved surface of a cylinder. Ra is set to nearly zero,since we assume that the resistance from axis to surface isnegligible.</p> -</dd></dl> - -<dl class="attribute"> -<dt> -<tt class="descname">proximalOut</tt></dt> -<dd><p>double,double (<em>source message field</em>) Sends out Ra and Vm on each timestep, on the proximalend of a compartment. That is, this end should be pointed toward the soma. Mathematically the same as raxialOutbut provides a logical orientation of the dendrite.One can traverse proximalOut messages to get to the soma.</p> -</dd></dl> - -</div></blockquote> -<dl class="class"> -<dt id="SynChan"> -<em class="property">class </em><tt class="descname">SynChan</tt><a class="headerlink" href="#SynChan" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="SynChan.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#SynChan.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message to receive Process message from scheduler</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.setTau1"> -<tt class="descname">setTau1</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.setTau1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.getTau1"> -<tt class="descname">getTau1</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.getTau1" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.setTau2"> -<tt class="descname">setTau2</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.setTau2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.getTau2"> -<tt class="descname">getTau2</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.getTau2" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.setNormalizeWeights"> -<tt class="descname">setNormalizeWeights</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.setNormalizeWeights" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.getNormalizeWeights"> -<tt class="descname">getNormalizeWeights</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.getNormalizeWeights" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.activation"> -<tt class="descname">activation</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.activation" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Sometimes we want to continuously activate the channel</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChan.modulator"> -<tt class="descname">modulator</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChan.modulator" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Modulate channel response</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChan.tau1"> -<tt class="descname">tau1</tt><a class="headerlink" href="#SynChan.tau1" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Decay time constant for the synaptic conductance, tau1 >= tau2.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChan.tau2"> -<tt class="descname">tau2</tt><a class="headerlink" href="#SynChan.tau2" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Rise time constant for the synaptic conductance, tau1 >= tau2.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChan.normalizeWeights"> -<tt class="descname">normalizeWeights</tt><a class="headerlink" href="#SynChan.normalizeWeights" title="Permalink to this definition">¶</a></dt> -<dd><p>bool (<em>value field</em>) Flag. If true, the overall conductance is normalized by the number of individual synapses in this SynChan object.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SynChanBase"> -<em class="property">class </em><tt class="descname">SynChanBase</tt><a class="headerlink" href="#SynChanBase" title="Permalink to this definition">¶</a></dt> -<dd><p>SynChanBase: Base class for assorted ion channels.Presents a common interface for all of them.</p> -<dl class="attribute"> -<dt id="SynChanBase.channel"> -<tt class="descname">channel</tt><a class="headerlink" href="#SynChanBase.channel" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to couple channel to compartment. The first entry is a MsgSrc to send Gk and Ek to the compartment The second entry is a MsgDest for Vm from the compartment.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.ghk"> -<tt class="descname">ghk</tt><a class="headerlink" href="#SynChanBase.ghk" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Message to Goldman-Hodgkin-Katz object</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.Vm"> -<tt class="descname">Vm</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.Vm" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles Vm message coming in from compartment</p> -</dd></dl> - -<dl class="method"> -<dt> -<tt class="descname">Vm</tt><big>(</big><big>)</big></dt> -<dd><p>(<em>destination message field</em>) Handles Vm message coming in from compartment</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.setGbar"> -<tt class="descname">setGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.setGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.getGbar"> -<tt class="descname">getGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.getGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.setEk"> -<tt class="descname">setEk</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.setEk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.getEk"> -<tt class="descname">getEk</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.getEk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.setGk"> -<tt class="descname">setGk</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.setGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.getGk"> -<tt class="descname">getGk</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.getGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.getIk"> -<tt class="descname">getIk</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.getIk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.setBufferTime"> -<tt class="descname">setBufferTime</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.setBufferTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynChanBase.getBufferTime"> -<tt class="descname">getBufferTime</tt><big>(</big><big>)</big><a class="headerlink" href="#SynChanBase.getBufferTime" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.channelOut"> -<tt class="descname">channelOut</tt><a class="headerlink" href="#SynChanBase.channelOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>source message field</em>) Sends channel variables Gk and Ek to compartment</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.permeabilityOut"> -<tt class="descname">permeabilityOut</tt><a class="headerlink" href="#SynChanBase.permeabilityOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Conductance term going out to GHK object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.IkOut"> -<tt class="descname">IkOut</tt><a class="headerlink" href="#SynChanBase.IkOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Channel current. This message typically goes to concenobjects that keep track of ion concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.Gbar"> -<tt class="descname">Gbar</tt><a class="headerlink" href="#SynChanBase.Gbar" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximal channel conductance</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.Ek"> -<tt class="descname">Ek</tt><a class="headerlink" href="#SynChanBase.Ek" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reversal potential of channel</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.Gk"> -<tt class="descname">Gk</tt><a class="headerlink" href="#SynChanBase.Gk" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Channel conductance variable</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.Ik"> -<tt class="descname">Ik</tt><a class="headerlink" href="#SynChanBase.Ik" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Channel current variable</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynChanBase.bufferTime"> -<tt class="descname">bufferTime</tt><a class="headerlink" href="#SynChanBase.bufferTime" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Duration of spike buffer.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="SynHandler"> -<em class="property">class </em><tt class="descname">SynHandler</tt><a class="headerlink" href="#SynHandler" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="SynHandler.setNumSynapses"> -<tt class="descname">setNumSynapses</tt><big>(</big><big>)</big><a class="headerlink" href="#SynHandler.setNumSynapses" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynHandler.getNumSynapses"> -<tt class="descname">getNumSynapses</tt><big>(</big><big>)</big><a class="headerlink" href="#SynHandler.getNumSynapses" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynHandler.setNumSynapse"> -<tt class="descname">setNumSynapse</tt><big>(</big><big>)</big><a class="headerlink" href="#SynHandler.setNumSynapse" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="SynHandler.getNumSynapse"> -<tt class="descname">getNumSynapse</tt><big>(</big><big>)</big><a class="headerlink" href="#SynHandler.getNumSynapse" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="SynHandler.numSynapses"> -<tt class="descname">numSynapses</tt><a class="headerlink" href="#SynHandler.numSynapses" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of synapses on SynHandler. Duplicate field for num_synapse</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Synapse"> -<em class="property">class </em><tt class="descname">Synapse</tt><a class="headerlink" href="#Synapse" title="Permalink to this definition">¶</a></dt> -<dd><p>Synapse using ring buffer for events.</p> -<dl class="method"> -<dt id="Synapse.setWeight"> -<tt class="descname">setWeight</tt><big>(</big><big>)</big><a class="headerlink" href="#Synapse.setWeight" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Synapse.getWeight"> -<tt class="descname">getWeight</tt><big>(</big><big>)</big><a class="headerlink" href="#Synapse.getWeight" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Synapse.setDelay"> -<tt class="descname">setDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#Synapse.setDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Synapse.getDelay"> -<tt class="descname">getDelay</tt><big>(</big><big>)</big><a class="headerlink" href="#Synapse.getDelay" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Synapse.addSpike"> -<tt class="descname">addSpike</tt><big>(</big><big>)</big><a class="headerlink" href="#Synapse.addSpike" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles arriving spike messages, inserts into event queue.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Synapse.weight"> -<tt class="descname">weight</tt><a class="headerlink" href="#Synapse.weight" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Synaptic weight</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Synapse.delay"> -<tt class="descname">delay</tt><a class="headerlink" href="#Synapse.delay" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Axonal propagation delay to this synapse</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="Table"> -<em class="property">class </em><tt class="descname">Table</tt><a class="headerlink" href="#Table" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="Table.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#Table.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="Table.setThreshold"> -<tt class="descname">setThreshold</tt><big>(</big><big>)</big><a class="headerlink" href="#Table.setThreshold" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Table.getThreshold"> -<tt class="descname">getThreshold</tt><big>(</big><big>)</big><a class="headerlink" href="#Table.getThreshold" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Table.input"> -<tt class="descname">input</tt><big>(</big><big>)</big><a class="headerlink" href="#Table.input" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Fills data into table. Also handles data sent back following request</p> -</dd></dl> - -<dl class="method"> -<dt id="Table.spike"> -<tt class="descname">spike</tt><big>(</big><big>)</big><a class="headerlink" href="#Table.spike" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Fills spike timings into the Table. Signal has to exceed thresh</p> -</dd></dl> - -<dl class="method"> -<dt id="Table.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#Table.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call, updates internal time stamp.</p> -</dd></dl> - -<dl class="method"> -<dt id="Table.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#Table.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Table.requestOut"> -<tt class="descname">requestOut</tt><a class="headerlink" href="#Table.requestOut" title="Permalink to this definition">¶</a></dt> -<dd><p>Pd (<em>source message field</em>) Sends request for a field to target object</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Table.threshold"> -<tt class="descname">threshold</tt><a class="headerlink" href="#Table.threshold" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) threshold used when Table acts as a buffer for spikes</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="TableBase"> -<em class="property">class </em><tt class="descname">TableBase</tt><a class="headerlink" href="#TableBase" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="TableBase.setVector"> -<tt class="descname">setVector</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.setVector" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.getVector"> -<tt class="descname">getVector</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.getVector" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.getOutputValue"> -<tt class="descname">getOutputValue</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.getOutputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.getSize"> -<tt class="descname">getSize</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.getSize" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.linearTransform"> -<tt class="descname">linearTransform</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.linearTransform" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Linearly scales and offsets data. Scale first, then offset.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.xplot"> -<tt class="descname">xplot</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.xplot" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Dumps table contents to xplot-format file. Argument 1 is filename, argument 2 is plotname</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.plainPlot"> -<tt class="descname">plainPlot</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.plainPlot" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Dumps table contents to single-column ascii file. Uses scientific notation. Argument 1 is filename</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.loadCSV"> -<tt class="descname">loadCSV</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.loadCSV" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Reads a single column from a CSV file. Arguments: filename, column#, starting row#, separator</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.loadXplot"> -<tt class="descname">loadXplot</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.loadXplot" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Reads a single plot from an xplot file. Arguments: filename, plotnameWhen the file has 2 columns, the 2nd column is loaded.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.loadXplotRange"> -<tt class="descname">loadXplotRange</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.loadXplotRange" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Reads a single plot from an xplot file, and selects a subset of points from it. Arguments: filename, plotname, startindex, endindexUses C convention: startindex included, endindex not included.When the file has 2 columns, the 2nd column is loaded.</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.compareXplot"> -<tt class="descname">compareXplot</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.compareXplot" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Reads a plot from an xplot file and compares with contents of TableBase.Result is put in ‘output’ field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: filename, plotname, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.compareVec"> -<tt class="descname">compareVec</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.compareVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Compares contents of TableBase with a vector of doubles.Result is put in ‘output’ field of table.If the comparison fails (e.g., due to zero entries), the return value is -1.Arguments: Other vector, comparison_operationOperations: rmsd (for RMSDifference), rmsr (RMSratio ), dotp (Dot product, not yet implemented).</p> -</dd></dl> - -<dl class="method"> -<dt id="TableBase.clearVec"> -<tt class="descname">clearVec</tt><big>(</big><big>)</big><a class="headerlink" href="#TableBase.clearVec" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles request to clear the data vector</p> -</dd></dl> - -<dl class="attribute"> -<dt id="TableBase.vector"> -<tt class="descname">vector</tt><a class="headerlink" href="#TableBase.vector" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) vector with all table entries</p> -</dd></dl> - -<dl class="attribute"> -<dt id="TableBase.outputValue"> -<tt class="descname">outputValue</tt><a class="headerlink" href="#TableBase.outputValue" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Output value holding current table entry or output of a calculation</p> -</dd></dl> - -<dl class="attribute"> -<dt id="TableBase.size"> -<tt class="descname">size</tt><a class="headerlink" href="#TableBase.size" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) size of table. Note that this is the number of x divisions +1since it must represent the largest value as well as thesmallest</p> -</dd></dl> - -<dl class="attribute"> -<dt id="TableBase.y"> -<tt class="descname">y</tt><a class="headerlink" href="#TableBase.y" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Value of table at specified index</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="TimeTable"> -<em class="property">class </em><tt class="descname">TimeTable</tt><a class="headerlink" href="#TimeTable" title="Permalink to this definition">¶</a></dt> -<dd><p>TimeTable: Read in spike times from file and send out eventOut messages</p> -<p>at the specified times.</p> -<dl class="attribute"> -<dt id="TimeTable.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#TimeTable.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message for process and reinit</p> -</dd></dl> - -<dl class="method"> -<dt id="TimeTable.setFilename"> -<tt class="descname">setFilename</tt><big>(</big><big>)</big><a class="headerlink" href="#TimeTable.setFilename" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TimeTable.getFilename"> -<tt class="descname">getFilename</tt><big>(</big><big>)</big><a class="headerlink" href="#TimeTable.getFilename" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TimeTable.setMethod"> -<tt class="descname">setMethod</tt><big>(</big><big>)</big><a class="headerlink" href="#TimeTable.setMethod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TimeTable.getMethod"> -<tt class="descname">getMethod</tt><big>(</big><big>)</big><a class="headerlink" href="#TimeTable.getMethod" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TimeTable.getState"> -<tt class="descname">getState</tt><big>(</big><big>)</big><a class="headerlink" href="#TimeTable.getState" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="TimeTable.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#TimeTable.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handle process call</p> -</dd></dl> - -<dl class="method"> -<dt id="TimeTable.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#TimeTable.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="TimeTable.eventOut"> -<tt class="descname">eventOut</tt><a class="headerlink" href="#TimeTable.eventOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out spike time if it falls in current timestep.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="TimeTable.filename"> -<tt class="descname">filename</tt><a class="headerlink" href="#TimeTable.filename" title="Permalink to this definition">¶</a></dt> -<dd><p>string (<em>value field</em>) File to read lookup data from. The file should be contain two columns</p> -</dd></dl> - -</dd></dl> - -<p>separated by any space character.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="method"> -<tt class="descname">method</tt><a class="headerlink" href="#method" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Method to use for filling up the entries. Currently only method 4</p> -</dd></dl> - -</div></blockquote> -<p>(loading from file) is supported.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="state"> -<tt class="descname">state</tt><a class="headerlink" href="#state" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Current state of the time table.</p> -</dd></dl> - -</div></blockquote> -<dl class="class"> -<dt id="Unsigned"> -<em class="property">class </em><tt class="descname">Unsigned</tt><a class="headerlink" href="#Unsigned" title="Permalink to this definition">¶</a></dt> -<dd><p>Variable for storing values.</p> -<dl class="method"> -<dt id="Unsigned.setValue"> -<tt class="descname">setValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Unsigned.setValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="Unsigned.getValue"> -<tt class="descname">getValue</tt><big>(</big><big>)</big><a class="headerlink" href="#Unsigned.getValue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="Unsigned.value"> -<tt class="descname">value</tt><a class="headerlink" href="#Unsigned.value" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned long (<em>value field</em>) Variable value</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="VClamp"> -<em class="property">class </em><tt class="descname">VClamp</tt><a class="headerlink" href="#VClamp" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><p>Voltage clamp object for holding neuronal compartments at a specific voltage. This implementation uses a builtin RC circuit to filter the</p> -<p>command input and then use a PID to bring the sensed voltage (Vm from</p> -<p>compartment) to the filtered command potential.</p> -<blockquote> -<div>Connect the <cite>currentOut</cite> source of VClamp to <cite>injectMsg</cite></div></blockquote> -<p>dest of Compartment. Connect the <cite>VmOut</cite> source of Compartment to</p> -<p><cite>set_sensed</cite> dest of VClamp. Either set <cite>command</cite> field to a</p> -<p>fixed value, or connect an appropriate source of command potential</p> -<p>(like the <cite>outputOut</cite> message of an appropriately configured</p> -<p>PulseGen) to <cite>set_command</cite> dest.</p> -<blockquote> -<div>The default settings for the RC filter and PID controller should be</div></blockquote> -<p>time constant of RC filter, tau = 5 * dt</p> -<p>proportional gain of PID, gain = Cm/dt where Cm is the membrane</p> -<blockquote> -<div>capacitance of the compartment</div></blockquote> -<p>integration time of PID, ti = dt</p> -<p>derivative time of PID, td = 0</p> -<dl class="attribute"> -<dt id="VClamp.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#VClamp.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message to receive Process messages from the scheduler</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getCommand"> -<tt class="descname">getCommand</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getCommand" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getCurrent"> -<tt class="descname">getCurrent</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getCurrent" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getSensed"> -<tt class="descname">getSensed</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getSensed" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.setMode"> -<tt class="descname">setMode</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.setMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getMode"> -<tt class="descname">getMode</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getMode" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.setTi"> -<tt class="descname">setTi</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.setTi" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getTi"> -<tt class="descname">getTi</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getTi" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.setTd"> -<tt class="descname">setTd</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.setTd" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getTd"> -<tt class="descname">getTd</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getTd" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.setTau"> -<tt class="descname">setTau</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.setTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getTau"> -<tt class="descname">getTau</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.setGain"> -<tt class="descname">setGain</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.setGain" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.getGain"> -<tt class="descname">getGain</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.getGain" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.sensedIn"> -<tt class="descname">sensedIn</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.sensedIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) The <cite>VmOut</cite> message of the Compartment object should be connected</p> -</dd></dl> - -</div></blockquote> -<p>here.</p> -<blockquote> -<div><dl class="method"> -<dt id="VClamp.commandIn"> -<tt class="descname">commandIn</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.commandIn" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) The command voltage source should be connected to this.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘process’ call on each time step.</p> -</dd></dl> - -<dl class="method"> -<dt id="VClamp.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#VClamp.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles ‘reinit’ call</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VClamp.currentOut"> -<tt class="descname">currentOut</tt><a class="headerlink" href="#VClamp.currentOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Sends out current output of the clamping circuit. This should be connected to the <cite>injectMsg</cite> field of a compartment to voltage clamp it.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VClamp.command"> -<tt class="descname">command</tt><a class="headerlink" href="#VClamp.command" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Command input received by the clamp circuit.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VClamp.current"> -<tt class="descname">current</tt><a class="headerlink" href="#VClamp.current" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) The amount of current injected by the clamp into the membrane.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VClamp.sensed"> -<tt class="descname">sensed</tt><a class="headerlink" href="#VClamp.sensed" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Membrane potential read from compartment.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VClamp.mode"> -<tt class="descname">mode</tt><a class="headerlink" href="#VClamp.mode" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Working mode of the PID controller.</p> -</dd></dl> - -</div></blockquote> -</dd></dl> - -<dl class="docutils"> -<dt>mode = 0, standard PID with proportional, integral and derivative</dt> -<dd>all acting on the error.</dd> -</dl> -<p>mode = 1, derivative action based on command input -mode = 2, proportional action and derivative action are based on -command input.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="ti"> -<tt class="descname">ti</tt><a class="headerlink" href="#ti" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Integration time of the PID controller. Defaults to 1e9, i.e. integral</p> -</dd></dl> - -</div></blockquote> -<p>action is negligibly small.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="td"> -<tt class="descname">td</tt><a class="headerlink" href="#td" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Derivative time of the PID controller. This defaults to 0,</p> -</dd></dl> - -</div></blockquote> -<p>i.e. derivative action is unused.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="tau"> -<tt class="descname">tau</tt><a class="headerlink" href="#tau" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Time constant of the lowpass filter at input of the PID</p> -</dd></dl> - -</div></blockquote> -<p>controller. This smooths out abrupt changes in the input. Set it to -5 * dt or more to avoid overshoots.</p> -<blockquote> -<div><dl class="attribute"> -<dt id="gain"> -<tt class="descname">gain</tt><a class="headerlink" href="#gain" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Proportional gain of the PID controller.</p> -</dd></dl> - -</div></blockquote> -<dl class="class"> -<dt id="VectorTable"> -<em class="property">class </em><tt class="descname">VectorTable</tt><a class="headerlink" href="#VectorTable" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="VectorTable.setXdivs"> -<tt class="descname">setXdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.setXdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.getXdivs"> -<tt class="descname">getXdivs</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.getXdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.setXmin"> -<tt class="descname">setXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.setXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.getXmin"> -<tt class="descname">getXmin</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.getXmin" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.setXmax"> -<tt class="descname">setXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.setXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.getXmax"> -<tt class="descname">getXmax</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.getXmax" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.getInvdx"> -<tt class="descname">getInvdx</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.getInvdx" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.setTable"> -<tt class="descname">setTable</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.setTable" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.getTable"> -<tt class="descname">getTable</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.getTable" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.getLookupvalue"> -<tt class="descname">getLookupvalue</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.getLookupvalue" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="VectorTable.getLookupindex"> -<tt class="descname">getLookupindex</tt><big>(</big><big>)</big><a class="headerlink" href="#VectorTable.getLookupindex" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VectorTable.xdivs"> -<tt class="descname">xdivs</tt><a class="headerlink" href="#VectorTable.xdivs" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int (<em>value field</em>) Number of divisions.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VectorTable.xmin"> -<tt class="descname">xmin</tt><a class="headerlink" href="#VectorTable.xmin" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Minimum value in table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VectorTable.xmax"> -<tt class="descname">xmax</tt><a class="headerlink" href="#VectorTable.xmax" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum value in table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VectorTable.invdx"> -<tt class="descname">invdx</tt><a class="headerlink" href="#VectorTable.invdx" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximum value in table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VectorTable.table"> -<tt class="descname">table</tt><a class="headerlink" href="#VectorTable.table" title="Permalink to this definition">¶</a></dt> -<dd><p>vector<double> (<em>value field</em>) The lookup table.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VectorTable.lookupvalue"> -<tt class="descname">lookupvalue</tt><a class="headerlink" href="#VectorTable.lookupvalue" title="Permalink to this definition">¶</a></dt> -<dd><p>double,double (<em>lookup field</em>) Lookup function that performs interpolation to return a value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="VectorTable.lookupindex"> -<tt class="descname">lookupindex</tt><a class="headerlink" href="#VectorTable.lookupindex" title="Permalink to this definition">¶</a></dt> -<dd><p>unsigned int,double (<em>lookup field</em>) Lookup function that returns value by index.</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="ZombieBufPool"> -<em class="property">class </em><tt class="descname">ZombieBufPool</tt><a class="headerlink" href="#ZombieBufPool" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="ZombieCaConc"> -<em class="property">class </em><tt class="descname">ZombieCaConc</tt><a class="headerlink" href="#ZombieCaConc" title="Permalink to this definition">¶</a></dt> -<dd><dl class="attribute"> -<dt id="ZombieCaConc.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#ZombieCaConc.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) Shared message to receive Process message from scheduler</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setCa"> -<tt class="descname">setCa</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setCa" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getCa"> -<tt class="descname">getCa</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getCa" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setCaBasal"> -<tt class="descname">setCaBasal</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setCaBasal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getCaBasal"> -<tt class="descname">getCaBasal</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getCaBasal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setCa_base"> -<tt class="descname">setCa_base</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setCa_base" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getCa_base"> -<tt class="descname">getCa_base</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getCa_base" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setTau"> -<tt class="descname">setTau</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getTau"> -<tt class="descname">getTau</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getTau" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setB"> -<tt class="descname">setB</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getB"> -<tt class="descname">getB</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getB" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setThick"> -<tt class="descname">setThick</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setThick" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getThick"> -<tt class="descname">getThick</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getThick" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setCeiling"> -<tt class="descname">setCeiling</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setCeiling" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getCeiling"> -<tt class="descname">getCeiling</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getCeiling" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.setFloor"> -<tt class="descname">setFloor</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.setFloor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.getFloor"> -<tt class="descname">getFloor</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.getFloor" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.current"> -<tt class="descname">current</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.current" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Calcium Ion current, due to be converted to conc.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.currentFraction"> -<tt class="descname">currentFraction</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.currentFraction" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Fraction of total Ion current, that is carried by Ca2+.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.increase"> -<tt class="descname">increase</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.increase" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Any input current that increases the concentration.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.decrease"> -<tt class="descname">decrease</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.decrease" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Any input current that decreases the concentration.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieCaConc.basal"> -<tt class="descname">basal</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieCaConc.basal" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Synonym for assignment of basal conc.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.concOut"> -<tt class="descname">concOut</tt><a class="headerlink" href="#ZombieCaConc.concOut" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>source message field</em>) Concentration of Ca in pool</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.Ca"> -<tt class="descname">Ca</tt><a class="headerlink" href="#ZombieCaConc.Ca" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Calcium concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.CaBasal"> -<tt class="descname">CaBasal</tt><a class="headerlink" href="#ZombieCaConc.CaBasal" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Basal Calcium concentration.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.Ca_base"> -<tt class="descname">Ca_base</tt><a class="headerlink" href="#ZombieCaConc.Ca_base" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Basal Calcium concentration, synonym for CaBasal</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.tau"> -<tt class="descname">tau</tt><a class="headerlink" href="#ZombieCaConc.tau" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Settling time for Ca concentration</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.B"> -<tt class="descname">B</tt><a class="headerlink" href="#ZombieCaConc.B" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Volume scaling factor</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.thick"> -<tt class="descname">thick</tt><a class="headerlink" href="#ZombieCaConc.thick" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Thickness of Ca shell.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.ceiling"> -<tt class="descname">ceiling</tt><a class="headerlink" href="#ZombieCaConc.ceiling" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Ceiling value for Ca concentration. If Ca > ceiling, Ca = ceiling. If ceiling <= 0.0, there is no upper limit on Ca concentration value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieCaConc.floor"> -<tt class="descname">floor</tt><a class="headerlink" href="#ZombieCaConc.floor" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Floor value for Ca concentration. If Ca < floor, Ca = floor</p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="ZombieCompartment"> -<em class="property">class </em><tt class="descname">ZombieCompartment</tt><a class="headerlink" href="#ZombieCompartment" title="Permalink to this definition">¶</a></dt> -<dd><p>Compartment object, for branching neuron models.</p> -</dd></dl> - -<dl class="class"> -<dt id="ZombieEnz"> -<em class="property">class </em><tt class="descname">ZombieEnz</tt><a class="headerlink" href="#ZombieEnz" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="ZombieFuncPool"> -<em class="property">class </em><tt class="descname">ZombieFuncPool</tt><a class="headerlink" href="#ZombieFuncPool" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="ZombieFuncPool.input"> -<tt class="descname">input</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieFuncPool.input" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles input to control value of <a href="#id25"><span class="problematic" id="id26">n_</span></a></p> -</dd></dl> - -</dd></dl> - -<dl class="class"> -<dt id="ZombieHHChannel"> -<em class="property">class </em><tt class="descname">ZombieHHChannel</tt><a class="headerlink" href="#ZombieHHChannel" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><dl class="attribute"> -<dt id="ZombieHHChannel.proc"> -<tt class="descname">proc</tt><a class="headerlink" href="#ZombieHHChannel.proc" title="Permalink to this definition">¶</a></dt> -<dd><p>void (<em>shared message field</em>) This is a shared message to receive Process message from thescheduler. The first entry is a MsgDest for the Process operation. It has a single argument, ProcInfo, which holds lots of information about current time, thread, dt andso on.</p> -</dd></dl> - -</div></blockquote> -<p>The second entry is a MsgDest for the Reinit operation. It also uses ProcInfo.</p> -<blockquote> -<div><dl class="method"> -<dt id="ZombieHHChannel.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles process call</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.reinit"> -<tt class="descname">reinit</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.reinit" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Handles reinit call</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setGbar"> -<tt class="descname">setGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getGbar"> -<tt class="descname">getGbar</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getGbar" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setEk"> -<tt class="descname">setEk</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setEk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getEk"> -<tt class="descname">getEk</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getEk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setGk"> -<tt class="descname">setGk</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getGk"> -<tt class="descname">getGk</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getGk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getIk"> -<tt class="descname">getIk</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getIk" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setXpower"> -<tt class="descname">setXpower</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setXpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getXpower"> -<tt class="descname">getXpower</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getXpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setYpower"> -<tt class="descname">setYpower</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setYpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getYpower"> -<tt class="descname">getYpower</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getYpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setZpower"> -<tt class="descname">setZpower</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setZpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getZpower"> -<tt class="descname">getZpower</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getZpower" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setInstant"> -<tt class="descname">setInstant</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setInstant" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getInstant"> -<tt class="descname">getInstant</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getInstant" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setX"> -<tt class="descname">setX</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getX"> -<tt class="descname">getX</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setY"> -<tt class="descname">setY</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getY"> -<tt class="descname">getY</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setZ"> -<tt class="descname">setZ</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getZ"> -<tt class="descname">getZ</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setUseConcentration"> -<tt class="descname">setUseConcentration</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setUseConcentration" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns field value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getUseConcentration"> -<tt class="descname">getUseConcentration</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getUseConcentration" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests field value. The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.concen"> -<tt class="descname">concen</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.concen" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Incoming message from Concen object to specific conc to usein the Z gate calculations</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.createGate"> -<tt class="descname">createGate</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.createGate" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Function to create specified gate.Argument: Gate type [X Y Z]</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setNumGateX"> -<tt class="descname">setNumGateX</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setNumGateX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getNumGateX"> -<tt class="descname">getNumGateX</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getNumGateX" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setNumGateY"> -<tt class="descname">setNumGateY</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setNumGateY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getNumGateY"> -<tt class="descname">getNumGateY</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getNumGateY" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.setNumGateZ"> -<tt class="descname">setNumGateZ</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.setNumGateZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Assigns number of field entries in field array.</p> -</dd></dl> - -<dl class="method"> -<dt id="ZombieHHChannel.getNumGateZ"> -<tt class="descname">getNumGateZ</tt><big>(</big><big>)</big><a class="headerlink" href="#ZombieHHChannel.getNumGateZ" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) Requests number of field entries in field array.The requesting Element must provide a handler for the returned value.</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Gbar"> -<tt class="descname">Gbar</tt><a class="headerlink" href="#ZombieHHChannel.Gbar" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Maximal channel conductance</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Ek"> -<tt class="descname">Ek</tt><a class="headerlink" href="#ZombieHHChannel.Ek" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Reversal potential of channel</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Gk"> -<tt class="descname">Gk</tt><a class="headerlink" href="#ZombieHHChannel.Gk" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Channel conductance variable</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Ik"> -<tt class="descname">Ik</tt><a class="headerlink" href="#ZombieHHChannel.Ik" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Channel current variable</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Xpower"> -<tt class="descname">Xpower</tt><a class="headerlink" href="#ZombieHHChannel.Xpower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for X gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Ypower"> -<tt class="descname">Ypower</tt><a class="headerlink" href="#ZombieHHChannel.Ypower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Zpower"> -<tt class="descname">Zpower</tt><a class="headerlink" href="#ZombieHHChannel.Zpower" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) Power for Z gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.instant"> -<tt class="descname">instant</tt><a class="headerlink" href="#ZombieHHChannel.instant" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Bitmapped flag: bit 0 = Xgate, bit 1 = Ygate, bit 2 = ZgateWhen true, specifies that the lookup table value should beused directly as the state of the channel, rather than usedas a rate term for numerical integration for the state</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.X"> -<tt class="descname">X</tt><a class="headerlink" href="#ZombieHHChannel.X" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for X gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Y"> -<tt class="descname">Y</tt><a class="headerlink" href="#ZombieHHChannel.Y" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.Z"> -<tt class="descname">Z</tt><a class="headerlink" href="#ZombieHHChannel.Z" title="Permalink to this definition">¶</a></dt> -<dd><p>double (<em>value field</em>) State variable for Y gate</p> -</dd></dl> - -<dl class="attribute"> -<dt id="ZombieHHChannel.useConcentration"> -<tt class="descname">useConcentration</tt><a class="headerlink" href="#ZombieHHChannel.useConcentration" title="Permalink to this definition">¶</a></dt> -<dd><p>int (<em>value field</em>) Flag: when true, use concentration message rather than Vm tocontrol Z gate</p> -</dd></dl> - -</div></blockquote> -</dd></dl> - -<dl class="class"> -<dt id="ZombieMMenz"> -<em class="property">class </em><tt class="descname">ZombieMMenz</tt><a class="headerlink" href="#ZombieMMenz" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="ZombiePool"> -<em class="property">class </em><tt class="descname">ZombiePool</tt><a class="headerlink" href="#ZombiePool" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="ZombieReac"> -<em class="property">class </em><tt class="descname">ZombieReac</tt><a class="headerlink" href="#ZombieReac" title="Permalink to this definition">¶</a></dt> -<dd></dd></dl> - -<dl class="class"> -<dt id="testSched"> -<em class="property">class </em><tt class="descname">testSched</tt><a class="headerlink" href="#testSched" title="Permalink to this definition">¶</a></dt> -<dd><dl class="method"> -<dt id="testSched.process"> -<tt class="descname">process</tt><big>(</big><big>)</big><a class="headerlink" href="#testSched.process" title="Permalink to this definition">¶</a></dt> -<dd><p>(<em>destination message field</em>) handles process call</p> -</dd></dl> - -</dd></dl> - -</div> - - - </div> - </div> - </div> - <div class="sphinxsidebar"> - <div class="sphinxsidebarwrapper"> - <p class="logo"><a href="index.html"> - <img class="logo" src="_static/moose_logo.png" alt="Logo"/> - </a></p> - <h4>Previous topic</h4> - <p class="topless"><a href="moose_builtins.html" - title="previous chapter">MOOSE Builtins</a></p> - <h3>This Page</h3> - <ul class="this-page-menu"> - <li><a href="_sources/moose_classes.txt" - rel="nofollow">Show Source</a></li> - </ul> -<div id="searchbox" style="display: none"> - <h3>Quick search</h3> - <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> - <input type="submit" value="Go" /> - <input type="hidden" name="check_keywords" value="yes" /> - <input type="hidden" name="area" value="default" /> - </form> - <p class="searchtip" style="font-size: 90%"> - Enter search terms or a module, class or function name. - </p> -</div> -<script type="text/javascript">$('#searchbox').show(0);</script> - </div> - </div> - <div class="clearer"></div> - </div> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - >index</a></li> - <li class="right" > - <a href="moose_builtins.html" title="MOOSE Builtins" - >previous</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - <div class="footer"> - © Copyright 2014, Upinder Bhalla, Niraj Dudani, Aditya Gilra, Aviral Goel, Subhasis Ray and Dilawar Singh. - Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. - </div> - </body> -</html> \ No newline at end of file diff --git a/docs/user/html/pymoose/objects.inv b/docs/user/html/pymoose/objects.inv deleted file mode 100644 index ed90757fb8b1a274e31502c89b2c3c11d91cbf26..0000000000000000000000000000000000000000 Binary files a/docs/user/html/pymoose/objects.inv and /dev/null differ diff --git a/docs/user/html/pymoose/py-modindex.html b/docs/user/html/pymoose/py-modindex.html deleted file mode 100644 index f870109d85da25d812bc8adbdc4db32ea0b6b84d..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/py-modindex.html +++ /dev/null @@ -1,116 +0,0 @@ - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - - <title>Python Module Index — MOOSE 3.0 documentation</title> - - <link rel="stylesheet" href="_static/default.css" type="text/css" /> - <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - - <script type="text/javascript"> - var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', - VERSION: '3.0', - COLLAPSE_INDEX: false, - FILE_SUFFIX: '.html', - HAS_SOURCE: true - }; - </script> - <script type="text/javascript" src="_static/jquery.js"></script> - <script type="text/javascript" src="_static/underscore.js"></script> - <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="MOOSE 3.0 documentation" href="index.html" /> - - - <script type="text/javascript"> - DOCUMENTATION_OPTIONS.COLLAPSE_INDEX = true; - </script> - - - </head> - <body> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - accesskey="I">index</a></li> - <li class="right" > - <a href="#" title="Python Module Index" - >modules</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - </ul> - </div> - - <div class="document"> - <div class="documentwrapper"> - <div class="bodywrapper"> - <div class="body"> - - - <h1>Python Module Index</h1> - - <div class="modindex-jumpbox"> - <a href="#cap-m"><strong>m</strong></a> - </div> - - <table class="indextable modindextable" cellspacing="0" cellpadding="2"> - <tr class="pcap"><td></td><td> </td><td></td></tr> - <tr class="cap" id="cap-m"><td></td><td> - <strong>m</strong></td><td></td></tr> - <tr> - <td></td> - <td> - <a href="moose_builtins.html#module-moose"><tt class="xref">moose</tt></a></td><td> - <em></em></td></tr> - </table> - - - </div> - </div> - </div> - <div class="sphinxsidebar"> - <div class="sphinxsidebarwrapper"> -<div id="searchbox" style="display: none"> - <h3>Quick search</h3> - <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> - <input type="submit" value="Go" /> - <input type="hidden" name="check_keywords" value="yes" /> - <input type="hidden" name="area" value="default" /> - </form> - <p class="searchtip" style="font-size: 90%"> - Enter search terms or a module, class or function name. - </p> -</div> -<script type="text/javascript">$('#searchbox').show(0);</script> - </div> - </div> - <div class="clearer"></div> - </div> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - >index</a></li> - <li class="right" > - <a href="#" title="Python Module Index" - >modules</a> |</li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - </ul> - </div> - <div class="footer"> - © Copyright 2014, Upinder Bhalla, Niraj Dudani, Aditya Gilra, Aviral Goel, Subhasis Ray and Dilawar Singh. - Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. - </div> - </body> -</html> \ No newline at end of file diff --git a/docs/user/html/pymoose/search.html b/docs/user/html/pymoose/search.html deleted file mode 100644 index 356efaf19261801df13acacae645e1108139c23b..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/search.html +++ /dev/null @@ -1,110 +0,0 @@ - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - - <title>Search — MOOSE 3.0 documentation</title> - - <link rel="stylesheet" href="_static/default.css" type="text/css" /> - <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - - <script type="text/javascript"> - var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', - VERSION: '3.0', - COLLAPSE_INDEX: false, - FILE_SUFFIX: '.html', - HAS_SOURCE: true - }; - </script> - <script type="text/javascript" src="_static/jquery.js"></script> - <script type="text/javascript" src="_static/underscore.js"></script> - <script type="text/javascript" src="_static/doctools.js"></script> - <script type="text/javascript" src="_static/searchtools.js"></script> - <link rel="top" title="MOOSE 3.0 documentation" href="index.html" /> - <script type="text/javascript"> - jQuery(function() { Search.loadIndex("searchindex.js"); }); - </script> - - <script type="text/javascript" id="searchindexloader"></script> - - - </head> - <body> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - accesskey="I">index</a></li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - - <div class="document"> - <div class="documentwrapper"> - <div class="bodywrapper"> - <div class="body"> - - <h1 id="search-documentation">Search</h1> - <div id="fallback" class="admonition warning"> - <script type="text/javascript">$('#fallback').hide();</script> - <p> - Please activate JavaScript to enable the search - functionality. - </p> - </div> - <p> - From here you can search these documents. Enter your search - words into the box below and click "search". Note that the search - function will automatically search for all of the words. Pages - containing fewer words won't appear in the result list. - </p> - <form action="" method="get"> - <input type="text" name="q" value="" /> - <input type="submit" value="search" /> - <span id="search-progress" style="padding-left: 10px"></span> - </form> - - <div id="search-results"> - - </div> - - </div> - </div> - </div> - <div class="sphinxsidebar"> - <div class="sphinxsidebarwrapper"> - <p class="logo"><a href="index.html"> - <img class="logo" src="_static/moose_logo.png" alt="Logo"/> - </a></p> - </div> - </div> - <div class="clearer"></div> - </div> - <div class="related"> - <h3>Navigation</h3> - <ul> - <li class="right" style="margin-right: 10px"> - <a href="genindex.html" title="General Index" - >index</a></li> - <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> - - <li><a href="index.html">MOOSE 3.0 documentation</a> »</li> - - </ul> - </div> - <div class="footer"> - © Copyright 2014, Upinder Bhalla, Niraj Dudani, Aditya Gilra, Aviral Goel, Subhasis Ray and Dilawar Singh. - Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. - </div> - </body> -</html> \ No newline at end of file diff --git a/docs/user/html/pymoose/searchindex.js b/docs/user/html/pymoose/searchindex.js deleted file mode 100644 index 0379aff093e914e3dae8ffb5435a01a345efa56d..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({objects:{"":{HHChannel:[0,3,1,""],ZombieFuncPool:[0,3,1,""],eqTauPump:[0,5,1,""],sumRaxialOut:[0,4,1,""],vars:[0,4,1,""],setThickness:[0,5,1,""],reinit:[0,5,1,""],VectorTable:[0,3,1,""],getVolume:[0,5,1,""],Reac:[0,3,1,""],innerArea:[0,4,1,""],Finfo:[0,3,1,""],Adaptor:[0,3,1,""],PsdMesh:[0,3,1,""],raxialSphere:[0,5,1,""],"var":[0,4,1,""],FuncPool:[0,3,1,""],cylinderOut:[0,4,1,""],getInnerArea:[0,5,1,""],Gsolve:[0,3,1,""],RC:[0,3,1,""],derivative:[0,4,1,""],td:[0,4,1,""],Pool:[0,3,1,""],SynChanBase:[0,3,1,""],xyIn:[0,5,1,""],D:[0,4,1,""],getLeak:[0,5,1,""],proximalOut:[0,4,1,""],SynHandler:[0,3,1,""],VClamp:[0,3,1,""],raxialCylinder:[0,5,1,""],raxialSym:[0,5,1,""],MathFunc:[0,3,1,""],outerArea:[0,4,1,""],fluxFromOut:[0,5,1,""],outflux:[0,5,1,""],getCeq:[0,5,1,""],ZombieMMenz:[0,3,1,""],mode:[0,4,1,""],x:[0,4,1,""],valence:[0,4,1,""],Gk:[0,4,1,""],Species:[0,3,1,""],setInnerArea:[0,5,1,""],MarkovChannel:[0,3,1,""],distalOut:[0,4,1,""],ZombieCaConc:[0,3,1,""],Clock:[0,3,1,""],setLeak:[0,5,1,""],C:[0,4,1,""],Long:[0,3,1,""],HSolve:[0,3,1,""],DiffAmp:[0,3,1,""],MgBlock:[0,3,1,""],PIDController:[0,3,1,""],IzhikevichNrn:[0,3,1,""],ZombieCompartment:[0,3,1,""],concentrationOut:[0,4,1,""],innerDifSourceOut:[0,4,1,""],leak:[0,4,1,""],Ksolve:[0,3,1,""],Annotator:[0,3,1,""],thickness:[0,4,1,""],state:[0,4,1,""],Func:[0,3,1,""],NeuroMesh:[0,3,1,""],proc:[0,4,1,""],method:[0,4,1,""],PostMaster:[0,3,1,""],MarkovGslSolver:[0,3,1,""],fluxFromIn:[0,5,1,""],HHGate:[0,3,1,""],ZombieReac:[0,3,1,""],channel2Out:[0,4,1,""],SymCompartment:[0,3,1,""],storeInflux:[0,5,1,""],setLength:[0,5,1,""],outerDifSourceOut:[0,4,1,""],setCeq:[0,5,1,""],reaction:[0,5,1,""],setDiameter:[0,5,1,""],setGk:[0,5,1,""],CylMesh:[0,3,1,""],SingleMsg:[0,3,1,""],Leakage:[0,3,1,""],CompartmentBase:[0,3,1,""],CplxEnzBase:[0,3,1,""],getThickness:[0,5,1,""],DifShell:[0,3,1,""],influx:[0,5,1,""],diameter:[0,4,1,""],PulseGen:[0,3,1,""],Group:[0,3,1,""],setOuterArea:[0,5,1,""],SynChan:[0,3,1,""],distal:[0,4,1,""],integral:[0,4,1,""],MMenz:[0,3,1,""],getGk:[0,5,1,""],innerDif:[0,4,1,""],Msg:[0,3,1,""],Stats:[0,3,1,""],Compartment:[0,3,1,""],Mstring:[0,3,1,""],Arith:[0,3,1,""],channel1Out:[0,4,1,""],mmPump:[0,5,1,""],tauPump:[0,5,1,""],Neutral:[0,3,1,""],hillPump:[0,5,1,""],HHChannel2D:[0,3,1,""],MarkovSolverBase:[0,3,1,""],Ceq:[0,4,1,""],ChanBase:[0,3,1,""],TimeTable:[0,3,1,""],length:[0,4,1,""],outerDif:[0,4,1,""],SumFunc:[0,3,1,""],setVolume:[0,5,1,""],Synapse:[0,3,1,""],getC:[0,5,1,""],MeshEntry:[0,3,1,""],getD:[0,5,1,""],ti:[0,4,1,""],Nernst:[0,3,1,""],SparseMsg:[0,3,1,""],Cinfo:[0,3,1,""],Unsigned:[0,3,1,""],volume:[0,4,1,""],channel2:[0,4,1,""],DiagonalMsg:[0,3,1,""],getDiameter:[0,5,1,""],Interpol:[0,3,1,""],fInflux:[0,5,1,""],SteadyState:[0,3,1,""],valueOut:[0,4,1,""],sibling:[0,4,1,""],expr:[0,4,1,""],ZombiePool:[0,3,1,""],GapJunction:[0,3,1,""],value:[0,4,1,""],IntFire:[0,3,1,""],proximalOnly:[0,4,1,""],getOuterArea:[0,5,1,""],EnzBase:[0,3,1,""],error:[0,4,1,""],z:[0,4,1,""],shapeMode:[0,4,1,""],tau:[0,4,1,""],cylinder:[0,4,1,""],SpikeGen:[0,3,1,""],SpineMesh:[0,3,1,""],process:[0,5,1,""],Dsolve:[0,3,1,""],ReacBase:[0,3,1,""],OneToOneDataIndexMsg:[0,3,1,""],TableBase:[0,3,1,""],sphere:[0,4,1,""],BufPool:[0,3,1,""],derivativeOut:[0,4,1,""],Enz:[0,3,1,""],MarkovSolver:[0,3,1,""],sumRaxial:[0,5,1,""],getLength:[0,5,1,""],getValence:[0,5,1,""],OneToOneMsg:[0,3,1,""],e_previous:[0,4,1,""],ChemCompt:[0,3,1,""],StimulusTable:[0,3,1,""],HHGate2D:[0,3,1,""],ZombieBufPool:[0,3,1,""],CaConc:[0,3,1,""],FuncBase:[0,3,1,""],Vm2:[0,5,1,""],Vm1:[0,5,1,""],setD:[0,5,1,""],MarkovRateTable:[0,3,1,""],Interpol2D:[0,3,1,""],Double:[0,3,1,""],setShapeMode:[0,5,1,""],yIn:[0,5,1,""],y:[0,4,1,""],setValence:[0,5,1,""],Table:[0,3,1,""],zIn:[0,5,1,""],CubeMesh:[0,3,1,""],xyzIn:[0,5,1,""],ZombieEnz:[0,3,1,""],storeOutflux:[0,5,1,""],testSched:[0,3,1,""],Neuron:[0,3,1,""],Shell:[0,3,1,""],fOutflux:[0,5,1,""],getShapeMode:[0,5,1,""],ZombieHHChannel:[0,3,1,""],PoolBase:[0,3,1,""],OneToAllMsg:[0,3,1,""],Stoich:[0,3,1,""],gain:[0,4,1,""]},HHChannel:{getInstant:[0,5,1,""],process:[0,5,1,""],getNumGateY:[0,5,1,""],getNumGateZ:[0,5,1,""],reinit:[0,5,1,""],getX:[0,5,1,""],getY:[0,5,1,""],getZ:[0,5,1,""],getYpower:[0,5,1,""],setYpower:[0,5,1,""],getNumGateX:[0,5,1,""],setXpower:[0,5,1,""],proc:[0,4,1,""],Xpower:[0,4,1,""],Zpower:[0,4,1,""],concen:[0,5,1,""],setInstant:[0,5,1,""],setZpower:[0,5,1,""],getXpower:[0,5,1,""],useConcentration:[0,4,1,""],setNumGateX:[0,5,1,""],setNumGateY:[0,5,1,""],setNumGateZ:[0,5,1,""],Y:[0,4,1,""],X:[0,4,1,""],Z:[0,4,1,""],setX:[0,5,1,""],setY:[0,5,1,""],setZ:[0,5,1,""],instant:[0,4,1,""],getZpower:[0,5,1,""],createGate:[0,5,1,""],Ypower:[0,4,1,""],setUseConcentration:[0,5,1,""],getUseConcentration:[0,5,1,""]},VectorTable:{invdx:[0,4,1,""],getInvdx:[0,5,1,""],getXdivs:[0,5,1,""],lookupindex:[0,4,1,""],lookupvalue:[0,4,1,""],getXmin:[0,5,1,""],setXdivs:[0,5,1,""],getXmax:[0,5,1,""],getTable:[0,5,1,""],setTable:[0,5,1,""],setXmax:[0,5,1,""],xmax:[0,4,1,""],getLookupvalue:[0,5,1,""],xmin:[0,4,1,""],table:[0,4,1,""],setXmin:[0,5,1,""],getLookupindex:[0,5,1,""],xdivs:[0,4,1,""]},Shell:{quit:[0,5,1,""],useClock:[0,5,1,""],create:[0,5,1,""],move:[0,5,1,""],addMsg:[0,5,1,""],copy:[0,5,1,""],setclock:[0,5,1,""],"delete":[0,5,1,""]},CompartmentBase:{diameter:[0,4,1,""],getCm:[0,5,1,""],handleRaxial:[0,5,1,""],process:[0,5,1,""],getX0:[0,5,1,""],reinit:[0,5,1,""],getDiameter:[0,5,1,""],getX:[0,5,1,""],getY:[0,5,1,""],getZ:[0,5,1,""],z0:[0,4,1,""],Ra:[0,4,1,""],Rm:[0,4,1,""],y0:[0,4,1,""],setInject:[0,5,1,""],getInitVm:[0,5,1,""],axialOut:[0,4,1,""],setRm:[0,5,1,""],initProc:[0,5,1,""],randInject:[0,5,1,""],Cm:[0,4,1,""],getVm:[0,5,1,""],getIm:[0,5,1,""],VmOut:[0,4,1,""],getLength:[0,5,1,""],init:[0,4,1,""],setRa:[0,5,1,""],setLength:[0,5,1,""],axial:[0,4,1,""],getEm:[0,5,1,""],inject:[0,4,1,""],initVm:[0,4,1,""],setZ0:[0,5,1,""],proc:[0,4,1,""],setX0:[0,5,1,""],getRa:[0,5,1,""],injectMsg:[0,5,1,""],getY0:[0,5,1,""],getRm:[0,5,1,""],handleAxial:[0,5,1,""],setInitVm:[0,5,1,""],x0:[0,4,1,""],setX:[0,5,1,""],setY:[0,5,1,""],setZ:[0,5,1,""],Em:[0,4,1,""],setCm:[0,5,1,""],setDiameter:[0,5,1,""],raxial:[0,4,1,""],handleChannel:[0,5,1,""],cable:[0,5,1,""],setEm:[0,5,1,""],setVm:[0,5,1,""],initReinit:[0,5,1,""],Vm:[0,4,1,""],length:[0,4,1,""],Im:[0,4,1,""],channel:[0,4,1,""],getInject:[0,5,1,""],getZ0:[0,5,1,""],y:[0,4,1,""],x:[0,4,1,""],z:[0,4,1,""],raxialOut:[0,4,1,""],setY0:[0,5,1,""]},PsdMesh:{setThickness:[0,5,1,""],psdList:[0,5,1,""],getThickness:[0,5,1,""],thickness:[0,4,1,""]},FuncPool:{input:[0,5,1,""]},Gsolve:{getNumAllVoxels:[0,5,1,""],numPools:[0,4,1,""],setNumPools:[0,5,1,""],process:[0,5,1,""],useRandInit:[0,4,1,""],getNumPools:[0,5,1,""],reinit:[0,5,1,""],setUseRandInit:[0,5,1,""],getUseRandInit:[0,5,1,""],setStoich:[0,5,1,""],nVec:[0,4,1,""],getStoich:[0,5,1,""],stoich:[0,4,1,""],setNVec:[0,5,1,""],numLocalVoxels:[0,4,1,""],getNVec:[0,5,1,""],proc:[0,4,1,""],setNumAllVoxels:[0,5,1,""],numAllVoxels:[0,4,1,""],getNumLocalVoxels:[0,5,1,""]},RC:{setR:[0,5,1,""],getState:[0,5,1,""],C:[0,4,1,""],getC:[0,5,1,""],getInject:[0,5,1,""],setC:[0,5,1,""],process:[0,5,1,""],reinit:[0,5,1,""],V0:[0,4,1,""],state:[0,4,1,""],R:[0,4,1,""],inject:[0,4,1,""],injectIn:[0,5,1,""],setV0:[0,5,1,""],output:[0,4,1,""],setInject:[0,5,1,""],getV0:[0,5,1,""],proc:[0,4,1,""],getR:[0,5,1,""]},Pool:{decrement:[0,5,1,""],increment:[0,5,1,""]},ZombieFuncPool:{input:[0,5,1,""]},SynHandler:{setNumSynapse:[0,5,1,""],setNumSynapses:[0,5,1,""],getNumSynapse:[0,5,1,""],getNumSynapses:[0,5,1,""],numSynapses:[0,4,1,""]},VClamp:{process:[0,5,1,""],reinit:[0,5,1,""],setTi:[0,5,1,""],getGain:[0,5,1,""],commandIn:[0,5,1,""],sensedIn:[0,5,1,""],setTd:[0,5,1,""],currentOut:[0,4,1,""],getTi:[0,5,1,""],getTd:[0,5,1,""],current:[0,4,1,""],setGain:[0,5,1,""],proc:[0,4,1,""],getMode:[0,5,1,""],getTau:[0,5,1,""],getCurrent:[0,5,1,""],sensed:[0,4,1,""],setMode:[0,5,1,""],setTau:[0,5,1,""],getCommand:[0,5,1,""],command:[0,4,1,""],mode:[0,4,1,""],getSensed:[0,5,1,""]},Finfo:{src:[0,4,1,""],getDocs:[0,5,1,""],dest:[0,4,1,""],docs:[0,4,1,""],getType:[0,5,1,""],getFieldName:[0,5,1,""],getSrc:[0,5,1,""],fieldName:[0,4,1,""],type:[0,4,1,""],getDest:[0,5,1,""]},MathFunc:{"function":[0,4,1,""],getMathML:[0,5,1,""],setFunction:[0,5,1,""],getResult:[0,5,1,""],getFunction:[0,5,1,""],process:[0,5,1,""],arg1:[0,5,1,""],arg2:[0,5,1,""],arg3:[0,5,1,""],arg4:[0,5,1,""],setMathML:[0,5,1,""],reinit:[0,5,1,""],mathML:[0,4,1,""],result:[0,4,1,""],output:[0,4,1,""],proc:[0,4,1,""]},Leakage:{proc:[0,4,1,""]},IzhikevichNrn:{getA:[0,5,1,""],process:[0,5,1,""],getAccommodating:[0,5,1,""],getB:[0,5,1,""],reinit:[0,5,1,""],getD:[0,5,1,""],cDest:[0,5,1,""],u0:[0,4,1,""],setInject:[0,5,1,""],getInitVm:[0,5,1,""],getU:[0,5,1,""],bDest:[0,5,1,""],getInitU:[0,5,1,""],getC:[0,5,1,""],spikeOut:[0,4,1,""],getVm:[0,5,1,""],getIm:[0,5,1,""],VmOut:[0,4,1,""],getBeta:[0,5,1,""],dDest:[0,5,1,""],setBeta:[0,5,1,""],setAlpha:[0,5,1,""],inject:[0,4,1,""],initVm:[0,4,1,""],aDest:[0,5,1,""],u:[0,4,1,""],setInitU:[0,5,1,""],proc:[0,4,1,""],setU0:[0,5,1,""],getU0:[0,5,1,""],setD:[0,5,1,""],injectMsg:[0,5,1,""],setA:[0,5,1,""],setB:[0,5,1,""],setC:[0,5,1,""],Vmax:[0,4,1,""],beta:[0,4,1,""],setGamma:[0,5,1,""],setAccommodating:[0,5,1,""],getGamma:[0,5,1,""],setInitVm:[0,5,1,""],alpha:[0,4,1,""],b:[0,4,1,""],RmByTau:[0,4,1,""],a:[0,4,1,""],c:[0,4,1,""],setVmax:[0,5,1,""],d:[0,4,1,""],handleChannel:[0,5,1,""],setVm:[0,5,1,""],accommodating:[0,4,1,""],getRmByTau:[0,5,1,""],getVmax:[0,5,1,""],setRmByTau:[0,5,1,""],initU:[0,4,1,""],Im:[0,4,1,""],channel:[0,4,1,""],getInject:[0,5,1,""],getAlpha:[0,5,1,""],Vm:[0,4,1,""],gamma:[0,4,1,""]},Stats:{sdev:[0,4,1,""],process:[0,5,1,""],sum:[0,4,1,""],reinit:[0,5,1,""],getMean:[0,5,1,""],getNum:[0,5,1,""],num:[0,4,1,""],getSum:[0,5,1,""],getSdev:[0,5,1,""],proc:[0,4,1,""],mean:[0,4,1,""]},ZombieCaConc:{tau:[0,4,1,""],process:[0,5,1,""],getCa:[0,5,1,""],setFloor:[0,5,1,""],reinit:[0,5,1,""],decrease:[0,5,1,""],setCaBasal:[0,5,1,""],CaBasal:[0,4,1,""],getCaBasal:[0,5,1,""],thick:[0,4,1,""],current:[0,5,1,""],floor:[0,4,1,""],setCa_base:[0,5,1,""],setCeiling:[0,5,1,""],increase:[0,5,1,""],concOut:[0,4,1,""],proc:[0,4,1,""],getB:[0,5,1,""],Ca_base:[0,4,1,""],ceiling:[0,4,1,""],B:[0,4,1,""],setB:[0,5,1,""],getTau:[0,5,1,""],getThick:[0,5,1,""],currentFraction:[0,5,1,""],basal:[0,5,1,""],getCeiling:[0,5,1,""],getCa_base:[0,5,1,""],setTau:[0,5,1,""],Ca:[0,4,1,""],setCa:[0,5,1,""],getFloor:[0,5,1,""],setThick:[0,5,1,""]},Clock:{reinit6:[0,4,1,""],getNumTicks:[0,5,1,""],reinit:[0,5,1,""],finished:[0,4,1,""],currentStep:[0,4,1,""],reinit8:[0,4,1,""],proc9:[0,4,1,""],proc8:[0,4,1,""],setTickDt:[0,5,1,""],proc5:[0,4,1,""],proc4:[0,4,1,""],proc7:[0,4,1,""],proc6:[0,4,1,""],proc1:[0,4,1,""],proc0:[0,4,1,""],proc3:[0,4,1,""],getCurrentStep:[0,5,1,""],reinit1:[0,4,1,""],start:[0,5,1,""],getRunTime:[0,5,1,""],reinit2:[0,4,1,""],getCurrentTime:[0,5,1,""],getDts:[0,5,1,""],getTickDt:[0,5,1,""],numTicks:[0,4,1,""],proc2:[0,4,1,""],getIsRunning:[0,5,1,""],reinit7:[0,4,1,""],clockControl:[0,4,1,""],tickStep:[0,4,1,""],stop:[0,5,1,""],process5:[0,4,1,""],process4:[0,4,1,""],getTickStep:[0,5,1,""],process6:[0,4,1,""],process1:[0,4,1,""],process0:[0,4,1,""],process3:[0,4,1,""],process2:[0,4,1,""],step:[0,5,1,""],reinit9:[0,4,1,""],dt:[0,4,1,""],runTime:[0,4,1,""],process9:[0,4,1,""],process8:[0,4,1,""],reinit0:[0,4,1,""],isRunning:[0,4,1,""],setTickStep:[0,5,1,""],currentTime:[0,4,1,""],reinit4:[0,4,1,""],getDt:[0,5,1,""],process7:[0,4,1,""],getNsteps:[0,5,1,""],nsteps:[0,4,1,""],setDt:[0,5,1,""],reinit3:[0,4,1,""],dts:[0,4,1,""],tickDt:[0,4,1,""],reinit5:[0,4,1,""]},Unsigned:{setValue:[0,5,1,""],value:[0,4,1,""],getValue:[0,5,1,""]},Long:{setValue:[0,5,1,""],value:[0,4,1,""],getValue:[0,5,1,""]},HSolve:{setVDiv:[0,5,1,""],getSeed:[0,5,1,""],vMin:[0,4,1,""],getVMax:[0,5,1,""],process:[0,5,1,""],getVMin:[0,5,1,""],setCaMax:[0,5,1,""],reinit:[0,5,1,""],getTarget:[0,5,1,""],seed:[0,4,1,""],setCaMin:[0,5,1,""],setVMax:[0,5,1,""],setVMin:[0,5,1,""],setCaDiv:[0,5,1,""],proc:[0,4,1,""],setDt:[0,5,1,""],getCaMax:[0,5,1,""],caDiv:[0,4,1,""],getCaAdvance:[0,5,1,""],caAdvance:[0,4,1,""],setTarget:[0,5,1,""],getCaMin:[0,5,1,""],getVDiv:[0,5,1,""],dt:[0,4,1,""],getCaDiv:[0,5,1,""],setCaAdvance:[0,5,1,""],vDiv:[0,4,1,""],target:[0,4,1,""],caMax:[0,4,1,""],getDt:[0,5,1,""],setSeed:[0,5,1,""],caMin:[0,4,1,""],vMax:[0,4,1,""]},DiffAmp:{saturation:[0,4,1,""],plusIn:[0,5,1,""],getOutputValue:[0,5,1,""],setSaturation:[0,5,1,""],gainIn:[0,5,1,""],process:[0,5,1,""],minusIn:[0,5,1,""],reinit:[0,5,1,""],getGain:[0,5,1,""],gain:[0,4,1,""],setGain:[0,5,1,""],getSaturation:[0,5,1,""],output:[0,4,1,""],proc:[0,4,1,""],outputValue:[0,4,1,""]},MgBlock:{setZk:[0,5,1,""],getCMg:[0,5,1,""],process:[0,5,1,""],reinit:[0,5,1,""],KMg_B:[0,4,1,""],KMg_A:[0,4,1,""],Zk:[0,4,1,""],CMg:[0,4,1,""],proc:[0,4,1,""],setKMg_A:[0,5,1,""],getZk:[0,5,1,""],setCMg:[0,5,1,""],getIk:[0,5,1,""],setKMg_B:[0,5,1,""],Ik:[0,4,1,""],origChannel:[0,5,1,""],setIk:[0,5,1,""],getKMg_B:[0,5,1,""],getKMg_A:[0,5,1,""]},PIDController:{getOutputValue:[0,5,1,""],process:[0,5,1,""],reinit:[0,5,1,""],getGain:[0,5,1,""],commandIn:[0,5,1,""],getIntegral:[0,5,1,""],outputValue:[0,4,1,""],sensedIn:[0,5,1,""],getTauI:[0,5,1,""],setSaturation:[0,5,1,""],getError:[0,5,1,""],getTauD:[0,5,1,""],setGain:[0,5,1,""],getSaturation:[0,5,1,""],proc:[0,4,1,""],saturation:[0,4,1,""],tauD:[0,4,1,""],getE_previous:[0,5,1,""],tauI:[0,4,1,""],sensed:[0,4,1,""],gain:[0,4,1,""],setCommand:[0,5,1,""],getDerivative:[0,5,1,""],gainDest:[0,5,1,""],setTauD:[0,5,1,""],setTauI:[0,5,1,""],getCommand:[0,5,1,""],command:[0,4,1,""],output:[0,4,1,""],getSensed:[0,5,1,""]},Ksolve:{setDsolve:[0,5,1,""],numPools:[0,4,1,""],process:[0,5,1,""],reinit:[0,5,1,""],setMethod:[0,5,1,""],numLocalVoxels:[0,4,1,""],getNVec:[0,5,1,""],numAllVoxels:[0,4,1,""],getNumLocalVoxels:[0,5,1,""],setNumPools:[0,5,1,""],dsolve:[0,4,1,""],epsRel:[0,4,1,""],getMethod:[0,5,1,""],nVec:[0,4,1,""],setCompartment:[0,5,1,""],compartment:[0,4,1,""],epsAbs:[0,4,1,""],method:[0,4,1,""],setEpsRel:[0,5,1,""],getEpsAbs:[0,5,1,""],setEpsAbs:[0,5,1,""],setNVec:[0,5,1,""],getCompartment:[0,5,1,""],getEpsRel:[0,5,1,""],getDsolve:[0,5,1,""],getNumAllVoxels:[0,5,1,""],proc:[0,4,1,""],getNumPools:[0,5,1,""],setStoich:[0,5,1,""],getStoich:[0,5,1,""],stoich:[0,4,1,""],setNumAllVoxels:[0,5,1,""]},Annotator:{getNotes:[0,5,1,""],color:[0,4,1,""],setColor:[0,5,1,""],setIcon:[0,5,1,""],getIcon:[0,5,1,""],getColor:[0,5,1,""],notes:[0,4,1,""],z:[0,4,1,""],getZ:[0,5,1,""],getX:[0,5,1,""],getY:[0,5,1,""],getTextColor:[0,5,1,""],setNotes:[0,5,1,""],setTextColor:[0,5,1,""],y:[0,4,1,""],x:[0,4,1,""],textColor:[0,4,1,""],setX:[0,5,1,""],setY:[0,5,1,""],setZ:[0,5,1,""],icon:[0,4,1,""]},Func:{getMode:[0,5,1,""],varIn:[0,5,1,""],setX:[0,5,1,""],setExpr:[0,5,1,""],xIn:[0,5,1,""],setY:[0,5,1,""],getX:[0,5,1,""],getY:[0,5,1,""],getZ:[0,5,1,""],setZ:[0,5,1,""],setMode:[0,5,1,""],getVars:[0,5,1,""],getVar:[0,5,1,""],getDerivative:[0,5,1,""],getValue:[0,5,1,""],proc:[0,4,1,""],setVar:[0,5,1,""],getExpr:[0,5,1,""]},NeuroMesh:{getSeparateSpines:[0,5,1,""],diffLength:[0,4,1,""],subTree:[0,4,1,""],setCell:[0,5,1,""],getSubTree:[0,5,1,""],numDiffCompts:[0,4,1,""],setSubTree:[0,5,1,""],geometryPolicy:[0,4,1,""],getNumSegments:[0,5,1,""],parentVoxel:[0,4,1,""],cell:[0,4,1,""],separateSpines:[0,4,1,""],getCell:[0,5,1,""],getGeometryPolicy:[0,5,1,""],setSeparateSpines:[0,5,1,""],setGeometryPolicy:[0,5,1,""],psdListOut:[0,4,1,""],getParentVoxel:[0,5,1,""],getNumDiffCompts:[0,5,1,""],cellPortion:[0,5,1,""],getDiffLength:[0,5,1,""],setDiffLength:[0,5,1,""],spineListOut:[0,4,1,""],numSegments:[0,4,1,""]},PostMaster:{getNumNodes:[0,5,1,""],numNodes:[0,4,1,""],process:[0,5,1,""],setBufferSize:[0,5,1,""],reinit:[0,5,1,""],getBufferSize:[0,5,1,""],myNode:[0,4,1,""],getMyNode:[0,5,1,""],bufferSize:[0,4,1,""],proc:[0,4,1,""]},MarkovGslSolver:{handleQ:[0,5,1,""],getAbsoluteAccuracy:[0,5,1,""],setInternalDt:[0,5,1,""],internalDt:[0,4,1,""],process:[0,5,1,""],proc:[0,4,1,""],reinit:[0,5,1,""],setRelativeAccuracy:[0,5,1,""],init:[0,5,1,""],getMethod:[0,5,1,""],stateOut:[0,4,1,""],getRelativeAccuracy:[0,5,1,""],setMethod:[0,5,1,""],isInitialized:[0,4,1,""],getInternalDt:[0,5,1,""],relativeAccuracy:[0,4,1,""],absoluteAccuracy:[0,4,1,""],method:[0,4,1,""],getIsInitialized:[0,5,1,""],setAbsoluteAccuracy:[0,5,1,""]},HHGate:{tau:[0,4,1,""],setMin:[0,5,1,""],setupTau:[0,5,1,""],setAlphaParms:[0,5,1,""],getA:[0,5,1,""],getB:[0,5,1,""],tableB:[0,4,1,""],tableA:[0,4,1,""],getMin:[0,5,1,""],getMax:[0,5,1,""],setupAlpha:[0,5,1,""],useInterpolation:[0,4,1,""],tweakAlpha:[0,5,1,""],getDivs:[0,5,1,""],getAlphaParms:[0,5,1,""],min:[0,4,1,""],setMax:[0,5,1,""],getBeta:[0,5,1,""],tweakTau:[0,5,1,""],setBeta:[0,5,1,""],setAlpha:[0,5,1,""],setupGate:[0,5,1,""],getTableA:[0,5,1,""],getTableB:[0,5,1,""],setTableA:[0,5,1,""],setTableB:[0,5,1,""],A:[0,4,1,""],B:[0,4,1,""],getTau:[0,5,1,""],max:[0,4,1,""],beta:[0,4,1,""],mInfinity:[0,4,1,""],getUseInterpolation:[0,5,1,""],alpha:[0,4,1,""],divs:[0,4,1,""],getMInfinity:[0,5,1,""],setTau:[0,5,1,""],setUseInterpolation:[0,5,1,""],alphaParms:[0,4,1,""],setMInfinity:[0,5,1,""],getAlpha:[0,5,1,""],setDivs:[0,5,1,""]},SymCompartment:{proximal:[0,4,1,""]},MarkovSolverBase:{invdx:[0,4,1,""],invdy:[0,4,1,""],getXdivs:[0,5,1,""],setYmax:[0,5,1,""],process:[0,5,1,""],getXmax:[0,5,1,""],reinit:[0,5,1,""],getInitialState:[0,5,1,""],xmin:[0,4,1,""],getQ:[0,5,1,""],ymin:[0,4,1,""],stateOut:[0,4,1,""],getInvdy:[0,5,1,""],getYdivs:[0,5,1,""],ymax:[0,4,1,""],setXdivs:[0,5,1,""],state:[0,4,1,""],init:[0,5,1,""],getYmin:[0,5,1,""],setYdivs:[0,5,1,""],getYmax:[0,5,1,""],proc:[0,4,1,""],channel:[0,4,1,""],getState:[0,5,1,""],xdivs:[0,4,1,""],getInvdx:[0,5,1,""],initialState:[0,4,1,""],Q:[0,4,1,""],setXmax:[0,5,1,""],ydivs:[0,4,1,""],getXmin:[0,5,1,""],setInitialState:[0,5,1,""],ligandConc:[0,5,1,""],xmax:[0,4,1,""],setYmin:[0,5,1,""],setXmin:[0,5,1,""],handleVm:[0,5,1,""]},CylMesh:{getCoords:[0,5,1,""],getX1:[0,5,1,""],getX0:[0,5,1,""],getNumDiffCompts:[0,5,1,""],y1:[0,4,1,""],y0:[0,4,1,""],numDiffCompts:[0,4,1,""],x1:[0,4,1,""],setZ1:[0,5,1,""],setZ0:[0,5,1,""],setX1:[0,5,1,""],setX0:[0,5,1,""],setR1:[0,5,1,""],setR0:[0,5,1,""],totLength:[0,4,1,""],getY0:[0,5,1,""],getY1:[0,5,1,""],getTotLength:[0,5,1,""],diffLength:[0,4,1,""],x0:[0,4,1,""],setCoords:[0,5,1,""],z0:[0,4,1,""],z1:[0,4,1,""],r0:[0,4,1,""],r1:[0,4,1,""],getDiffLength:[0,5,1,""],getR1:[0,5,1,""],getR0:[0,5,1,""],setDiffLength:[0,5,1,""],coords:[0,4,1,""],getZ1:[0,5,1,""],getZ0:[0,5,1,""],setY0:[0,5,1,""],setY1:[0,5,1,""]},SynChanBase:{setEk:[0,5,1,""],Ek:[0,4,1,""],getIk:[0,5,1,""],getBufferTime:[0,5,1,""],IkOut:[0,4,1,""],Vm:[0,5,1,""],getGbar:[0,5,1,""],getGk:[0,5,1,""],channelOut:[0,4,1,""],Ik:[0,4,1,""],bufferTime:[0,4,1,""],setBufferTime:[0,5,1,""],getEk:[0,5,1,""],setGbar:[0,5,1,""],permeabilityOut:[0,4,1,""],setGk:[0,5,1,""],Gk:[0,4,1,""],Gbar:[0,4,1,""],channel:[0,4,1,""],ghk:[0,4,1,""]},SingleMsg:{i1:[0,4,1,""],i2:[0,4,1,""],setI2:[0,5,1,""],setI1:[0,5,1,""],getI2:[0,5,1,""],getI1:[0,5,1,""]},Adaptor:{scale:[0,4,1,""],getOutputValue:[0,5,1,""],getOutputOffset:[0,5,1,""],setOutputOffset:[0,5,1,""],process:[0,5,1,""],reinit:[0,5,1,""],setScale:[0,5,1,""],getInputOffset:[0,5,1,""],outputValue:[0,4,1,""],requestInput:[0,4,1,""],requestField:[0,4,1,""],input:[0,5,1,""],output:[0,4,1,""],getScale:[0,5,1,""],setInputOffset:[0,5,1,""],proc:[0,4,1,""],outputOffset:[0,4,1,""],inputOffset:[0,4,1,""]},CplxEnzBase:{getK1:[0,5,1,""],getK2:[0,5,1,""],getK3:[0,5,1,""],ratio:[0,4,1,""],setK2:[0,5,1,""],setRatio:[0,5,1,""],cplx:[0,4,1,""],enzDest:[0,5,1,""],concK1:[0,4,1,""],k3:[0,4,1,""],k2:[0,4,1,""],k1:[0,4,1,""],cplxDest:[0,5,1,""],cplxOut:[0,4,1,""],getRatio:[0,5,1,""],getConcK1:[0,5,1,""],setK3:[0,5,1,""],enzOut:[0,4,1,""],enz:[0,4,1,""],setConcK1:[0,5,1,""],setK1:[0,5,1,""]},DifShell:{buffer:[0,4,1,""],process_1:[0,4,1,""],process_0:[0,4,1,""]},PulseGen:{getOutputValue:[0,5,1,""],process:[0,5,1,""],reinit:[0,5,1,""],getWidth:[0,5,1,""],secondWidth:[0,4,1,""],firstWidth:[0,4,1,""],firstLevel:[0,4,1,""],setFirstDelay:[0,5,1,""],setSecondDelay:[0,5,1,""],setSecondLevel:[0,5,1,""],setWidth:[0,5,1,""],setDelay:[0,5,1,""],delay:[0,4,1,""],getSecondWidth:[0,5,1,""],baseLevel:[0,4,1,""],delayIn:[0,5,1,""],getLevel:[0,5,1,""],outputValue:[0,4,1,""],setTrigMode:[0,5,1,""],width:[0,4,1,""],setFirstWidth:[0,5,1,""],getTrigMode:[0,5,1,""],getFirstWidth:[0,5,1,""],input:[0,5,1,""],proc:[0,4,1,""],getFirstLevel:[0,5,1,""],getSecondDelay:[0,5,1,""],setFirstLevel:[0,5,1,""],setLevel:[0,5,1,""],setCount:[0,5,1,""],widthIn:[0,5,1,""],getCount:[0,5,1,""],getFirstDelay:[0,5,1,""],count:[0,4,1,""],getDelay:[0,5,1,""],levelIn:[0,5,1,""],setSecondWidth:[0,5,1,""],level:[0,4,1,""],getBaseLevel:[0,5,1,""],firstDelay:[0,4,1,""],secondDelay:[0,4,1,""],trigMode:[0,4,1,""],getSecondLevel:[0,5,1,""],output:[0,4,1,""],setBaseLevel:[0,5,1,""],secondLevel:[0,4,1,""]},Group:{group:[0,4,1,""]},Msg:{getSrcFieldsOnE1:[0,5,1,""],getSrcFieldsOnE2:[0,5,1,""],getE2:[0,5,1,""],destFieldsOnE2:[0,4,1,""],getDestFieldsOnE2:[0,5,1,""],srcFieldsOnE1:[0,4,1,""],srcFieldsOnE2:[0,4,1,""],getDestFieldsOnE1:[0,5,1,""],destFieldsOnE1:[0,4,1,""],adjacent:[0,4,1,""],getAdjacent:[0,5,1,""],getE1:[0,5,1,""],e1:[0,4,1,""],e2:[0,4,1,""]},Mstring:{setValue:[0,5,1,""],"this":[0,4,1,""],setThis:[0,5,1,""],value:[0,4,1,""],getValue:[0,5,1,""],getThis:[0,5,1,""]},Arith:{"function":[0,4,1,""],setFunction:[0,5,1,""],getOutputValue:[0,5,1,""],getFunction:[0,5,1,""],process:[0,5,1,""],arg1:[0,5,1,""],arg2:[0,5,1,""],arg3:[0,5,1,""],outputValue:[0,4,1,""],reinit:[0,5,1,""],arg1x2:[0,5,1,""],getArg1Value:[0,5,1,""],getAnyValue:[0,5,1,""],anyValue:[0,4,1,""],setOutputValue:[0,5,1,""],output:[0,4,1,""],setAnyValue:[0,5,1,""],proc:[0,4,1,""],arg1Value:[0,4,1,""]},Neutral:{neighbors:[0,4,1,""],getDestFields:[0,5,1,""],getChildren:[0,5,1,""],getSourceFields:[0,5,1,""],getMsgDestFunctions:[0,5,1,""],getNeighbors:[0,5,1,""],numData:[0,4,1,""],children:[0,4,1,""],getMsgIn:[0,5,1,""],getMe:[0,5,1,""],getNumData:[0,5,1,""],childOut:[0,4,1,""],getName:[0,5,1,""],getPath:[0,5,1,""],getThis:[0,5,1,""],getNumField:[0,5,1,""],setNumData:[0,5,1,""],msgIn:[0,4,1,""],setName:[0,5,1,""],parent:[0,4,1,""],getValueFields:[0,5,1,""],setThis:[0,5,1,""],numField:[0,4,1,""],destFields:[0,4,1,""],parentMsg:[0,5,1,""],valueFields:[0,4,1,""],path:[0,4,1,""],getMsgOut:[0,5,1,""],msgOut:[0,4,1,""],me:[0,4,1,""],name:[0,4,1,""],"this":[0,4,1,""],msgDests:[0,4,1,""],setNumField:[0,5,1,""],className:[0,4,1,""],getParent:[0,5,1,""],sourceFields:[0,4,1,""],getClassName:[0,5,1,""],getMsgDests:[0,5,1,""],msgDestFunctions:[0,4,1,""]},HHChannel2D:{setYindex:[0,5,1,""],getInstant:[0,5,1,""],process:[0,5,1,""],getNumGateY:[0,5,1,""],getNumGateZ:[0,5,1,""],reinit:[0,5,1,""],Yindex:[0,4,1,""],Zindex:[0,4,1,""],getXindex:[0,5,1,""],Ypower:[0,4,1,""],getYpower:[0,5,1,""],setYpower:[0,5,1,""],setZindex:[0,5,1,""],getNumGateX:[0,5,1,""],setXpower:[0,5,1,""],proc:[0,4,1,""],Xpower:[0,4,1,""],Zpower:[0,4,1,""],concen:[0,5,1,""],setInstant:[0,5,1,""],setZpower:[0,5,1,""],getXpower:[0,5,1,""],setNumGateX:[0,5,1,""],setNumGateY:[0,5,1,""],setNumGateZ:[0,5,1,""],Y:[0,4,1,""],X:[0,4,1,""],Z:[0,4,1,""],setX:[0,5,1,""],setY:[0,5,1,""],setZ:[0,5,1,""],concen2:[0,5,1,""],getX:[0,5,1,""],instant:[0,4,1,""],getY:[0,5,1,""],getZpower:[0,5,1,""],getZindex:[0,5,1,""],getZ:[0,5,1,""],setXindex:[0,5,1,""],Xindex:[0,4,1,""],getYindex:[0,5,1,""]},ChanBase:{getGbar:[0,5,1,""],setEk:[0,5,1,""],Ek:[0,4,1,""],getIk:[0,5,1,""],IkOut:[0,4,1,""],Vm:[0,5,1,""],getGk:[0,5,1,""],Ik:[0,4,1,""],channelOut:[0,4,1,""],getEk:[0,5,1,""],setGbar:[0,5,1,""],permeabilityOut:[0,4,1,""],setGk:[0,5,1,""],Gk:[0,4,1,""],Gbar:[0,4,1,""],channel:[0,4,1,""],ghk:[0,4,1,""]},TimeTable:{getFilename:[0,5,1,""],getState:[0,5,1,""],process:[0,5,1,""],eventOut:[0,4,1,""],reinit:[0,5,1,""],setFilename:[0,5,1,""],getMethod:[0,5,1,""],filename:[0,4,1,""],setMethod:[0,5,1,""],proc:[0,4,1,""]},Synapse:{getDelay:[0,5,1,""],weight:[0,4,1,""],setWeight:[0,5,1,""],addSpike:[0,5,1,""],getWeight:[0,5,1,""],delay:[0,4,1,""],setDelay:[0,5,1,""]},MeshEntry:{remeshReacsOut:[0,4,1,""],neighbors:[0,4,1,""],getVolume:[0,5,1,""],dimensions:[0,4,1,""],meshType:[0,4,1,""],process:[0,5,1,""],DiffusionScaling:[0,4,1,""],getDiffusionScaling:[0,5,1,""],Coordinates:[0,4,1,""],DiffusionArea:[0,4,1,""],volume:[0,4,1,""],getMeshType:[0,5,1,""],mesh:[0,4,1,""],getDimensions:[0,5,1,""],getDiffusionArea:[0,5,1,""],reinit:[0,5,1,""],getNeighbors:[0,5,1,""],getCoordinates:[0,5,1,""],proc:[0,4,1,""],remeshOut:[0,4,1,""]},Nernst:{setTemperature:[0,5,1,""],Cin:[0,4,1,""],ci:[0,5,1,""],scale:[0,4,1,""],co:[0,5,1,""],Cout:[0,4,1,""],setCout:[0,5,1,""],setCin:[0,5,1,""],getValence:[0,5,1,""],getCin:[0,5,1,""],getTemperature:[0,5,1,""],getE:[0,5,1,""],setScale:[0,5,1,""],Eout:[0,4,1,""],setValence:[0,5,1,""],E:[0,4,1,""],getScale:[0,5,1,""],valence:[0,4,1,""],getCout:[0,5,1,""],Temperature:[0,4,1,""]},SparseMsg:{setRandomConnectivity:[0,5,1,""],numColumns:[0,4,1,""],getSeed:[0,5,1,""],setSeed:[0,5,1,""],probability:[0,4,1,""],getNumRows:[0,5,1,""],tripletFill:[0,5,1,""],clear:[0,5,1,""],transpose:[0,5,1,""],numRows:[0,4,1,""],unsetEntry:[0,5,1,""],getNumColumns:[0,5,1,""],getNumEntries:[0,5,1,""],setProbability:[0,5,1,""],setEntry:[0,5,1,""],pairFill:[0,5,1,""],seed:[0,4,1,""],numEntries:[0,4,1,""],getProbability:[0,5,1,""]},Cinfo:{docs:[0,4,1,""],baseClass:[0,4,1,""],getBaseClass:[0,5,1,""],getDocs:[0,5,1,""]},DiagonalMsg:{stride:[0,4,1,""],getStride:[0,5,1,""],setStride:[0,5,1,""]},Interpol:{xmin:[0,4,1,""],lookupOut:[0,4,1,""],process:[0,5,1,""],getXmax:[0,5,1,""],reinit:[0,5,1,""],getXmin:[0,5,1,""],getY:[0,5,1,""],setXmax:[0,5,1,""],xmax:[0,4,1,""],y:[0,4,1,""],input:[0,5,1,""],setXmin:[0,5,1,""],proc:[0,4,1,""]},SteadyState:{isInitialized:[0,4,1,""],rank:[0,4,1,""],getBadStoichiometry:[0,5,1,""],maxIter:[0,4,1,""],getStateType:[0,5,1,""],stoich:[0,4,1,""],getNNegEigenvalues:[0,5,1,""],total:[0,4,1,""],setStoich:[0,5,1,""],getStatus:[0,5,1,""],nPosEigenvalues:[0,4,1,""],randomInit:[0,5,1,""],settle:[0,5,1,""],nNegEigenvalues:[0,4,1,""],setMaxIter:[0,5,1,""],getIsInitialized:[0,5,1,""],status:[0,4,1,""],nIter:[0,4,1,""],getTotal:[0,5,1,""],setTotal:[0,5,1,""],stateType:[0,4,1,""],numVarPools:[0,4,1,""],getEigenvalues:[0,5,1,""],setupMatrix:[0,5,1,""],resettle:[0,5,1,""],getConvergenceCriterion:[0,5,1,""],getNPosEigenvalues:[0,5,1,""],getSolutionStatus:[0,5,1,""],convergenceCriterion:[0,4,1,""],badStoichiometry:[0,4,1,""],showMatrices:[0,5,1,""],solutionStatus:[0,4,1,""],getNIter:[0,5,1,""],getRank:[0,5,1,""],setConvergenceCriterion:[0,5,1,""],getStoich:[0,5,1,""],getNumVarPools:[0,5,1,""],eigenvalues:[0,4,1,""],getMaxIter:[0,5,1,""]},GapJunction:{channel1:[0,4,1,""]},IntFire:{setThresh:[0,5,1,""],process:[0,5,1,""],setRefractoryPeriod:[0,5,1,""],setTau:[0,5,1,""],getVm:[0,5,1,""],spikeOut:[0,4,1,""],tau:[0,4,1,""],getTau:[0,5,1,""],setVm:[0,5,1,""],reinit:[0,5,1,""],Vm:[0,4,1,""],getBufferTime:[0,5,1,""],bufferTime:[0,4,1,""],thresh:[0,4,1,""],getRefractoryPeriod:[0,5,1,""],setBufferTime:[0,5,1,""],refractoryPeriod:[0,4,1,""],proc:[0,4,1,""],getThresh:[0,5,1,""]},EnzBase:{prd:[0,4,1,""],process:[0,5,1,""],numSubstrates:[0,4,1,""],reinit:[0,5,1,""],enzDest:[0,5,1,""],sub:[0,4,1,""],getNumSubstrates:[0,5,1,""],prdOut:[0,4,1,""],subOut:[0,4,1,""],proc:[0,4,1,""],getKm:[0,5,1,""],subDest:[0,5,1,""],setKcat:[0,5,1,""],setKm:[0,5,1,""],Km:[0,4,1,""],numKm:[0,4,1,""],getNumKm:[0,5,1,""],kcat:[0,4,1,""],remesh:[0,5,1,""],setNumKm:[0,5,1,""],getKcat:[0,5,1,""],prdDest:[0,5,1,""]},SynChan:{setTau2:[0,5,1,""],setTau1:[0,5,1,""],modulator:[0,5,1,""],process:[0,5,1,""],proc:[0,4,1,""],getNormalizeWeights:[0,5,1,""],reinit:[0,5,1,""],tau2:[0,4,1,""],tau1:[0,4,1,""],normalizeWeights:[0,4,1,""],setNormalizeWeights:[0,5,1,""],getTau1:[0,5,1,""],activation:[0,5,1,""],getTau2:[0,5,1,""]},TableBase:{plainPlot:[0,5,1,""],getVector:[0,5,1,""],compareVec:[0,5,1,""],getOutputValue:[0,5,1,""],compareXplot:[0,5,1,""],loadCSV:[0,5,1,""],loadXplot:[0,5,1,""],getSize:[0,5,1,""],getY:[0,5,1,""],vector:[0,4,1,""],loadXplotRange:[0,5,1,""],clearVec:[0,5,1,""],y:[0,4,1,""],linearTransform:[0,5,1,""],xplot:[0,5,1,""],setVector:[0,5,1,""],outputValue:[0,4,1,""],size:[0,4,1,""]},SpikeGen:{getRefractT:[0,5,1,""],getEdgeTriggered:[0,5,1,""],proc:[0,4,1,""],setEdgeTriggered:[0,5,1,""],edgeTriggered:[0,4,1,""],process:[0,5,1,""],getThreshold:[0,5,1,""],reinit:[0,5,1,""],Vm:[0,5,1,""],hasFired:[0,4,1,""],setAbs_refract:[0,5,1,""],spikeOut:[0,4,1,""],getAbs_refract:[0,5,1,""],abs_refract:[0,4,1,""],threshold:[0,4,1,""],getHasFired:[0,5,1,""],setRefractT:[0,5,1,""],setThreshold:[0,5,1,""],refractT:[0,4,1,""]},SpineMesh:{spineList:[0,5,1,""],getParentVoxel:[0,5,1,""],parentVoxel:[0,4,1,""]},Dsolve:{numPools:[0,4,1,""],process:[0,5,1,""],reinit:[0,5,1,""],getNVec:[0,5,1,""],numAllVoxels:[0,4,1,""],setNumPools:[0,5,1,""],getPath:[0,5,1,""],nVec:[0,4,1,""],setCompartment:[0,5,1,""],setPath:[0,5,1,""],compartment:[0,4,1,""],proc:[0,4,1,""],getNumVoxels:[0,5,1,""],numVoxels:[0,4,1,""],buildNeuroMeshJunctions:[0,5,1,""],setNVec:[0,5,1,""],path:[0,4,1,""],getNumAllVoxels:[0,5,1,""],getNumPools:[0,5,1,""],setStoich:[0,5,1,""],getStoich:[0,5,1,""],stoich:[0,4,1,""],getCompartment:[0,5,1,""]},ReacBase:{prd:[0,4,1,""],numProducts:[0,4,1,""],process:[0,5,1,""],numSubstrates:[0,4,1,""],reinit:[0,5,1,""],getNumProducts:[0,5,1,""],sub:[0,4,1,""],getNumSubstrates:[0,5,1,""],getKb:[0,5,1,""],getKf:[0,5,1,""],prdOut:[0,4,1,""],proc:[0,4,1,""],subDest:[0,5,1,""],setKf:[0,5,1,""],Kf:[0,4,1,""],setKb:[0,5,1,""],numKf:[0,4,1,""],numKb:[0,4,1,""],getNumKf:[0,5,1,""],getNumKb:[0,5,1,""],subOut:[0,4,1,""],setNumKb:[0,5,1,""],prdDest:[0,5,1,""],Kb:[0,4,1,""],setNumKf:[0,5,1,""]},BufPool:{process:[0,5,1,""],reinit:[0,5,1,""],proc:[0,4,1,""]},MarkovSolver:{process:[0,5,1,""],reinit:[0,5,1,""],proc:[0,4,1,""]},ChemCompt:{oneVoxelVolume:[0,4,1,""],getVolume:[0,5,1,""],stencilIndex:[0,4,1,""],stencilRate:[0,4,1,""],getVoxelVolume:[0,5,1,""],setVolumeNotRates:[0,5,1,""],getOneVoxelVolume:[0,5,1,""],getStencilRate:[0,5,1,""],setNumMesh:[0,5,1,""],voxelVolume:[0,4,1,""],volume:[0,4,1,""],getNumMesh:[0,5,1,""],numDimensions:[0,4,1,""],getNumDimensions:[0,5,1,""],resetStencil:[0,5,1,""],buildDefaultMesh:[0,5,1,""],getStencilIndex:[0,5,1,""],setVolume:[0,5,1,""]},StimulusTable:{loopTime:[0,4,1,""],process:[0,5,1,""],reinit:[0,5,1,""],getStepPosition:[0,5,1,""],getStartTime:[0,5,1,""],setLoopTime:[0,5,1,""],getLoopTime:[0,5,1,""],stepSize:[0,4,1,""],stopTime:[0,4,1,""],proc:[0,4,1,""],getStepSize:[0,5,1,""],getDoLoop:[0,5,1,""],stepPosition:[0,4,1,""],setStopTime:[0,5,1,""],setStepSize:[0,5,1,""],startTime:[0,4,1,""],doLoop:[0,4,1,""],setStepPosition:[0,5,1,""],getStopTime:[0,5,1,""],setStartTime:[0,5,1,""],setDoLoop:[0,5,1,""],output:[0,4,1,""]},HHGate2D:{xdivsB:[0,4,1,""],xdivsA:[0,4,1,""],getA:[0,5,1,""],getB:[0,5,1,""],setYmaxA:[0,5,1,""],tableB:[0,4,1,""],xmaxB:[0,4,1,""],xmaxA:[0,4,1,""],tableA:[0,4,1,""],ydivsA:[0,4,1,""],yminA:[0,4,1,""],xminB:[0,4,1,""],getYmaxB:[0,5,1,""],getYdivsB:[0,5,1,""],setXdivsA:[0,5,1,""],setXdivsB:[0,5,1,""],getYdivsA:[0,5,1,""],setYmaxB:[0,5,1,""],getTableA:[0,5,1,""],getTableB:[0,5,1,""],setTableA:[0,5,1,""],setXminA:[0,5,1,""],setXminB:[0,5,1,""],setTableB:[0,5,1,""],A:[0,4,1,""],B:[0,4,1,""],getYminA:[0,5,1,""],setXmaxA:[0,5,1,""],yminB:[0,4,1,""],setYdivsB:[0,5,1,""],getXmaxB:[0,5,1,""],xminA:[0,4,1,""],getXmaxA:[0,5,1,""],ymaxB:[0,4,1,""],ymaxA:[0,4,1,""],getXminA:[0,5,1,""],getXminB:[0,5,1,""],getXdivsA:[0,5,1,""],getXdivsB:[0,5,1,""],ydivsB:[0,4,1,""],getYminB:[0,5,1,""],setYminA:[0,5,1,""],getYmaxA:[0,5,1,""],setYminB:[0,5,1,""],setYdivsA:[0,5,1,""],setXmaxB:[0,5,1,""]},CaConc:{tau:[0,4,1,""],process:[0,5,1,""],getCa:[0,5,1,""],setFloor:[0,5,1,""],reinit:[0,5,1,""],decrease:[0,5,1,""],setCaBasal:[0,5,1,""],thick:[0,4,1,""],getCaBasal:[0,5,1,""],CaBasal:[0,4,1,""],current:[0,5,1,""],floor:[0,4,1,""],concOut:[0,4,1,""],setCeiling:[0,5,1,""],increase:[0,5,1,""],setCa_base:[0,5,1,""],proc:[0,4,1,""],getB:[0,5,1,""],Ca_base:[0,4,1,""],ceiling:[0,4,1,""],B:[0,4,1,""],setB:[0,5,1,""],getTau:[0,5,1,""],getThick:[0,5,1,""],currentFraction:[0,5,1,""],basal:[0,5,1,""],getCeiling:[0,5,1,""],getCa_base:[0,5,1,""],setTau:[0,5,1,""],Ca:[0,4,1,""],setCa:[0,5,1,""],getFloor:[0,5,1,""],setThick:[0,5,1,""]},MarkovChannel:{process:[0,5,1,""],labels:[0,4,1,""],getGbar:[0,5,1,""],getNumStates:[0,5,1,""],numOpenStates:[0,4,1,""],handleLigandConc:[0,5,1,""],gbar:[0,4,1,""],getLabels:[0,5,1,""],getVm:[0,5,1,""],handleState:[0,5,1,""],state:[0,4,1,""],setGbar:[0,5,1,""],proc:[0,4,1,""],ligandConc:[0,4,1,""],reinit:[0,5,1,""],getLigandConc:[0,5,1,""],numStates:[0,4,1,""],getInitialState:[0,5,1,""],setLigandConc:[0,5,1,""],getState:[0,5,1,""],initialState:[0,4,1,""],setLabels:[0,5,1,""],setVm:[0,5,1,""],setInitialState:[0,5,1,""],Vm:[0,4,1,""],setNumOpenStates:[0,5,1,""],getNumOpenStates:[0,5,1,""],setNumStates:[0,5,1,""]},FuncBase:{process:[0,5,1,""],reinit:[0,5,1,""],getResult:[0,5,1,""],result:[0,4,1,""],input:[0,5,1,""],output:[0,4,1,""],proc:[0,4,1,""]},Interpol2D:{getXdivs:[0,5,1,""],setYmax:[0,5,1,""],getXmax:[0,5,1,""],getTable:[0,5,1,""],getZ:[0,5,1,""],xmin:[0,4,1,""],table:[0,4,1,""],tableVector2D:[0,4,1,""],setXmin:[0,5,1,""],getYdivs:[0,5,1,""],ymin:[0,4,1,""],ymax:[0,4,1,""],setXdivs:[0,5,1,""],setDy:[0,5,1,""],setDx:[0,5,1,""],getYmin:[0,5,1,""],setYdivs:[0,5,1,""],lookup:[0,5,1,""],getYmax:[0,5,1,""],xdivs:[0,4,1,""],lookupOut:[0,4,1,""],setXmax:[0,5,1,""],dx:[0,4,1,""],dy:[0,4,1,""],ydivs:[0,4,1,""],lookupReturn2D:[0,4,1,""],getTableVector2D:[0,5,1,""],getDy:[0,5,1,""],getDx:[0,5,1,""],getXmin:[0,5,1,""],setTableVector2D:[0,5,1,""],setTable:[0,5,1,""],xmax:[0,4,1,""],setYmin:[0,5,1,""],z:[0,4,1,""]},Double:{setValue:[0,5,1,""],value:[0,4,1,""],getValue:[0,5,1,""]},PoolBase:{getVolume:[0,5,1,""],getN:[0,5,1,""],process:[0,5,1,""],reinit:[0,5,1,""],conc:[0,4,1,""],getConcInit:[0,5,1,""],species:[0,4,1,""],diffConst:[0,4,1,""],motorConst:[0,4,1,""],getNInit:[0,5,1,""],handleMolWt:[0,5,1,""],setNInit:[0,5,1,""],speciesId:[0,4,1,""],setDiffConst:[0,5,1,""],proc:[0,4,1,""],setVolume:[0,5,1,""],setMotorConst:[0,5,1,""],setN:[0,5,1,""],reac:[0,4,1,""],volume:[0,4,1,""],concInit:[0,4,1,""],getConc:[0,5,1,""],setSpeciesId:[0,5,1,""],nOut:[0,4,1,""],nInit:[0,4,1,""],requestMolWt:[0,4,1,""],getSpeciesId:[0,5,1,""],getDiffConst:[0,5,1,""],n:[0,4,1,""],setConc:[0,5,1,""],getMotorConst:[0,5,1,""],setConcInit:[0,5,1,""],reacDest:[0,5,1,""]},CubeMesh:{setPreserveNumEntries:[0,5,1,""],getCoords:[0,5,1,""],getX1:[0,5,1,""],getX0:[0,5,1,""],alwaysDiffuse:[0,4,1,""],surface:[0,4,1,""],setMeshToSpace:[0,5,1,""],setNz:[0,5,1,""],setNy:[0,5,1,""],setNx:[0,5,1,""],y1:[0,4,1,""],y0:[0,4,1,""],setDy:[0,5,1,""],x1:[0,4,1,""],setSpaceToMesh:[0,5,1,""],setDx:[0,5,1,""],getSurface:[0,5,1,""],isToroid:[0,4,1,""],z1:[0,4,1,""],nx:[0,4,1,""],ny:[0,4,1,""],nz:[0,4,1,""],setDz:[0,5,1,""],meshToSpace:[0,4,1,""],setAlwaysDiffuse:[0,5,1,""],setZ1:[0,5,1,""],setZ0:[0,5,1,""],setX1:[0,5,1,""],setX0:[0,5,1,""],spaceToMesh:[0,4,1,""],getY1:[0,5,1,""],getY0:[0,5,1,""],getAlwaysDiffuse:[0,5,1,""],setIsToroid:[0,5,1,""],getIsToroid:[0,5,1,""],dz:[0,4,1,""],dx:[0,4,1,""],dy:[0,4,1,""],x0:[0,4,1,""],setCoords:[0,5,1,""],z0:[0,4,1,""],getNy:[0,5,1,""],getSpaceToMesh:[0,5,1,""],setSurface:[0,5,1,""],getDy:[0,5,1,""],getDx:[0,5,1,""],getDz:[0,5,1,""],getMeshToSpace:[0,5,1,""],getPreserveNumEntries:[0,5,1,""],coords:[0,4,1,""],getZ1:[0,5,1,""],getZ0:[0,5,1,""],getNz:[0,5,1,""],preserveNumEntries:[0,4,1,""],getNx:[0,5,1,""],setY0:[0,5,1,""],setY1:[0,5,1,""]},Species:{handleMolWtRequest:[0,5,1,""],molWt:[0,4,1,""],getMolWt:[0,5,1,""],molWtOut:[0,4,1,""],setMolWt:[0,5,1,""],pool:[0,4,1,""]},MarkovRateTable:{Q:[0,4,1,""],reinit:[0,5,1,""],getLigandConc:[0,5,1,""],getVm:[0,5,1,""],channel:[0,4,1,""],process:[0,5,1,""],setconst:[0,5,1,""],setVm:[0,5,1,""],instratesOut:[0,4,1,""],Vm:[0,4,1,""],handleLigandConc:[0,5,1,""],getSize:[0,5,1,""],init:[0,5,1,""],handleVm:[0,5,1,""],setLigandConc:[0,5,1,""],set2d:[0,5,1,""],getQ:[0,5,1,""],set1d:[0,5,1,""],proc:[0,4,1,""],ligandConc:[0,4,1,""],size:[0,4,1,""]},OneToAllMsg:{i1:[0,4,1,""],getI1:[0,5,1,""],setI1:[0,5,1,""]},ZombieHHChannel:{getInstant:[0,5,1,""],process:[0,5,1,""],getNumGateY:[0,5,1,""],getNumGateZ:[0,5,1,""],reinit:[0,5,1,""],getGbar:[0,5,1,""],getGk:[0,5,1,""],getX:[0,5,1,""],getY:[0,5,1,""],Ypower:[0,4,1,""],getYpower:[0,5,1,""],setYpower:[0,5,1,""],getIk:[0,5,1,""],getNumGateX:[0,5,1,""],setXpower:[0,5,1,""],getEk:[0,5,1,""],setGbar:[0,5,1,""],Gbar:[0,4,1,""],proc:[0,4,1,""],Xpower:[0,4,1,""],Zpower:[0,4,1,""],concen:[0,5,1,""],setInstant:[0,5,1,""],setZpower:[0,5,1,""],getXpower:[0,5,1,""],useConcentration:[0,4,1,""],setNumGateX:[0,5,1,""],setNumGateY:[0,5,1,""],setNumGateZ:[0,5,1,""],Y:[0,4,1,""],X:[0,4,1,""],Z:[0,4,1,""],setX:[0,5,1,""],setY:[0,5,1,""],setZ:[0,5,1,""],setEk:[0,5,1,""],instant:[0,4,1,""],Ek:[0,4,1,""],getZpower:[0,5,1,""],createGate:[0,5,1,""],getZ:[0,5,1,""],Ik:[0,4,1,""],setUseConcentration:[0,5,1,""],getUseConcentration:[0,5,1,""],setGk:[0,5,1,""],Gk:[0,4,1,""]},Table:{requestOut:[0,4,1,""],process:[0,5,1,""],getThreshold:[0,5,1,""],reinit:[0,5,1,""],spike:[0,5,1,""],threshold:[0,4,1,""],input:[0,5,1,""],proc:[0,4,1,""],setThreshold:[0,5,1,""]},testSched:{process:[0,5,1,""]},Stoich:{setDsolve:[0,5,1,""],setCompartment:[0,5,1,""],setKsolve:[0,5,1,""],getRowStart:[0,5,1,""],getColumnIndex:[0,5,1,""],getPoolIdMap:[0,5,1,""],dsolve:[0,4,1,""],getPath:[0,5,1,""],getMatrixEntry:[0,5,1,""],unzombify:[0,5,1,""],matrixEntry:[0,4,1,""],setPath:[0,5,1,""],compartment:[0,4,1,""],getDsolve:[0,5,1,""],getEstimatedDt:[0,5,1,""],getNumVarPools:[0,5,1,""],poolIdMap:[0,4,1,""],ksolve:[0,4,1,""],numVarPools:[0,4,1,""],estimatedDt:[0,4,1,""],path:[0,4,1,""],rowStart:[0,4,1,""],numRates:[0,4,1,""],getCompartment:[0,5,1,""],getNumAllPools:[0,5,1,""],columnIndex:[0,4,1,""],getNumRates:[0,5,1,""],numAllPools:[0,4,1,""],getKsolve:[0,5,1,""]}},terms:{requestout:[0,3,2],msgdest:[0,3,2],getpoolidmap:[0,3,2],setcamax:[0,3,2],destfieldsone1:[0,3,2],sinceset:[0,3,2],destfieldsone2:[0,3,2],ratherthan:[0,3,2],setlabel:[0,3,2],numbersof:[0,3,2],getonevoxelvolum:[0,3,2],srcfinfo:[0,4,3,2],getconcinit:[0,3,2],deviat:[0,3,2],setanyvalu:[0,3,2],under:[0,4,3,2],everi:[0,4,3,2],getligandconc:[0,3,2],"void":[0,3,2],getpar:[0,3,2],useinterpol:[0,3,2],diagonalmsg:[0,3,2],getfieldtyp:4,symcompart:[0,3,2],getstencilindex:[0,3,2],cmg:[0,3,2],getvaluefield:[0,3,2],vector:[0,4,3,2],setconcinit:[0,3,2],speci:[0,3,2],direct:[0,3,2],setstoich:[0,3,2],second:[0,3,2],setmaxit:[0,3,2],prddest:[0,3,2],even:[0,3,2],asin:[0,3,2],getlooptim:[0,3,2],neg:[0,3,2],calcul:[0,3,2],nstep:[0,3,2],getnumrow:[0,3,2],hhgate2d:[0,3,2],getrefractoryperiod:[0,3,2],"new":[0,4,3,2],symmetr:[0,3,2],getsiz:[0,3,2],elimin:[0,3,2],subtre:[0,3,2],whose:[0,3,2],here:[0,3,2],concout:[0,3,2],path:[0,4,3,2],interpret:[0,3,2],name_of_the_copi:4,precis:[0,3,2],handlecopi:[0,3,2],getnstep:[0,3,2],arcur:[0,3,2],aka:[0,3,2],refractoryperiod:[0,3,2],methodrk8:[0,3,2],linearli:[0,3,2],unix:4,clearvec:[0,3,2],instabl:[0,3,2],ymin:[0,3,2],unit:[0,3,2],plot:[0,4,3,2],describ:[0,3,2],would:[0,3,2],setu0:[0,3,2],convergencecriterion:[0,3,2],concret:4,call:[0,4,3,2],spike:[0,3,2],type:[0,4,3,2],tell:[0,3,2],getnumpool:[0,3,2],exce:[0,3,2],subout:[0,3,2],hold:[0,3,2],must:[0,3,2],raxialcylind:[0,3,2],word:[0,3,2],tickstep:[0,3,2],restor:[0,3,2],getspeciesid:[0,3,2],setup:[0,3,2],work:[0,4,3,2],endof:[0,3,2],conceptu:[0,3,2],ofth:[0,3,2],multiplenon:[0,3,2],root:[0,3,2],getfirstlevel:[0,3,2],cone:[0,3,2],kinet:[0,4,3,2],matrixentri:[0,3,2],statetrajectori:[0,3,2],getdataindex:4,termin:[0,3,2],indic:[0,1,3,2],getceq:[0,3,2],getcel:[0,3,2],want:[0,3,2],unsign:[0,4,3,2],end:[0,3,2],cylind:[0,3,2],how:[0,1,2,3,4],recoveri:[0,3,2],gate:[0,3,2],enz:[0,3,2],ancestor:4,updat:[0,4,3,2],arcu:[0,3,2],rise:[0,3,2],after:[0,3,2],getymina:[0,3,2],befor:[0,3,2],mesh:[0,3,2],law:[0,3,2],parallel:[0,3,2],averag:[0,3,2],attempt:[0,3,2],third:[0,3,2],interpol:[0,3,2],opaqu:[0,3,2],nernst:[0,3,2],dataentri:[0,3,2],receiv:[0,3,2],gettickdt:[0,3,2],environ:[1,4],exclus:4,first:[0,4,3,2],order:[0,4,3,2],oper:[0,3,2],feedback:[0,3,2],over:[0,3,2],compartments3:[0,3,2],becaus:[0,4,3,2],getsurfac:[0,3,2],proc9:[0,3,2],proc8:[0,3,2],stencilr:[0,3,2],proc5:[0,3,2],proc4:[0,3,2],proc7:[0,3,2],proc6:[0,3,2],vari:[0,3,2],proc0:[0,3,2],proc3:[0,3,2],proc2:[0,3,2],getinst:[0,3,2],ligand:[0,3,2],fix:[0,3,2],setepsab:[0,3,2],numkf:[0,3,2],valuefinfo:4,numkb:[0,3,2],distal:[0,3,2],numkm:[0,3,2],hidden:[0,3,2],numkf_:[0,3,2],getymaxb:[0,3,2],getymaxa:[0,3,2],them:[0,3,2],thei:[0,4,3,2],passedin:[0,3,2],getymin:[0,3,2],xdiv:[0,3,2],spinelist:[0,3,2],setvalu:[0,3,2],getxmaxb:[0,3,2],getxmaxa:[0,3,2],chmestri:[0,3,2],bufpool:[0,3,2],getvalu:[0,3,2],each:[0,3,2],debug:[0,3,2],gety0:[0,3,2],mean:[0,3,2],voxel:[0,3,2],setpoint:[0,3,2],numentri:[0,3,2],requestfield:[0,3,2],getcm:[0,3,2],addspik:[0,3,2],goe:[0,3,2],getca:[0,3,2],content:[0,1,3,2],branch:[0,3,2],outputout:[0,3,2],adapt:[0,3,2],reader:[0,3,2],setdiffconst:[0,3,2],setnumkb:[0,3,2],setnumkf:[0,3,2],getrelativeaccuraci:[0,3,2],log2:[0,3,2],linear:[0,3,2],contiguousthen:[0,3,2],infin:[0,3,2],free:[0,3,2],standard:[0,3,2],getfilenam:[0,3,2],getadjac:[0,3,2],hodkgin:[0,3,2],setxdiv:[0,3,2],setnumsynaps:[0,3,2],getweight:[0,3,2],createg:[0,3,2],filter:[0,3,2],foutflux:[0,3,2],iso:[0,3,2],isn:[0,3,2],onto:[0,3,2],ixnot:[0,3,2],geometrypolici:[0,3,2],rang:[0,4,3,2],iaf:4,setvm:[0,3,2],clariti:[0,3,2],rank:[0,3,2],compartment_1:4,unlik:[0,4,3,2],getk3:[0,3,2],messag:[0,3,2],thick:[0,3,2],primari:[0,3,2],attach:[0,3,2],getnot:[0,3,2],sometim:[0,3,2],xin:[0,3,2],startindex:[0,3,2],getnumvarpool:[0,3,2],too:[0,3,2],setca_bas:[0,3,2],similarli:[0,3,2],setzindex:[0,3,2],gettemperatur:[0,3,2],zeroth:[0,3,2],lower:[0,3,2],setcel:[0,3,2],channel2:[0,3,2],channel1:[0,3,2],setceq:[0,3,2],getdiffusionarea:[0,3,2],setv0:[0,3,2],frustrum:[0,3,2],reachedstoptim:[0,3,2],target:[0,3,2],keyword:4,consequ:[0,3,2],provid:[0,3,2],expr:[0,3,2],fluxfromout:[0,3,2],rate:[0,3,2],setydiv:[0,3,2],matter:[0,4,3,2],arriv:[0,3,2],setweight:[0,3,2],melement:[1,4],minf:[0,3,2],caadvanc:[0,3,2],getprob:[0,3,2],seed:[0,3,2],increment:[0,3,2],getalpha:[0,3,2],minu:[0,3,2],comparexplot:[0,3,2],getanyvalu:[0,3,2],thi:[0,4,3,2],subdest:[0,3,2],object:[0,1,2,3,4],setsubtre:[0,3,2],regular:[0,3,2],phase:[0,3,2],setalphaparm:[0,3,2],concen2:[0,3,2],don:[0,3,2],doc:[0,4,3,2],flow:[0,3,2],stoptim:[0,3,2],doe:[0,4,3,2],dummi:[0,3,2],wildcard:[0,3,2],numnod:[0,3,2],dot:[0,3,2],synapt:[0,3,2],synaps:[0,4,3,2],numtick:[0,3,2],random:[0,3,2],radiu:[0,3,2],syntax:[0,3,2],abs_refracttim:[0,3,2],protocol:4,absolut:[0,3,2],configur:[0,3,2],concenobject:[0,3,2],sharedfinfo:[0,4,3,2],buffertim:[0,3,2],themi:[0,3,2],biophys:[0,4,3,2],conduct:[0,3,2],stop:[0,4,3,2],cylinderout:[0,3,2],ceil:[0,3,2],report:[0,3,2],recalcul:[0,3,2],setx:[0,3,2],diffusionsc:[0,3,2],molwtout:[0,3,2],rung:[0,3,2],neuromesh:[0,3,2],mostreact:[0,3,2],respond:[0,3,2],human:4,setfunct:[0,3,2],getr1:[0,3,2],getr0:[0,3,2],resist:[0,3,2],num:[0,3,2],result:[0,3,2],lowpass:[0,3,2],respons:[0,3,2],fail:[0,3,2],best:[0,3,2],getinitu:[0,3,2],wikipedia:[0,3,2],thesoma:[0,3,2],"1sinc":[0,3,2],awai:[0,3,2],getcamax:[0,3,2],accord:[0,4,3,2],outerarea:[0,3,2],extend:[0,3,2],newnam:[0,3,2],getrmbytau:[0,3,2],getrm:[0,3,2],rtti:[0,3,2],copyextmsg:[0,3,2],getra:[0,3,2],store:[0,3,2],howev:[0,4,3,2],getkb:[0,3,2],getdiffconst:[0,3,2],logic:[0,3,2],markovchannel:[0,3,2],settau:[0,3,2],poolidmap:[0,3,2],ontolog:[0,3,2],getni:[0,3,2],getnumvoxel:[0,3,2],"2nd":[0,3,2],getnz:[0,3,2],getnx:[0,3,2],assum:[0,3,2],duplic:[0,3,2],getfieldnam:[0,4,3,2],union:4,setleak:[0,3,2],cue:[0,3,2],singlemsg:[0,3,2],thedest:[0,3,2],much:[0,3,2],thrshold:[0,3,2],basic:[0,3,2],getspacetomesh:[0,3,2],dotp:[0,3,2],getval:[0,3,2],sinit:[0,3,2],argument:[0,4,3,2],child:[0,4,3,2],speciesid:[0,3,2],getvar:[0,3,2],setpath:[0,3,2],ident:[0,3,2],tanh:[0,3,2],setexpr:[0,3,2],getksolv:[0,3,2],calcium:[0,3,2],enddiamet:[0,3,2],abrupt:[0,3,2],remeshout:[0,3,2],invdx:[0,3,2],dataid:[0,3,2],initvm:[0,3,2],invdi:[0,3,2],conc:[0,3,2],setik:[0,3,2],getfloor:[0,3,2],setmin:[0,3,2],nanometr:[0,3,2],perform:[0,3,2],make:[0,4,3,2],numfield:[0,3,2],xmaxb:[0,3,2],xmaxa:[0,3,2],complex:[0,3,2],split:4,finflux:[0,3,2],complet:[0,3,2],sourcefield:[0,3,2],seti2:[0,3,2],seti1:[0,3,2],rais:[0,4,3,2],prdout:[0,3,2],tune:[0,3,2],squar:[0,3,2],gettyp:[0,3,2],gettot:[0,3,2],thu:[0,3,2],"_________":[0,3,2],convertth:[0,3,2],getsum:[0,3,2],stimulu:[0,4,3,2],shapemod:[0,3,2],getc:[0,3,2],left:[0,3,2],identifi:[0,4,3,2],setcolor:[0,3,2],just:[0,3,2],numdata:[0,3,2],via:[0,4,3,2],setcabas:[0,3,2],yet:[0,3,2],note:[0,4,3,2],expos:4,getmeshtyp:[0,3,2],had:[0,3,2],setspeciesid:[0,3,2],ydivsa:[0,3,2],psdlist:[0,3,2],ydivsb:[0,3,2],geti2:[0,3,2],timestep:[0,3,2],oldvol:[0,3,2],els:[0,3,2],save:[0,3,2],getratio:[0,3,2],diffusion5:[0,3,2],setseconddelai:[0,3,2],preserv:[0,3,2],delayin:[0,3,2],set_command:[0,3,2],clocktick:4,apart:4,measur:[0,3,2],statetyp:[0,3,2],specif:[0,3,2],deprec:[0,3,2],synchanbas:[0,3,2],arbitrari:[0,3,2],getydivsb:[0,3,2],setaccommod:[0,3,2],getydivsa:[0,3,2],unstabl:[0,3,2],getgamma:[0,3,2],reassign:[0,3,2],conck1:[0,3,2],numproduct:[0,3,2],underli:[0,3,2],right:[0,4,3,2],old:[0,3,2],deal:[0,3,2],getcout:[0,3,2],membran:[0,3,2],maxim:[0,3,2],intern:[0,3,2],maxit:[0,3,2],toconnect:[0,3,2],inact:[0,3,2],successfulli:[0,3,2],getkmg_b:[0,3,2],getse:[0,3,2],getkmg_a:[0,3,2],setgk:[0,3,2],getvm:[0,3,2],separatespin:[0,3,2],setratio:[0,3,2],setshapemod:[0,3,2],subclass:[0,4,3,2],multipli:[0,3,2],getsecondlevel:[0,3,2],core:[0,3,2],plu:[0,3,2],concen:[0,3,2],getyminb:[0,3,2],setnvec:[0,3,2],setnot:[0,3,2],obj:4,"_____":[0,3,2],gapjunct:[0,3,2],simul:[0,1,2,3,4],getnummesh:[0,3,2],generatesan:[0,3,2],abut:[0,3,2],thepsd:[0,3,2],gaindest:[0,3,2],camax:[0,3,2],setkmg_b:[0,3,2],xyz:[0,3,2],setkmg_a:[0,3,2],bound:[0,3,2],down:[0,4,3,2],pair:[0,3,2],wrap:[0,3,2],getnumkb:[0,3,2],accordingli:[0,3,2],resetstencil:[0,3,2],wai:[0,3,2],segment:[0,3,2],support:[0,3,2],transform:[0,3,2],why:[0,3,2],avail:[0,4,3,2],width:[0,3,2],set1d:[0,3,2],endindexus:[0,3,2],getarg1valu:[0,3,2],fraction:[0,3,2],icon:[0,3,2],setxmaxb:[0,3,2],setxmaxa:[0,3,2],analysi:[0,3,2],head:[0,3,2],form:[0,4,3,2],handleaxi:[0,3,2],getbeta:[0,3,2],substrat:[0,3,2],setbeta:[0,3,2],setgbar:[0,3,2],reacdest:[0,3,2],setrelativeaccuraci:[0,3,2],outputvalu:[0,3,2],reset:[0,3,2],getdiamet:[0,3,2],sharedmsg:[0,3,2],maximum:[0,3,2],eout:[0,3,2],getabs_refract:[0,3,2],setsteps:[0,3,2],more:[0,3,2],emit:[0,3,2],postmast:[0,3,2],prev_c:[0,3,2],"abstract":[0,4,3,2],getdestfieldsone2:[0,3,2],thevolum:[0,3,2],getdestfieldsone1:[0,3,2],exist:4,getinitvm:[0,3,2],check:4,getcaadv:[0,3,2],geteigenvalu:[0,3,2],xdivsb:[0,3,2],floor:[0,3,2],when:[0,4,3,2],usein:[0,3,2],node:[0,4,3,2],subdivid:[0,3,2],reacbas:[0,3,2],eigenvalu:[0,3,2],setistoroid:[0,3,2],consid:[0,3,2],setx1:[0,3,2],setx0:[0,3,2],subdivis:[0,3,2],longer:[0,3,2],gainin:[0,3,2],providesaccess:[0,3,2],reinit2:[0,3,2],setcaadv:[0,3,2],ignor:[0,3,2],handlevm:[0,3,2],time:[0,4,3,2],getcount:[0,3,2],backward:[0,3,2],setzk:[0,3,2],interpol2d:[0,3,2],reinit7:[0,3,2],reinit8:[0,3,2],stepsiz:[0,3,2],osc:[0,3,2],getmsgdest:[0,3,2],row:[0,3,2],decid:[0,3,2],middl:[0,3,2],stencilindex:[0,3,2],getxindex:[0,3,2],proxim:[0,3,2],readabl:4,getmean:[0,3,2],vec:[1,4],sourc:[0,4,3,2],string:[0,4,3,2],absoluteaccuraci:[0,3,2],getresult:[0,3,2],condit:[0,3,2],setsecondlevel:[0,3,2],cplxdest:[0,3,2],willattempt:[0,3,2],dim:4,distalout:[0,3,2],level:[0,3,2],setcin:[0,3,2],dia:[0,3,2],iter:[0,3,2],getisrun:[0,3,2],progress:[0,4,3,2],injectin:[0,3,2],div:[0,3,2],numopenst:[0,3,2],round:[0,3,2],valueout:[0,3,2],setspacetomesh:[0,3,2],cosh:[0,3,2],"____":[0,3,2],destfield:[0,4,3,2],cost:[0,3,2],getvdiv:[0,3,2],settickdt:[0,3,2],cplxenzbas:[0,3,2],useda:[0,3,2],remain:[0,3,2],current:[0,4,3,2],axial:[0,3,2],xplot:[0,3,2],handlemolwtrequest:[0,3,2],deriv:[0,3,2],gener:[0,4,3,2],coeffici:[0,3,2],slow:[0,3,2],locat:[0,3,2],along:[0,3,2],getmsgout:[0,3,2],micha:[0,3,2],setvmin:[0,3,2],remesh:[0,3,2],vectort:[0,3,2],numlocalvoxel:[0,3,2],queue:[0,3,2],xmaxher:[0,3,2],fixbuff:[0,3,2],plotnam:[0,3,2],influx:[0,3,2],beus:[0,3,2],regardless:[0,3,2],setcout:[0,3,2],dtype:4,modul:[0,1,2,3,4],setmolwt:[0,3,2],memori:[0,3,2],ca2:[0,3,2],give:[0,3,2],handleq:[0,3,2],live:[0,3,2],handler:[0,3,2],msg:[0,3,2],apifunct:[0,3,2],synchan:[0,3,2],getvmax:[0,3,2],getnumopenst:[0,3,2],examin:[0,3,2],vmax:[0,3,2],stimulust:[0,3,2],logarithm:[0,3,2],output_:[0,3,2],getnumnod:[0,3,2],local:[0,3,2],uniqu:4,compart:[0,4,3,2],can:[0,4,3,2],tabul:[0,3,2],ymina:[0,3,2],yminb:[0,3,2],purpos:[0,3,2],problemat:[0,3,2],nearest:[0,3,2],initproc:[0,3,2],genesi:[0,3,2],tavail:[0,3,2],menten:[0,3,2],tweaktau:[0,3,2],comparison_operationoper:[0,3,2],occur:[0,3,2],newpar:[0,3,2],alwai:[0,3,2],differenti:[0,3,2],setuptau:[0,3,2],multipl:[0,4,3,2],variou:[0,4,3,2],setfilenam:[0,3,2],setclock:[0,4,3,2],getim:[0,3,2],till:[0,3,2],ypower:[0,3,2],criterion:[0,3,2],pure:[0,3,2],setpreservenumentri:[0,3,2],map:[0,3,2],product:[0,3,2],atan:[0,3,2],max:[0,3,2],fed:[0,3,2],getpath:[0,3,2],"4th":[0,3,2],setstarttim:[0,3,2],mai:[0,3,2],destobj:4,builddefaultmesh:[0,3,2],man:[0,3,2],neck:[0,3,2],explicit:[0,3,2],inform:[0,4,3,2],lengthsfor:[0,3,2],setgamma:[0,3,2],gamma:[0,3,2],set2d:[0,3,2],getcoordin:[0,3,2],getbadstoichiometri:[0,3,2],talk:[0,3,2],ghk:[0,3,2],capacit:[0,3,2],destfinfo:[0,4,3,2],tableth:[0,3,2],msgtype:[0,4,3,2],getstarttim:[0,3,2],getscal:[0,3,2],ieee:[0,3,2],dynam:[0,3,2],sety1:[0,3,2],setz0:[0,3,2],group:[0,3,2],polici:[0,3,2],minusin:[0,3,2],getwidth:[0,3,2],geticon:[0,3,2],getouterarea:[0,3,2],cplx:[0,3,2],gettablea:[0,3,2],main:4,non:[0,3,2],"float":[0,3,2],setmeshtospac:[0,3,2],halt:[0,3,2],getstatetyp:[0,3,2],initi:[0,3,2],initu:[0,3,2],half:[0,3,2],now:[0,4,3,2],getnumproduct:[0,3,2],setinitu:[0,3,2],term:[0,3,2],voltag:[0,3,2],name:[0,4,3,2],rmsd:[0,3,2],gettau:[0,3,2],simpl:[0,3,2],revers:[0,3,2],cdest:[0,3,2],separ:[0,3,2],thesmallest:[0,3,2],setupmatrix:[0,3,2],getzpow:[0,3,2],getlookupindex:[0,3,2],unsetentri:[0,3,2],compil:[0,3,2],domain:[0,3,2],arg1:[0,3,2],arg2:[0,3,2],arg3:[0,3,2],arg4:[0,3,2],continu:[0,3,2],setthick:[0,3,2],getceil:[0,3,2],whenconck1:[0,3,2],happen:[0,3,2],space:[0,3,2],methodrkck:[0,3,2],setk1:[0,3,2],setk2:[0,3,2],setk3:[0,3,2],correct:[0,3,2],numdimens:[0,3,2],earlier:4,setnumallvoxel:[0,3,2],state:[0,3,2],subdivisionsth:[0,3,2],doesso:[0,3,2],hillpump:[0,3,2],zombi:[0,3,2],theori:[0,3,2],byth:[0,3,2],org:[0,3,2],methodrk2:[0,3,2],diagram:[0,3,2],setkf:[0,3,2],setymax:[0,3,2],setkb:[0,3,2],setkm:[0,3,2],getseconddelai:[0,3,2],place:[0,3,2],getfirstwidth:[0,3,2],lambda:[0,3,2],origin:[0,3,2],ninit:[0,3,2],directli:[0,3,2],carri:[0,3,2],onc:[0,3,2],arrai:[0,4,3,2],housekeep:[0,3,2],"long":[0,4,3,2],ring:[0,3,2],open:[0,3,2],predefin:[0,3,2],ligandconc:[0,3,2],size:[0,3,2],given:[0,3,2],convent:[0,4,3,2],yin:[0,3,2],getbaseclass:[0,3,2],assort:[0,3,2],hasfir:[0,3,2],outerdifsourceout:[0,3,2],diffconst:[0,3,2],arith:[0,3,2],courier:[0,3,2],copi:[0,4,3,2],specifi:[0,4,3,2],setinputoffset:[0,3,2],than:[0,3,2],inputoffset:[0,3,2],thatwhen:[0,3,2],zombiefuncpool:[0,3,2],lookupindex:[0,3,2],nposeigenvalu:[0,3,2],balanc:[0,3,2],posit:[0,3,2],seri:[0,3,2],pre:4,prd:[0,3,2],rmbytau:[0,3,2],setninit:[0,3,2],ani:[0,3,2],setymaxb:[0,3,2],deliv:[0,3,2],setthreshold:[0,3,2],engin:[0,3,2],techniqu:[0,3,2],showmatric:[0,3,2],dzwhen:[0,3,2],destroi:[0,3,2],innerdifsourceout:[0,3,2],xmina:[0,3,2],xminb:[0,3,2],update_funct:4,take:[0,3,2],getconck1:[0,3,2],gettd:[0,3,2],getinternaldt:[0,3,2],noth:[0,4,3,2],channel:[0,4,3,2],begin:[0,3,2],normal:[0,3,2],buffer:[0,3,2],getnumentri:[0,3,2],pymoos:[1,4],getintegr:[0,3,2],theleft:[0,3,2],beta:[0,4,3,2],messagetravers:[0,3,2],seticon:[0,3,2],relativeaccuraci:[0,3,2],getdoc:[0,3,2],synonym:[0,3,2],settickstep:[0,3,2],getepsab:[0,3,2],handlemolwt:[0,3,2],tablebas:[0,3,2],runtim:[0,4,3,2],mupars:[0,3,2],unambigua:[0,3,2],axi:[0,3,2],steadi:[0,3,2],setdiv:[0,3,2],is_betathi:[0,3,2],show:[0,3,2],rendit:[0,3,2],plusin:[0,3,2],permiss:[0,3,2],hack:[0,3,2],threshold:[0,3,2],geti1:[0,3,2],onli:[0,4,3,2],explicitli:[0,3,2],ratio:[0,3,2],setxdivsa:[0,3,2],"true":[0,4,3,2],transact:[0,3,2],setxdivsb:[0,3,2],activ:[0,3,2],pump:[0,3,2],multiscal:[1,4],getik:[0,3,2],nearli:[0,3,2],fieldsthat:[0,3,2],get:[0,4,3,2],getid:4,setabsoluteaccuraci:[0,3,2],dendrit:[0,3,2],chemic:[0,4,3,2],setz1:[0,3,2],enzbas:[0,3,2],requir:[0,3,2],multist:[0,3,2],vmin:[0,3,2],parentmsg:[0,3,2],xmax:[0,3,2],where:[0,4,3,2],xyzin:[0,3,2],entriesp:[0,3,2],setepsrel:[0,3,2],setoutputoffset:[0,3,2],detect:[0,3,2],proc1:[0,3,2],getdsolv:[0,3,2],label:[0,3,2],enough:[0,3,2],between:[0,3,2],"import":[0,3,2],settablea:[0,3,2],across:[0,3,2],settableb:[0,3,2],spars:[0,3,2],parent:[0,4,3,2],whenth:[0,3,2],cycl:[0,3,2],settemperatur:[0,3,2],markovsolverbas:[0,3,2],getcoord:[0,3,2],setvolum:[0,3,2],come:[0,3,2],getmathml:[0,3,2],reaction:[0,3,2],sparsemsg:[0,3,2],region:[0,3,2],setxmax:[0,3,2],mani:[0,3,2],ofvoltag:[0,3,2],adjoin:[0,3,2],setmotorconst:[0,3,2],setuseconcentr:[0,3,2],color:[0,3,2],overview:[1,4],getzindex:[0,3,2],getuserandinit:[0,3,2],getinject:[0,3,2],getdiffusionsc:[0,3,2],cabas:[0,3,2],coupl:[0,3,2],getmsgdestfunct:[0,3,2],rebuild:[0,3,2],getxdiv:[0,3,2],preservenumentri:[0,3,2],buildneuromeshjunct:[0,3,2],valueerror:4,setxminb:[0,3,2],setstoptim:[0,3,2],seconddelai:[0,3,2],gettablevector2d:[0,3,2],zombieenz:[0,3,2],numpool:[0,3,2],randinject:[0,3,2],nowassum:[0,3,2],getdest:[0,3,2],"case":[0,3,2],refractori:[0,3,2],setcoord:[0,3,2],totlength:[0,3,2],autoschedul:4,setwidth:[0,3,2],cash:[0,3,2],cast:[0,4,3,2],invok:[0,3,2],outcom:[0,3,2],abs_refract:[0,3,2],getinnerarea:[0,3,2],internaldt:[0,3,2],getsatur:[0,3,2],setinternaldt:[0,3,2],henc:[0,3,2],worri:[0,3,2],destin:[0,4,3,2],set_sens:[0,3,2],good:[0,3,2],setligandconc:[0,3,2],ascii:[0,3,2],"__init__":4,refractt:[0,3,2],setsecondwidth:[0,3,2],same:[0,4,3,2],arg1valu:[0,3,2],methodgsl:[0,3,2],document:[0,1,2,3,4],setnumst:[0,3,2],kutta:[0,3,2],finish:[0,3,2],getmaxit:[0,3,2],closest:[0,3,2],secondcas:[0,3,2],getfunct:[0,3,2],extern:[0,3,2],immedi:[0,3,2],appropri:[0,3,2],getleak:[0,3,2],xdivsa:[0,3,2],without:[0,3,2],channel2out:[0,3,2],spineth:[0,3,2],model:[0,4,3,2],dimension:[0,3,2],alsomaintain:[0,3,2],setcamin:[0,3,2],childout:[0,3,2],getfirstdelai:[0,3,2],rest:[0,3,2],bitmap:[0,3,2],tobe:[0,3,2],aspect:[0,3,2],concentr:[0,3,2],getsecondwidth:[0,3,2],getx1:[0,3,2],getx0:[0,3,2],except:[0,4,3,2],littl:[0,3,2],setzpow:[0,3,2],rescal:[0,3,2],versa:[0,3,2],beupdat:[0,3,2],real:[0,3,2],around:[0,3,2],read:[0,3,2],psd:[0,3,2],reac:[0,3,2],process5:[0,3,2],process4:[0,3,2],process7:[0,3,2],zpower:[0,3,2],process1:[0,3,2],process0:[0,3,2],process3:[0,3,2],mol:[0,3,2],unzombifi:[0,3,2],process9:[0,3,2],process8:[0,3,2],looptim:[0,3,2],injectmsg:[0,3,2],integ:[0,4,3,2],either:[0,4,3,2],difflength:[0,3,2],output:[0,3,2],getconc:[0,3,2],roundoff:[0,3,2],tweakalpha:[0,3,2],cabl:[0,3,2],neglig:[0,3,2],gettotlength:[0,3,2],alwaysdiffus:[0,3,2],getepsrel:[0,3,2],funcul:[0,3,2],getsteps:[0,3,2],subpart:[0,3,2],accommod:[0,3,2],settot:[0,3,2],recomput:[0,3,2],gettarget:[0,3,2],moos:[0,1,2,3,4],inject:[0,3,2],cylindr:[0,3,2],setinject:[0,3,2],notabl:4,refer:[0,4,3,2],power:[0,3,2],isrun:[0,4,3,2],randominit:[0,3,2],starttim:[0,3,2],fulli:[0,3,2],specifieshow:[0,3,2],src:[0,4,3,2],tripletfil:[0,3,2],ksolv:[0,3,2],requestmolwt:[0,3,2],aco:[0,3,2],side:[0,3,2],getnumallvoxel:[0,3,2],integr:[0,3,2],stand:[0,3,2],neighbor:[0,3,2],act:[0,4,3,2],channelout:[0,3,2],useconcentr:[0,3,2],elementari:[0,3,2],zombiecompart:[0,3,2],molwt:[0,3,2],zombiemmenz:[0,3,2],valuefield:[0,3,2],ymaxa:[0,3,2],charli:4,ymax:[0,3,2],area:[0,3,2],start:[0,4,3,2],interfac:[0,4,3,2],low:[0,3,2],lot:[0,3,2],loadxplot:[0,3,2],tupl:4,regard:[0,3,2],getstoptim:[0,3,2],amplifi:[0,3,2],offspr:[0,3,2],diffus:[0,3,2],satur:[0,3,2],secondlevel:[0,3,2],faster:[0,3,2],notat:[0,3,2],mathml:[0,3,2],possibl:[0,3,2],"default":[0,4,3,2],getthreshold:[0,3,2],setxmina:[0,3,2],curvatur:[0,3,2],getnumdimens:[0,3,2],embed:[0,3,2],puls:[0,3,2],expect:[0,3,2],plainplot:[0,3,2],spacetomesh:[0,3,2],creat:[0,1,2,3,4],setdiamet:[0,3,2],deep:[0,3,2],decreas:[0,3,2],file:[0,4,3,2],getuseinterpol:[0,3,2],proport:[0,3,2],fill:[0,3,2],hhchannel:[0,4,3,2],again:[0,3,2],setval:[0,3,2],xyin:[0,3,2],volsth:[0,3,2],orient:[0,1,2,3,4],field:[0,4,3,2],setcompart:[0,3,2],spatial:[0,3,2],you:[0,4,3,2],setvar:[0,3,2],gettabl:[0,3,2],sequenc:[0,4,3,2],track:[0,3,2],peak:[0,3,2],pool:[0,3,2],network:[0,3,2],instratesout:[0,3,2],lookupa:[0,3,2],setfirstwidth:[0,3,2],mass:[0,3,2],potenti:[0,3,2],unset:[0,3,2],rowstart:[0,3,2],represent:[0,4,3,2],all:[0,4,3,2],getxmin:[0,3,2],setstrid:[0,3,2],normalizeweight:[0,3,2],code:[0,4,3,2],acosh:[0,3,2],follow:[0,4,3,2],disk:[0,3,2],getninit:[0,3,2],children:[0,3,2],getrowstart:[0,3,2],onetoonemsg:[0,3,2],init:[0,4,3,2],getmin:[0,3,2],setnumkm:[0,3,2],oflength:[0,3,2],num_copi:4,raxialsym:[0,3,2],unitsthi:[0,3,2],shaft:[0,3,2],fals:[0,4,3,2],ofthi:[0,3,2],minfin:[0,3,2],getvmin:[0,3,2],util:[0,4,3,2],gettextcolor:[0,3,2],setgain:[0,3,2],fall:[0,3,2],setsatur:[0,3,2],getymax:[0,3,2],motor:[0,3,2],getxmina:[0,3,2],getxminb:[0,3,2],gety1:[0,3,2],list:[0,4,3,2],adjust:[0,3,2],cosin:[0,3,2],small:[0,3,2],getcw:4,dimens:[0,4,3,2],getk1:[0,3,2],getk2:[0,3,2],getdimens:[0,3,2],ten:[0,3,2],gethasfir:[0,3,2],zero:[0,3,2],voxelargu:[0,3,2],pass:[0,4,3,2],further:[0,3,2],getnit:[0,3,2],sub:[0,3,2],clock:[0,4,3,2],sum:[0,3,2],brief:[1,4],delet:[0,3,2],version:[0,4,3,2],method:[0,4,3,2],taupump:[0,3,2],shouldn:[0,3,2],capacitor:[0,3,2],getkf:[0,3,2],depend:[0,3,2],setstepposit:[0,3,2],modifi:[0,3,2],getkm:[0,3,2],valu:[0,4,3,2],search:[0,1,3,2],getcolumnindex:[0,3,2],getalphaparm:[0,3,2],currentstep:[0,3,2],prior:[0,3,2],amount:[0,3,2],dataindex:4,action:[0,3,2],setnumopenst:[0,3,2],getnumfield:[0,3,2],diamet:[0,3,2],e_previ:[0,3,2],shorthand:[0,3,2],handlechannel:[0,3,2],reiniti:[0,4,3,2],transit:[0,3,2],massconserv:[0,3,2],readili:[0,3,2],filenam:[0,3,2],famili:[0,3,2],decrement:[0,3,2],select:[0,3,2],getnumkm:[0,3,2],funcbas:[0,3,2],setnumgatei:[0,3,2],setni:[0,3,2],distinct:[0,3,2],getnumkf:[0,3,2],two:[0,3,2],raxialfunc:[0,3,2],tau2:[0,3,2],tau1:[0,3,2],setnumgatex:[0,3,2],setnz:[0,3,2],setnumgatez:[0,3,2],setnx:[0,3,2],taken:[0,3,2],isless:[0,3,2],"const":[0,3,2],rk5:[0,3,2],squid:[0,3,2],desir:[0,3,2],getbuffertim:[0,3,2],istoroid:[0,3,2],probabilist:[0,3,2],reinit0:[0,3,2],reinit1:[0,3,2],flag:[0,3,2],reinit3:[0,3,2],reinit4:[0,3,2],reinit5:[0,3,2],reinit6:[0,3,2],particular:4,known:[0,3,2],reinit9:[0,3,2],pk8procinfo:[0,3,2],taud:[0,3,2],taui:[0,3,2],setcmg:[0,3,2],histori:[0,3,2],transformedfrom:[0,3,2],setconck1:[0,3,2],setthi:[0,3,2],setymina:[0,3,2],setyminb:[0,3,2],instantan:[0,3,2],eqtaupump:[0,3,2],showfield:4,toroid:[0,3,2],share:[0,3,2],getvolum:[0,3,2],accept:[0,3,2],sphere:[0,3,2],minimum:[0,3,2],incom:[0,3,2],fluxfromin:[0,3,2],poolindex:[0,3,2],cours:[0,3,2],setseparatespin:[0,3,2],divid:[0,3,2],rather:[0,3,2],anoth:[0,4,3,2],atanh:[0,3,2],divis:[0,3,2],getgain:[0,3,2],markovsolv:[0,3,2],csv:[0,3,2],stir:[0,3,2],currentfract:[0,3,2],variant:[0,3,2],handleinject:[0,3,2],getlevel:[0,3,2],getseparatespin:[0,3,2],lineartransform:[0,3,2],setthresh:[0,3,2],associ:[0,3,2],hhchan:[0,3,2],setoutputvalu:[0,3,2],hodgkin:[0,3,2],scanstat:[0,3,2],spheric:[0,3,2],getlookupvalu:[0,3,2],getnormalizeweight:[0,3,2],help:[0,4,3,2],getsens:[0,3,2],isno:[0,3,2],cross:[0,3,2],held:[0,3,2],paper:[0,3,2],through:[0,3,2],compartmentbas:[0,3,2],tickdt:[0,3,2],getstrid:[0,3,2],paramet:[0,4,3,2],style:[0,3,2],prioroti:[0,3,2],exact:[0,3,2],derivedclass:[0,3,2],theentir:[0,3,2],storeinflux:[0,3,2],alter:[0,3,2],mstring:[0,3,2],getcabas:[0,3,2],independ:[0,3,2],"return":[0,4,3,2],ceq:[0,3,2],eventu:[0,3,2],reactin:[0,3,2],tabchannel:[0,3,2],firstwidth:[0,3,2],found:[0,3,2],truncat:[0,3,2],clamp:[0,3,2],getdx:[0,3,2],weight:[0,3,2],getdz:[0,3,2],getdt:[0,3,2],idea:[0,3,2],procedur:[0,3,2],realli:[0,3,2],getdi:[0,3,2],connect:[0,4,3,2],getz1:[0,3,2],getz0:[0,3,2],setalwaysdiffus:[0,3,2],beyond:[0,3,2],event:[0,3,2],buffers:[0,3,2],getestimateddt:[0,3,2],handlest:[0,3,2],mmpump:[0,3,2],redo:[0,3,2],getbuffers:[0,3,2],getcompart:[0,3,2],commandin:[0,3,2],print:4,widthin:[0,3,2],advanc:[0,3,2],getzk:[0,3,2],getcamin:[0,3,2],reason:[0,3,2],base:[0,4,3,2],put:[0,3,2],resettl:[0,3,2],thread:[0,3,2],getcommand:[0,3,2],ddest:[0,3,2],circuit:[0,3,2],assign:[0,4,3,2],notifi:[0,3,2],upper:[0,3,2],exchang:[0,3,2],number:[0,4,3,2],done:[0,3,2],getaccommod:[0,3,2],adest:[0,3,2],stabl:[0,3,2],solutionstatu:[0,3,2],differ:[0,3,2],zombiecaconc:[0,3,2],exponenti:[0,3,2],"5th":[0,3,2],sumraxi:[0,3,2],least:[0,3,2],setnumfield:[0,3,2],objid:[0,4,3,2],compartment:[0,3,2],zombiebufpool:[0,3,2],levelin:[0,3,2],option:[0,4,3,2],newelm:[0,3,2],basal:[0,3,2],part:[0,4,3,2],dt_:[0,3,2],sign:[0,3,2],xpower:[0,3,2],kind:[0,3,2],scheme:[0,3,2],getsrcfieldsone1:[0,3,2],getcadiv:[0,3,2],whenev:[0,3,2],seamlessli:[0,3,2],setc:[0,3,2],ydiv:[0,3,2],toward:[0,3,2],stateout:[0,3,2],karp:[0,3,2],comput:[0,3,2],pooloffset:[0,3,2],ygate:[0,3,2],built:4,equival:[0,3,2],self:[0,3,2],plots9:[0,3,2],stoichiometri:[0,3,2],onset:[0,3,2],also:[0,3,2],settau2:[0,3,2],build:[0,3,2],msgsrc:[0,3,2],distribut:[0,3,2],index:[0,1,2,3,4],storeoutflux:[0,3,2],setuserandinit:[0,3,2],previou:[0,3,2],setmax:[0,3,2],most:[0,4,3,2],compt:[0,3,2],alpha:[0,4,3,2],charg:[0,3,2],getcurr:[0,3,2],settaud:[0,3,2],filesystem:4,settaui:[0,3,2],setcadiv:[0,3,2],clear:[0,3,2],getconvergencecriterion:[0,3,2],setz:[0,3,2],exp:[0,3,2],pars:[0,3,2],baseclass:[0,3,2],conserv:[0,3,2],doserespons:[0,3,2],getpreservenumentri:[0,3,2],fine:[0,3,2],find:[0,3,2],access:[0,4,3,2],raxialoutbut:[0,3,2],plotnamewhen:[0,3,2],setfloor:[0,3,2],solut:[0,3,2],setconvergencecriterion:[0,3,2],knowledg:[0,3,2],factor:[0,3,2],zombiehhchannel:[0,3,2],anyvalu:[0,3,2],unus:[0,3,2],express:[0,3,2],parentvoxel:[0,3,2],nativ:[0,3,2],longest:[0,3,2],restart:[0,3,2],getfieldindex:4,getsrcfieldsone2:[0,3,2],kmg_b:[0,3,2],coord:[0,3,2],getmeshtospac:[0,3,2],common:[0,3,2],set:[0,4,3,2],proximalend:[0,3,2],getmod:[0,3,2],tree:[0,4,3,2],see:[0,3,2],sec:[0,3,2],itautomag:[0,3,2],arg:[0,3,2],getcurrenttim:[0,3,2],outward:[0,3,2],secondwidth:[0,3,2],someth:[0,4,3,2],thecurv:[0,3,2],smallest:[0,3,2],msgout:[0,3,2],altern:[0,3,2],numrat:[0,3,2],numer:[0,3,2],getmethod:[0,3,2],solv:[0,3,2],cubemesh:[0,3,2],both:[0,3,2],last:[0,3,2],lookupout:[0,3,2],setdifflength:[0,3,2],currenttim:[0,3,2],load:[0,4,3,2],point:[0,4,3,2],getsrc:[0,3,2],camin:[0,3,2],gete2:[0,3,2],gete1:[0,3,2],getuseconcentr:[0,3,2],param:[0,3,2],edgetrigg:[0,3,2],stamp:[0,3,2],getgbar:[0,3,2],empti:[0,3,2],sinc:[0,3,2],hhchannel2d:[0,3,2],far:[0,3,2],getydiv:[0,3,2],constructslik:[0,3,2],asinh:[0,3,2],fire:[0,3,2],userandinit:[0,3,2],numsubstr:[0,3,2],gap:[0,3,2],coordin:[0,3,2],getistoroid:[0,3,2],getem:[0,3,2],getek:[0,3,2],func:[0,3,2],meshentri:[0,3,2],getexpr:[0,3,2],kcat:[0,3,2],look:[0,3,2],raw:[0,3,2],batch:[0,3,2],durat:[0,3,2],"while":[0,3,2],abov:[0,4,3,2],error:[0,4,3,2],setlength:[0,3,2],loop:[0,3,2],bdest:[0,3,2],propag:[0,3,2],getparentvoxel:[0,3,2],vol:[0,3,2],centr:[0,3,2],loadcsv:[0,3,2],getrefractt:[0,3,2],itself:[0,3,2],diffamp:[0,4,3,2],ohm:[0,3,2],tetrahedr:[0,3,2],getthi:[0,3,2],setuseinterpol:[0,3,2],origchannel:[0,3,2],usea:[0,3,2],raxialout:[0,3,2],voxelvolum:[0,3,2],getvector:[0,3,2],user:[0,3,2],chang:[0,3,2],travers:[0,3,2],entri:[0,3,2],elem:4,process6:[0,3,2],commonli:[0,4,3,2],entiti:[0,4,3,2],deplet:[0,3,2],addmsg:[0,3,2],protrud:[0,3,2],gsl:[0,3,2],explan:[0,3,2],construct:[0,3,2],cout:[0,3,2],spinemesh:[0,3,2],cuboid:[0,3,2],ikout:[0,3,2],process2:[0,3,2],setnummesh:[0,3,2],shape:[0,4,3,2],outerdif:[0,3,2],settau1:[0,3,2],msgin:[0,3,2],getnposeigenvalu:[0,3,2],tableb:[0,3,2],rgb:[0,3,2],tablea:[0,3,2],thespecifi:[0,3,2],input:[0,3,2],euler:[0,3,2],getmynod:[0,3,2],setfirstdelai:[0,3,2],format:[0,4,3,2],molecul:[0,3,2],gbar:[0,3,2],num_synaps:[0,3,2],spine:[0,3,2],signal:[0,3,2],resolv:[0,3,2],collect:[0,3,2],valenc:[0,3,2],betabecaus:[0,3,2],sensedin:[0,3,2],getoutputoffset:[0,3,2],soma:[0,3,2],setfirstlevel:[0,3,2],some:[0,3,2],back:[0,3,2],columnindex:[0,3,2],sampl:[0,3,2],setvolumenotr:[0,3,2],setyindex:[0,3,2],scale:[0,3,2],gettaui:[0,3,2],gettaud:[0,3,2],rowinformatino:[0,3,2],per:[0,3,2],waveform:[0,3,2],mathemat:[0,3,2],goldman:[0,3,2],arematch:[0,3,2],proc:[0,3,2],tangen:[0,3,2],run:[0,3,2],method1:[0,3,2],reach:[0,3,2],perpendicular:[0,3,2],handleraxi:[0,3,2],step:[0,3,2],initreinit:[0,3,2],initialst:[0,3,2],subtract:[0,3,2],setinitialst:[0,3,2],transpos:[0,3,2],manag:[0,3,2],dormand:[0,3,2],idl:[0,3,2],saddl:[0,3,2],gettau1:[0,3,2],block:[0,3,2],gettau2:[0,3,2],estimateddt:[0,3,2],within:[0,3,2],inth:[0,3,2],next:[0,3,2],occupi:[0,3,2],fast:[0,3,2],adjac:[0,3,2],arithmet:[0,3,2],includ:[0,3,2],forward:[0,3,2],setupalpha:[0,3,2],whether_to_copy_messag:4,setbaselevel:[0,3,2],getti:[0,3,2],settablevector2d:[0,3,2],subsidiari:[0,3,2],setceil:[0,3,2],mathfunc:[0,3,2],pwe:4,link:[0,3,2],delta:4,info:[0,3,2],concaten:4,consist:[0,3,2],getcolor:[0,3,2],cin:[0,3,2],getalwaysdiffus:[0,3,2],similar:[0,3,2],axialout:[0,3,2],currentout:[0,3,2],curv:[0,3,2],constant:[0,3,2],getfield:4,thusdx:[0,3,2],parser:[0,3,2],fieldindic:[0,3,2],doesn:[0,3,2],repres:[0,4,3,2],getdelai:[0,3,2],guarante:[0,3,2],clockcontrol:[0,3,2],sequenti:[0,3,2],msgdestfunct:[0,3,2],invalid:[0,3,2],zindex:[0,3,2],proxi:[0,3,2],difshel:[0,3,2],transport:[0,3,2],isneglig:[0,3,2],numrow:[0,3,2],asymmetr:[0,3,2],getnumallpool:[0,3,2],trouser:[0,3,2],ymaxb:[0,3,2],ruthlessli:[0,3,2],getnumlocalvoxel:[0,3,2],axialfuncof:[0,3,2],amplitud:[0,3,2],alphaparm:[0,3,2],enzym:[0,3,2],dvm:[0,3,2],ratesat:[0,3,2],setkcat:[0,3,2],vice:[0,3,2],sumfunc:[0,3,2],solver:[0,3,2],evenli:[0,3,2],meshindex:[0,3,2],lookupvalu:[0,3,2],getnumdiffcompt:[0,3,2],getdoloop:[0,3,2],getruntim:[0,3,2],prototyp:[0,3,2],setcm:[0,3,2],katz:[0,3,2],toth:[0,3,2],edg:[0,3,2],getnumdata:[0,3,2],setca:[0,3,2],fehlberg:[0,3,2],modelpath:4,setcw:4,settextcolor:[0,3,2],numseg:[0,3,2],sensit:[0,3,2],nnegeigenvalu:[0,3,2],getchildren:[0,3,2],send:[0,3,2],granular:[0,3,2],difbuff:[0,3,2],ca_bas:[0,3,2],sent:[0,3,2],passiv:[0,3,2],getinitialst:[0,3,2],geterror:[0,3,2],isiniti:[0,3,2],grid:[0,3,2],getabsoluteaccuraci:[0,3,2],volum:[0,3,2],setmod:[0,3,2],relev:[0,3,2],tri:[0,3,2],hsolv:[0,3,2],getbaselevel:[0,3,2],funcpool:[0,3,2],setcount:[0,3,2],outflux:[0,3,2],"try":[0,3,2],getstatu:[0,3,2],fieldtyp:4,thendx:[0,3,2],smaller:[0,3,2],getcin:[0,3,2],getminfin:[0,3,2],copymsg:4,setconc:[0,3,2],leakag:[0,3,2],chanbas:[0,3,2],textcolor:[0,3,2],compat:[0,3,2],affectedmolecul:[0,3,2],font:[0,3,2],compar:[0,3,2],cell:[0,4,3,2],izhikevich:[0,3,2],setypow:[0,3,2],firstdelai:[0,3,2],getsolutionstatu:[0,3,2],srcfieldsone1:[0,3,2],srcfieldsone2:[0,3,2],getinputoffset:[0,3,2],sinh:[0,3,2],sine:[0,3,2],implicit:[0,3,2],lookupfinfo:4,niter:[0,3,2],convert:[0,4,3,2],startentri:[0,3,2],larger:[0,3,2],diff:[0,3,2],converg:[0,3,2],sendsvalu:[0,3,2],typic:[0,3,2],getmatrixentri:[0,3,2],psdlistout:[0,3,2],setnam:[0,3,2],somat:[0,3,2],appli:[0,3,2],firstlevel:[0,3,2],getstepposit:[0,3,2],setbuffers:[0,3,2],pairfil:[0,3,2],buildup:[0,3,2],setrefractt:[0,3,2],vdiv:[0,3,2],from:[0,4,3,2],commun:[0,3,2],getoutputvalu:[0,3,2],setconst:[0,3,2],doubl:[0,3,2],setdelai:[0,3,2],tocontrol:[0,3,2],zin:[0,3,2],commut:[0,3,2],comparison:[0,3,2],loadmodel:4,numvarpool:[0,3,2],huxlei:[0,3,2],"transient":[0,3,2],previous_integr:[0,3,2],getnvec:[0,3,2],getu0:[0,3,2],getthresh:[0,3,2],retriev:[0,3,2],alia:[0,4,3,2],getdifflength:[0,3,2],annot:[0,3,2],setabs_refract:[0,3,2],finfo:[0,3,2],izhikevichnrn:[0,3,2],control:[0,4,3,2],tau:[0,3,2],process:[0,4,3,2],high:[0,3,2],xmin:[0,3,2],getnum:[0,3,2],proximalonli:[0,3,2],remainunchang:[0,3,2],tan:[0,3,2],getcmg:[0,3,2],getyindex:[0,3,2],delai:[0,3,2],surfac:[0,3,2],filepath:4,rrrgggbbb:[0,3,2],getgk:[0,3,2],need:[0,4,3,2],instead:[0,3,2],sin:[0,3,2],setvdiv:[0,3,2],overridden:[0,3,2],getneighbor:[0,3,2],getmsgin:[0,3,2],getgeometrypolici:[0,3,2],checkingtak:[0,3,2],enzout:[0,3,2],poolbas:[0,3,2],getstat:[0,3,2],alloc:[0,3,2],getnumgatex:[0,3,2],getmotorconst:[0,3,2],raxialspher:[0,3,2],hhgate:[0,3,2],correspond:[0,4,3,2],element:[0,4,3,2],issu:[0,3,2],allow:[0,3,2],getnumgatei:[0,3,2],tables7:[0,3,2],kmg_a:[0,3,2],setrmbytau:[0,3,2],train:[0,3,2],tables8:[0,3,2],move:[0,4,3,2],testsch:[0,3,2],setxmin:[0,3,2],steadyst:[0,3,2],outer:[0,3,2],setksolv:[0,3,2],theircolumn:[0,3,2],setra:[0,3,2],decai:[0,3,2],total:[0,3,2],getclassnam:[0,3,2],setrm:[0,3,2],aboverk4:[0,3,2],junction:[0,3,2],greater:[0,3,2],handl:[0,3,2],overal:[0,3,2],getca_bas:[0,3,2],automat:[0,4,3,2],numsynaps:[0,3,2],vm2:[0,3,2],vm1:[0,3,2],setr1:[0,3,2],setr0:[0,3,2],somewher:[0,3,2],anyth:[0,3,2],zombiepool:[0,3,2],usinga:[0,3,2],mode:[0,3,2],subset:[0,3,2],spearat:4,"static":[0,3,2],getypow:[0,3,2],hyperbol:[0,3,2],special:[0,3,2],might:[0,3,2],variabl:[0,3,2],matrix:[0,3,2],contigu:[0,3,2],rel:[0,3,2],getnumr:[0,3,2],matric:[0,3,2],setdi:[0,3,2],concentrationout:[0,3,2],manipul:[0,3,2],epsrel:[0,3,2],setdx:[0,3,2],setdz:[0,3,2],setvmax:[0,3,2],setdt:[0,3,2],cellport:[0,3,2],cadiv:[0,3,2],timet:[0,3,2],psdmesh:[0,3,2],getderiv:[0,3,2],keep:[0,3,2],counterpart:[0,3,2],stride:[0,3,2],length:[0,3,2],zombiereac:[0,3,2],outsid:[0,3,2],geometri:[0,3,2],innerarea:[0,3,2],timea:[0,3,2],setinnerarea:[0,3,2],fieldnam:[0,3,2],meshtyp:[0,3,2],overshoot:[0,3,2],setinst:[0,3,2],trigmod:[0,3,2],numallpool:[0,3,2],badstoichiometri:[0,3,2],markovratet:[0,3,2],"1e9":[0,3,2],xindex:[0,3,2],lookupreturn2d:[0,3,2],princ:[0,3,2],setedgetrigg:[0,3,2],stencil:[0,3,2],dump:[0,3,2],data:[0,3,2],rmsdiffer:[0,3,2],system:[0,3,2],process_1:[0,3,2],process_0:[0,3,2],getxpow:[0,3,2],setrandomconnect:[0,3,2],eventout:[0,3,2],channel1out:[0,3,2],setprob:[0,3,2],getsourcefield:[0,3,2],shell:[0,3,2],adaptor:[0,3,2],getlength:[0,3,2],thresh:[0,3,2],calledc:[0,3,2],getsubtre:[0,3,2],setnormalizeweight:[0,3,2],datatyp:4,toglob:[0,3,2],charact:[0,3,2],sens:[0,3,2],getnumgatez:[0,3,2],markovgslsolv:[0,3,2],have:[0,4,3,2],tabl:[0,1,2,3,4],setinitvm:[0,3,2],getkcat:[0,3,2],getv0:[0,3,2],"_second_":[0,3,2],min:[0,3,2],arg1x2:[0,3,2],accuraci:[0,3,2],builtin:[0,4,3,2],which:[0,4,3,2],derivativeout:[0,3,2],singl:[0,4,3,2],unless:[0,3,2],setouterarea:[0,3,2],discov:[0,3,2],alsohandl:[0,3,2],oscil:[0,3,2],mgblock:[0,3,2],"class":[0,1,2,3,4],getcurrentstep:[0,3,2],setentri:[0,3,2],vmout:[0,3,2],getstencilr:[0,3,2],setlevel:[0,3,2],request:[0,3,2],face:[0,3,2],nout:[0,3,2],determin:[0,3,2],flux:[0,3,2],wildcardpath:[0,3,2],dend:[0,3,2],setnumpool:[0,3,2],millimolar:[0,3,2],text:[0,3,2],reinit:[0,4,3,2],xgate:[0,3,2],bring:[0,3,2],setgeometrypolici:[0,3,2],varin:[0,3,2],notneed:[0,3,2],epsab:[0,3,2],tau_i:[0,3,2],localindic:[0,3,2],tau_d:[0,3,2],should:[0,4,3,2],temperatur:[0,3,2],micron:[0,3,2],gete_previ:[0,3,2],setfield:4,remainsfix:[0,3,2],meshtospac:[0,3,2],contribut:[0,3,2],whenk2:[0,3,2],whenk1:[0,3,2],zgatewhen:[0,3,2],increas:[0,3,2],organ:[0,3,2],rint:[0,3,2],cinfo:[0,3,2],setdoloop:[0,3,2],handlemov:[0,3,2],contain:[0,4,3,2],onetoallmsg:[0,3,2],view:4,setek:[0,3,2],setscal:[0,3,2],setem:[0,3,2],getxdivsa:[0,3,2],setrefractoryperiod:[0,3,2],setdsolv:[0,3,2],triplet:[0,3,2],getnumcolumn:[0,3,2],getxdivsb:[0,3,2],closer:[0,3,2],statu:[0,3,2],getnumtick:[0,3,2],setsurfac:[0,3,2],fieldindex:[0,4,3,2],physiolog:[0,3,2],labelthat:[0,3,2],sety0:[0,3,2],caconc:[0,4,3,2],getsdev:[0,3,2],comparevec:[0,3,2],baselevel:[0,3,2],childmsg:4,job:[0,3,2],entir:[0,3,2],addit:[0,3,2],instant:[0,3,2],numdiffcompt:[0,3,2],equal:[0,3,2],len:4,etc:[0,3,2],enzdest:[0,3,2],eta:[0,3,2],equat:[0,3,2],setse:[0,3,2],getshapemod:[0,3,2],mmenz:[0,3,2],spikegen:[0,3,2],rmsratio:[0,3,2],vclamp:[0,3,2],respect:[0,3,2],dsolv:[0,3,2],orig:[0,3,2],getnumsynaps:[0,3,2],quit:[0,3,2],classnam:[0,4,3,2],compon:4,treat:4,getlabel:[0,3,2],electr:[0,4,3,2],nzentri:[0,3,2],bit:[0,3,2],getnumsubstr:[0,3,2],gsl6:[0,3,2],presenc:[0,3,2],present:[0,3,2],determinist:[0,3,2],gettableb:[0,3,2],hasonli:[0,3,2],spikeout:[0,3,2],setmathml:[0,3,2],defin:[0,3,2],termher:[0,3,2],concinit:[0,3,2],observ:4,onetoonedataindexmsg:[0,3,2],getdiv:[0,3,2],almost:[0,3,2],molecular:[0,3,2],neuron:[0,3,2],getstoich:[0,3,2],partner:[0,3,2],avg:[0,3,2],stoich:[0,3,2],geti:[0,3,2],getm:[0,3,2],getn:[0,3,2],geta:[0,3,2],getb:[0,3,2],numtotalentri:[0,3,2],getd:[0,3,2],gete:[0,3,2],sqrt:[0,3,2],getx:[0,3,2],python:[0,4,3,2],getz:[0,3,2],largest:[0,3,2],pidcontrol:[0,3,2],getq:[0,3,2],getr:[0,3,2],getu:[0,3,2],fieldel:[0,3,2],endindex:[0,3,2],oneof:[0,3,2],http:[0,3,2],setxpow:[0,3,2],cubic:[0,3,2],ion:[0,3,2],setlooptim:[0,3,2],remeshreacsout:[0,3,2],expand:[0,3,2],setd:[0,3,2],off:[0,3,2],seta:[0,3,2],setb:[0,3,2],neural:[0,3,2],setn:[0,3,2],well:[0,3,2],seti:[0,3,2],exampl:[0,4,3,2],command:[0,3,2],setr:[0,3,2],english:[0,3,2],undefin:[0,3,2],doloop:[0,3,2],setvector:[0,3,2],sibl:[0,3,2],usual:[0,3,2],distanc:[0,3,2],sdev:[0,3,2],paus:[0,3,2],less:[0,3,2],tertiari:4,obtain:[0,3,2],dose:[0,3,2],loadxplotrang:[0,3,2],settabl:[0,3,2],thetre:[0,3,2],heavili:[0,3,2],getxmax:[0,3,2],add:[0,3,2],other:[0,4,3,2],schedul:[0,4,3,2],getmax:[0,3,2],bool:[0,3,2],setydivsb:[0,3,2],match:[0,4,3,2],setydivsa:[0,3,2],numallvoxel:[0,3,2],settarget:[0,3,2],setminfin:[0,3,2],andso:[0,3,2],useclock:[0,4,3,2],dest:[0,4,3,2],theschedul:[0,3,2],know:[0,3,2],numcolumn:[0,3,2],mynod:[0,3,2],tick:[0,4,3,2],diffusionarea:[0,3,2],insert:[0,3,2],like:[0,4,3,2],success:[0,3,2],nvec:[0,3,2],getthick:[0,3,2],setupg:[0,3,2],numstat:[0,3,2],synhandl:[0,3,2],page:[0,1,3,2],settrigmod:[0,3,2],proximalout:[0,3,2],onevoxelvolum:[0,3,2],smoothli:[0,3,2],home:[0,3,2],setymin:[0,3,2],rmsr:[0,3,2],gsolv:[0,3,2],lead:[0,3,2],leak:[0,3,2],avoid:[0,3,2],yindex:[0,3,2],overlap:[0,3,2],setti:[0,3,2],setmethod:[0,3,2],estim:[0,3,2],leav:[0,3,2],settl:[0,3,2],spinelistout:[0,3,2],setbuffertim:[0,3,2],three:[0,4,3,2],settd:[0,3,2],getnam:[0,3,2],getinvdx:[0,3,2],givesan:[0,3,2],ncopi:[0,3,2],getinvdi:[0,3,2],getisiniti:[0,3,2],offset:[0,3,2],permeabilityout:[0,3,2],stage:[0,3,2],about:[0,4,3,2],actual:[0,3,2],column:[0,3,2],cplxout:[0,3,2],constructor:4,setcommand:[0,3,2],raxial:[0,3,2],motorconst:[0,3,2],own:[0,3,2],sumraxialout:[0,3,2],systemdefault:[0,3,2],getedgetrigg:[0,3,2],setnumdata:[0,3,2],srcfield:4,due:[0,3,2],axon:[0,3,2],getrank:[0,3,2],been:[0,3,2],tablevector2d:[0,3,2],merg:[0,3,2],assumpt:[0,3,2],explict:[0,3,2],handleligandconc:[0,3,2],innerdif:[0,3,2],trigger:[0,3,2],inner:[0,3,2],replac:[0,3,2],"var":[0,3,2],log10:[0,3,2],individu:[0,3,2],"function":[0,1,2,3,4],getnumst:[0,3,2],neutral:[0,4,3,2],gettrigmod:[0,3,2],gain:[0,3,2],count:[0,3,2],made:[0,3,2],wish:[0,3,2],smooth:[0,3,2],displai:[0,3,2],knowswhat:[0,3,2],getdestfield:[0,3,2],record:4,below:[0,3,2],channels2:[0,3,2],limit:[0,3,2],otherwis:[0,4,3,2],problem:[0,3,2],subordin:[0,3,2],intfir:[0,4,3,2],reciproc:[0,3,2],procinfo:[0,3,2],evalu:[0,3,2],"int":[0,3,2],dure:[0,4,3,2],pid:[0,3,2],gettickstep:[0,3,2],implement:[0,4,3,2],setxindex:[0,3,2],outputoffset:[0,3,2],probabl:[0,3,2],isglob:[0,3,2],detail:[0,3,2],virtual:[0,3,2],chemcompt:[0,3,2],lookupb:[0,3,2],lookup:[0,4,3,2],getnumseg:[0,3,2],getmolwt:[0,3,2],out:[0,3,2],stat:[0,3,2],pulsegen:[0,3,2],star:[0,3,2],cylmesh:[0,3,2],setymaxa:[0,3,2],getvoxelvolum:[0,3,2],requestinput:[0,3,2],setalpha:[0,3,2],log:[0,3,2],getnnegeigenvalu:[0,3,2],stepposit:[0,3,2],shunt:[0,3,2],scientif:[0,3,2],rule:[0,3,2],emerg:[0,3,2],numvoxel:[0,3,2]},objtypes:{"0":"py:class","1":"py:attribute","2":"py:method","3":"np:class","4":"np:attribute","5":"np:method"},titles:["MOOSE Classes","the Multiscale Object-Oriented Simulation Environment","MOOSE Classes","MOOSE Classes","MOOSE = Multiscale Object Oriented Simulation Environment."],objnames:{"0":["py","class","Python class"],"1":["py","attribute","Python attribute"],"2":["py","method","Python method"],"3":["np","class","Python class"],"4":["np","attribute","Python attribute"],"5":["np","method","Python method"]},filenames:["tmp","index","moose_classes","moose_builtins","moose_overview"]}) \ No newline at end of file diff --git a/docs/user/html/pymoose2walkthrough.html b/docs/user/html/pymoose2walkthrough.html deleted file mode 100644 index 7c611cfb6d12cf6c78c0403028a814a3e025ff6e..0000000000000000000000000000000000000000 --- a/docs/user/html/pymoose2walkthrough.html +++ /dev/null @@ -1,282 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta http-equiv="Content-Style-Type" content="text/css" /> - <meta name="generator" content="pandoc" /> - <meta name="author" content="Subhasis Ray" /> - <meta name="date" content="2012-12-12" /> - <title>Getting started with python scripting for MOOSE</title> - <style type="text/css">code{white-space: pre;}</style> - <style type="text/css"> -table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode { - margin: 0; padding: 0; vertical-align: baseline; border: none; } -table.sourceCode { width: 100%; line-height: 100%; } -td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } -td.sourceCode { padding-left: 5px; } -code > span.kw { color: #007020; font-weight: bold; } -code > span.dt { color: #902000; } -code > span.dv { color: #40a070; } -code > span.bn { color: #40a070; } -code > span.fl { color: #40a070; } -code > span.ch { color: #4070a0; } -code > span.st { color: #4070a0; } -code > span.co { color: #60a0b0; font-style: italic; } -code > span.ot { color: #007020; } -code > span.al { color: #ff0000; font-weight: bold; } -code > span.fu { color: #06287e; } -code > span.er { color: #ff0000; font-weight: bold; } - </style> - <link rel="stylesheet" href="css/moosedocs.css" type="text/css" /> -</head> -<body> -<div id="header"> -<h1 class="title">Getting started with python scripting for MOOSE</h1> -<h2 class="author">Subhasis Ray</h2> -<h3 class="date">December 12, 2012</h3> -</div> -<div id="TOC"> -<ul> -<li><a href="#introduction">Introduction</a></li> -<li><a href="#importing-moose-and-accessing-built-in-documentation">Importing MOOSE and accessing built-in documentation</a></li> -<li><a href="#creating-objects-and-traversing-the-object-hierarchy">Creating objects and traversing the object hierarchy</a></li> -<li><a href="#setting-the-properties-of-elements-accessing-fields">Setting the properties of elements: accessing fields</a></li> -<li><a href="#putting-them-together-setting-up-connections">Putting them together: setting up connections</a></li> -<li><a href="#scheduling-and-running-the-simulation">Scheduling and running the simulation</a></li> -<li><a href="#some-more-details">Some more details</a><ul> -<li><a href="#ematrix-melement-and-element"><code>ematrix</code>, <code>melement</code> and <code>element</code></a></li> -<li><a href="#finfos"><code>Finfos</code></a></li> -</ul></li> -<li><a href="#moving-on">Moving on</a></li> -</ul> -</div> -<h1 id="introduction"><a href="#introduction">Introduction</a></h1> -<p>This document describes how to use the <code>moose</code> module in Python scripts or in an interactive Python shell. It aims to give you enough overview to help you start scripting using MOOSE and extract farther information that may be required for advanced work. Knowledge of Python or programming in general will be helpful. If you just want to simulate existing models in one of the supported formats, you can fire the MOOSE GUI and locate the model file using the <code>File</code> menu and load it. The GUI is described <a href="./MooseGuiDocs.html">here</a>. The example code in the boxes can be entered in a Python shell.</p> -<h1 id="importing-moose-and-accessing-built-in-documentation"><a href="#importing-moose-and-accessing-built-in-documentation">Importing MOOSE and accessing built-in documentation</a></h1> -<p>In a python script you import modules to access the functionalities they provide.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="ch">import</span> moose</code></pre> -<p>This makes the <code>moose</code> module available for use in Python. You can use Python's built-in <code>help</code> function to read the top-level documentation for the moose module:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">help</span>(moose)</code></pre> -<p>This will give you an overview of the module. Press <code>q</code> to exit the pager and get back to the interpreter. You can also access the documentation for individual classes and functions this way.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">help</span>(moose.<span class="ot">connect</span>)</code></pre> -<p>To list the available functions and classes you can use <code>dir</code> function<a href="#fn1" class="footnoteRef" id="fnref1"><sup>1</sup></a>.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">dir</span>(moose)</code></pre> -<p>MOOSE has built-in documentation in the C++-source-code independent of Python. The <code>moose</code> module has a separate <code>doc</code> function to extract this documentation.</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.doc(moose.Compartment)</code></pre> -<p>The class level documentation will show whatever the author/maintainer of the class wrote for documentation followed by a list of various kinds of fields and their data types. This can be very useful in an interactive session.</p> -<p>Each field can have its own detailed documentation, too.</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.doc(<span class="st">'Compartment.Rm'</span>)</code></pre> -<p>Note that you need to put the class-name followed by dot followed by field-name within quotes. Otherwise, <code>moose.doc</code> will receive the field value as parameter and get confused.</p> -<h1 id="creating-objects-and-traversing-the-object-hierarchy"><a href="#creating-objects-and-traversing-the-object-hierarchy">Creating objects and traversing the object hierarchy</a></h1> -<p>Different types of biological entities like neurons, enzymes, etc are represented by classes and individual instances of those types are objects of those classes. Objects are the building-blocks of models in MOOSE. We call MOOSE objects <code>element</code> and use object and element interchangeably in the context of MOOSE. Elements are conceptually laid out in a tree-like hierarchical structure. If you are familiar with file system hierarchies in common operating systems, this should be simple.</p> -<p>At the top of the object hierarchy sits the <code>Shell</code>, equivalent to the root directory in UNIX-based systems and represented by the path <code>/</code>. You can list the existing objects under <code>/</code> using the <code>le</code> function.</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.le()</code></pre> -<p>This shows something like:</p> -<pre class="sourceCode python"><code class="sourceCode python"> Elements under / - /Msgs - /clock - /classes</code></pre> -<p><code>Msgs</code>, <code>clock</code> and <code>classes</code> are predefined objects in MOOSE. And each object can contain other objects inside them. You can see them by passing the path of the parent object to <code>le</code>.</p> -<p>Entering:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.le(<span class="st">'/clock'</span>)</code></pre> -<p>prints:</p> -<pre class="sourceCode python"><code class="sourceCode python"> Elements under /clock - /clock/tick[<span class="dv">0</span>]</code></pre> -<p>Now let us create some objects of our own. This can be done by invoking MOOSE class constructors (just like regular Python classes).</p> -<pre class="sourceCode python"><code class="sourceCode python"> model = moose.Neutral(<span class="st">'/model'</span>)</code></pre> -<p>The above creates a <code>Neutral</code> object named <code>model</code>. <code>Neutral</code> is the most basic class in MOOSE. A <code>Neutral</code> element can act as a container for other elements. We can create something under <code>model</code>:</p> -<pre class="sourceCode python"><code class="sourceCode python"> soma = moose.Compartment(<span class="st">'/model/soma'</span>)</code></pre> -<p>Every element has a unique path. This is a concatenation of the names of all the objects one has to traverse starting with the root to reach that element.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> soma.path</code></pre> -<p>shows you its path:</p> -<pre class="sourceCode python"><code class="sourceCode python"> /model/soma</code></pre> -<p>The name of the element can be printed, too.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> soma.name</code></pre> -<p>shows:</p> -<pre class="sourceCode python"><code class="sourceCode python"> soma</code></pre> -<p>The <code>Compartment</code> elements model small portions of a neuron. Some basic experiments can be carried out using a single compartment. Let us create another object to act on the <code>soma</code>. This will be a step current generator to inject a current pulse into the soma.</p> -<pre class="sourceCode python"><code class="sourceCode python"> pulse = moose.PulseGen(<span class="st">'/model/pulse'</span>)</code></pre> -<p>You can use <code>le</code> at any point to see what is there:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.le(<span class="st">'/model'</span>)</code></pre> -<p>will show you:</p> -<pre class="sourceCode python"><code class="sourceCode python"> Elements under /model - /model/soma - /model/pulse</code></pre> -<p>And finally, we can create a <code>Table</code> to record the time series of the soma's membrane potential. It is good practice to organize the data separately from the model. So we do it as below:</p> -<pre class="sourceCode python"><code class="sourceCode python"> data = moose.Neutral(<span class="st">'/data'</span>) - vmtab = moose.Table(<span class="st">'/data/soma_Vm'</span>)</code></pre> -<p>Now that we have the essential elements for a small model, we can go on to set the properties of this model and the experimental protocol.</p> -<h1 id="setting-the-properties-of-elements-accessing-fields"><a href="#setting-the-properties-of-elements-accessing-fields">Setting the properties of elements: accessing fields</a></h1> -<p>Elements have several kinds of fields. The simplest ones are the <code>value fields</code>. These can be accessed like ordinary Python members. You can list the available value fields using <code>getFieldNames</code> function:</p> -<pre class="sourceCode python"><code class="sourceCode python"> soma.getFieldNames(<span class="st">'valueFinfo'</span>)</code></pre> -<p>Here <code>valueFinfo</code> is the type name for value fields. <code>Finfo</code> is short form of <em>field information</em>. For each type of field there is a name ending with <code>-Finfo</code>. The above will display the following list:</p> -<pre class="sourceCode python"><code class="sourceCode python"> (<span class="st">'this'</span>, - <span class="co">'name'</span>, - <span class="co">'me'</span>, - <span class="co">'parent'</span>, - <span class="co">'children'</span>, - <span class="co">'path'</span>, - <span class="co">'class'</span>, - <span class="co">'linearSize'</span>, - <span class="co">'objectDimensions'</span>, - <span class="co">'lastDimension'</span>, - <span class="co">'localNumField'</span>, - <span class="co">'pathIndices'</span>, - <span class="co">'msgOut'</span>, - <span class="co">'msgIn'</span>, - <span class="co">'Vm'</span>, - <span class="co">'Cm'</span>, - <span class="co">'Em'</span>, - <span class="co">'Im'</span>, - <span class="co">'inject'</span>, - <span class="co">'initVm'</span>, - <span class="co">'Rm'</span>, - <span class="co">'Ra'</span>, - <span class="co">'diameter'</span>, - <span class="co">'length'</span>, - <span class="co">'x0'</span>, - <span class="co">'y0'</span>, - <span class="co">'z0'</span>, - <span class="co">'x'</span>, - <span class="co">'y'</span>, - <span class="co">'z'</span>)</code></pre> -<p>Some of these fields are for internal or advanced use, some give access to the physical properties of the biological entity we are trying to model. Now we are interested in <code>Cm</code>, <code>Rm</code>, <code>Em</code> and <code>initVm</code>. In the most basic form, a neuronal compartment acts like a parallel <code>RC</code> circuit with a battery attached. Here <code>R</code> and <code>C</code> are resistor and capacitor connected in parallel, and the battery with voltage <code>Em</code> is in series with the resistor, as shown below:</p> -<hr /> -<div class="figure"> -<img src="../../images/neuronalcompartment.jpg" alt="Passive neuronal compartment" /><p class="caption"><strong>Passive neuronal compartment</strong></p> -</div> -<hr /> -<p>The fields are populated with some defaults.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> soma.Cm, soma.Rm, soma.Vm, soma.Em, soma.initVm</code></pre> -<p>will give you:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="fl">1.0</span> <span class="fl">1.0</span> -<span class="fl">0.06</span> -<span class="fl">0.06</span> -<span class="fl">0.06</span></code></pre> -<p>You can set the <code>Cm</code> and <code>Rm</code> fields to something realistic using simple assignment (we follow SI unit)<a href="#fn2" class="footnoteRef" id="fnref2"><sup>2</sup></a>.</p> -<pre class="sourceCode python"><code class="sourceCode python"> soma.Cm = <span class="fl">1e-9</span> - soma.Rm = <span class="fl">1e7</span> - soma.initVm = -<span class="fl">0.07</span></code></pre> -<p>Instead of writing print statements for each field, you could use the utility function showfield to see that the changes took effect:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.showfield(soma)</code></pre> -<p>will list most of the fields with their values:</p> -<p><sub><sub><del>{.c} [ /model/soma ] diameter = 0.0 linearSize = 1 localNumField = 0 Ra = 1.0 y0 = 0.0 Rm = 10000000.0 inject = 0.0 Em = -0.06 initVm = -0.07 x = 0.0 path = /model/soma x0 = 0.0 z0 = 0.0 class = Compartment name = soma Cm = 1e-09 Vm = -0.06 length = 0.0 Im = 0.0 y = 0.0 lastDimension = 0 z = 0.0</del></sub></sub>{.python}</p> -<p>Now we can setup the current pulse to be delivered to the soma:</p> -<pre class="sourceCode python"><code class="sourceCode python"> pulse.delay[<span class="dv">0</span>] = <span class="fl">50e-3</span> - pulse.width[<span class="dv">0</span>] = <span class="fl">100e-3</span> - pulse.level[<span class="dv">0</span>] = <span class="fl">1e-9</span> - pulse.delay[<span class="dv">1</span>] = <span class="fl">1e9</span></code></pre> -<p>This tells the pulse generator to create a 100 ms long pulse 50 ms after the start of the simulation. The amplitude of the pulse is set to 1 nA. We set the delay for the next pulse to a very large value (larger than the total simulation time) so that the stimulation stops after the first pulse. Had we set <code>pulse.delay = 0</code> , it would have generated a pulse train at 50 ms intervals.</p> -<h1 id="putting-them-together-setting-up-connections"><a href="#putting-them-together-setting-up-connections">Putting them together: setting up connections</a></h1> -<p>In order for the elements to interact during simulation, we need to connect them via messages. Elements are connected to each other using special source and destination fields. These types are named <code>srcFinfo</code> and <code>destFinfo</code>. You can query the available source and destination fields on an element using <code>getFieldNames</code> as before. This time, let us do it another way: by the class name:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.getFieldNames(<span class="st">'PulseGen'</span>, <span class="st">'srcFinfo'</span>)</code></pre> -<p>This form has the advantage that you can get information about a class without creating elements of that class. The above code shows:</p> -<pre class="sourceCode python"><code class="sourceCode python"> (<span class="st">'childMsg'</span>, <span class="st">'outputOut'</span>)</code></pre> -<p>Here <code>childMsg</code> is a source field that is used by the MOOSE internals to connect child elements to parent elements. The second one is of our interest. Check out the built-in documentation here:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.doc(<span class="st">'PulseGen.outputOut'</span>)</code></pre> -<p>shows:</p> -<pre class="sourceCode python"><code class="sourceCode python"> PulseGen.outputOut: double - source field - Current output level.</code></pre> -<p>so this is the output of the pulse generator and this must be injected into the <code>soma</code> to stimulate it. But where in the <code>soma</code> can we send it? Again, MOOSE has some introspection built in.</p> -<pre class="sourceCode python"><code class="sourceCode python"> soma.getFieldNames(<span class="st">'destFinfo'</span>)</code></pre> -<p>shows:</p> -<pre class="sourceCode python"><code class="sourceCode python"> (<span class="st">'parentMsg'</span>, - <span class="co">'set_this'</span>, - <span class="co">'get_this'</span>, - ... - <span class="co">'set_z'</span>, - <span class="co">'get_z'</span>, - <span class="co">'injectMsg'</span>, - <span class="co">'randInject'</span>, - <span class="co">'cable'</span>, - <span class="co">'process'</span>, - <span class="co">'reinit'</span>, - <span class="co">'initProc'</span>, - <span class="co">'initReinit'</span>, - <span class="co">'handleChannel'</span>, - <span class="co">'handleRaxial'</span>, - <span class="co">'handleAxial'</span>)</code></pre> -<p>Now that is a long list. But much of it are fields for internal or special use. Anything that starts with <code>get_</code> or <code>set_</code> are internal <code>destFinfo</code> used for accessing value fields (we shall use one of those when setting up data recording). Among the rest <code>injectMsg</code> seems to be the most likely candidate. Use the <code>connect</code> function to connect the pulse generator output to the soma input:</p> -<pre class="sourceCode python"><code class="sourceCode python"> m = moose.<span class="ot">connect</span>(pulse, <span class="st">'outputOut'</span>, soma, <span class="st">'injectMsg'</span>)</code></pre> -<p><code>connect(source, source_field, dest, dest_field)</code> creates a <code>message</code> from <code>source</code> element's <code>source_field</code> field to <code>dest</code> elements <code>dest_field</code> field and returns that message. Messages are also elements. You can print them to see their identity:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> m</code></pre> -<p>on my system gives:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <moose.SingleMsg: <span class="dt">id</span>=<span class="dv">5</span>, dataId=<span class="dv">733</span>, path=/Msgs/singleMsg[<span class="dv">733</span>]></code></pre> -<p>You can print any element as above and the string representation will show you the class, two numbers(<code>id</code> and <code>dataId</code>) uniquely identifying it among all elements, and its path. You can get some more information about a message:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> m.e1.path, m.e2.path, m.srcFieldsOnE1, m.destFieldsOnE2</code></pre> -<p>will confirm what you already know:</p> -<pre class="sourceCode python"><code class="sourceCode python"> /model/pulse /model/soma (<span class="st">'outputOut'</span>,) (<span class="st">'injectMsg'</span>,)</code></pre> -<p>A message element has fields <code>e1</code> and <code>e2</code> referring to the elements it connects. For single one-directional messages these are source and destination elements, which are <code>pulse</code> and <code>soma</code> respectively. The next two items are lists of the field names which are connected by this message.</p> -<p>You could also check which elements are connected to a particular field:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> soma.neighbours[<span class="st">'injectMsg'</span>]</code></pre> -<p>shows:</p> -<pre class="sourceCode python"><code class="sourceCode python"> [<moose.ematrix: <span class="kw">class</span>=PulseGen, <span class="dt">id</span>=<span class="dv">729</span>,path=/model/pulse>]</code></pre> -<p>Notice that the list contains something called ematrix. We discuss this <a href="#some-more-details">later</a>. Also <code>neighbours</code> is a new kind of field: <code>lookupFinfo</code> which behaves like a dictionary. Next we connect the table to the soma to retrieve its membrane potential <code>Vm</code>. This is where all those <code>destFinfo</code> starting with <code>get_</code> or <code>set_</code> come in use. For each value field <code>X</code>, there is a <code>destFinfo</code> <code>get_{X}</code> to retrieve the value at simulation time. This is used by the table to record the values <code>Vm</code> takes.</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.<span class="ot">connect</span>(vmtab, <span class="st">'requestData'</span>, soma, <span class="st">'get_Vm'</span>)</code></pre> -<p>This finishes our model and recording setup. You might be wondering about the source-destination relationship above. It is natural to think that <code>soma</code> is the source of <code>Vm</code> values which should be sent to <code>vmtab</code>. But here <code>requestData</code> is a <code>srcFinfo</code> acting like a reply card. This mode of obtaining data is called <em>pull</em> mode.<a href="#fn3" class="footnoteRef" id="fnref3"><sup>3</sup></a></p> -<h1 id="scheduling-and-running-the-simulation"><a href="#scheduling-and-running-the-simulation">Scheduling and running the simulation</a></h1> -<p>With the model all set up, we have to schedule the simulation. MOOSE has a central clock element (<code>/clock</code>) to manage time. Clock has a set of <code>Tick</code> elements under it that take care of advancing the state of each element with time as the simulation progresses. Every element to be included in a simulation must be assigned a tick. Each tick can have a different ticking interval (<code>dt</code>) that allows different elements to be updated at different rates. We initialize the ticks and set their <code>dt</code> values using the <code>setClock</code> function.</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.setClock(<span class="dv">0</span>, <span class="fl">0.025e-3</span>) - moose.setClock(<span class="dv">1</span>, <span class="fl">0.025e-3</span>) - moose.setClock(<span class="dv">2</span>, <span class="fl">0.25e-3</span>)</code></pre> -<p>This will initialize tick #0 and tick #1 with <code>dt = 25</code> μs and tick #2 with <code>dt = 250</code> μs. Thus all the elements scheduled on ticks #0 and 1 will be updated every 25 μs and those on tick #2 every 250 μs. We use the faster clocks for the model components where finer timescale is required for numerical accuracy and the slower clock to sample the values of <code>Vm</code>.</p> -<p>So to assign tick #2 to the table for recording <code>Vm</code>, we pass its whole path to the <code>useClock</code> function.</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.useClock(<span class="dv">2</span>, <span class="st">'/data/soma_Vm'</span>, <span class="st">'process'</span>)</code></pre> -<p>Read this as "use tick # 2 on the element at path <code>/data/soma_Vm</code> to call its <code>process</code> method at every step". Every class that is supposed to update its state or take some action during simulation implements a <code>process</code> method. And in most cases that is the method we want the ticks to call at every time step. A less common method is <code>init</code>, which is implemented in some classes to interleave actions or updates that must be executed in a specific order<a href="#fn4" class="footnoteRef" id="fnref4"><sup>4</sup></a>. The <code>Compartment</code> class is one such case where a neuronal compartment has to know the <code>Vm</code> of its neighboring compartments before it can calculate its <code>Vm</code> for the next step. This is done with:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.useClock(<span class="dv">0</span>, soma.path, <span class="st">'init'</span>)</code></pre> -<p>Here we used the <code>path</code> field instead of writing the path explicitly.</p> -<p>Next we assign tick #1 to process method of everything under <code>/model</code>.</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.useClock(<span class="dv">1</span>, <span class="st">'/model/##'</span>, <span class="st">'process'</span>)</code></pre> -<p>Here the second argument is an example of wild-card path. The <code>##</code> matches everything under the path preceding it at any depth. Thus if we had some other objects under <code>/model/soma</code>, <code>process</code> method of those would also have been scheduled on tick #1. This is very useful for complex models where it is tedious to scheduled each element individually. In this case we could have used <code>/model/#</code> as well for the path. This is a single level wild-card which matches only the children of <code>/model</code> but does not go farther down in the hierarchy.</p> -<p>Once the elements are assigned ticks, we can put the model to its initial state using:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.reinit()</code></pre> -<p>You may remember that we had changed initVm from <code>-0.06</code> to <code>-0.07</code>. The reinit call we initialize <code>Vm</code> to that value. You can verify that:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> soma.Vm</code></pre> -<p>gives:</p> -<pre class="sourceCode python"><code class="sourceCode python"> -<span class="fl">0.07</span></code></pre> -<p>Finally, we run the simulation for 300 ms:</p> -<pre class="sourceCode python"><code class="sourceCode python"> moose.start(<span class="fl">300e-3</span>)</code></pre> -<p>The data will be recorded by the <code>soma_vm</code> table, which is referenced by the variable <code>vmtab</code>. The <code>Table</code> class provides a numpy array interface to its content. The field is <code>vec</code>. So you can easily plot the membrane potential using the <a href="http://matplotlib.org/">matplotlib</a> library.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="ch">import</span> pylab - t = pylab.linspace(<span class="dv">0</span>, <span class="fl">300e-3</span>, <span class="dt">len</span>(vmtab.vec)) - pylab.plot(t, vmtab.vec) - pylab.show()</code></pre> -<p>The first line imports the pylab submodule from matplotlib. This useful for interactive plotting. The second line creates the time points to match our simulation time and length of the recorded data. The third line plots the <code>Vm</code> and the fourth line makes it visible. Does the plot match your expectation?</p> -<h1 id="some-more-details"><a href="#some-more-details">Some more details</a></h1> -<h2 id="ematrix-melement-and-element"><a href="#ematrix-melement-and-element"><code>ematrix</code>, <code>melement</code> and <code>element</code></a></h2> -<p>MOOSE elements are instances of the class <code>melement</code>. <code>Compartment</code>, <code>PulseGen</code> and other MOOSE classes are derived classes of <code>melement</code>. All <code>melement</code> instances are contained in array-like structures called <code>ematrix</code>. Each <code>ematrix</code> object has a numerical <code>id_</code> field uniquely identifying it. An <code>ematrix</code> can have one or more elements. You can create an array of elements:</p> -<pre class="sourceCode python"><code class="sourceCode python"> comp_array = moose.ematrix(<span class="st">'/model/comp'</span>, (<span class="dv">3</span>,), <span class="st">'Compartment'</span>)</code></pre> -<p>This tells MOOSE to create an <code>ematrix</code> of 3 <code>Compartment</code> elements with path <code>/model/comp</code>. For <code>ematrix</code> objects with multiple elements, the index in the <code>ematrix</code> is part of the element path.</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="dt">print</span> comp_array.path, <span class="dt">type</span>(comp_array)</code></pre> -<p>shows that <code>comp_array</code> is an instance of <code>ematrix</code> class. You can loop through the elements in an <code>ematrix</code> like a Python list:</p> -<pre class="sourceCode python"><code class="sourceCode python"> <span class="kw">for</span> comp in comp_array: - <span class="dt">print</span> comp.path, <span class="dt">type</span>(comp)</code></pre> -<p>shows:</p> -<pre class="sourceCode python"><code class="sourceCode python"> /model/comp[<span class="dv">0</span>] <<span class="dt">type</span> <span class="st">'moose.melement'</span>> - /model/comp[<span class="dv">1</span>] <<span class="dt">type</span> <span class="st">'moose.melement'</span>> - /model/comp[<span class="dv">2</span>] <<span class="dt">type</span> <span class="st">'moose.melement'</span>></code></pre> -<p>Thus elements are instances of class <code>melement</code>. All elements in an <code>ematrix</code> share the <code>id_</code> of the <code>ematrix</code> which can retrieved by <code>melement.getId()</code>.</p> -<p>A frequent use case is that after loading a model from a file one knows the paths of various model components but does not know the appropriate class name for them. For this scenario there is a function called <code>element</code> which converts ("casts" in programming jargon) a path or any moose object to its proper MOOSE class. You can create additional references to <code>soma</code> in the example this way:</p> -<pre class="sourceCode python"><code class="sourceCode python"> x = moose.element(<span class="st">'/model/soma'</span>)</code></pre> -<p>Any MOOSE class can be extended in Python. But any additional attributes added in Python are invisible to MOOSE. So those can be used for functionalities at the Python level only. You can see <code>Demos/squid/squid.py</code> for an example.</p> -<h2 id="finfos"><a href="#finfos"><code>Finfos</code></a></h2> -<p>The following kinds of <code>Finfo</code> are accessible in Python</p> -<ul> -<li><strong><code>valueFinfo</code></strong> : simple values. For each readable <code>valueFinfo</code> <code>XYZ</code> there is a <code>destFinfo</code> <code>get_XYZ</code> that can be used for reading the value at run time. If <code>XYZ</code> is writable then there will also be <code>destFinfo</code> to set it: <code>set_XYZ</code>. Example: <code>Compartment.Rm</code></li> -<li><strong><code>lookupFinfo</code></strong> : lookup tables. These fields act like Python dictionaries but iteration is not supported. Example: <code>Neutral.neighbours</code>.</li> -<li><strong><code>srcFinfo</code></strong> : source of a message. Example: <code>PulseGen.outputOut</code>.</li> -<li><strong><code>destFinfo</code></strong> : destination of a message. Example: <code>Compartment.injectMsg</code>. Apart from being used in setting up messages, these are accessible as functions from Python. <code>HHGate.setupAlpha</code> is an example.</li> -<li><strong><code>sharedFinfo</code></strong> : a composition of source and destination fields. Example: <code>Compartment.channel</code>.</li> -</ul> -<h1 id="moving-on"><a href="#moving-on">Moving on</a></h1> -<p>Now you know the basics of pymoose and how to access the help system. MOOSE is backward compatible with GENESIS and most GENESIS classes have been reimplemented in MOOSE. There is slight change in naming (MOOSE uses CamelCase), and setting up messages are different. But <a href="http://www.genesis-sim.org/GENESIS/Hyperdoc/Manual.html">GENESIS documentation</a> is still a good source for documentation on classes that have been ported from GENESIS.</p> -<p>In addition, the <code>Demos/snippets</code> directory in your MOOSE installation has small executable python scripts that show usage of specific classes or functionalities. Beyond that you can browse the code in the <code>Demos</code> directory to see some more complex models.</p> -<p>If the built-in MOOSE classes do not satisfy your needs entirely, you are welcome to add new classes to MOOSE. The API documentation will help you get started. Finally you can join the <a href="https://lists.sourceforge.net/lists/listinfo/moose-generic">moose mailing list</a> and request for help.</p> -<div class="footnotes"> -<hr /> -<ol> -<li id="fn1"><p>To list the classes only, use <code>moose.le('/classes')</code><a href="#fnref1">↩</a></p></li> -<li id="fn2"><p>MOOSE is unit agnostic and things should work fine as long as you use values all converted to a consistent unit system.<a href="#fnref2">↩</a></p></li> -<li id="fn3"><p>This apparently convoluted implementation is for performance reason. Can you figure out why? <em>Hint: the table is driven by a slower clock than the compartment.</em><a href="#fnref3">↩</a></p></li> -<li id="fn4"><p>In principle any function available in a MOOSE class can be executed periodically this way as long as that class exposes the function for scheduling following the MOOSE API. So you have to consult the class' documentation for any nonstandard methods that can be scheduled this way.<a href="#fnref4">↩</a></p></li> -</ol> -</div> -</body> -</html> diff --git a/docs/user/index.html b/docs/user/index.html deleted file mode 100644 index bef832ff408fa6bb9c7326f8274c43fcb876c16c..0000000000000000000000000000000000000000 --- a/docs/user/index.html +++ /dev/null @@ -1,27 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta http-equiv="Content-Style-Type" content="text/css" /> - <meta name="generator" content="pandoc" /> - <meta name="author" content="Niraj Dudani" /> - <title>User documentation for MOOSE</title> - <style type="text/css">code{white-space: pre;}</style> - <link rel="stylesheet" href="html/css/moosedocs.css" type="text/css" /> -</head> -<body> -<div id="header"> -<h1 class="title">User documentation for MOOSE</h1> -<h2 class="author">Niraj Dudani</h2> -<h3 class="date">January 1, 2013</h3> -</div> -<h2 id="index-for-all-documents">Index for all documents</h2> -<ul> -<li><a href="html/pymoose2walkthrough.html">Getting started with python scripting for MOOSE</a></li> -<li><a href="html/MooseGuiDocs.html">MOOSEGUI: Graphical interface for MOOSE</a></li> -<li><a href="html/Nkit2Documentation.html">Neuronal simulations in MOOSEGUI</a></li> -<li><a href="html/Kkit12Documentation.html">Kinetikit 12: Interface for chemical kinetic models in MOOSEGUI</a></li> -<li><a href="html/moosebuiltindocs.html">Documentation for all MOOSE classes and functions</a></li> -</ul> -</body> -</html> diff --git a/docs/user/markdown/RdesigneurDocumentation.markdown b/docs/user/markdown/RdesigneurDocumentation.markdown index ffc84e23c89b38461823e4c71d3e8e9fb7099d50..fb9b0e3b0bb961e8a877ae35624fc2952ed7c781 100644 --- a/docs/user/markdown/RdesigneurDocumentation.markdown +++ b/docs/user/markdown/RdesigneurDocumentation.markdown @@ -4,7 +4,7 @@ Upi Bhalla -Dec 28 2015. +Aug 26 2016. ----- diff --git a/docs/user/snippets/Makefile b/docs/user/snippets/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..182070907cae692fced766d21141b1ccbc52a887 --- /dev/null +++ b/docs/user/snippets/Makefile @@ -0,0 +1,153 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +PAPER = +BUILDDIR = _build + +# Internal variables. +PAPEROPT_a4 = -D latex_paper_size=a4 +PAPEROPT_letter = -D latex_paper_size=letter +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +# the i18n builder cannot share the environment and doctrees with the others +I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . + +.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext + +help: + @echo "Please use \`make <target>' where <target> is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" + @echo " pickle to make pickle files" + @echo " json to make JSON files" + @echo " htmlhelp to make HTML files and a HTML help project" + @echo " qthelp to make HTML files and a qthelp project" + @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " texinfo to make Texinfo files" + @echo " info to make Texinfo files and run them through makeinfo" + @echo " gettext to make PO message catalogs" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + +clean: + -rm -rf $(BUILDDIR)/* + +html: + $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." + +dirhtml: + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." + +singlehtml: + $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml + @echo + @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." + +pickle: + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle + @echo + @echo "Build finished; now you can process the pickle files." + +json: + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + @echo + @echo "Build finished; now you can process the JSON files." + +htmlhelp: + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp + @echo + @echo "Build finished; now you can run HTML Help Workshop with the" \ + ".hhp project file in $(BUILDDIR)/htmlhelp." + +qthelp: + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp + @echo + @echo "Build finished; now you can run "qcollectiongenerator" with the" \ + ".qhcp project file in $(BUILDDIR)/qthelp, like this:" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/MOOSE.qhcp" + @echo "To view the help file:" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/MOOSE.qhc" + +devhelp: + $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp + @echo + @echo "Build finished." + @echo "To view the help file:" + @echo "# mkdir -p $$HOME/.local/share/devhelp/MOOSE" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/MOOSE" + @echo "# devhelp" + +epub: + $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub + @echo + @echo "Build finished. The epub file is in $(BUILDDIR)/epub." + +latex: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." + @echo "Run \`make' in that directory to run these through (pdf)latex" \ + "(use \`make latexpdf' here to do that automatically)." + +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +text: + $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text + @echo + @echo "Build finished. The text files are in $(BUILDDIR)/text." + +man: + $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man + @echo + @echo "Build finished. The manual pages are in $(BUILDDIR)/man." + +texinfo: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo + @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." + @echo "Run \`make' in that directory to run these through makeinfo" \ + "(use \`make info' here to do that automatically)." + +info: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo "Running Texinfo files through makeinfo..." + make -C $(BUILDDIR)/texinfo info + @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." + +gettext: + $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale + @echo + @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." + +changes: + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes + @echo + @echo "The overview file is in $(BUILDDIR)/changes." + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck + @echo + @echo "Link check complete; look for any errors in the above output " \ + "or in $(BUILDDIR)/linkcheck/output.txt." + +doctest: + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest + @echo "Testing of doctests in the sources finished, look at the " \ + "results in $(BUILDDIR)/doctest/output.txt." diff --git a/docs/user/snippets/_templates/layout.html b/docs/user/snippets/_templates/layout.html new file mode 100644 index 0000000000000000000000000000000000000000..75df84926246f910c90895c58dcb9a5bce462bb4 --- /dev/null +++ b/docs/user/snippets/_templates/layout.html @@ -0,0 +1,33 @@ +{% extends "!layout.html" %} +{% block rootrellink %} + <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> + {{ super() }} +{% endblock %} +{% block sidebartitle %} + + {% if logo and theme_logo_only %} + <a href="http://moose.ncbs.res.in"> + + {% else %} + <a href="http://moose.ncbs.res.in/" class="icon icon-home"> {{ project }} + {% endif %} + + {% if logo %} + {# Not strictly valid HTML, but it's the only way to display/scale it properly, without weird scripting or heaps of work #} + <img src="{{ pathto('_static/' + logo, 1) }}" class="logo" /> + {% endif %} + </a> + {% if theme_display_version %} + {%- set nav_version = version %} + {% if READTHEDOCS and current_version %} + {%- set nav_version = current_version %} + {% endif %} + {% if nav_version %} + <div class="version"> + {{ nav_version }} + </div> + {% endif %} + {% endif %} + + {% include "searchbox.html" %} +{% endblock %} diff --git a/docs/user/snippets/conf.py b/docs/user/snippets/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..05b119541e4e6263629d60b6cdd164aec9d870fd --- /dev/null +++ b/docs/user/snippets/conf.py @@ -0,0 +1,250 @@ +# -*- coding: utf-8 -*- +# +# MOOSE documentation build configuration file, created by +# sphinx-quickstart on Tue Jul 1 19:05:47 2014. +# +# This file is execfile()d with the current directory set to its containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. +import sys, os + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +#sys.path.insert(0, os.path.abspath('../../moose/moose-core/python')) +sys.path.append(os.path.abspath('../../../moose-examples/snippets')) +# -- General configuration ----------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +#needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be extensions +# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +extensions = ['sphinx.ext.autodoc', + 'sphinx.ext.mathjax', + 'sphinx.ext.autosummary', + 'sphinx.ext.viewcode', + 'numpydoc'] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix of source filenames. +source_suffix = '.rst' + +# The encoding of source files. +#source_encoding = 'utf-8-sig' + +# The master toctree document. +master_doc = 'index' + +# General information about the project. +project = u'MOOSE' +copyright = u'2016' + +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# +# The short X.Y version. +version = '3.2' +# The full version, including alpha/beta/rc tags. +release = '3.2' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +#language = None + +# There are two options for replacing |today|: either, you set today to some +# non-false value, then it is used: +#today = '' +# Else, today_fmt is used as the format for a strftime call. +#today_fmt = '%B %d, %Y' + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +exclude_patterns = ['_build'] + +# The reST default role (used for this markup: `text`) to use for all documents. +#default_role = None + +# If true, '()' will be appended to :func: etc. cross-reference text. +add_function_parentheses = True + +# If true, the current module name will be prepended to all description +# unit titles (such as .. function::). +#add_module_names = True + +# If true, sectionauthor and moduleauthor directives will be shown in the +# output. They are ignored by default. +#show_authors = True + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + +# A list of ignored prefixes for module index sorting. +#modindex_common_prefix = [] + + +# -- Options for HTML output --------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +html_theme = 'sphinx_rtd_theme' +#html_theme = 'better' + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# html_theme_options = {'stickysidebar': 'true', +# 'sidebarwidth': '300'} + +# Add any paths that contain custom themes here, relative to this directory. +#html_theme_path = [better_theme_path] + +# The name for this set of Sphinx documents. If None, it defaults to +# "<project> v<release> documentation". +#html_title = None + +# A shorter title for the navigation bar. Default is the same as html_title. +#html_short_title = None + +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +html_logo = '../../images/moose_logo.png' + +# The name of an image file (within the static path) to use as favicon of the +# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 +# pixels large. +#html_favicon = None + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, +# using the given strftime format. +#html_last_updated_fmt = '%b %d, %Y' + +# If true, SmartyPants will be used to convert quotes and dashes to +# typographically correct entities. +#html_use_smartypants = True + +# Custom sidebar templates, maps document names to template names. +#html_sidebars = {} + +# Additional templates that should be rendered to pages, maps page names to +# template names. +#html_additional_pages = {} + +# If false, no module index is generated. +#html_domain_indices = True + +# If false, no index is generated. +#html_use_index = True + +# If true, the index is split into individual pages for each letter. +#html_split_index = False + +# If true, links to the reST sources are added to the pages. +#html_show_sourcelink = True + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +#html_show_sphinx = True + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +#html_show_copyright = True + +# If true, an OpenSearch description file will be output, and all pages will +# contain a <link> tag referring to it. The value of this option must be the +# base URL from which the finished HTML is served. +#html_use_opensearch = '' + +# This is the file name suffix for HTML files (e.g. ".xhtml"). +#html_file_suffix = None + +# Output file base name for HTML help builder. +htmlhelp_basename = 'MOOSEdoc' + + +# -- Options for LaTeX output -------------------------------------------------- + +latex_elements = { +# The paper size ('letterpaper' or 'a4paper'). +#'papersize': 'letterpaper', + +# The font size ('10pt', '11pt' or '12pt'). +#'pointsize': '10pt', + +# Additional stuff for the LaTeX preamble. +#'preamble': '', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, author, documentclass [howto/manual]). +latex_documents = [ + ('index', 'MOOSE.tex', u'MOOSE Documentation', + u'Upinder Bhalla, Aviral Goel and Harsha Rani', 'manual'), +] + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +latex_logo = '../images/moose_logo.png' + +# For "manual" documents, if this is true, then toplevel headings are parts, +# not chapters. +#latex_use_parts = False + +# If true, show page references after internal links. +latex_show_pagerefs = True + +# If true, show URL addresses after external links. +#latex_show_urls = False + +# Documents to append as an appendix to all manuals. +#latex_appendices = [] + +# If false, no module index is generated. +latex_domain_indices = True + + +# -- Options for manual page output -------------------------------------------- + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + ('index', 'moose', u'MOOSE Documentation', + [u'Upinder Bhalla, Aviral Goel and Harsha Rani'], 1) +] + +# If true, show URL addresses after external links. +#man_show_urls = False + + +# -- Options for Texinfo output ------------------------------------------------ + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + ('index', 'MOOSE', u'MOOSE Documentation', + u'Upinder Bhalla, Aviral Goel and Harsha Rani', 'MOOSE', 'MOOSE is the Multiscale Object-Oriented Simulation Environment.', + 'Science'), +] + +# Documents to append as an appendix to all manuals. +#texinfo_appendices = [] + +# If false, no module index is generated. +texinfo_domain_indices = True + +# How to display URL addresses: 'footnote', 'no', or 'inline'. +#texinfo_show_urls = 'footnote' + +#numpydoc option +numpydoc_show_class_members = True diff --git a/docs/user/snippets/index.rst b/docs/user/snippets/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..e91f8041fb5e5bde93c3a92d48ef2533fcf25f41 --- /dev/null +++ b/docs/user/snippets/index.rst @@ -0,0 +1,15 @@ +.. MOOSE documentation master file, created by + sphinx-quickstart on Tue Feb 2 14:05:47 2016. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Snippets of MOOSE +================================== +A diverse collection of snippets: (mostly) short code examples illustrating different features of MOOSE + +.. toctree:: + :maxdepth: 2 + :numbered: + + + snippet diff --git a/docs/user/snippets/snippet.rst b/docs/user/snippets/snippet.rst new file mode 100644 index 0000000000000000000000000000000000000000..fff4d674d06b85384ed81dada2a03a1b7a804fb9 --- /dev/null +++ b/docs/user/snippets/snippet.rst @@ -0,0 +1,66 @@ +.. A snippets for MOOSE +.. Lists all the snippets in moose-examples/snippets directory + +MOOSE Snippet +============== + +The MOOSE Snippet contains examples showing you how to do specific +tasks in MOOSE. + +Scripting Parser +---------------- + +Class features +-------------- + +Network Models +-------------- + +Single Neuron Models +--------------------- +Some salient properties of neuronal building blocks in MOOSE are described below. + +Signaling Pathways +------------------ +This section show some of the chemical signaling pathways related settings + +Define a kinetic model using the scripting in moose +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. automodule:: scriptKineticModel + :members: + +Set up of kinetic solver +^^^^^^^^^^^^^^^^^^^^^^^^ +.. automodule:: scriptKineticSolver + :members: + +Multi scale models +------------------- + +3-D graphics +------------- + +Load-Run-Saving pre-existing model files +---------------------------------------- +This section of the documentation explains how to load-run-save predefined models in MOOSE. + +Load Kinetics Models +^^^^^^^^^^^^^^^^^^^^^ +.. automodule:: loadKineticModel + :members: + +Load SBML Models +^^^^^^^^^^^^^^^^^ +.. automodule:: loadSbmlmodel + :members: + +Load Cspace Models +^^^^^^^^^^^^^^^^^^^ +.. automodule:: loadCspaceModel + :members: + +Save Models to Sbml format +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. automodule:: convert_Genesis2Sbml + :members: + diff --git a/docs/user/tutorials/Makefile b/docs/user/tutorials/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..182070907cae692fced766d21141b1ccbc52a887 --- /dev/null +++ b/docs/user/tutorials/Makefile @@ -0,0 +1,153 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +PAPER = +BUILDDIR = _build + +# Internal variables. +PAPEROPT_a4 = -D latex_paper_size=a4 +PAPEROPT_letter = -D latex_paper_size=letter +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +# the i18n builder cannot share the environment and doctrees with the others +I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . + +.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext + +help: + @echo "Please use \`make <target>' where <target> is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" + @echo " pickle to make pickle files" + @echo " json to make JSON files" + @echo " htmlhelp to make HTML files and a HTML help project" + @echo " qthelp to make HTML files and a qthelp project" + @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " texinfo to make Texinfo files" + @echo " info to make Texinfo files and run them through makeinfo" + @echo " gettext to make PO message catalogs" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + +clean: + -rm -rf $(BUILDDIR)/* + +html: + $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." + +dirhtml: + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." + +singlehtml: + $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml + @echo + @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." + +pickle: + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle + @echo + @echo "Build finished; now you can process the pickle files." + +json: + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + @echo + @echo "Build finished; now you can process the JSON files." + +htmlhelp: + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp + @echo + @echo "Build finished; now you can run HTML Help Workshop with the" \ + ".hhp project file in $(BUILDDIR)/htmlhelp." + +qthelp: + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp + @echo + @echo "Build finished; now you can run "qcollectiongenerator" with the" \ + ".qhcp project file in $(BUILDDIR)/qthelp, like this:" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/MOOSE.qhcp" + @echo "To view the help file:" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/MOOSE.qhc" + +devhelp: + $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp + @echo + @echo "Build finished." + @echo "To view the help file:" + @echo "# mkdir -p $$HOME/.local/share/devhelp/MOOSE" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/MOOSE" + @echo "# devhelp" + +epub: + $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub + @echo + @echo "Build finished. The epub file is in $(BUILDDIR)/epub." + +latex: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." + @echo "Run \`make' in that directory to run these through (pdf)latex" \ + "(use \`make latexpdf' here to do that automatically)." + +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +text: + $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text + @echo + @echo "Build finished. The text files are in $(BUILDDIR)/text." + +man: + $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man + @echo + @echo "Build finished. The manual pages are in $(BUILDDIR)/man." + +texinfo: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo + @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." + @echo "Run \`make' in that directory to run these through makeinfo" \ + "(use \`make info' here to do that automatically)." + +info: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo "Running Texinfo files through makeinfo..." + make -C $(BUILDDIR)/texinfo info + @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." + +gettext: + $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale + @echo + @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." + +changes: + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes + @echo + @echo "The overview file is in $(BUILDDIR)/changes." + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck + @echo + @echo "Link check complete; look for any errors in the above output " \ + "or in $(BUILDDIR)/linkcheck/output.txt." + +doctest: + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest + @echo "Testing of doctests in the sources finished, look at the " \ + "results in $(BUILDDIR)/doctest/output.txt." diff --git a/docs/user/tutorials/_static/3-D_DisplayofReactionDiffusion.html b/docs/user/tutorials/_static/3-D_DisplayofReactionDiffusion.html new file mode 100644 index 0000000000000000000000000000000000000000..cc9f3bcb7b5350770e5007c303a9be40a4b4bd85 --- /dev/null +++ b/docs/user/tutorials/_static/3-D_DisplayofReactionDiffusion.html @@ -0,0 +1,4997 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>3-D_DisplayofReactionDiffusion</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="3-D-graphics-for-the-reaction-diffusion-product-using-Rdesigner">3-D graphics for the reaction-diffusion product using Rdesigner<a class="anchor-link" href="#3-D-graphics-for-the-reaction-diffusion-product-using-Rdesigner">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [*]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="o">%</span><span class="k">matplotlib</span> <span class="n">inline</span> + +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">turnOffElec</span> <span class="o">=</span> <span class="bp">True</span><span class="p">,</span> + <span class="n">chemProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'makeChemOscillator()'</span><span class="p">,</span> <span class="s">'osc'</span><span class="p">]],</span> + <span class="n">chemDistrib</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'osc'</span><span class="p">,</span> <span class="s">'soma'</span><span class="p">,</span> <span class="s">'install'</span><span class="p">,</span> <span class="s">'1'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'Concentration of a'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/b'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'Concentration of b'</span><span class="p">]],</span> + <span class="n">moogList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'a Conc'</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="mi">360</span> <span class="p">]]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> +<span class="n">bv</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">vec</span><span class="p">(</span> <span class="s">'/model/chem/dend/b'</span> <span class="p">)</span> +<span class="n">bv</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">concInit</span> <span class="o">*=</span> <span class="mi">2</span> +<span class="n">bv</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">concInit</span> <span class="o">*=</span> <span class="mi">2</span> +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">displayMoogli</span><span class="p">(</span> <span class="mi">1</span><span class="p">,</span> <span class="mi">400</span><span class="p">,</span> <span class="mf">0.001</span> <span class="p">)</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 1 compartments and 0 spines on 1 compartments. +Chem part of model has 250 dendrite voxels X 3 pools, + + +</pre> +</div> +</div> +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> +<img src="rdes5_reacdiff.png"> +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> +<img src="data:image/png;base64,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 +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +rkJggg== +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Building_Simple_Reaction_Model.html b/docs/user/tutorials/_static/Building_Simple_Reaction_Model.html new file mode 100755 index 0000000000000000000000000000000000000000..53776c9fb6801b31d4fcd0e4b85c8e0da372e624 --- /dev/null +++ b/docs/user/tutorials/_static/Building_Simple_Reaction_Model.html @@ -0,0 +1,575 @@ +<!DOCTYPE html> +<html> +<head> + +<meta charset="utf-8" /> +<title>Building_Simple_Reaction_Model</title> + +<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> +<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> + +<style type="text/css"> + /*! +* +* Twitter Bootstrap +* +*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.42857143;color:#000;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:3px}.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}.img-circle{border-radius:50%}hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:18px;margin-bottom:9px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:9px;margin-bottom:9px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:33px}h2,.h2{font-size:27px}h3,.h3{font-size:23px}h4,.h4{font-size:17px}h5,.h5{font-size:13px}h6,.h6{font-size:12px}p{margin:0 0 9px}.lead{margin-bottom:18px;font-size:14px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:19.5px}}small,.small{font-size:92%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:9px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:18px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:541px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:9px 18px;margin:0 0 18px;font-size:inherit;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:18px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:2px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}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}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}@media (min-width:768px){.container{width:768px}}@media (min-width:992px){.container{width:940px}}@media (min-width:1200px){.container{width:1140px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}.row{margin-left:0;margin-right:0}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:0;padding-right:0}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:18px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:13.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}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}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:13px;line-height:1.42857143;color:#555}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:32px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:45px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:18px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-lg,select.form-group-lg .form-control{height:45px;line-height:45px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:40px}.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}.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:23px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:25px}.form-horizontal .form-group{margin-left:0;margin-right:0}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:0}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;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}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.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}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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,0.15);border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:541px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:2px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:13px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:2px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:1px}.input-group-addon.input-lg{padding:10px 16px;font-size:17px;border-radius:3px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:2px 2px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:2px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:30px;margin-bottom:18px;border:1px solid transparent}@media (min-width:541px){.navbar{border-radius:2px}}@media (min-width:541px){.navbar-header{float:left}}.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,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:541px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;visibility:visible !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:540px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}@media (min-width:541px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:541px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:541px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:6px 0;font-size:17px;line-height:18px;height:30px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:541px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:0}}.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}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:541px){.navbar-toggle{display:none}}.navbar-nav{margin:3px 0}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:18px}@media (max-width:540px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:18px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:541px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:6px;padding-bottom:6px}}.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,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:-1px;margin-bottom:-1px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:540px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:541px){.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}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-top-right-radius:2px;border-top-left-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:-1px;margin-bottom:-1px}.navbar-btn.btn-sm{margin-top:0;margin-bottom:0}.navbar-btn.btn-xs{margin-top:4px;margin-bottom:4px}.navbar-text{margin-top:6px;margin-bottom:6px}@media (min-width:541px){.navbar-text{float:left;margin-left:0;margin-right:0}}@media (min-width:541px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:0}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:540px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:540px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:18px;list-style:none;background-color:#f5f5f5;border-radius:2px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#5e5e5e}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:18px 0;border-radius:2px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:17px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:18px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:3px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:58.5px}}.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}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#000}.alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:2px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f5f5f5;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.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,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:18px;background-color:#fff;border:1px solid transparent;border-radius:2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:1px;border-top-left-radius:1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:1px;border-top-right-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:1px;border-bottom-right-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:18px}.panel-group .panel{margin-bottom:0;border-radius:2px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.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,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:3px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;-webkit-overflow-scrolling:touch;outline:0}.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 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:2px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.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-size:13px;font-weight:normal;line-height:1.42857143;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:13px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:2px 2px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.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,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;backface-visibility:hidden;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after,.item_buttons:before,.item_buttons:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after,.item_buttons:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*! +* +* Font Awesome +* +*//*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.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;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.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)}.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)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}/*! +* +* IPython base +* +*/.modal.fade .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}code{color:#000}pre{font-size:inherit;line-height:inherit}label{font-weight:normal}.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.corner-all{border-radius:2px}.no-padding{padding:0}.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}.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.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}.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.hbox.reverse,.vbox.reverse,.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.hbox.box-flex0,.vbox.box-flex0,.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.hbox.box-flex1,.vbox.box-flex1,.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex,.vbox.box-flex,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex2,.vbox.box-flex2,.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.hbox.start,.vbox.start,.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.hbox.end,.vbox.end,.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.hbox.center,.vbox.center,.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.hbox.baseline,.vbox.baseline,.baseline{-webkit-box-pack:baseline;-moz-box-pack:baseline;box-pack:baseline;justify-content:baseline}.hbox.stretch,.vbox.stretch,.stretch{-webkit-box-pack:stretch;-moz-box-pack:stretch;box-pack:stretch;justify-content:stretch}.hbox.align-start,.vbox.align-start,.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.hbox.align-end,.vbox.align-end,.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.hbox.align-center,.vbox.align-center,.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}.hbox.align-baseline,.vbox.align-baseline,.align-baseline{-webkit-box-align:baseline;-moz-box-align:baseline;box-align:baseline;align-items:baseline}.hbox.align-stretch,.vbox.align-stretch,.align-stretch{-webkit-box-align:stretch;-moz-box-align:stretch;box-align:stretch;align-items:stretch}div.error{margin:2em;text-align:center}div.error>h1{font-size:500%;line-height:normal}div.error>p{font-size:200%;line-height:normal}div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible}#header{display:none;background-color:#fff;position:relative;z-index:100}#header #header-container{padding-bottom:5px;padding-top:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#header .header-bar{width:100%;height:1px;background:#e7e7e7;margin-bottom:-1px}@media print{#header{display:none !important}}#header-spacer{width:100%;visibility:hidden}@media print{#header-spacer{display:none}}#ipython_notebook{padding-left:0;padding-top:1px;padding-bottom:1px}@media (max-width:991px){#ipython_notebook{margin-left:10px}}#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:red;font-weight:bold}#ipython_notebook img{height:28px}#site{width:100%;display:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:auto}@media print{#site{height:auto !important}}.ui-button .ui-button-text{padding:.2em .8em;font-size:77%}input.ui-button{padding:.3em .9em}span#login_widget{float:right}span#login_widget>.button,#logout{color:#333;background-color:#fff;border-color:#ccc}span#login_widget>.button:hover,#logout:hover,span#login_widget>.button:focus,#logout:focus,span#login_widget>.button.focus,#logout.focus,span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{color:#333;background-color:#e6e6e6;border-color:#adadad}span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{background-image:none}span#login_widget>.button.disabled,#logout.disabled,span#login_widget>.button[disabled],#logout[disabled],fieldset[disabled] span#login_widget>.button,fieldset[disabled] #logout,span#login_widget>.button.disabled:hover,#logout.disabled:hover,span#login_widget>.button[disabled]:hover,#logout[disabled]:hover,fieldset[disabled] span#login_widget>.button:hover,fieldset[disabled] #logout:hover,span#login_widget>.button.disabled:focus,#logout.disabled:focus,span#login_widget>.button[disabled]:focus,#logout[disabled]:focus,fieldset[disabled] span#login_widget>.button:focus,fieldset[disabled] #logout:focus,span#login_widget>.button.disabled.focus,#logout.disabled.focus,span#login_widget>.button[disabled].focus,#logout[disabled].focus,fieldset[disabled] span#login_widget>.button.focus,fieldset[disabled] #logout.focus,span#login_widget>.button.disabled:active,#logout.disabled:active,span#login_widget>.button[disabled]:active,#logout[disabled]:active,fieldset[disabled] span#login_widget>.button:active,fieldset[disabled] #logout:active,span#login_widget>.button.disabled.active,#logout.disabled.active,span#login_widget>.button[disabled].active,#logout[disabled].active,fieldset[disabled] span#login_widget>.button.active,fieldset[disabled] #logout.active{background-color:#fff;border-color:#ccc}span#login_widget>.button .badge,#logout .badge{color:#fff;background-color:#333}.nav-header{text-transform:none}#header>span{margin-top:10px}.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:80%}.modal_stretch .modal-dialog .modal-body{max-height:none;flex:1}@media (min-width:768px){.modal .modal-dialog{width:700px}}@media (min-width:768px){select.form-control{margin-left:12px;margin-right:12px}}/*! +* +* IPython auth +* +*/.center-nav{display:inline-block;margin-bottom:-4px}/*! +* +* IPython tree view +* +*/.alternate_upload{background-color:none;display:inline}.alternate_upload.form{padding:0;margin:0}.alternate_upload input.fileinput{display:inline;opacity:0;z-index:2;width:12ex;margin-right:-12ex}.alternate_upload .input-overlay{display:inline-block;font-weight:bold;line-height:1em}ul#tabs{margin-bottom:4px}ul#tabs a{padding-top:6px;padding-bottom:4px}ul.breadcrumb a:focus,ul.breadcrumb a:hover{text-decoration:none}ul.breadcrumb i.icon-home{font-size:16px;margin-right:4px}ul.breadcrumb span{color:#5e5e5e}.list_toolbar{padding:4px 0 4px 0;vertical-align:middle}.list_toolbar .tree-buttons{padding-top:1px}.dynamic-buttons{display:inline-block}.list_toolbar [class*="span"]{min-height:24px}.list_header{font-weight:bold;background-color:#eee}.list_placeholder{font-weight:bold;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px}.list_container{margin-top:4px;margin-bottom:20px;border:1px solid #ddd;border-radius:2px}.list_container>div{border-bottom:1px solid #ddd}.list_container>div:hover .list-item{background-color:red}.list_container>div:last-child{border:none}.list_item:hover .list_item{background-color:#ddd}.list_item a{text-decoration:none}.list_item:hover{background-color:#fafafa}.action_col{text-align:right}.list_header>div,.list_item>div{padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.list_header>div input,.list_item>div input{margin-right:7px;margin-left:14px;vertical-align:baseline;line-height:22px;position:relative;top:-1px}.list_header>div .item_link,.list_item>div .item_link{margin-left:-1px;vertical-align:baseline;line-height:22px}.new-file input[type=checkbox]{visibility:hidden}.item_name{line-height:22px;height:24px}.item_icon{font-size:14px;color:#5e5e5e;margin-right:7px;margin-left:7px;line-height:22px;vertical-align:baseline}.item_buttons{padding-top:4px;line-height:1em;margin-left:-5px}.item_buttons .btn-group,.item_buttons .input-group{float:left}.item_buttons>.btn,.item_buttons>.btn-group,.item_buttons>.input-group{margin-left:5px}.item_buttons .btn{min-width:13ex}.item_buttons .running-indicator{color:#5cb85c}.toolbar_info{height:24px;line-height:24px}input.nbname_input,input.engine_num_input{padding-top:3px;padding-bottom:3px;height:22px;line-height:14px;margin:0}input.engine_num_input{width:60px}.highlight_text{color:blue}#project_name{display:inline-block;padding-left:7px;margin-left:-2px}#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold}#tree-selector{display:inline-block;padding-right:0}#tree-selector input[type=checkbox]{margin-left:7px;vertical-align:baseline}.tab-content .row{margin-left:0;margin-right:0}.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;transform:translate(0, 0);content:"\f114"}.folder_icon:before.pull-left{margin-right:.3em}.folder_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px}.notebook_icon:before.pull-left{margin-right:.3em}.notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px;color:#5cb85c}.running_notebook_icon:before.pull-left{margin-right:.3em}.running_notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f016";position:relative;top:-2px}.file_icon:before.pull-left{margin-right:.3em}.file_icon:before.pull-right{margin-left:.3em}#notebook_toolbar .pull-right{padding-top:0;margin-right:-1px}ul#new-menu{left:auto;right:0}.kernel-menu-icon{padding-right:12px;width:24px;content:"\f096"}.kernel-menu-icon:before{content:"\f096"}.kernel-menu-icon-current:before{content:"\f00c"}#tab_content{padding-top:20px}#running .panel-group .panel{margin-top:3px;margin-bottom:1em}#running .panel-group .panel .panel-heading{background-color:#eee;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}#running .panel-group .panel .panel-heading a:focus,#running .panel-group .panel .panel-heading a:hover{text-decoration:none}#running .panel-group .panel .panel-body{padding:0}#running .panel-group .panel .panel-body .list_container{margin-top:0;margin-bottom:0;border:0;border-radius:0}#running .panel-group .panel .panel-body .list_container .list_item{border-bottom:1px solid #ddd}#running .panel-group .panel .panel-body .list_container .list_item:last-child{border-bottom:0}.delete-button{display:none}.duplicate-button{display:none}.rename-button{display:none}.shutdown-button{display:none}/*! +* +* IPython text editor webapp +* +*/.selected-keymap i.fa{padding:0 5px}.selected-keymap i.fa:before{content:"\f00c"}#mode-menu{overflow:auto;max-height:20em}.edit_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.edit_app #menubar .navbar{margin-bottom:-1px}.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;transform:translate(0, 0);width:20px}.dirty-indicator.pull-left{margin-right:.3em}.dirty-indicator.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-dirty.pull-left{margin-right:.3em}.dirty-indicator-dirty.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-clean.pull-left{margin-right:.3em}.dirty-indicator-clean.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f00c"}.dirty-indicator-clean:before.pull-left{margin-right:.3em}.dirty-indicator-clean:before.pull-right{margin-left:.3em}#filename{font-size:16pt;display:table;padding:0 5px}#current-mode{padding-left:5px;padding-right:5px}#texteditor-backdrop{padding-top:20px;padding-bottom:20px}@media not print{#texteditor-backdrop{background-color:#eee}}@media print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container{padding:0;background-color:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}/*! +* +* IPython notebook +* +*/.ansibold{font-weight:bold}.ansiblack{color:black}.ansired{color:darkred}.ansigreen{color:darkgreen}.ansiyellow{color:#c4a000}.ansiblue{color:darkblue}.ansipurple{color:darkviolet}.ansicyan{color:steelblue}.ansigray{color:gray}.ansibgblack{background-color:black}.ansibgred{background-color:red}.ansibggreen{background-color:green}.ansibgyellow{background-color:yellow}.ansibgblue{background-color:blue}.ansibgpurple{background-color:magenta}.ansibgcyan{background-color:cyan}.ansibggray{background-color:gray}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:none}div.cell.selected{border-color:#ababab}@media print{div.cell.selected{border-color:transparent}}.edit_mode div.cell.selected{border-color:green}@media print{.edit_mode div.cell.selected{border-color:transparent}}.prompt{min-width:14ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:540px){.prompt{text-align:left}}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(){div.inner_cell{overflow-x:hidden}}div.input_area{border:1px solid #cfcfcf;border-radius:2px;background:#f7f7f7;line-height:1.21429em}div.prompt:empty{padding-top:0;padding-bottom:0}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}div.unrecognized_cell .inner_cell{border-radius:2px;padding:5px;font-weight:bold;color:red;border:1px solid #cfcfcf;background:#eaeaea}div.unrecognized_cell .inner_cell a{color:inherit;text-decoration:none}div.unrecognized_cell .inner_cell a:hover{color:inherit;text-decoration:none}@media (max-width:540px){div.unrecognized_cell>div.prompt{display:none}}@media print{div.code_cell{page-break-inside:avoid}}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){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}}div.input_prompt{color:navy;border-top:1px solid transparent}div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.CodeMirror{line-height:1.21429em;font-size:14px;height:auto;background:none}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.CodeMirror-lines{padding:.4em}.CodeMirror-linenumber{padding:0 8px 0 4px}.CodeMirror-gutters{border-bottom-left-radius:2px;border-top-left-radius:2px}.CodeMirror pre{padding:0;border:0;border-radius:0}.highlight-base{color:#000}.highlight-variable{color:#000}.highlight-variable-2{color:#1a1a1a}.highlight-variable-3{color:#333}.highlight-string{color:#ba2121}.highlight-comment{color:#408080;font-style:italic}.highlight-number{color:#080}.highlight-atom{color:#88f}.highlight-keyword{color:#008000;font-weight:bold}.highlight-builtin{color:#008000}.highlight-error{color:#f00}.highlight-operator{color:#a2f;font-weight:bold}.highlight-meta{color:#a2f}.highlight-def{color:#00f}.highlight-string-2{color:#f50}.highlight-qualifier{color:#555}.highlight-bracket{color:#997}.highlight-tag{color:#170}.highlight-attribute{color:#00c}.highlight-header{color:blue}.highlight-quote{color:#090}.highlight-link{color:#00c}.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold}.cm-s-ipython span.cm-atom{color:#88f}.cm-s-ipython span.cm-number{color:#080}.cm-s-ipython span.cm-def{color:#00f}.cm-s-ipython span.cm-variable{color:#000}.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold}.cm-s-ipython span.cm-variable-2{color:#1a1a1a}.cm-s-ipython span.cm-variable-3{color:#333}.cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.cm-s-ipython span.cm-string{color:#ba2121}.cm-s-ipython span.cm-string-2{color:#f50}.cm-s-ipython span.cm-meta{color:#a2f}.cm-s-ipython span.cm-qualifier{color:#555}.cm-s-ipython span.cm-builtin{color:#008000}.cm-s-ipython span.cm-bracket{color:#997}.cm-s-ipython span.cm-tag{color:#170}.cm-s-ipython span.cm-attribute{color:#00c}.cm-s-ipython span.cm-header{color:blue}.cm-s-ipython span.cm-quote{color:#090}.cm-s-ipython span.cm-link{color:#00c}.cm-s-ipython span.cm-error{color:#f00}.cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}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}div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:2px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);display:block}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}div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:2px}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,0.5)}div.output_prompt{color:darkred}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}div.output_area .MathJax_Display{text-align:left !important}div.output_area .rendered_html table{margin-left:0;margin-right:0}div.output_area .rendered_html img{margin-left:0;margin-right:0}.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){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}}div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:black;background-color:transparent;border-radius:0}div.output_subarea{padding:.4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.output_text{text-align:left;color:#000;line-height:1.21429em}div.output_stderr{background:#fdd}div.output_latex{text-align:left}div.output_javascript:empty{padding:0}.js-error{color:darkred}div.raw_input_container{font-family:monospace;padding-top:5px}input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}input.raw_input:focus{box-shadow:none}p.p-space{margin-bottom:10px}div.output_unrecognized{padding:5px;font-weight:bold;color:red}div.output_unrecognized a{color:inherit;text-decoration:none}div.output_unrecognized a:hover{color:inherit;text-decoration:none}.rendered_html{color:#000}.rendered_html em{font-style:italic}.rendered_html strong{font-weight:bold}.rendered_html u{text-decoration:underline}.rendered_html :link{text-decoration:underline}.rendered_html :visited{text-decoration:underline}.rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:bold;line-height:1}.rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:bold;line-height:1}.rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:bold;line-height:1}.rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1}.rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h1:first-child{margin-top:.538em}.rendered_html h2:first-child{margin-top:.636em}.rendered_html h3:first-child{margin-top:.777em}.rendered_html h4:first-child{margin-top:1em}.rendered_html h5:first-child{margin-top:1em}.rendered_html h6:first-child{margin-top:1em}.rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.rendered_html ul ul{list-style:square;margin:0 2em}.rendered_html ul ul ul{list-style:circle;margin:0 2em}.rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.rendered_html *+ul{margin-top:1em}.rendered_html *+ol{margin-top:1em}.rendered_html hr{color:black;background-color:black}.rendered_html pre{margin:1em 2em}.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.rendered_html blockquote{margin:1em 2em}.rendered_html table{margin-left:auto;margin-right:auto;border:1px solid black;border-collapse:collapse}.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em}.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px}.rendered_html th{font-weight:bold}.rendered_html *+table{margin-top:1em}.rendered_html p{text-align:left}.rendered_html *+p{margin-top:1em}.rendered_html img{display:block;margin-left:auto;margin-right:auto}.rendered_html *+img{margin-top:1em}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){div.text_cell>div.prompt{display:none}}div.text_cell_render{outline:none;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}a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible}.text_cell.rendered .input_area{display:none}.text_cell.unrendered .text_cell_render{display:none}.cm-header-1,.cm-header-2,.cm-header-3,.cm-header-4,.cm-header-5,.cm-header-6{font-weight:bold;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.cm-header-1{font-size:185.7%}.cm-header-2{font-size:157.1%}.cm-header-3{font-size:128.6%}.cm-header-4{font-size:110%}.cm-header-5{font-size:100%;font-style:italic}.cm-header-6{font-size:100%;font-style:italic}.widget-interact>div,.widget-interact>input{padding:2.5px}.widget-area{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}.widget-area .widget-subarea{padding:.44em .4em .4em 1px;margin-left:6px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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:2;-moz-box-flex:2;box-flex:2;flex:2;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-area.connection-problems .prompt:after{content:"\f127";font-family:'FontAwesome';color:#d9534f;font-size:14px;top:3px;padding:3px}.slide-track{border:1px solid #ccc;background:#fff;border-radius:2px}.widget-hslider{padding-left:8px;padding-right:2px;overflow:visible;width:350px;height:5px;max-height:5px;margin-top:13px;margin-bottom:10px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-hslider .ui-slider{border:0;background:none;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-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-hslider .ui-slider .ui-slider-handle{width:12px;height:28px;margin-top:-8px;border-radius:2px}.widget-hslider .ui-slider .ui-slider-range{height:12px;margin-top:-4px;background:#eee}.widget-vslider{padding-bottom:5px;overflow:visible;width:5px;max-width:5px;height:250px;margin-left:12px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-vslider .ui-slider{border:0;background:none;margin-left:-4px;margin-top:5px;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}.widget-vslider .ui-slider .ui-slider-handle{width:28px;height:12px;margin-left:-9px;border-radius:2px}.widget-vslider .ui-slider .ui-slider-range{width:12px;margin-left:-1px;background:#eee}.widget-text{width:350px;margin:0}.widget-listbox{width:350px;margin-bottom:0}.widget-numeric-text{width:150px;margin:0}.widget-progress{margin-top:6px;min-width:350px}.widget-progress .progress-bar{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.widget-combo-btn{min-width:125px}.widget_item .dropdown-menu li a{color:inherit}.widget-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}.widget-hbox input[type="checkbox"]{margin-top:9px;margin-bottom:10px}.widget-hbox .widget-label{min-width:10ex;padding-right:8px;padding-top:5px;text-align:right;vertical-align:text-top}.widget-hbox .widget-readout{padding-left:8px;padding-top:5px;text-align:left;vertical-align:text-top}.widget-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}.widget-vbox .widget-label{padding-bottom:5px;text-align:center;vertical-align:text-bottom}.widget-vbox .widget-readout{padding-top:5px;text-align:center;vertical-align:text-top}.widget-box{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-radio-box{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;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding-top:4px}.widget-radio-box label{margin-top:0}.widget-radio{margin-left:20px}/*! +* +* IPython notebook webapp +* +*/@media (max-width:767px){.notebook_app{padding-left:0;padding-right:0}}#ipython-main-app{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}div#notebook_panel{margin:0;padding:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}#notebook{font-size:14px;line-height:20px;overflow-y:hidden;overflow-x:auto;width:100%;padding-top:20px;margin:0;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;min-height:100%}@media not print{#notebook-container{padding:15px;background-color:#fff;min-height:0;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}div.ui-widget-content{border:1px solid #ababab;outline:none}pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:2px;padding:.4em;padding-left:2em}p.dialog{padding:.2em}pre,code,kbd,samp{white-space:pre-wrap}#fonttest{font-family:monospace}p{margin-bottom:0}.end_space{min-height:100px;transition:height .2s ease}.notebook_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}@media not print{.notebook_app{background-color:#eee}}.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}@media print{.celltoolbar{display:none}}.ctb_hideshow{display:none;vertical-align:bottom}.ctb_global_show .ctb_show.ctb_hideshow{display:block}.ctb_global_show .ctb_show+.input_area,.ctb_global_show .ctb_show+div.text_cell_input,.ctb_global_show .ctb_show~div.text_cell_render{border-top-right-radius:0;border-top-left-radius:0}.ctb_global_show .ctb_show~div.text_cell_render{border:1px solid #cfcfcf}.celltoolbar{font-size:87%;padding-top:3px}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.celltoolbar select::-moz-placeholder{color:#999;opacity:1}.celltoolbar select:-ms-input-placeholder{color:#999}.celltoolbar select::-webkit-input-placeholder{color:#999}.celltoolbar select[disabled],.celltoolbar select[readonly],fieldset[disabled] .celltoolbar select{cursor:not-allowed;background-color:#eee;opacity:1}textarea.celltoolbar select{height:auto}select.celltoolbar select{height:30px;line-height:30px}textarea.celltoolbar select,select[multiple].celltoolbar select{height:auto}.celltoolbar label{margin-left:5px;margin-right:5px}.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:2px;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad}.completions select{background:white;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000;width:auto}.completions select option.context{color:#286090}#kernel_logo_widget{float:right !important;float:right}#kernel_logo_widget .current_kernel_logo{display:none;margin-top:-1px;margin-bottom:-1px;width:32px;height:32px}#menubar{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;margin-top:1px}#menubar .navbar{border-top:1px;border-radius:0 0 2px 2px;margin-bottom:0}#menubar .navbar-toggle{float:left;padding-top:7px;padding-bottom:7px;border:none}#menubar .navbar-collapse{clear:left}.nav-wrapper{border-bottom:1px solid #e7e7e7}i.menu-icon{padding-top:4px}ul#help_menu li a{overflow:hidden;padding-right:2.2em}ul#help_menu li a i{margin-right:-1.2em}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu:hover>.dropdown-menu{display:block}.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;transform:translate(0, 0);display:block;content:"\f0da";float:right;color:#333;margin-top:2px;margin-right:-10px}.dropdown-submenu>a:after.pull-left{margin-right:.3em}.dropdown-submenu>a:after.pull-right{margin-left:.3em}.dropdown-submenu:hover>a:after{color:#262626}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}#notification_area{float:right !important;float:right;z-index:10}.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}#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}#kernel_indicator .kernel_indicator_name{padding-left:5px;padding-right:5px}#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}#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}.modal_indicator:before{width:1.28571429em;text-align:center}.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;transform:translate(0, 0);content:"\f040"}.edit_mode .modal_indicator:before.pull-left{margin-right:.3em}.edit_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:' '}.command_mode .modal_indicator:before.pull-left{margin-right:.3em}.command_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f10c"}.kernel_idle_icon:before.pull-left{margin-right:.3em}.kernel_idle_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f111"}.kernel_busy_icon:before.pull-left{margin-right:.3em}.kernel_busy_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f1e2"}.kernel_dead_icon:before.pull-left{margin-right:.3em}.kernel_dead_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f127"}.kernel_disconnected_icon:before.pull-left{margin-right:.3em}.kernel_disconnected_icon:before.pull-right{margin-left:.3em}.notification_widget{color:#777;z-index:10;background:rgba(240,240,240,0.5);color:#333;background-color:#fff;border-color:#ccc}.notification_widget:hover,.notification_widget:focus,.notification_widget.focus,.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{color:#333;background-color:#e6e6e6;border-color:#adadad}.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{background-image:none}.notification_widget.disabled,.notification_widget[disabled],fieldset[disabled] .notification_widget,.notification_widget.disabled:hover,.notification_widget[disabled]:hover,fieldset[disabled] .notification_widget:hover,.notification_widget.disabled:focus,.notification_widget[disabled]:focus,fieldset[disabled] .notification_widget:focus,.notification_widget.disabled.focus,.notification_widget[disabled].focus,fieldset[disabled] .notification_widget.focus,.notification_widget.disabled:active,.notification_widget[disabled]:active,fieldset[disabled] .notification_widget:active,.notification_widget.disabled.active,.notification_widget[disabled].active,fieldset[disabled] .notification_widget.active{background-color:#fff;border-color:#ccc}.notification_widget .badge{color:#fff;background-color:#333}.notification_widget.warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning:hover,.notification_widget.warning:focus,.notification_widget.warning.focus,.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{color:#fff;background-color:#ec971f;border-color:#d58512}.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{background-image:none}.notification_widget.warning.disabled,.notification_widget.warning[disabled],fieldset[disabled] .notification_widget.warning,.notification_widget.warning.disabled:hover,.notification_widget.warning[disabled]:hover,fieldset[disabled] .notification_widget.warning:hover,.notification_widget.warning.disabled:focus,.notification_widget.warning[disabled]:focus,fieldset[disabled] .notification_widget.warning:focus,.notification_widget.warning.disabled.focus,.notification_widget.warning[disabled].focus,fieldset[disabled] .notification_widget.warning.focus,.notification_widget.warning.disabled:active,.notification_widget.warning[disabled]:active,fieldset[disabled] .notification_widget.warning:active,.notification_widget.warning.disabled.active,.notification_widget.warning[disabled].active,fieldset[disabled] .notification_widget.warning.active{background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning .badge{color:#f0ad4e;background-color:#fff}.notification_widget.success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success:hover,.notification_widget.success:focus,.notification_widget.success.focus,.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{color:#fff;background-color:#449d44;border-color:#398439}.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{background-image:none}.notification_widget.success.disabled,.notification_widget.success[disabled],fieldset[disabled] .notification_widget.success,.notification_widget.success.disabled:hover,.notification_widget.success[disabled]:hover,fieldset[disabled] .notification_widget.success:hover,.notification_widget.success.disabled:focus,.notification_widget.success[disabled]:focus,fieldset[disabled] .notification_widget.success:focus,.notification_widget.success.disabled.focus,.notification_widget.success[disabled].focus,fieldset[disabled] .notification_widget.success.focus,.notification_widget.success.disabled:active,.notification_widget.success[disabled]:active,fieldset[disabled] .notification_widget.success:active,.notification_widget.success.disabled.active,.notification_widget.success[disabled].active,fieldset[disabled] .notification_widget.success.active{background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success .badge{color:#5cb85c;background-color:#fff}.notification_widget.info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.notification_widget.info:hover,.notification_widget.info:focus,.notification_widget.info.focus,.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{color:#fff;background-color:#31b0d5;border-color:#269abc}.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{background-image:none}.notification_widget.info.disabled,.notification_widget.info[disabled],fieldset[disabled] .notification_widget.info,.notification_widget.info.disabled:hover,.notification_widget.info[disabled]:hover,fieldset[disabled] .notification_widget.info:hover,.notification_widget.info.disabled:focus,.notification_widget.info[disabled]:focus,fieldset[disabled] .notification_widget.info:focus,.notification_widget.info.disabled.focus,.notification_widget.info[disabled].focus,fieldset[disabled] .notification_widget.info.focus,.notification_widget.info.disabled:active,.notification_widget.info[disabled]:active,fieldset[disabled] .notification_widget.info:active,.notification_widget.info.disabled.active,.notification_widget.info[disabled].active,fieldset[disabled] .notification_widget.info.active{background-color:#5bc0de;border-color:#46b8da}.notification_widget.info .badge{color:#5bc0de;background-color:#fff}.notification_widget.danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger:hover,.notification_widget.danger:focus,.notification_widget.danger.focus,.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{background-image:none}.notification_widget.danger.disabled,.notification_widget.danger[disabled],fieldset[disabled] .notification_widget.danger,.notification_widget.danger.disabled:hover,.notification_widget.danger[disabled]:hover,fieldset[disabled] .notification_widget.danger:hover,.notification_widget.danger.disabled:focus,.notification_widget.danger[disabled]:focus,fieldset[disabled] .notification_widget.danger:focus,.notification_widget.danger.disabled.focus,.notification_widget.danger[disabled].focus,fieldset[disabled] .notification_widget.danger.focus,.notification_widget.danger.disabled:active,.notification_widget.danger[disabled]:active,fieldset[disabled] .notification_widget.danger:active,.notification_widget.danger.disabled.active,.notification_widget.danger[disabled].active,fieldset[disabled] .notification_widget.danger.active{background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger .badge{color:#d9534f;background-color:#fff}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,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2);z-index:100;top:auto !important}div#pager pre{line-height:1.21429em;color:#000;background-color:#f7f7f7;padding:.4em}div#pager #pager-button-area{position:absolute;top:8px;right:20px}div#pager #pager-contents{position:relative;overflow:auto;width:100%;height:100%}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}div#pager .ui-resizable-handle{top:0;height:8px;background:#f7f7f7;border-top:1px solid #cfcfcf;border-bottom:1px solid #cfcfcf}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}.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}.shortcut_key{display:inline-block;width:20ex;text-align:right;font-family:monospace}.shortcut_descr{display:inline-block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}span.save_widget{margin-top:6px}span.save_widget span.filename{height:1em;line-height:1em;padding:3px;margin-left:16px;border:none;font-size:146.5%;border-radius:2px}span.save_widget span.filename:hover{background-color:#e6e6e6}span.checkpoint_status,span.autosave_status{font-size:small}@media (max-width:767px){span.save_widget{font-size:small}span.checkpoint_status,span.autosave_status{display:none}}@media (min-width:768px) and (max-width:991px){span.checkpoint_status{display:none}span.autosave_status{font-size:x-small}}.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}.toolbar select,.toolbar label{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}.toolbar .btn{padding:2px 8px}.toolbar .btn-group{margin-top:0;margin-left:5px}#maintoolbar{margin-bottom:-3px;margin-top:-8px;border:0;min-height:27px;margin-left:0;padding-top:11px;padding-bottom:3px}#maintoolbar .navbar-text{float:none;vertical-align:middle;text-align:right;margin-left:5px;margin-right:0;margin-top:0}.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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms}.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px}.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0}.tooltiptext{padding-right:30px}.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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}.ipython_tooltip a{float:right}.ipython_tooltip .tooltiptext pre{border:0;border-radius:0;font-size:100%;background-color:#f7f7f7}.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute}.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)}.terminal-app{background:#eee}.terminal-app #header{background:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.terminal-app .terminal{float:left;font-family:monospace;color:white;background:black;padding:.4em;border-radius:2px;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.4);box-shadow:0 0 12px 1px rgba(87,87,87,0.4)}.terminal-app .terminal,.terminal-app .terminal dummy-screen{line-height:1em;font-size:14px}.terminal-app .terminal-cursor{color:black;background:white}.terminal-app #terminado-container{margin-top:20px}/*# sourceMappingURL=style.min.css.map */ + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} + +div#notebook { + overflow: visible; + border-top: none; +} + +@media print { + div.cell { + display: block; + page-break-inside: avoid; + } + div.output_wrapper { + display: block; + page-break-inside: avoid; + } + div.output { + display: block; + page-break-inside: avoid; + } +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<!-- Loading mathjax macro --> +<!-- Load mathjax --> + <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script> + <!-- MathJax configuration --> + <script type="text/x-mathjax-config"> + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ], + processEscapes: true, + processEnvironments: true + }, + // Center justify equations in code and markdown cells. Elsewhere + // we use CSS to left justify single line equations in code cells. + displayAlign: 'center', + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}}, + linebreaks: { automatic: true } + } + }); + </script> + <!-- End of mathjax configuration --> + +</head> +<body> + <div tabindex="-1" id="notebook" class="border-box-sizing"> + <div class="container" id="notebook-container"> + +<div class="cell border-box-sizing text_cell rendered"> +<div class="prompt input_prompt"> +</div> +<div class="inner_cell"> +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="This-example-illustrates-how-to-define-a-kinetic-model-using-the-scripting-interface.Normally-one-uses-standard-model-formats-like-SBML-or-kkit-to-concisely-define-kinetic-models,-but-in-some-cases-one-would-like-to-modify-the-model-through-the-script.">This example illustrates how to define a kinetic model using the scripting interface.Normally one uses standard model formats like SBML or kkit to concisely define kinetic models, but in some cases one would like to modify the model through the script.<a class="anchor-link" href="#This-example-illustrates-how-to-define-a-kinetic-model-using-the-scripting-interface.Normally-one-uses-standard-model-formats-like-SBML-or-kkit-to-concisely-define-kinetic-models,-but-in-some-cases-one-would-like-to-modify-the-model-through-the-script.">¶</a></h1><h2 id="This-example-creates-a-reaction-model">This example creates a reaction model<a class="anchor-link" href="#This-example-creates-a-reaction-model">¶</a></h2> +</div> +</div> +</div> +<div class="cell border-box-sizing code_cell rendered"> +<div class="input"> +<div class="prompt input_prompt">In [1]:</div> +<div class="inner_cell"> + <div class="input_area"> +<div class=" highlight hl-ipython2"><pre><span class="c"># first step is to import moose</span> +<span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">numpy</span> +<span class="o">%</span><span class="k">matplotlib</span> inline +<span class="c"># create container for model</span> +<span class="n">model</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Neutral</span><span class="p">(</span> <span class="s">'model'</span> <span class="p">)</span> + +<span class="c">#create chemical compartment either `CubeMesh` or `CylMesh` and set the volume</span> +<span class="n">compartment</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">CubeMesh</span><span class="p">(</span> <span class="s">'/model/compartment'</span> <span class="p">)</span> +<span class="n">compartment</span><span class="o">.</span><span class="n">volume</span> <span class="o">=</span> <span class="mf">1e-20</span> + +<span class="c"># create molecules and reactions</span> +<span class="n">sub</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Pool</span><span class="p">(</span> <span class="s">'/model/compartment/Sub'</span> <span class="p">)</span> +<span class="n">sub</span><span class="o">.</span><span class="n">concInit</span> <span class="o">=</span> <span class="mf">0.001</span> +<span class="n">prd</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Pool</span><span class="p">(</span> <span class="s">'/model/compartment/Prd'</span> <span class="p">)</span> +<span class="n">reac</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Reac</span><span class="p">(</span> <span class="s">'/model/compartment/reac'</span> <span class="p">)</span> +<span class="n">reac</span><span class="o">.</span><span class="n">Kf</span> <span class="o">=</span> <span class="mf">0.1</span> +<span class="n">reac</span><span class="o">.</span><span class="n">Kb</span> <span class="o">=</span> <span class="mf">0.001</span> + +<span class="c"># connect them up for reactions</span> +<span class="n">moose</span><span class="o">.</span><span class="n">connect</span><span class="p">(</span> <span class="n">reac</span><span class="p">,</span> <span class="s">'sub'</span><span class="p">,</span> <span class="n">sub</span><span class="p">,</span> <span class="s">'reac'</span> <span class="p">)</span> +<span class="n">moose</span><span class="o">.</span><span class="n">connect</span><span class="p">(</span> <span class="n">reac</span><span class="p">,</span> <span class="s">'prd'</span><span class="p">,</span> <span class="n">prd</span><span class="p">,</span> <span class="s">'reac'</span> <span class="p">)</span> + + +<span class="c">#setting up the KSolve</span> +<span class="n">gsolve</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Ksolve</span><span class="p">(</span> <span class="s">'/model/compartment/ksolve'</span> <span class="p">)</span> +<span class="n">stoich</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Stoich</span><span class="p">(</span> <span class="s">'/model/compartment/stoich'</span> <span class="p">)</span> +<span class="n">stoich</span><span class="o">.</span><span class="n">compartment</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/model/compartment'</span> <span class="p">)</span> +<span class="n">stoich</span><span class="o">.</span><span class="n">ksolve</span> <span class="o">=</span> <span class="n">gsolve</span> +<span class="n">stoich</span><span class="o">.</span><span class="n">path</span> <span class="o">=</span> <span class="s">"/model/compartment/##"</span> +<span class="n">moose</span><span class="o">.</span><span class="n">setClock</span><span class="p">(</span> <span class="mi">15</span><span class="p">,</span> <span class="mf">1.0</span> <span class="p">)</span> <span class="c"># clock for the solver</span> +<span class="n">moose</span><span class="o">.</span><span class="n">useClock</span><span class="p">(</span> <span class="mi">15</span><span class="p">,</span> <span class="s">'/model/compartment/gsolve'</span><span class="p">,</span> <span class="s">'process'</span> <span class="p">)</span> + +<span class="c"># Create the output tables</span> +<span class="n">graphs</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Neutral</span><span class="p">(</span> <span class="s">'/model/graphs'</span> <span class="p">)</span> +<span class="n">outputA</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Table2</span> <span class="p">(</span> <span class="s">'/model/graphs/concA'</span> <span class="p">)</span> +<span class="n">outputB</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Table2</span> <span class="p">(</span> <span class="s">'/model/graphs/concB'</span> <span class="p">)</span> + +<span class="c"># connect up the tables for plot substrate and product concentration</span> +<span class="n">moose</span><span class="o">.</span><span class="n">connect</span><span class="p">(</span> <span class="n">outputA</span><span class="p">,</span> <span class="s">'requestOut'</span><span class="p">,</span> <span class="n">sub</span><span class="p">,</span> <span class="s">'getConc'</span> <span class="p">);</span> +<span class="n">moose</span><span class="o">.</span><span class="n">connect</span><span class="p">(</span> <span class="n">outputB</span><span class="p">,</span> <span class="s">'requestOut'</span><span class="p">,</span> <span class="n">prd</span><span class="p">,</span> <span class="s">'getConc'</span> <span class="p">);</span> + +<span class="c"># reinit and run for 100s</span> +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span><span class="mi">100</span><span class="p">)</span> + +<span class="c">#setting up displaying plots in matplotlib</span> +<span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">moose</span><span class="o">.</span><span class="n">wildcardFind</span><span class="p">(</span> <span class="s">'/model/graphs/#[TYPE=Table2]'</span> <span class="p">):</span> + <span class="n">t</span> <span class="o">=</span> <span class="n">numpy</span><span class="o">.</span><span class="n">arange</span><span class="p">(</span> <span class="mi">0</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="o">.</span><span class="n">size</span><span class="p">,</span> <span class="mi">1</span> <span class="p">)</span> <span class="c">#sec</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span> <span class="n">t</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="n">x</span><span class="o">.</span><span class="n">name</span><span class="p">,</span><span class="n">linewidth</span><span class="o">=</span><span class="mi">2</span><span class="p">)</span> +<span class="n">pylab</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span> +<span class="n">pylab</span><span class="o">.</span><span class="n">show</span><span class="p">()</span> +</pre></div> + +</div> +</div> +</div> + +<div class="output_wrapper"> +<div class="output"> + + +<div class="output_area"><div class="prompt"></div> + + +<div class="output_png output_subarea "> +<img src="data:image/png;base64,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 +GWOoqqqy9fPzy8nOzh64bNmydQkJCcsZY4iPj1+xYsWKeGPn2lWxfv36pU8//fSP06dPT2KMwVS3 +xZuzj5QAAAN2SURBVHPPPZf43XffvcAYg0ql4ikUCgdT3BYSiUTs6el5q76+3oIxhjlz5uz8/vvv +Y01lW5w+ffrRS5cuhekXi5bW/dq1a4EhISFZSqWSL5FIxN7e3vkajcbM0PyNvoJtjXPnzo2YNGnS +Id3ntWvXrly7du1KY+dlrHjiiSf2Hj16dIK/v/+NkpISAWONBcXf3/+GsXPripBKpaLx48cfO3Hi +xFjdnoUpbguFQuHg6el5q+l0U9wW5eXlzn5+fjlyudxJpVLxpk2btv/IkSNRprQtJBKJWL9YtLTu +a9aseVv/6MykSZMOnT9/frihefeYZ3C3dD2HMXMyloKCAnFmZmZYREREWkvXrPR2S5Ys+eTDDz9c +pn91vyluC4lE4tmvX7+7CxYs2DJ48OBLCxcu/KampsbGFLeFs7Oz/K233lrfv3//O+7u7kWOjo6K +qKioo6a4LXQMXdOmf2ZrW35Pe0yxaOs1H71ddXW17ezZs3/57LPP/mpn97+Pk23tmpXe4tdff53m +4uJSFhYWlslauO7GVLaFWq3mXbp0afCrr7765aVLlwbb2NjUxMfHr9RvYyrb4ubNm96ffvrpmwUF +BeKioiL36upq2x9++OFZ/Tamsi2a86DXtDXVY4pFW6756O1UKhV/9uzZv8yfP3+b7nTjlq5Z6c3O +nTs3MikpKdrT01Myb9687SdOnBg3f/78baa4LUQiUaFIJCocOnToBQB48sknf7506dJgV1fXElPb +FhkZGeEjR44816dPn3Iej6eeNWvW7vPnz48wxW2h05HXtPWYYtGWaz56M8YY58UXX/wuMDAw+803 +3/xUN72la1Z6szVr1rwjlUo9JBKJ544dO2LGjRt3Ytu2bfNNcVu4urqWeHh4SHNzG59Ff+zYsQlB +QUHXpk+fvt/UtkVAQMCN1NTU4XV1dVaMMc6xY8cmBAYGZpvittDp0GvajD0g8yDR0nUbphC//fbb +aA6How0JCckKDQ3NDA0NzTx48OBkQ9esmEKkpKQ8pjsbylS3RVZWVkh4ePiF4ODgyzNnztytUCgc +THVbJCQkLNedOvvcc88lKpVKvqlsi5iYmO1ubm5FfD5fKRKJpJs3b17Qkde09biHHxFCCOl6PeYw +FCGEEOOhYkEIIaRVVCwIIYS0iooFIYSQVlGxIIQQ0ioqFoQQQlr1f/9CONCBwGUzAAAAAElFTkSu +QmCC +" +> +</div> + +</div> + +</div> +</div> + +</div> + </div> + </div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Chemical_oscillator_Rdesigneur.html b/docs/user/tutorials/_static/Chemical_oscillator_Rdesigneur.html new file mode 100644 index 0000000000000000000000000000000000000000..9078e39ebe922a0d084a0a91c0c905b7aee5bece --- /dev/null +++ b/docs/user/tutorials/_static/Chemical_oscillator_Rdesigneur.html @@ -0,0 +1,2238 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Chemical_oscillator_Rdesigneur</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="The-chemical-oscillator-model-is-predefined-in-the-rdesigneur-prototypes">The chemical oscillator model is predefined in the rdesigneur prototypes<a class="anchor-link" href="#The-chemical-oscillator-model-is-predefined-in-the-rdesigneur-prototypes">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [2]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="o">%</span><span class="k">matplotlib</span> <span class="n">inline</span> + +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">turnOffElec</span> <span class="o">=</span> <span class="bp">True</span><span class="p">,</span> + <span class="n">diffusionLength</span> <span class="o">=</span> <span class="mf">1e-3</span><span class="p">,</span> <span class="c"># Default diffusion length is 2 microns</span> + <span class="n">chemProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'makeChemOscillator()'</span><span class="p">,</span> <span class="s">'osc'</span><span class="p">]],</span> + <span class="n">chemDistrib</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'osc'</span><span class="p">,</span> <span class="s">'soma'</span><span class="p">,</span> <span class="s">'install'</span><span class="p">,</span> <span class="s">'1'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'a Conc'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/b'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'b Conc'</span><span class="p">]]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> +<span class="n">b</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/model/chem/dend/b'</span> <span class="p">)</span> +<span class="n">b</span><span class="o">.</span><span class="n">concInit</span> <span class="o">*=</span> <span class="mi">5</span> +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mi">200</span> <span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">display</span><span class="p">()</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 1 compartments and 0 spines on 1 compartments. +Chem part of model has 1 dendrite voxels X 3 pools, + + +</pre> +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +AAAAAElFTkSuQmCC +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/DeterministicSolver.html b/docs/user/tutorials/_static/DeterministicSolver.html new file mode 100755 index 0000000000000000000000000000000000000000..c087f794ab93c1c14ef4f15c9dd5a9e60dc2ba55 --- /dev/null +++ b/docs/user/tutorials/_static/DeterministicSolver.html @@ -0,0 +1,986 @@ +<!DOCTYPE html> +<html> +<head> + +<meta charset="utf-8" /> +<title>DeterministicSolver</title> + +<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> +<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> + +<style type="text/css"> + /*! +* +* Twitter Bootstrap +* +*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.42857143;color:#000;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:3px}.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}.img-circle{border-radius:50%}hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:18px;margin-bottom:9px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:9px;margin-bottom:9px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:33px}h2,.h2{font-size:27px}h3,.h3{font-size:23px}h4,.h4{font-size:17px}h5,.h5{font-size:13px}h6,.h6{font-size:12px}p{margin:0 0 9px}.lead{margin-bottom:18px;font-size:14px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:19.5px}}small,.small{font-size:92%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:9px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:18px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:541px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:9px 18px;margin:0 0 18px;font-size:inherit;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:18px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:2px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}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}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}@media (min-width:768px){.container{width:768px}}@media (min-width:992px){.container{width:940px}}@media (min-width:1200px){.container{width:1140px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}.row{margin-left:0;margin-right:0}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:0;padding-right:0}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:18px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:13.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}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}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:13px;line-height:1.42857143;color:#555}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:32px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:45px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:18px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-lg,select.form-group-lg .form-control{height:45px;line-height:45px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:40px}.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}.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:23px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:25px}.form-horizontal .form-group{margin-left:0;margin-right:0}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:0}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;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}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.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}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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,0.15);border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:541px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:2px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:13px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:2px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:1px}.input-group-addon.input-lg{padding:10px 16px;font-size:17px;border-radius:3px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:2px 2px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:2px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:30px;margin-bottom:18px;border:1px solid transparent}@media (min-width:541px){.navbar{border-radius:2px}}@media (min-width:541px){.navbar-header{float:left}}.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,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:541px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;visibility:visible !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:540px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}@media (min-width:541px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:541px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:541px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:6px 0;font-size:17px;line-height:18px;height:30px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:541px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:0}}.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}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:541px){.navbar-toggle{display:none}}.navbar-nav{margin:3px 0}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:18px}@media (max-width:540px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:18px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:541px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:6px;padding-bottom:6px}}.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,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:-1px;margin-bottom:-1px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:540px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:541px){.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}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-top-right-radius:2px;border-top-left-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:-1px;margin-bottom:-1px}.navbar-btn.btn-sm{margin-top:0;margin-bottom:0}.navbar-btn.btn-xs{margin-top:4px;margin-bottom:4px}.navbar-text{margin-top:6px;margin-bottom:6px}@media (min-width:541px){.navbar-text{float:left;margin-left:0;margin-right:0}}@media (min-width:541px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:0}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:540px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:540px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:18px;list-style:none;background-color:#f5f5f5;border-radius:2px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#5e5e5e}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:18px 0;border-radius:2px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:17px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:18px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:3px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:58.5px}}.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}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#000}.alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:2px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f5f5f5;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.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,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:18px;background-color:#fff;border:1px solid transparent;border-radius:2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:1px;border-top-left-radius:1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:1px;border-top-right-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:1px;border-bottom-right-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:18px}.panel-group .panel{margin-bottom:0;border-radius:2px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.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,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:3px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;-webkit-overflow-scrolling:touch;outline:0}.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 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:2px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.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-size:13px;font-weight:normal;line-height:1.42857143;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:13px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:2px 2px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.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,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;backface-visibility:hidden;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after,.item_buttons:before,.item_buttons:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after,.item_buttons:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*! +* +* Font Awesome +* +*//*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.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;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.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)}.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)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}/*! +* +* IPython base +* +*/.modal.fade .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}code{color:#000}pre{font-size:inherit;line-height:inherit}label{font-weight:normal}.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.corner-all{border-radius:2px}.no-padding{padding:0}.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}.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.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}.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.hbox.reverse,.vbox.reverse,.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.hbox.box-flex0,.vbox.box-flex0,.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.hbox.box-flex1,.vbox.box-flex1,.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex,.vbox.box-flex,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex2,.vbox.box-flex2,.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.hbox.start,.vbox.start,.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.hbox.end,.vbox.end,.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.hbox.center,.vbox.center,.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.hbox.baseline,.vbox.baseline,.baseline{-webkit-box-pack:baseline;-moz-box-pack:baseline;box-pack:baseline;justify-content:baseline}.hbox.stretch,.vbox.stretch,.stretch{-webkit-box-pack:stretch;-moz-box-pack:stretch;box-pack:stretch;justify-content:stretch}.hbox.align-start,.vbox.align-start,.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.hbox.align-end,.vbox.align-end,.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.hbox.align-center,.vbox.align-center,.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}.hbox.align-baseline,.vbox.align-baseline,.align-baseline{-webkit-box-align:baseline;-moz-box-align:baseline;box-align:baseline;align-items:baseline}.hbox.align-stretch,.vbox.align-stretch,.align-stretch{-webkit-box-align:stretch;-moz-box-align:stretch;box-align:stretch;align-items:stretch}div.error{margin:2em;text-align:center}div.error>h1{font-size:500%;line-height:normal}div.error>p{font-size:200%;line-height:normal}div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible}#header{display:none;background-color:#fff;position:relative;z-index:100}#header #header-container{padding-bottom:5px;padding-top:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#header .header-bar{width:100%;height:1px;background:#e7e7e7;margin-bottom:-1px}@media print{#header{display:none !important}}#header-spacer{width:100%;visibility:hidden}@media print{#header-spacer{display:none}}#ipython_notebook{padding-left:0;padding-top:1px;padding-bottom:1px}@media (max-width:991px){#ipython_notebook{margin-left:10px}}#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:red;font-weight:bold}#ipython_notebook img{height:28px}#site{width:100%;display:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:auto}@media print{#site{height:auto !important}}.ui-button .ui-button-text{padding:.2em .8em;font-size:77%}input.ui-button{padding:.3em .9em}span#login_widget{float:right}span#login_widget>.button,#logout{color:#333;background-color:#fff;border-color:#ccc}span#login_widget>.button:hover,#logout:hover,span#login_widget>.button:focus,#logout:focus,span#login_widget>.button.focus,#logout.focus,span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{color:#333;background-color:#e6e6e6;border-color:#adadad}span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{background-image:none}span#login_widget>.button.disabled,#logout.disabled,span#login_widget>.button[disabled],#logout[disabled],fieldset[disabled] span#login_widget>.button,fieldset[disabled] #logout,span#login_widget>.button.disabled:hover,#logout.disabled:hover,span#login_widget>.button[disabled]:hover,#logout[disabled]:hover,fieldset[disabled] span#login_widget>.button:hover,fieldset[disabled] #logout:hover,span#login_widget>.button.disabled:focus,#logout.disabled:focus,span#login_widget>.button[disabled]:focus,#logout[disabled]:focus,fieldset[disabled] span#login_widget>.button:focus,fieldset[disabled] #logout:focus,span#login_widget>.button.disabled.focus,#logout.disabled.focus,span#login_widget>.button[disabled].focus,#logout[disabled].focus,fieldset[disabled] span#login_widget>.button.focus,fieldset[disabled] #logout.focus,span#login_widget>.button.disabled:active,#logout.disabled:active,span#login_widget>.button[disabled]:active,#logout[disabled]:active,fieldset[disabled] span#login_widget>.button:active,fieldset[disabled] #logout:active,span#login_widget>.button.disabled.active,#logout.disabled.active,span#login_widget>.button[disabled].active,#logout[disabled].active,fieldset[disabled] span#login_widget>.button.active,fieldset[disabled] #logout.active{background-color:#fff;border-color:#ccc}span#login_widget>.button .badge,#logout .badge{color:#fff;background-color:#333}.nav-header{text-transform:none}#header>span{margin-top:10px}.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:80%}.modal_stretch .modal-dialog .modal-body{max-height:none;flex:1}@media (min-width:768px){.modal .modal-dialog{width:700px}}@media (min-width:768px){select.form-control{margin-left:12px;margin-right:12px}}/*! +* +* IPython auth +* +*/.center-nav{display:inline-block;margin-bottom:-4px}/*! +* +* IPython tree view +* +*/.alternate_upload{background-color:none;display:inline}.alternate_upload.form{padding:0;margin:0}.alternate_upload input.fileinput{display:inline;opacity:0;z-index:2;width:12ex;margin-right:-12ex}.alternate_upload .input-overlay{display:inline-block;font-weight:bold;line-height:1em}ul#tabs{margin-bottom:4px}ul#tabs a{padding-top:6px;padding-bottom:4px}ul.breadcrumb a:focus,ul.breadcrumb a:hover{text-decoration:none}ul.breadcrumb i.icon-home{font-size:16px;margin-right:4px}ul.breadcrumb span{color:#5e5e5e}.list_toolbar{padding:4px 0 4px 0;vertical-align:middle}.list_toolbar .tree-buttons{padding-top:1px}.dynamic-buttons{display:inline-block}.list_toolbar [class*="span"]{min-height:24px}.list_header{font-weight:bold;background-color:#eee}.list_placeholder{font-weight:bold;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px}.list_container{margin-top:4px;margin-bottom:20px;border:1px solid #ddd;border-radius:2px}.list_container>div{border-bottom:1px solid #ddd}.list_container>div:hover .list-item{background-color:red}.list_container>div:last-child{border:none}.list_item:hover .list_item{background-color:#ddd}.list_item a{text-decoration:none}.list_item:hover{background-color:#fafafa}.action_col{text-align:right}.list_header>div,.list_item>div{padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.list_header>div input,.list_item>div input{margin-right:7px;margin-left:14px;vertical-align:baseline;line-height:22px;position:relative;top:-1px}.list_header>div .item_link,.list_item>div .item_link{margin-left:-1px;vertical-align:baseline;line-height:22px}.new-file input[type=checkbox]{visibility:hidden}.item_name{line-height:22px;height:24px}.item_icon{font-size:14px;color:#5e5e5e;margin-right:7px;margin-left:7px;line-height:22px;vertical-align:baseline}.item_buttons{padding-top:4px;line-height:1em;margin-left:-5px}.item_buttons .btn-group,.item_buttons .input-group{float:left}.item_buttons>.btn,.item_buttons>.btn-group,.item_buttons>.input-group{margin-left:5px}.item_buttons .btn{min-width:13ex}.item_buttons .running-indicator{color:#5cb85c}.toolbar_info{height:24px;line-height:24px}input.nbname_input,input.engine_num_input{padding-top:3px;padding-bottom:3px;height:22px;line-height:14px;margin:0}input.engine_num_input{width:60px}.highlight_text{color:blue}#project_name{display:inline-block;padding-left:7px;margin-left:-2px}#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold}#tree-selector{display:inline-block;padding-right:0}#tree-selector input[type=checkbox]{margin-left:7px;vertical-align:baseline}.tab-content .row{margin-left:0;margin-right:0}.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;transform:translate(0, 0);content:"\f114"}.folder_icon:before.pull-left{margin-right:.3em}.folder_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px}.notebook_icon:before.pull-left{margin-right:.3em}.notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px;color:#5cb85c}.running_notebook_icon:before.pull-left{margin-right:.3em}.running_notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f016";position:relative;top:-2px}.file_icon:before.pull-left{margin-right:.3em}.file_icon:before.pull-right{margin-left:.3em}#notebook_toolbar .pull-right{padding-top:0;margin-right:-1px}ul#new-menu{left:auto;right:0}.kernel-menu-icon{padding-right:12px;width:24px;content:"\f096"}.kernel-menu-icon:before{content:"\f096"}.kernel-menu-icon-current:before{content:"\f00c"}#tab_content{padding-top:20px}#running .panel-group .panel{margin-top:3px;margin-bottom:1em}#running .panel-group .panel .panel-heading{background-color:#eee;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}#running .panel-group .panel .panel-heading a:focus,#running .panel-group .panel .panel-heading a:hover{text-decoration:none}#running .panel-group .panel .panel-body{padding:0}#running .panel-group .panel .panel-body .list_container{margin-top:0;margin-bottom:0;border:0;border-radius:0}#running .panel-group .panel .panel-body .list_container .list_item{border-bottom:1px solid #ddd}#running .panel-group .panel .panel-body .list_container .list_item:last-child{border-bottom:0}.delete-button{display:none}.duplicate-button{display:none}.rename-button{display:none}.shutdown-button{display:none}/*! +* +* IPython text editor webapp +* +*/.selected-keymap i.fa{padding:0 5px}.selected-keymap i.fa:before{content:"\f00c"}#mode-menu{overflow:auto;max-height:20em}.edit_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.edit_app #menubar .navbar{margin-bottom:-1px}.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;transform:translate(0, 0);width:20px}.dirty-indicator.pull-left{margin-right:.3em}.dirty-indicator.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-dirty.pull-left{margin-right:.3em}.dirty-indicator-dirty.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-clean.pull-left{margin-right:.3em}.dirty-indicator-clean.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f00c"}.dirty-indicator-clean:before.pull-left{margin-right:.3em}.dirty-indicator-clean:before.pull-right{margin-left:.3em}#filename{font-size:16pt;display:table;padding:0 5px}#current-mode{padding-left:5px;padding-right:5px}#texteditor-backdrop{padding-top:20px;padding-bottom:20px}@media not print{#texteditor-backdrop{background-color:#eee}}@media print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container{padding:0;background-color:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}/*! +* +* IPython notebook +* +*/.ansibold{font-weight:bold}.ansiblack{color:black}.ansired{color:darkred}.ansigreen{color:darkgreen}.ansiyellow{color:#c4a000}.ansiblue{color:darkblue}.ansipurple{color:darkviolet}.ansicyan{color:steelblue}.ansigray{color:gray}.ansibgblack{background-color:black}.ansibgred{background-color:red}.ansibggreen{background-color:green}.ansibgyellow{background-color:yellow}.ansibgblue{background-color:blue}.ansibgpurple{background-color:magenta}.ansibgcyan{background-color:cyan}.ansibggray{background-color:gray}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:none}div.cell.selected{border-color:#ababab}@media print{div.cell.selected{border-color:transparent}}.edit_mode div.cell.selected{border-color:green}@media print{.edit_mode div.cell.selected{border-color:transparent}}.prompt{min-width:14ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:540px){.prompt{text-align:left}}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(){div.inner_cell{overflow-x:hidden}}div.input_area{border:1px solid #cfcfcf;border-radius:2px;background:#f7f7f7;line-height:1.21429em}div.prompt:empty{padding-top:0;padding-bottom:0}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}div.unrecognized_cell .inner_cell{border-radius:2px;padding:5px;font-weight:bold;color:red;border:1px solid #cfcfcf;background:#eaeaea}div.unrecognized_cell .inner_cell a{color:inherit;text-decoration:none}div.unrecognized_cell .inner_cell a:hover{color:inherit;text-decoration:none}@media (max-width:540px){div.unrecognized_cell>div.prompt{display:none}}@media print{div.code_cell{page-break-inside:avoid}}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){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}}div.input_prompt{color:navy;border-top:1px solid transparent}div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.CodeMirror{line-height:1.21429em;font-size:14px;height:auto;background:none}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.CodeMirror-lines{padding:.4em}.CodeMirror-linenumber{padding:0 8px 0 4px}.CodeMirror-gutters{border-bottom-left-radius:2px;border-top-left-radius:2px}.CodeMirror pre{padding:0;border:0;border-radius:0}.highlight-base{color:#000}.highlight-variable{color:#000}.highlight-variable-2{color:#1a1a1a}.highlight-variable-3{color:#333}.highlight-string{color:#ba2121}.highlight-comment{color:#408080;font-style:italic}.highlight-number{color:#080}.highlight-atom{color:#88f}.highlight-keyword{color:#008000;font-weight:bold}.highlight-builtin{color:#008000}.highlight-error{color:#f00}.highlight-operator{color:#a2f;font-weight:bold}.highlight-meta{color:#a2f}.highlight-def{color:#00f}.highlight-string-2{color:#f50}.highlight-qualifier{color:#555}.highlight-bracket{color:#997}.highlight-tag{color:#170}.highlight-attribute{color:#00c}.highlight-header{color:blue}.highlight-quote{color:#090}.highlight-link{color:#00c}.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold}.cm-s-ipython span.cm-atom{color:#88f}.cm-s-ipython span.cm-number{color:#080}.cm-s-ipython span.cm-def{color:#00f}.cm-s-ipython span.cm-variable{color:#000}.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold}.cm-s-ipython span.cm-variable-2{color:#1a1a1a}.cm-s-ipython span.cm-variable-3{color:#333}.cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.cm-s-ipython span.cm-string{color:#ba2121}.cm-s-ipython span.cm-string-2{color:#f50}.cm-s-ipython span.cm-meta{color:#a2f}.cm-s-ipython span.cm-qualifier{color:#555}.cm-s-ipython span.cm-builtin{color:#008000}.cm-s-ipython span.cm-bracket{color:#997}.cm-s-ipython span.cm-tag{color:#170}.cm-s-ipython span.cm-attribute{color:#00c}.cm-s-ipython span.cm-header{color:blue}.cm-s-ipython span.cm-quote{color:#090}.cm-s-ipython span.cm-link{color:#00c}.cm-s-ipython span.cm-error{color:#f00}.cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}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}div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:2px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);display:block}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}div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:2px}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,0.5)}div.output_prompt{color:darkred}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}div.output_area .MathJax_Display{text-align:left !important}div.output_area .rendered_html table{margin-left:0;margin-right:0}div.output_area .rendered_html img{margin-left:0;margin-right:0}.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){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}}div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:black;background-color:transparent;border-radius:0}div.output_subarea{padding:.4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.output_text{text-align:left;color:#000;line-height:1.21429em}div.output_stderr{background:#fdd}div.output_latex{text-align:left}div.output_javascript:empty{padding:0}.js-error{color:darkred}div.raw_input_container{font-family:monospace;padding-top:5px}input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}input.raw_input:focus{box-shadow:none}p.p-space{margin-bottom:10px}div.output_unrecognized{padding:5px;font-weight:bold;color:red}div.output_unrecognized a{color:inherit;text-decoration:none}div.output_unrecognized a:hover{color:inherit;text-decoration:none}.rendered_html{color:#000}.rendered_html em{font-style:italic}.rendered_html strong{font-weight:bold}.rendered_html u{text-decoration:underline}.rendered_html :link{text-decoration:underline}.rendered_html :visited{text-decoration:underline}.rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:bold;line-height:1}.rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:bold;line-height:1}.rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:bold;line-height:1}.rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1}.rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h1:first-child{margin-top:.538em}.rendered_html h2:first-child{margin-top:.636em}.rendered_html h3:first-child{margin-top:.777em}.rendered_html h4:first-child{margin-top:1em}.rendered_html h5:first-child{margin-top:1em}.rendered_html h6:first-child{margin-top:1em}.rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.rendered_html ul ul{list-style:square;margin:0 2em}.rendered_html ul ul ul{list-style:circle;margin:0 2em}.rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.rendered_html *+ul{margin-top:1em}.rendered_html *+ol{margin-top:1em}.rendered_html hr{color:black;background-color:black}.rendered_html pre{margin:1em 2em}.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.rendered_html blockquote{margin:1em 2em}.rendered_html table{margin-left:auto;margin-right:auto;border:1px solid black;border-collapse:collapse}.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em}.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px}.rendered_html th{font-weight:bold}.rendered_html *+table{margin-top:1em}.rendered_html p{text-align:left}.rendered_html *+p{margin-top:1em}.rendered_html img{display:block;margin-left:auto;margin-right:auto}.rendered_html *+img{margin-top:1em}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){div.text_cell>div.prompt{display:none}}div.text_cell_render{outline:none;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}a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible}.text_cell.rendered .input_area{display:none}.text_cell.unrendered .text_cell_render{display:none}.cm-header-1,.cm-header-2,.cm-header-3,.cm-header-4,.cm-header-5,.cm-header-6{font-weight:bold;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.cm-header-1{font-size:185.7%}.cm-header-2{font-size:157.1%}.cm-header-3{font-size:128.6%}.cm-header-4{font-size:110%}.cm-header-5{font-size:100%;font-style:italic}.cm-header-6{font-size:100%;font-style:italic}.widget-interact>div,.widget-interact>input{padding:2.5px}.widget-area{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}.widget-area .widget-subarea{padding:.44em .4em .4em 1px;margin-left:6px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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:2;-moz-box-flex:2;box-flex:2;flex:2;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-area.connection-problems .prompt:after{content:"\f127";font-family:'FontAwesome';color:#d9534f;font-size:14px;top:3px;padding:3px}.slide-track{border:1px solid #ccc;background:#fff;border-radius:2px}.widget-hslider{padding-left:8px;padding-right:2px;overflow:visible;width:350px;height:5px;max-height:5px;margin-top:13px;margin-bottom:10px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-hslider .ui-slider{border:0;background:none;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-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-hslider .ui-slider .ui-slider-handle{width:12px;height:28px;margin-top:-8px;border-radius:2px}.widget-hslider .ui-slider .ui-slider-range{height:12px;margin-top:-4px;background:#eee}.widget-vslider{padding-bottom:5px;overflow:visible;width:5px;max-width:5px;height:250px;margin-left:12px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-vslider .ui-slider{border:0;background:none;margin-left:-4px;margin-top:5px;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}.widget-vslider .ui-slider .ui-slider-handle{width:28px;height:12px;margin-left:-9px;border-radius:2px}.widget-vslider .ui-slider .ui-slider-range{width:12px;margin-left:-1px;background:#eee}.widget-text{width:350px;margin:0}.widget-listbox{width:350px;margin-bottom:0}.widget-numeric-text{width:150px;margin:0}.widget-progress{margin-top:6px;min-width:350px}.widget-progress .progress-bar{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.widget-combo-btn{min-width:125px}.widget_item .dropdown-menu li a{color:inherit}.widget-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}.widget-hbox input[type="checkbox"]{margin-top:9px;margin-bottom:10px}.widget-hbox .widget-label{min-width:10ex;padding-right:8px;padding-top:5px;text-align:right;vertical-align:text-top}.widget-hbox .widget-readout{padding-left:8px;padding-top:5px;text-align:left;vertical-align:text-top}.widget-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}.widget-vbox .widget-label{padding-bottom:5px;text-align:center;vertical-align:text-bottom}.widget-vbox .widget-readout{padding-top:5px;text-align:center;vertical-align:text-top}.widget-box{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-radio-box{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;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding-top:4px}.widget-radio-box label{margin-top:0}.widget-radio{margin-left:20px}/*! +* +* IPython notebook webapp +* +*/@media (max-width:767px){.notebook_app{padding-left:0;padding-right:0}}#ipython-main-app{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}div#notebook_panel{margin:0;padding:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}#notebook{font-size:14px;line-height:20px;overflow-y:hidden;overflow-x:auto;width:100%;padding-top:20px;margin:0;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;min-height:100%}@media not print{#notebook-container{padding:15px;background-color:#fff;min-height:0;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}div.ui-widget-content{border:1px solid #ababab;outline:none}pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:2px;padding:.4em;padding-left:2em}p.dialog{padding:.2em}pre,code,kbd,samp{white-space:pre-wrap}#fonttest{font-family:monospace}p{margin-bottom:0}.end_space{min-height:100px;transition:height .2s ease}.notebook_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}@media not print{.notebook_app{background-color:#eee}}.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}@media print{.celltoolbar{display:none}}.ctb_hideshow{display:none;vertical-align:bottom}.ctb_global_show .ctb_show.ctb_hideshow{display:block}.ctb_global_show .ctb_show+.input_area,.ctb_global_show .ctb_show+div.text_cell_input,.ctb_global_show .ctb_show~div.text_cell_render{border-top-right-radius:0;border-top-left-radius:0}.ctb_global_show .ctb_show~div.text_cell_render{border:1px solid #cfcfcf}.celltoolbar{font-size:87%;padding-top:3px}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.celltoolbar select::-moz-placeholder{color:#999;opacity:1}.celltoolbar select:-ms-input-placeholder{color:#999}.celltoolbar select::-webkit-input-placeholder{color:#999}.celltoolbar select[disabled],.celltoolbar select[readonly],fieldset[disabled] .celltoolbar select{cursor:not-allowed;background-color:#eee;opacity:1}textarea.celltoolbar select{height:auto}select.celltoolbar select{height:30px;line-height:30px}textarea.celltoolbar select,select[multiple].celltoolbar select{height:auto}.celltoolbar label{margin-left:5px;margin-right:5px}.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:2px;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad}.completions select{background:white;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000;width:auto}.completions select option.context{color:#286090}#kernel_logo_widget{float:right !important;float:right}#kernel_logo_widget .current_kernel_logo{display:none;margin-top:-1px;margin-bottom:-1px;width:32px;height:32px}#menubar{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;margin-top:1px}#menubar .navbar{border-top:1px;border-radius:0 0 2px 2px;margin-bottom:0}#menubar .navbar-toggle{float:left;padding-top:7px;padding-bottom:7px;border:none}#menubar .navbar-collapse{clear:left}.nav-wrapper{border-bottom:1px solid #e7e7e7}i.menu-icon{padding-top:4px}ul#help_menu li a{overflow:hidden;padding-right:2.2em}ul#help_menu li a i{margin-right:-1.2em}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu:hover>.dropdown-menu{display:block}.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;transform:translate(0, 0);display:block;content:"\f0da";float:right;color:#333;margin-top:2px;margin-right:-10px}.dropdown-submenu>a:after.pull-left{margin-right:.3em}.dropdown-submenu>a:after.pull-right{margin-left:.3em}.dropdown-submenu:hover>a:after{color:#262626}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}#notification_area{float:right !important;float:right;z-index:10}.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}#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}#kernel_indicator .kernel_indicator_name{padding-left:5px;padding-right:5px}#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}#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}.modal_indicator:before{width:1.28571429em;text-align:center}.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;transform:translate(0, 0);content:"\f040"}.edit_mode .modal_indicator:before.pull-left{margin-right:.3em}.edit_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:' '}.command_mode .modal_indicator:before.pull-left{margin-right:.3em}.command_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f10c"}.kernel_idle_icon:before.pull-left{margin-right:.3em}.kernel_idle_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f111"}.kernel_busy_icon:before.pull-left{margin-right:.3em}.kernel_busy_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f1e2"}.kernel_dead_icon:before.pull-left{margin-right:.3em}.kernel_dead_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f127"}.kernel_disconnected_icon:before.pull-left{margin-right:.3em}.kernel_disconnected_icon:before.pull-right{margin-left:.3em}.notification_widget{color:#777;z-index:10;background:rgba(240,240,240,0.5);color:#333;background-color:#fff;border-color:#ccc}.notification_widget:hover,.notification_widget:focus,.notification_widget.focus,.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{color:#333;background-color:#e6e6e6;border-color:#adadad}.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{background-image:none}.notification_widget.disabled,.notification_widget[disabled],fieldset[disabled] .notification_widget,.notification_widget.disabled:hover,.notification_widget[disabled]:hover,fieldset[disabled] .notification_widget:hover,.notification_widget.disabled:focus,.notification_widget[disabled]:focus,fieldset[disabled] .notification_widget:focus,.notification_widget.disabled.focus,.notification_widget[disabled].focus,fieldset[disabled] .notification_widget.focus,.notification_widget.disabled:active,.notification_widget[disabled]:active,fieldset[disabled] .notification_widget:active,.notification_widget.disabled.active,.notification_widget[disabled].active,fieldset[disabled] .notification_widget.active{background-color:#fff;border-color:#ccc}.notification_widget .badge{color:#fff;background-color:#333}.notification_widget.warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning:hover,.notification_widget.warning:focus,.notification_widget.warning.focus,.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{color:#fff;background-color:#ec971f;border-color:#d58512}.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{background-image:none}.notification_widget.warning.disabled,.notification_widget.warning[disabled],fieldset[disabled] .notification_widget.warning,.notification_widget.warning.disabled:hover,.notification_widget.warning[disabled]:hover,fieldset[disabled] .notification_widget.warning:hover,.notification_widget.warning.disabled:focus,.notification_widget.warning[disabled]:focus,fieldset[disabled] .notification_widget.warning:focus,.notification_widget.warning.disabled.focus,.notification_widget.warning[disabled].focus,fieldset[disabled] .notification_widget.warning.focus,.notification_widget.warning.disabled:active,.notification_widget.warning[disabled]:active,fieldset[disabled] .notification_widget.warning:active,.notification_widget.warning.disabled.active,.notification_widget.warning[disabled].active,fieldset[disabled] .notification_widget.warning.active{background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning .badge{color:#f0ad4e;background-color:#fff}.notification_widget.success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success:hover,.notification_widget.success:focus,.notification_widget.success.focus,.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{color:#fff;background-color:#449d44;border-color:#398439}.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{background-image:none}.notification_widget.success.disabled,.notification_widget.success[disabled],fieldset[disabled] .notification_widget.success,.notification_widget.success.disabled:hover,.notification_widget.success[disabled]:hover,fieldset[disabled] .notification_widget.success:hover,.notification_widget.success.disabled:focus,.notification_widget.success[disabled]:focus,fieldset[disabled] .notification_widget.success:focus,.notification_widget.success.disabled.focus,.notification_widget.success[disabled].focus,fieldset[disabled] .notification_widget.success.focus,.notification_widget.success.disabled:active,.notification_widget.success[disabled]:active,fieldset[disabled] .notification_widget.success:active,.notification_widget.success.disabled.active,.notification_widget.success[disabled].active,fieldset[disabled] .notification_widget.success.active{background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success .badge{color:#5cb85c;background-color:#fff}.notification_widget.info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.notification_widget.info:hover,.notification_widget.info:focus,.notification_widget.info.focus,.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{color:#fff;background-color:#31b0d5;border-color:#269abc}.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{background-image:none}.notification_widget.info.disabled,.notification_widget.info[disabled],fieldset[disabled] .notification_widget.info,.notification_widget.info.disabled:hover,.notification_widget.info[disabled]:hover,fieldset[disabled] .notification_widget.info:hover,.notification_widget.info.disabled:focus,.notification_widget.info[disabled]:focus,fieldset[disabled] .notification_widget.info:focus,.notification_widget.info.disabled.focus,.notification_widget.info[disabled].focus,fieldset[disabled] .notification_widget.info.focus,.notification_widget.info.disabled:active,.notification_widget.info[disabled]:active,fieldset[disabled] .notification_widget.info:active,.notification_widget.info.disabled.active,.notification_widget.info[disabled].active,fieldset[disabled] .notification_widget.info.active{background-color:#5bc0de;border-color:#46b8da}.notification_widget.info .badge{color:#5bc0de;background-color:#fff}.notification_widget.danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger:hover,.notification_widget.danger:focus,.notification_widget.danger.focus,.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{background-image:none}.notification_widget.danger.disabled,.notification_widget.danger[disabled],fieldset[disabled] .notification_widget.danger,.notification_widget.danger.disabled:hover,.notification_widget.danger[disabled]:hover,fieldset[disabled] .notification_widget.danger:hover,.notification_widget.danger.disabled:focus,.notification_widget.danger[disabled]:focus,fieldset[disabled] .notification_widget.danger:focus,.notification_widget.danger.disabled.focus,.notification_widget.danger[disabled].focus,fieldset[disabled] .notification_widget.danger.focus,.notification_widget.danger.disabled:active,.notification_widget.danger[disabled]:active,fieldset[disabled] .notification_widget.danger:active,.notification_widget.danger.disabled.active,.notification_widget.danger[disabled].active,fieldset[disabled] .notification_widget.danger.active{background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger .badge{color:#d9534f;background-color:#fff}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,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2);z-index:100;top:auto !important}div#pager pre{line-height:1.21429em;color:#000;background-color:#f7f7f7;padding:.4em}div#pager #pager-button-area{position:absolute;top:8px;right:20px}div#pager #pager-contents{position:relative;overflow:auto;width:100%;height:100%}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}div#pager .ui-resizable-handle{top:0;height:8px;background:#f7f7f7;border-top:1px solid #cfcfcf;border-bottom:1px solid #cfcfcf}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}.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}.shortcut_key{display:inline-block;width:20ex;text-align:right;font-family:monospace}.shortcut_descr{display:inline-block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}span.save_widget{margin-top:6px}span.save_widget span.filename{height:1em;line-height:1em;padding:3px;margin-left:16px;border:none;font-size:146.5%;border-radius:2px}span.save_widget span.filename:hover{background-color:#e6e6e6}span.checkpoint_status,span.autosave_status{font-size:small}@media (max-width:767px){span.save_widget{font-size:small}span.checkpoint_status,span.autosave_status{display:none}}@media (min-width:768px) and (max-width:991px){span.checkpoint_status{display:none}span.autosave_status{font-size:x-small}}.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}.toolbar select,.toolbar label{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}.toolbar .btn{padding:2px 8px}.toolbar .btn-group{margin-top:0;margin-left:5px}#maintoolbar{margin-bottom:-3px;margin-top:-8px;border:0;min-height:27px;margin-left:0;padding-top:11px;padding-bottom:3px}#maintoolbar .navbar-text{float:none;vertical-align:middle;text-align:right;margin-left:5px;margin-right:0;margin-top:0}.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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms}.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px}.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0}.tooltiptext{padding-right:30px}.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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}.ipython_tooltip a{float:right}.ipython_tooltip .tooltiptext pre{border:0;border-radius:0;font-size:100%;background-color:#f7f7f7}.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute}.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)}.terminal-app{background:#eee}.terminal-app #header{background:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.terminal-app .terminal{float:left;font-family:monospace;color:white;background:black;padding:.4em;border-radius:2px;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.4);box-shadow:0 0 12px 1px rgba(87,87,87,0.4)}.terminal-app .terminal,.terminal-app .terminal dummy-screen{line-height:1em;font-size:14px}.terminal-app .terminal-cursor{color:black;background:white}.terminal-app #terminado-container{margin-top:20px}/*# sourceMappingURL=style.min.css.map */ + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} + +div#notebook { + overflow: visible; + border-top: none; +} + +@media print { + div.cell { + display: block; + page-break-inside: avoid; + } + div.output_wrapper { + display: block; + page-break-inside: avoid; + } + div.output { + display: block; + page-break-inside: avoid; + } +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<!-- Loading mathjax macro --> +<!-- Load mathjax --> + <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script> + <!-- MathJax configuration --> + <script type="text/x-mathjax-config"> + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ], + processEscapes: true, + processEnvironments: true + }, + // Center justify equations in code and markdown cells. Elsewhere + // we use CSS to left justify single line equations in code cells. + displayAlign: 'center', + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}}, + linebreaks: { automatic: true } + } + }); + </script> + <!-- End of mathjax configuration --> + +</head> +<body> + <div tabindex="-1" id="notebook" class="border-box-sizing"> + <div class="container" id="notebook-container"> + +<div class="cell border-box-sizing text_cell rendered"> +<div class="prompt input_prompt"> +</div> +<div class="inner_cell"> +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="This-example-illustrates-setting-up-of-Deterministic-solver,-loading,-running,-and-saving-a-kinetic-model-defined-in-kkit-format">This example illustrates setting up of Deterministic solver, loading, running, and saving a kinetic model defined in kkit format<a class="anchor-link" href="#This-example-illustrates-setting-up-of-Deterministic-solver,-loading,-running,-and-saving-a-kinetic-model-defined-in-kkit-format">¶</a></h1> +</div> +</div> +</div> +<div class="cell border-box-sizing code_cell rendered"> +<div class="input"> +<div class="prompt input_prompt">In [1]:</div> +<div class="inner_cell"> + <div class="input_area"> +<div class=" highlight hl-ipython2"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">numpy</span> +<span class="kn">import</span> <span class="nn">sys</span> +<span class="o">%</span><span class="k">matplotlib</span> inline + +<span class="k">def</span> <span class="nf">main</span><span class="p">():</span> + <span class="sd">""" This example illustrates setting up of Deterministic solver, loading, running, and saving a kinetic model </span> +<span class="sd"> defined in kkit format. """</span> + <span class="n">solver</span> <span class="o">=</span> <span class="s">"gsl"</span> <span class="c"># Setting up Deterministic solver</span> + <span class="n">mfile</span> <span class="o">=</span> <span class="s">'../genesis/Kholodenko.g'</span> + <span class="n">runtime</span> <span class="o">=</span> <span class="mf">6000.0</span> + <span class="n">modelId</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">loadModel</span><span class="p">(</span> <span class="n">mfile</span><span class="p">,</span> <span class="s">'model'</span><span class="p">,</span> <span class="n">solver</span> <span class="p">)</span> + + <span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="n">runtime</span> <span class="p">)</span> + + <span class="c"># Display all plots.</span> + <span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">moose</span><span class="o">.</span><span class="n">wildcardFind</span><span class="p">(</span> <span class="s">'/model/#graphs/conc#/#'</span> <span class="p">):</span> + <span class="n">t</span> <span class="o">=</span> <span class="n">numpy</span><span class="o">.</span><span class="n">arange</span><span class="p">(</span> <span class="mi">0</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="o">.</span><span class="n">size</span><span class="p">,</span> <span class="mi">1</span> <span class="p">)</span> <span class="o">*</span> <span class="n">x</span><span class="o">.</span><span class="n">dt</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span> <span class="n">t</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="n">x</span><span class="o">.</span><span class="n">name</span> <span class="p">)</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">show</span><span class="p">()</span> + + <span class="n">quit</span><span class="p">()</span> + +<span class="c"># Run the 'main' if this script is executed standalone.</span> +<span class="k">if</span> <span class="n">__name__</span> <span class="o">==</span> <span class="s">'__main__'</span><span class="p">:</span> + <span class="n">main</span><span class="p">()</span> +</pre></div> + +</div> +</div> +</div> + +<div class="output_wrapper"> +<div class="output"> + + +<div class="output_area"><div class="prompt"></div> + + +<div class="output_png output_subarea "> +<img src="data:image/png;base64,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 +Im4tnHCRzpmqdevWrWMwGERycnKobt7ffvvtTSaTiQuFQtnuAQMWbB43buX58+cnAvxbGajVas70 +6dNPvPjiizf1nVJ2JZ3pL937s7KyqgsODk7VvT8Gg0GQZ178/Pyyfvvttzf166ivrxctW7bsOw8P +j0KhUCjz9vbOXb58+bfV1dV2dH0uDUGrSuXixYvj/Pz8snx8fHLIiGb6LF26dLuPj09Ov3797qem +pga3VrampsY2IiIi1tfXN3vMmDGXpVKpNQBAbGxsBOkrJyQkJOXatWsjyDJ3794dGBgY+MDHxyfn +/fff/74zN61GiMOpqrI22vIXAHUzFZp+edN1T8WCwWj0sLAozFYqfamWRR9DKZW2hBMGeOqocd++ +fXMDAwMf6EaJJBk6dOgtmUwmvFJcPFIwaVLDzJkzj5LPMolKpeJOnz79RH19vSg2NjaCdFVvDDq7 +XEjen1QqtX777bd/1b0/sVhcSp552bJly4p58+b9/FDn+Var1ZxRo0ZdefjwYZ9Lly6Nlclkwjt3 +7gy2t7eXJCcnh9LZiKaztKhUcBxnLl68eMfFixfHZWZm+h8+fHj2Q70X44ULFybk5uZ65+Tk+OzZ +s2c+GXK0pbKbN29eGREREZudne07atSoK5s3b14JAODg4FB17ty5SWlpaUHR0dFRc+bM2U+28957 +7/3066+/vp2Tk+OTk5Pjc/HixXEdvWk1QTxd/vo7cpxR8PPLMiuV/0HX5S8A+i4ZGnL5qy3hhBMS +EobV19eLvv/++/d///33WRo9QxMyb4BAkCkZNcpeqVTydJeZlEolb/LkyWcJgmCcP39+or4nZH2U +SiXvzTff/M3W1rYmICAg488//3xB9/rmzZtXent754pEovqAgICMU6dOTSWv5ebmer/00kvXra2t +pQ4ODlWzZs36XXeMxcbGRvj6+mbb2NjULl68eEdb+oi8PwzD0FtvvbVX//5IpkyZctrGxqZW9924 +b9++ucXFxT1Onjw5zc/PLwvg6fvt008//WL8+PExAQJBxs20tKHh4eHxNjY2tX379k0/e/bs5LbI +RXdaVCrJycmh3t7euZ6engVsNlsza9as30+fPj1FN8+ZM2cio6KiogEABg0alCSVSq0rKiqcWyqr +WyYqKiqaHBz9+/f/i4zm5u/vn6lUKnkajYZdXl7uIpPJhKGhockAAHPnzt2nO6DaiwrHLThMZiNw +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 +" +> +</div> + +</div> + +</div> +</div> + +</div> + </div> + </div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Electrical_Chemical_withinRdesigneur.html b/docs/user/tutorials/_static/Electrical_Chemical_withinRdesigneur.html new file mode 100644 index 0000000000000000000000000000000000000000..1561707e08586724d2f19f16286d0bd62c61c129 --- /dev/null +++ b/docs/user/tutorials/_static/Electrical_Chemical_withinRdesigneur.html @@ -0,0 +1,3273 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Electrical_Chemical_withinRdesigneur</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="In-this-toy-model-we-have-an-HH-squid-type-single-compartment-electrical-model,-cohabiting-with-a-chemical-oscillator.">In this toy model we have an HH-squid type single compartment electrical model, cohabiting with a chemical oscillator.<a class="anchor-link" href="#In-this-toy-model-we-have-an-HH-squid-type-single-compartment-electrical-model,-cohabiting-with-a-chemical-oscillator.">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [2]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="c"># We want just one compartment so we set diffusion length to be</span> + <span class="c"># bigger than the 0.5 mm HH axon compartment default. </span> + <span class="n">diffusionLength</span> <span class="o">=</span> <span class="mf">1e-3</span><span class="p">,</span> + <span class="n">chanProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'make_HH_Na()'</span><span class="p">,</span> <span class="s">'Na'</span><span class="p">],</span> <span class="p">[</span><span class="s">'make_HH_K()'</span><span class="p">,</span> <span class="s">'K'</span><span class="p">]],</span> + <span class="n">chanDistrib</span> <span class="o">=</span> <span class="p">[</span> + <span class="p">[</span><span class="s">'Na'</span><span class="p">,</span> <span class="s">'soma'</span><span class="p">,</span> <span class="s">'Gbar'</span><span class="p">,</span> <span class="s">'1200'</span> <span class="p">],</span> + <span class="p">[</span><span class="s">'K'</span><span class="p">,</span> <span class="s">'soma'</span><span class="p">,</span> <span class="s">'Gbar'</span><span class="p">,</span> <span class="s">'360'</span> <span class="p">]],</span> + <span class="n">chemProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'makeChemOscillator()'</span><span class="p">,</span> <span class="s">'osc'</span><span class="p">]],</span> + <span class="n">chemDistrib</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'osc'</span><span class="p">,</span> <span class="s">'soma'</span><span class="p">,</span> <span class="s">'install'</span><span class="p">,</span> <span class="s">'1'</span> <span class="p">]],</span> + <span class="c"># These adaptor parameters give interesting-looking but not</span> + <span class="c"># particularly physiological behaviour.</span> + <span class="n">adaptorList</span> <span class="o">=</span> <span class="p">[</span> + <span class="p">[</span> <span class="s">'dend/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'Na'</span><span class="p">,</span> <span class="s">'modulation'</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="o">-</span><span class="mf">5.0</span> <span class="p">],</span> + <span class="p">[</span> <span class="s">'dend/b'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'K'</span><span class="p">,</span> <span class="s">'modulation'</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="o">-</span><span class="mf">0.2</span><span class="p">],</span> + <span class="p">[</span> <span class="s">'dend/b'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'inject'</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0e-7</span><span class="p">,</span> <span class="mf">4e-7</span> <span class="p">],</span> + <span class="p">[</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'dend/s'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="mf">2.5</span><span class="p">,</span> <span class="mf">20.0</span> <span class="p">]</span> + <span class="p">],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'a Conc'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/b'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'b Conc'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/s'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'s Conc'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'Na'</span><span class="p">,</span> <span class="s">'Gk'</span><span class="p">,</span> <span class="s">'Na Gk'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Membrane potential'</span><span class="p">]</span> + <span class="p">]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mi">250</span> <span class="p">)</span> <span class="c"># Takes a few seconds to run this.</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">display</span><span class="p">()</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 1 compartments and 0 spines on 1 compartments. +Chem part of model has 1 dendrite voxels X 3 pools, + + +</pre> +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +AABJRU5ErkJggg== +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZEAAAEZCAYAAABWwhjiAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz +AAALEgAACxIB0t1+/AAAIABJREFUeJzt3X1cVGX6+PHPKGiaopYCNpNiAtIoImpYlgUpPlCirS2F +qZi6tfqtLC0zt3Wx3zelzXLVYrctK9fdTWv9ptgqa2XkMxqKlbRKicVz5iMoiDDn98dxRlBghjln +mAGu9+vF68iZ83DPOMw199N1GxRFURBCCCGc0MrdBRBCCNF0SRARQgjhNAkiQgghnCZBRAghhNMk +iAghhHCaBBEhhBBOkyAihAd6//33GTZsmLuLIYRdEkSEsCMgIAA/Pz8uXLhg2/fOO+8QFRXl9DW/ ++uor7r//fm644Qa6dOlC3759efHFFzlz5oweRRai0UgQEcIBFouF5cuX63Kt3bt3ExUVxbBhwzhy +5AinT58mNTUVLy8vDh06pMs9hGgsEkSEsMNgMPDss8+ydOlSzp49W+sxs2fPpkePHnTq1InBgwez +c+fOOq83b948pk2bxvPPP0+3bt0AuPnmm0lMTOSee+6p9ZznnnuOYcOGce7cOe1PSAgdSRARwgGD +Bw8mMjKSpUuX1vp4REQEhw4d4vTp00ycOJFf//rXVFRUXHPc+fPn2bt3LxMmTHDovoqi8Jvf/IZv +v/2WTz/9FB8fH03PQwi9SRARwgEGg4GXXnqJlStX8ssvv1zz+COPPEKXLl1o1aoVc+bM4eLFixw5 +cuSa406fPo3FYsHf39+2b968eXTp0oUOHTrw8ssv2/ZfunSJhx9+mDNnzrBp0yauu+461zw5ITSQ +ICKEg/r27cv9999PUlISBoOhxmNLly7FbDbTuXNnunTpwtmzZ2sNNtZAU1hYaNv3xz/+kdOnT/PA +Aw9QVVVl2//999+zadMmFi5ciJeXl+uemBAaSBARogEWLVrE22+/TX5+vm3fjh07ePXVV/noo484 +c+YMp0+fplOnTtSWIPv6669nyJAhrF+//prHFEWpcc6tt97Ku+++y5gxYzh69KhrnpAQGkkQEaIB +evfuzUMPPcTy5ctttZGSkhK8vLzo2rUrFRUVvPTSS/V2gP/xj3/k3Xff5ZVXXuHnn38GIC8vj+PH +j19Tw3n44YdZvHgxI0aM4NixY657YkI4SYKIEA20cOHCGnNGRo8ezejRowkODiYgIIB27drRo0eP +Os+/88472bZtG9u3b6dPnz506dKFMWPGEBUVxZNPPgmofTDWgDJlyhQWLlzIvffey08//eTaJydE +AxlcvShVVVUVgwcPxmQysWnTJhITE3nnnXdsQxsXL17MmDFjAFiyZAnvvvsurVu3ZsWKFYwcORKA +jIwMpk6dSnl5OTExMbqN1xdCCKGNy2siy5cvx2w2275VGQwG5syZw8GDBzl48KAtgGRlZbFu3Tqy +srJITU1l1qxZtvbhmTNnsmrVKrKzs8nOziY1NdXVxRZCCOEAlwaRvLw8Nm/ezIwZM2wB4erOQ6uN +GzcSHx+Pt7c3AQEBBAYGkp6eTmFhISUlJURERABq1X7Dhg2uLLYQQggHuTSIPPPMM7z66qu0anXl +NgaDgZUrVxIWFsb06dNtuYIKCgowmUy240wmE/n5+dfsNxqNNUbGCCGEcB+XBZFPPvkEX19fwsPD +a9Q8Zs6cSU5ODpmZmXTv3p25c+e6qghCCCFczGUzmHbv3k1KSgqbN2+mvLycc+fOMWXKFP72t7/Z +jpkxYwZjx44F1BpGbm6u7bG8vDxMJhNGo5G8vLwa+41GY633DAwM5IcffnDRMxJCiOand+/efP/9 +985fQGkEaWlpyv33368oiqIUFBTY9r/++utKfHy8oiiKcvjwYSUsLEy5ePGicuzYMeWWW25RLBaL +oiiKEhERoezdu1exWCzKmDFjlC1bttR6n0Z6Oh7vD3/4g7uL4DHktbhCXosr5LW4QuvnZqPkUlAU +xTY6a968eRw6dAiDwUCvXr146623ADCbzcTFxWE2m/Hy8iI5Odl2TnJyMlOnTqWsrIyYmBhGjx7d +GMUWQghhR6MEkcjISCIjIwFYs2ZNncctWLCABQsWXLN/0KBBfPPNN64qnhBCCCfJjPVmyBqwhbwW +1clrcYW8Fvpx+Yz1xmQwGGqdgyKEEKJ2Wj83pSYihBDCaRJEhBBCOE2CiBBCCKdJEBFCCOE0CSJC +CCGcJkFECCGE0ySICCGatMxMd5egZZN5IkKIJqukBHx8QP7snSfzRIQQLZYED/eTICKEEMJpEkSE +EEI4TYKIEEIIp0kQEUII4TQJIkIIIZzm8iBSVVVFeHi4bS31U6dOER0dTXBwMCNHjuTMmTO2Y5cs +WUJQUBAhISFs3brVtj8jI4PQ0FCCgoKYPXu2q4sshBDCQS4PIsuXL8dsNtuWuk1KSiI6OpqjR48y +fPhwkpKSAMjKymLdunVkZWWRmprKrFmzbGOXZ86cyapVq8jOziY7O5vU1FRXF1sIIYQDXBpE8vLy +2Lx5MzNmzLAFhJSUFBISEgBISEhgw4YNAGzcuJH4+Hi8vb0JCAggMDCQ9PR0CgsLKSkpISIiAoAp +U6bYzhFCCOFeLg0izzzzDK+++iqtWl25TXFxMX5+fgD4+flRXFwMQEFBASaTyXacyWQiPz//mv1G +o5H8/HxXFlsIIYSDvFx14U8++QRfX1/Cw8NJS0ur9RiDwWBr5tJLYmKi7d+RkZGylrIQQlSTlpZW +52eyM1wWRHbv3k1KSgqbN2+mvLycc+fOMXnyZPz8/CgqKsLf35/CwkJ8fX0BtYaRm5trOz8vLw+T +yYTRaCQvL6/GfqPRWOd9qwcRIYQQNV395XrRokWaruey5qzFixeTm5tLTk4Oa9eu5d5772XNmjXE +xsayevVqAFavXs348eMBiI2NZe3atVRUVJCTk0N2djYRERH4+/vj4+NDeno6iqKwZs0a2zlCCCHc +y2U1katZm63mz59PXFwcq1atIiAggA8//BAAs9lMXFwcZrMZLy8vkpOTbeckJyczdepUysrKiImJ +YfTo0Y1VbCGEEPWQVPBCiCbr3Dno1Emy+WohqeCFEEK4jQQRIYQQTpMgIoQQwmkSRIQQQjhNgogQ +QginSRARQgjhNAkiQgghnCZBRAghhNMkiAghhHCaBBEhhBBOkyAihBDCaRJEhBBCOE2CiBBCCKdJ +EBFCCOE0CSJCCCGcJkFECCGE01wWRMrLyxkyZAgDBgzAbDbzwgsvAOoa6CaTifDwcMLDw9myZYvt +nCVLlhAUFERISAhbt2617c/IyCA0NJSgoCBmz57tqiILIYRoIJeubHjhwgXat29PZWUld911F0uX +LuXzzz+nY8eOzJkzp8axWVlZTJw4kf3795Ofn8+IESPIzs7GYDAQERHBG2+8QUREBDExMTz11FO1 +LpErKxsK0bLIyobaefTKhu3btwegoqKCqqoqunTpAlBrgTdu3Eh8fDze3t4EBAQQGBhIeno6hYWF +lJSUEBERAcCUKVPYsGGDK4sthBDCQS4NIhaLhQEDBuDn50dUVBR9+/YFYOXKlYSFhTF9+nTOnDkD +QEFBASaTyXauyWQiPz//mv1Go5H8/HxXFlsIIYSDvFx58VatWpGZmcnZs2cZNWoUaWlpzJw5k4UL +FwLw+9//nrlz57Jq1Srd7pmYmGj7d2RkJJGRkbpdWwghmrq0tDTS0tJ0u55Lg4hVp06duO+++/jq +q69qfKjPmDGDsWPHAmoNIzc31/ZYXl4eJpMJo9FIXl5ejf1Go7HOe1UPIkIIIWq6+sv1okWLNF3P +Zc1Zv/zyi62pqqysjE8//ZTw8HCKiopsx3z88ceEhoYCEBsby9q1a6moqCAnJ4fs7GwiIiLw9/fH +x8eH9PR0FEVhzZo1jB8/3lXFFkII0QAuq4kUFhaSkJCAxWLBYrEwefJkhg8fzpQpU8jMzMRgMNCr +Vy/eeustAMxmM3FxcZjNZry8vEhOTsZgMACQnJzM1KlTKSsrIyYmptaRWUIIIRqfS4f4NjYZ4itE +yyJDfLXz6CG+QgghmjeHmrO+++47jh8/TqtWrejZsychISGuLpcQQogmoM4gkpOTw7Jly9i8eTNG +o5GbbroJRVEoLCwkLy+P+++/n2eeeYaAgIBGLK4QQghPUmefSFxcHL/5zW+IjIzE29u7xmOXLl3i +iy++4J133uHDDz9slII6QvpEhGhZpE9EO62fm9KxLoRosiSIaOeyjvX9+/dTWFho+3316tXExsby +1FNPcerUKadvKIQQovmoM4g89thjtG3bFoDt27czf/58EhIS8PHx4bHHHmu0AgohhPBcdXasWywW +brjhBgDWrVvH448/zoQJE5gwYQJhYWGNVkAhhBCeq86aSFVVFZcuXQLgs88+IyoqyvZYZWWl60sm +hBDC49VZE4mPj+eee+6ha9eutG/fnmHDhgGQnZ1N586dG62AQgghPFe9o7P27NlDUVERI0eO5Prr +rwfg6NGjlJaWMnDgwEYrpKNkdJYQLYuMztKuUYb4VlVVUVxcTGVlJYqiYDAY6NGjh9M3dRUJIkK0 +LBJEtNP6uWk37cnKlStZtGgRvr6+tG7d2rb/m2++cfqmQgghmge7NZHevXuzb98+brzxxsYqk9Ok +JiJEyyI1Ee1cnsW3R48e+Pj4OH0DIYQQzZfd5qxevXoRFRXFfffdR5s2bQA1cs2ZM8flhRNCCOHZ +HKqJjBgxgoqKCkpLSyktLaWkpMTuhcvLyxkyZAgDBgzAbDbzwgsvAHDq1Cmio6MJDg5m5MiRtiV0 +AZYsWUJQUBAhISFs3brVtj8jI4PQ0FCCgoKYPXu2M89TCCGEC7g0AeOFCxdo3749lZWV3HXXXSxd +upSUlBS6du3KvHnzeOWVVzh9+jRJSUlkZWUxceJE9u/fT35+PiNGjCA7OxuDwUBERARvvPEGERER +xMTE8NRTT9W6RK70iQjRskifiHYu6xOZNm0a+/fvr/PE9PR0Hn300Xov3r59ewAqKiqoqqqiS5cu +pKSkkJCQAEBCQgIbNmwAYOPGjcTHx+Pt7U1AQACBgYGkp6dTWFhISUkJERERAEyZMsV2jhBCCPeq +s0/kmWee4dVXX2Xv3r306dOH7t27oygKRUVFHDlyhKFDh/Lss8/We3GLxcLAgQP54YcfmDlzJn37 +9qW4uBg/Pz8A/Pz8KC4uBqCgoIDbb7/ddq7JZCI/Px9vb29MJpNtv9FoJD8/X9OTFkIIoY86g0ho +aCh/+9vfuHjxIgcPHuTHH3/EYDDQs2dPwsLCuO666+xevFWrVmRmZnL27FlGjRrFF198UeNxg8GA +wWDQ/iyqSUxMtP07MjKSyMhIXa8vhBBNWVpaGmlpabpdz+7orLZt23L77bfXqCU0VKdOnbjvvvvI +yMjAz8+PoqIi/P39KSwsxNfXF1BrGLm5ubZz8vLyMJlMGI1G8vLyauw3Go113qt6EBFCCFHT1V+u +Fy1apOl6dkdnOeuXX36xjbwqKyvj008/JTw8nNjYWFavXg2oC12NHz8egNjYWNauXUtFRQU5OTlk +Z2cTERGBv78/Pj4+pKenoygKa9assZ0jhBDCvezWRJxVWFhIQkICFosFi8XC5MmTGT58OOHh4cTF +xbFq1SoCAgJsa7SbzWbi4uIwm814eXmRnJxsa+pKTk5m6tSplJWVERMTU+vILCGEEI3P4SG+1uG6 +nkyG+ArRssgQX+1cnvZk9+7dmM1m+vTpA0BmZiazZs1y+oZCCCGaD7tB5OmnnyY1NZWuXbsCMGDA +AL788kuXF0yIpuTiRTAY1J+//tXdpRGi8TjUsX712iFeXi7rShGiSao+4v3xx+Hy9Cchmj2Hcmft +2rULUGeeL126lFtvvdXlBROiqaiqgs6dYdu2K23z/v7uLZMQjcVuEPnzn//Mm2++SX5+PkajkYMH +D/Lmm282RtmEaBI2bYKQEIiKUn//6CN1K529oiVwaQLGxiajs4Q7DB8O06bBI4+ovysKtGoFW7dC +dLR7y9bcyegs7Vw+OmvKlCk10rWfPn2aadOmOX1DIZqTY8fgm2/g17++ss+ayefxx91TJiEak90g +8vXXX9O5c2fb7126dOHAgQMuLZQQTcWWLRATA5fXa7OZMAFyctxTJiEak90goigKp06dsv1+6tQp +qqqqXFooIZqKbdtqb7KaP7/xyyKEO9gdqzt37lzuuOMO4uLiUBSFjz76iN/97neNUTYhPJqiwI4d +8Kc/XfvYwIHqtrgYLq98IESz5FDH+uHDh9m2bRsGg4F7770Xs9ncGGVrMOlYF43p++/VEVnVkk/X +YDDAe+/B1KmNWqwWRTrWtdP6uenQrMGQkBA6d+5MZWUlBoOBn3766ZoJiEK0NPv2weUFN+v0wQcS +RETzZjeIrFy5kkWLFuHr60vr1q1t+7/55huXFkwIT3fgAAwaVPfjw4apw3yFaM7sBpE//elPHDly +hBtvvLExyiNEk3HoEDzzTN2Pjxun9pkI0Zw5lPbEx8enMcoiRJPyzTcQGlr343fe2XhlEcJd7AaR +Xr16ERUVxZIlS3jttdd47bXXeP311x26eG5uLlFRUfTt25d+/fqxYsUKQF3C1mQyER4eTnh4OFu2 +bLGds2TJEoKCgggJCWFrtbaAjIwMQkNDCQoKYvbs2Q19nkLo6uRJKCsDk6nuY8LC1K3F0jhlEsId +7DZn9ejRgx49elBRUUFFRQWKothWHLTH29ubZcuWMWDAAEpLSxk0aBDR0dEYDAbmzJnDnDlzahyf +lZXFunXryMrKIj8/nxEjRpCdnY3BYGDmzJmsWrWKiIgIYmJiSE1NlRUOhdv8979qvqz6/hTatVO3 +eXkg41BEc2U3iCQmJjp9cX9/f/wvpzPt0KEDt956K/n5+QC1DinbuHEj8fHxeHt7ExAQQGBgIOnp +6fTs2ZOSkhIiLg+FmTJlChs2bJAgItzmyBG4vE6bXV9/LUFENF92m7N+/vlnnn32WWJiYoiKiiIq +Kop77723wTc6fvw4Bw8e5PbbbwfUUV9hYWFMnz7dlpuroKAAU7X2AZPJRH5+/jX7jUajLRgJ4Q5H +j0JwsGPHZmS4tixCuJPdIPLII48QEhLCsWPHSExMJCAggMGDBzfoJqWlpTz44IMsX76cDh06MHPm +THJycsjMzKR79+7MnTvX6ScghDt8/z0EBto/zmhUR3EJ0VzZbc46efIkM2bMYMWKFdxzzz3cc889 +DQoily5dYsKECUyaNInx48cD4Ovra3t8xowZjB07FlBrGLnVpv/m5eVhMpkwGo3k5eXV2G80Gmu9 +X/Xmt8jISCIjIx0uqxCOOnYMbrnF/nGDBqn9J0J4irS0NNLS0vS7oGLHkCFDFEVRlOjoaGXTpk1K +RkaGcsstt9g7TVEURbFYLMrkyZOVp59+usb+goIC279ff/11JT4+XlEURTl8+LASFhamXLx4UTl2 +7Jhyyy23KBaLRVEURYmIiFD27t2rWCwWZcyYMcqWLVuuuZ8DT0cIXXTurCgnTtg/buFCRWnXzvXl +aanOnlUU+bPXRuvnpt2ayIsvvsiZM2d47bXXePLJJzl37hzLli1zKEDt2rWLv//97/Tv35/w8HAA +Fi9ezAcffEBmZiYGg4FevXrx1ltvAWA2m4mLi8NsNuPl5UVycrJtJFhycjJTp06lrKyMmJgY6VQX +bnPmjPrjyPzb4GB1KLAQzZXdBIw7d+7krrvusrvPE0gCRtEYMjLgnnugtNT+sTt3qulP5G3pGpKA +UTuXr2z45JNPOrRPiJbi+++he3fHjnWk38QVDIb657AIoZc6m7P27NnD7t27OXHiBK+//rotUpWU +lGCRKbiiBTt6tP6Z6tVZ1xKprAQvh3Jma5edfeXfjz6qpqMXwlXqrIlUVFRQUlJCVVUVJSUllJaW +Ulpaio+PD//6178as4xCeJTvvnNseC+ANfH1yZOuK091igIzZsDixfDHP8L770NJSePcW7RMdvtE +fvzxR3r27NlY5dFE+kREYxgwACZOhHnzHDveYFDXHrntNteWC2DvXpg0SZ1R37q1eu8771T7Zpoj +6RPRzuV9IjNmzLDNKAd1jfVRo0Y5fUMhmrpDh6B374adc+SIa8pytfffV2si1hrQQw/Brl2Nc2/R +MtkNIidOnKBz586232+44QaKi4tdWighPF1DKueBgVBR4bqyWFks8PHHEBd3Zd9f/qJuHRlJJoQz +7AaR1q1b8+OPP9p+P378OK1a2T1NiGbt5psdP/b8eTh82HVlsdq+Haqqao4Is37/e+cd199ftEx2 +x4u8/PLLDBs2jLvvvhuA7du389e//tXlBRPCE128qG67dXP8nO7d4dtvXVOe6v7xj7r7Xf73f+Hp +p11fBtHy2A0io0ePJiMjg71792IwGPjTn/5E165dG6NsQngcawq3hlTGo6PhxAnXlKe6f/4TXnnl +2v2//e2VZi0h9Gb3T+HLL7/ku+++w8fHh44dO5KVlcX27dsbo2xCeJyffmr4OcXF8O67+pelOkWB +CxcgNvbax/7nf1x7b9Gy2a2JvPrqq7b8VeXl5ezbt49Bgwaxbds2lxdOCE/jzDI2994Le/boX5bq +rM1ltS1+ZTar2xMnGtYMJ4Qj7AaRTz75pMbvubm5ssa5aLGOHIHLi3U6zGBw/RDfLVvqfsza9LZt +mzrkVwg9NXiYlclk4rvvvnNFWYTweAcPNjyINEb+rA0b4P776z9m/XrXl0O0PHZrItWTLVosFjIz +Mxk0aJBLCyWEpzp/Hi4PVHRYly6uKUt1e/bAG2/U/fgdd8ikQ+EadoNI9YDh5eVFfHy8R6aBF6Ix +nDsH1RbmdEhjDWasL5HE3XfXPnJLCK3s5s5qSiR3lnA1gwGSk2HmTMfPuXQJ2rRRZ5S7Ij37qVPq +Aln1XX/bNhg+vPnlmJLcWdq5LHdWaGhonT/9+/d36OK5ublERUXRt29f+vXrx4oVKwA1/1Z0dDTB +wcGMHDmyRm6uJUuWEBQUREhICFu3brXtz8jIIDQ0lKCgIOnYF24VGtqw47291a2rsul++aW6rS9A +hYWpW/mwFXqrM4hs2rSJTZs2MWbMGMaMGcM///lP/vGPfxATE8OYMWMcuri3tzfLli3j8OHD7N27 +lzfffJPvvvuOpKQkoqOjOXr0KMOHDycpKQmArKws1q1bR1ZWFqmpqcyaNcsWIWfOnMmqVavIzs4m +Ozub1NRUHZ6+EA3nyLK4tXFV/qq0NPvH3HCDuj11yjVlEC2YvUXYw8LCrtk3YMAApxZ0HzdunPLp +p58qffr0UYqKihRFUZTCwkKlT58+iqIoyuLFi5WkpCTb8aNGjVL27NmjFBQUKCEhIbb9H3zwgfL4 +449fc30Hno4QmoCinDzp3HkZGfqXR1EUpVs3RXHkTxIUZft215TBXc6eVZ+XcJ7Wz027Q3wVRWFn +tcUIdu3a5VT72fHjxzl48CBDhgyhuLgYv8tLvvn5+dmyAhcUFGCqtmScyWQiPz//mv1Go5F8Z2Z9 +CaGBNROvs6Otysr0K0t1J07AhAmOHXvwoGvKIFouu6Oz3n33XR599FHOnj0LQOfOnXmvgettlpaW +MmHCBJYvX07Hjh1rPGYwGGwz4oXwZNamIGferl27unZ1w2HD7B/TsSNkZrquDKJlcmiI79dff20L +Ip06dWrQDS5dusSECROYPHky48ePB9TaR1FREf7+/hQWFuJ7ecyk0WgkNzfXdm5eXh4mkwmj0Uie +NfPd5f1Go7HW+yUmJtr+HRkZSWRkZIPKK0Rdqr01G+yXX6Daigq6sVjUbXi4/WP79YOvvtK/DKJp +SUtLI82RjjQH2R3iW15ezvr16zl+/DiVlZXqSQYDCxcutHtxRVFISEjgxhtvZNmyZbb98+bN48Yb +b+T5558nKSmJM2fOkJSURFZWFhMnTmTfvn3k5+czYsQIvv/+ewwGA0OGDGHFihVERERw33338dRT +TzF69OiaT0aG+AoX2r4d4uOdy581cSKMHg1TpuhbptxcNV+WI2/7//kfdXhyc/oTkSG+2mn93LRb +Exk3bhydO3dm0KBBXHfddQ26+K5du/j73/9O//79Cb/8VWnJkiXMnz+fuLg4Vq1aRUBAAB9++CEA +ZrOZuLg4zGYzXl5eJCcn25q6kpOTmTp1KmVlZcTExFwTQIRwtW+/hYIC585duxYqK/UPIg2pWQwc +qO+9hQAHaiL9+vXj28ZYUUcHUhMRrvTyy2ow+Oabhp/73HNqBt158/Qt0zPPwJ/+5Ng38b171fQn +zelPRGoi2rlssqHV0KFD+frrr52+gRDNxZkzV5abbaisLLgqIbYudu5U+zoc0ZB14YVwlN3mrB07 +dvDee+/Rq1cv2rZtC6iRSwKLaGn27YPLfwINZjbD8eO6FgdQm7McTcFiXUukshK87P7lC+EYu2+l +LZcXKrD2TUhzkWipevaE3r2dO/eWW1w3xHfIEMeOswaOoiKoNu1KCE3sNmcFBARw5swZUlJS2LRp +E2fPniUgIKARiiaEZ1mzRh2q64z//hcaOL3KYda8WI764QfXlEO0THaDyPLly5k0aRInTpyguLiY +SZMm2RIpCtGSjBypZsJ1RmQkjBuna3Fsc0SCghp2nisnPYqWx25z1jvvvEN6ejrXX389APPnz+f2 +22/nqaeecnnhhPAkW7c6P0S3dWvYsUPf8liHG1/+03SIjw8cO6ZvOZqa06fVBbx27VK/GMyZ4+4S +NW0OLY/bqlWrWv8tREvi6wt9+zp3rsWifwbd//634ecoCuzerW85mpJz52DoUPj+exgxAubOhSVL +3F2qps1uTeTRRx9lyJAh/OpXv0JRFDZs2MC0adMao2xCeJSff3Z+dFbPng3vu7DHmWSK48fDhQv6 +lqMpuesuCA6G999Xc6CdOgULFsBTTzWsRuesggL4+9/VrAe//33jrXrpSg6tbJiRkcHOnTsxGAwM +GzbMNvvc08hkQ+FK1g8dZ7L4fvutupiVnm/PyZPhP/9Rg5ujZs+GAwf0b1pzl4ZMNtyzR62F5ObW +HJ1mMMCLAfxZAAAgAElEQVSAAa7PcJyZCTExEBsLn32mDnAoLm74csvOKCuDZcvUIeHl5ZCScmW0 +nsvTnuzduxez2Wxba/3cuXOkp6czxNFxhUI0A9ZO7KuSUDusfXv9ymJ1+LDjw3utrr9enaDYEg0d +Cn36XDu8efVqSEhQA5GrEoqXlqpJMletgmnT1Hu1agV+fq6fbV9RoTbd+frCgw/CpEnqapt6Ldds +t4Pjt7/9bY307ddffz2//e1vtd9ZiCbk/Hl16+wkvU6drqwuqJdvv3V8trrV0KFQRwLsZq2oSN1+ +/vm1j02erG7/9S/X3d+aTNzaE2Ct1QL8+9+uuy+oqW4qKmD9enjkEXVgAcCsWfpc36Fe8urrfbRu +3Zqqqip97i5EE6F1WGz79vp3rF+6BCEhDTvH29u5LMRN3aRJ6ra2AGowqKPW4uJcc++ff4aMDNi/ +v+b+Ll3UDMz33++a+4I6iOLAAfjgA7XmA2rqnj/+Ef7yFzV7gVZ2g0ivXr1YsWIFly5doqKiguXL +l3PLLbdov7MQTcj5886vaAhXOuStzWJ6MZsbdnxLzZ/1+efw5pt1P26tDbiiaSk6Wt0OHnztY9Ys +zIWF+t8X4M47oX9/CAysuf+552putbAbRP7yl7+wa9cujEYjJpOJvXv38te//lX7nYVoQo4fv9IM +4IxWreC669ROTT1d/eFgjzV/VktiTUL+2GN1H3Pnnep21y59711VBV9/XXfyTev/x9Sp+t4X1KSf +ANu21f74Y4+pGaC1cmh0VlMho7OEq6SmQlISaFkQrk0btW1ej74R66ikhnaOVlWp/TqVleoEyKbO +kdFZt92mfuO399FgMKgDFfbu1a98K1aoI+Lqu/cf/gAvvaR/LahdO/VLS13XLS9XjwEXp4IXQqgZ +fL/8Uts1Ll2Cy6tMa2bNCNzQ0TWtW6s/JSX6lKMp+OordYa6PRMnQnq6vveePftKc1ZdrE1KzuZl +q82lS2qQ2LOn7mMauMZgnVwaRKZNm4afnx+hoaG2fYmJiZhMJsLDwwkPD7dlCQZ11cOgoCBCQkLY +unWrbX9GRgahoaEEBQUxe/ZsVxZZiFqZTNqbHG65Rb8+ES2pS6qqroxWau6sc2gcmR/9u9+pW71q +BNYRfe++W/9xHTrUvL8erEHz9tvrP27RIh1uprjQ9u3blQMHDij9+vWz7UtMTFRee+21a449fPiw +EhYWplRUVCg5OTlK7969FYvFoiiKotx2221Kenq6oiiKMmbMGGXLli213s/FT0e0YGPHKkrnztqu +YTYryrff6lOeZcsUpU0b5841mRTlwAF9yuFuZ88qSn1/9s89V//jVwNFycjQXi5FUZSFCx2/d0hI +w8ppDyjKvffaP85i0f65aXfUe3l5OevXr+f48eNUXh4PZjAYWLhwod0ANWzYMI7XshKPUkuo37hx +I/Hx8Xh7exMQEEBgYCDp6en07NmTkpISIiIiAJgyZQobNmyQNdZFoxo8uOFzMq6WlaXOUHY2/1Z1 +hw45P9M5Lw+OHlUnvzV3r74Ko0Y17Jw//xneflv7vV96CcaMcezYv/4V7r5b+z3hSlqb1avtH9so +kw3HjRtHSkoK3t7edOjQgQ4dOtgy+jpr5cqVhIWFMX36dM6cOQNAQUEBpmpTSU0mE/n5+dfsNxqN +5LfEge7CrTZuhOxs7dfRa4pVerrzw3XvvPPKnIHmzPpddelSx8/p3RveeUf7vS9dUrfJyY4df9dd +6vboUe33tq7U0VgLj9mtieTn5/Of//xHtxvOnDnTVov5/e9/z9y5c1m1apVu109MTLT9OzIykkjr +VFEhNDCZ1PH2Wtx7r34f3idPOj9JbdcuNZD8+tf6lMVTWedgNKTm94c/OJ/uv7qPPlK3jq7fZ60R +vP66OglQixdeuDJDvjZpaWmkaRlmeBW7QWTo0KF8/fXX9Nf6F3SZb7U6+IwZMxg7diyg1jByc3Nt +j+Xl5WEymTAajeTl5dXYb6wnb0P1ICKEXvLy7I+ysadtW/3mifz8c8Nnq1tNmwb+/vqUw5M9+aS6 +bUiTTWysutW6Dv2UKQ1/jfv0gbfe0hZErDXd+mpAV3+5XqSxd93u96IdO3YwaNAggoODCQ0NJTQ0 +VFNAKaw2NfPjjz+2jdyKjY1l7dq1VFRUkJOTQ3Z2NhEREfj7++Pj40N6ejqKorBmzRrGjx/v9P2F +cEZm5pUmCmdt2QLffadPecD5HFg7d6pZXJu79PSGpzLp1OnKuVpUVTU8GPzhD9ruCbBpk7q99Vbt +13KU3VhbfQhuQ8XHx/Pll1/yyy+/cPPNN7No0SLS0tLIzMzEYDDQq1cv3nrrLQDMZjNxcXGYzWa8 +vLxITk625exKTk5m6tSplJWVERMTI53qotFFRamp3LXo1+/KcE499Ojh3HkJCc1/noi1P8TZholV +q67MYm+on35Stw1tbrR+Ny4tdf59MmVK408idXjG+s8//0x5tbp4D2ffwS4kM9aFqxgMaue6tbnD +GQkJajDSOt/Emka8tNS5hZQefFBNw6F3ChZ3qGvGenq6OkfCmY+D225Tmy+dzWc1ZQqsWePcvQ0G +9Vxrwkhnzv/oI/X/2PFzXDxjPSUlhaCgIHr16sU999xDQEAAYxwdtyZEM9G3rzpZUIs2bdSU3FqV +lqpbZwdJ3n8/PPSQ9nJ4grr6O7QseTt2rLbJmGvWaOucd3Z4sbUGNG6c8/d2ht0g8uKLL7Jnzx6C +g4PJycnh888/lwWpRItz+LD2NBHl5dqSOFppzfh65gz87W/ay+EJ6voCvXGj8wMhtIxas5bn+eed +O/+hh2D7dufOfe01devt7dz5zrIbRLy9venatSsWi4WqqiqioqL4yjp2TogWxNlVDa127tRnWdof +ftB2fkCA8/0pTcmCBc6d16ePunVm/Zfdu9VtQ1P0W2lp6lyxAh54wPnznWW3Y71Lly6UlJQwbNgw +HnnkEXx9femgZ++gEE1A27bqwkVaPPyw9kAE6qz3zp2dP79bN30WI/JU1hkBw4Y5d751Ls+XXzb8 +Q/mpp5y7p1VUlLq9cKFhSypbc7ItXqzt/s6wWxPZsGED7du3Z9myZYwePZrAwEA2WceRCdECVFbC +xYvam7PatNE+TBjgxAm48Ubnz7dYoKBAezk81eUBn5pHKa1d2/BzDhyAGTOcv6d18bIvvmjYedb0 +9c7OHdLCbk3EWuto3bo1U12xcooQHu7CBbUTW2ueIW9vKCvTXp60tCv5kZxx003Qq5f2cniq//1f +batQgpqGpKHfla21gRde0HZvgOXL4b77HD/+6ae139NZdmsi69evJygoCB8fHzp27EjHjh3x0Vqv +F6IJOX/+SlpvLfSqiVgsoGWqVLt2kJOjvRye7KWXtJ0fG9vwgP/pp+pW6yi+ceOuXMtR+/frlNbd +CXaDyLx580hJSeHcuXOUlJRQUlLCuXPnGqNsQngEvRYL2rFDn+ywJSXQvbvz5zfn74DWvp74eG3X +aWjmX4A5c7Td06qhQ3QvXlS3s2bpc/+GshtE/P39ubUx59AL4WEsFu2z1UGtPUycqP06u3ZdaTt3 +Rrt2atNcc5yX+/nn6lZLnxFcGV3VkBpoVpa2/hArazOWo/8/Gzeq265dtd/bGXX2iaxfvx6AwYMH +89BDDzF+/HjatGkDqDMcf/WrXzVOCYVws6Ii+OYb7dexrm2uh9tuc/7c1q3VDyhrX09z8uc/63Md +a/LFgwevpGmvj7U/RI/VCa05av/7X8dyYM2a1fhzQ6qrM4hs2rTJlruqXbt2NZarBSSIiBZDj/4Q +0DeIaG2Sat9ebfNvbkFk40YYOVK/623d6lgQ2bVL3Tqa+t0RH37oWFLGkycdW4DKVeoMIu+//34j +FkMIz+Xl5fzaHVdfR4+OddDWJwJwww36jBTzRNYU8FoFBUFqqmOd9C+/rM89q99761b7QeTsWXXb +kFxZerPbJ5KQkGBbfRDg9OnTTHNk1XshmonvvrsyE1kLPWsifn7azs/LU+ebNCfWjymt675Y3Xuv +OurJEf/5D0yfrs99rfd25D1nTTffkImJerMbRA4dOkTnatNju3TpwoEDB1xaKCE8iaLAzTdrv463 +t/YgYs28q/VDo0eP5rdErnU1QS2DDqpztFlMz/khVo5OyXvhBRg8WL/7OsPu20hRFE5VSyJz6tQp +qvRaKFqIJqBDB+fXlqhOj+Ys65+i1omP3bs3v+Ys60x1vQwdqm7tjZKy1hh699bv3oMGqVtrxua6 +KIq2jMV6sDtjfe7cudxxxx3ExcWhKAofffQRv9NjCIIQTcTBg1fyMWnRuvWV5Uud9fPP2ssB6mgz +va7lKTIy4LHH9Luetcnw55/rbz585RX97mllHW21YwfUtfLG99+rW2u+LXexWxOZMmUK//d//4ev +ry/+/v58/PHHTHEwWf60adPw8/OzLYELak0mOjqa4OBgRo4cWaO/ZcmSJQQFBRESElJjNFhGRgah +oaEEBQUxe/bshjw/ITQrK9OeNwv0CSLFxdrLAeo3WL1GnXmSRx/V71rW2t6+ffUf98knMG+efve1 +8vJSl1SuizX1e2OvZHg1h1pF+/bty5NPPskTTzyBuQE5jh999FFSU1Nr7EtKSiI6OpqjR48yfPhw +kpKSAMjKymLdunVkZWWRmprKrFmzbKttzZw5k1WrVpGdnU12dvY11xTClXr2BD2W0GnVSvsEv7Nn +9Qloo0bpcx1PYV1ESsv8mbrU90Fu7Q/57W/1v29MDCQn1/34X/4CnjDGyaVda8OGDaPLVZnQUlJS +SEhIANSRXxs2bABg48aNxMfH4+3tTUBAAIGBgaSnp1NYWEhJSQkRERGAWjOyniNEY8jP95zZ3UeO +XJkIp0XbtlfSZTQH//qXutX7W/nYsfXXRKzZc12R0HLGjLprrtYBGr//vf73bahGH59RXFyM3+UG +Rj8/P4ov188LCgowmUy240wmE/n5+dfsNxqN5OfnN26hRYu2cSNkZ+tzLa3BqE0bfWpF113XPNZY +t/rnP/VZq+Vqt9+u9rXU5cUX9b+nlXU9lNpG9H38sbrVc3Kjs3T4TuM8g8FgmxWvl8TERNu/IyMj +iYyM1PX6ouUZN06fzks93ur79mlLA2/V3Goie/bAE0/of93o6PpTmXzxBVT7yNGVdWZFRsa1Xxxm +zXJ+dcq0tDTS0tI0la26Rg8ifn5+FBUV4e/vT2FhIb6XE8UYjUZyc3Ntx+Xl5WEymTAajeRVGxqT +l5eH0Wis8/qJrvofFS1WebmatNAT3HCD9tnqoF9aenerXrNzcLxPg/Ttq24rK69tRrS+fo8/rv99 +ra6/Xq1lVQ8iiqJmlq6vr6Y+V3+5XqQxh3yjN2fFxsay+nKil9WrVzN+/Hjb/rVr11JRUUFOTg7Z +2dlERETg7++Pj48P6enpKIrCmjVrbOcI0Rg++kjtF9GD1uasjAx9Jgl6e0NFhfbreBLr3Ao9WSd1 +WofTVvfvf6tbf3/972s1ffqVSZRWe/aoW2fS1buCS4NIfHw8Q4cO5ciRI9x888289957zJ8/n08/ +/ZTg4GC2bdvG/PnzATCbzcTFxWE2mxkzZgzJycm2pq7k5GRmzJhBUFAQgYGBjNayIo8QDRQSAoGB +2q+jR3OWl5e6MqFWzaUmUp0rZ+DXtlztokXqyD1XeuQRKCysue/xx9VMvzr3BDjNpc1ZH3zwQa37 +P/vss1r3L1iwgAULFlyzf9CgQXyjRy5uIZzQrZt+CzlprYmcOqVPEGluNZHLq3i7xIMP1r4UQGam +2tTkStaUJocPq01rVVXw7bdqckZP0cyy5wihv/JyfeZU6PHN8YcftF8D1JpIcwoizzzjumubzZCS +UnOftXbwwAOuuy+otauwsCuJFpcuVbd6JZnUgwQRIezYv99z8kwNGaKmCddKj9nznmTECNdde9So +a1PEvP66um2MCZsLFsAbb6hfZubPh8vzsz2GBBEh7AgK0mdEFGhvzkpPvzJLWgsvr+YVRIKDXXft +gQPV/qPqaWJee039cG8Mv/413HOP2oEfHu6aFCtaSBARwo6KCrX5Rys9mrN69tSnT6R1a/3WNvEE +evz/1OW669SlAKxri5w9q34ZePpp192zOoNBHc6bnq6WwVM61K0kiAhhx8WL+q1RodWPP+qzAFFz +a85y9dooY8deSXHy4Yfq2ufdurn2ntW1awd9+rg/2WJtJIgIYUdRkT75qkCfHFx6rIuuRzJIT+Lq +IDJ6tLpUrqLAqlX6L4fblEkQEcIBenz719oMYbGo13DnUqieytVBJDpaHWb7wgtqc1ZsrGvv15RI +EBHCDi8v/drctXz7LytTz9frA1NqIo677jpYuVKdL/K3v3lms5K7uDUBoxCezmJRO6CtK81pobUm +okfiRStP65zVqjE+1B9+WP0RNUlNRIh6XLqkBhBP+NAtK4NqqyJoJjURoQd56YWoR3m5vjmmtHxw +nz+vz1rv4BlBUU8SRNxHXnoh6lFZqaZf14PWD+6zZ/Uph1VzqIlYn4MEEfeRl16Ielibs/Si5YPb +YIDLq0Rr1lxqItbXs7k8n6ZIgogQ9aio0C+IaP2g0ysRpFVzqInokQJGaCNBRIh66F0T0aK8XL+Z +883lm7s0Y7mf/BcIUY9z5yAnR7/rafn2r3f6leZQE/GUdDQtmduCSEBAAP379yc8PJyIyw29p06d +Ijo6muDgYEaOHMmZM2dsxy9ZsoSgoCBCQkLY6kkrsohmTc8PWq3f/vWar6JHWTxJu3buLkHL5rYg +YjAYSEtL4+DBg+zbtw+ApKQkoqOjOXr0KMOHDyfpcuL8rKws1q1bR1ZWFqmpqcyaNQuLNIaKRmAw +wIAB7i6FqrJSvxxe0DxqIsL93NqcpVz1Lk5JSSEhIQGAhIQENmzYAMDGjRuJj4/H29ubgIAAAgMD +bYFHCFfypA9uPcvSnGoiwr3cWhMZMWIEgwcP5u233waguLgYPz8/APz8/CguLgagoKAAU7WpuiaT +ifz8/MYvtGhx9OxY1/rBfemS5wQ0Iazcljtr165ddO/enRMnThAdHU1ISEiNxw0GA4Z6/urqeiwx +MdH278jISCIjI/UormihPK0m4ikBTTRdaWlppKWl6XY9twWR7pfXG+3WrRsPPPAA+/btw8/Pj6Ki +Ivz9/SksLMTX1xcAo9FIbm6u7dy8vDyMRmOt160eRITQypM+uPUOaKJluvrL9aJFizRdzy3NWRcu +XKCkpASA8+fPs3XrVkJDQ4mNjWX16tUArF69mvHjxwMQGxvL2rVrqaioICcnh+zsbNuILiFc6aef +YNs2d5dCJUFEeCK3vCWLi4t54IEHAKisrOSRRx5h5MiRDB48mLi4OFatWkVAQAAffvghAGazmbi4 +OMxmM15eXiQnJ9fb1CWEXnx8oHdv/a6npTlL+kSEJ3JLEOnVqxeZmZnX7L/hhhv47LPPaj1nwYIF +LFiwwNVFE6IGLy91PW09yDwR0RzJjHUh6lFV5TlNSNKcJTyRBBEh6lFZqe+qeZ7UnCWEHiSICFGP +qir9goinjc6SPhGhBwkiQtRDzyACMk9END8SRISoR3OuiQihBwkiQtTDkzrWpU9EeCIJIkLUw5M6 +1vVszhJCLxJEhKiHpzVneUpAE8JKgogQ9bBY9P3g1sKTApoQVhJEhKhHVZW+63hr+fbvSQFNCCsJ +IkLUw5O+/esd0JoDaZJzP3lLClEPT5on4kll8RRSO3M/CSJC1MOTaiJ6fmA2lz4Ri0VqZ+4mL78Q +9dD7278Weo/Oag6kic/95OUXoh6elK+qvBzatdOvLM2BTMB0vyYVRFJTUwkJCSEoKIhXXnnF3cUR +LYAnNWeVlcF11+lTFmgefSJnzkDnzu4uRcvWZIJIVVUVTzzxBKmpqWRlZfHBBx/w3XffubtYHikt +Lc3dRfAYWl8LT2rOKi/XFkSqvxbNpU/khx8gIKDh58nfiH6aTBDZt28fgYGBBAQE4O3tzcMPP8zG +jRvdXSyP1FT+QI4eVT/MTp1y3T08LYho+fZ/4QK0b+/8+U3lfdEQX3wBd9zR8POa42vhLk2mNTE/ +P5+bb77Z9rvJZCI9Pd1t5Skvh+PH4cQJtd3cxwe6dwdfX/e30Z4/D8uWwZ49UFEB/fvDsGEwZIha +TncrKYHHH4dt29Tfb7wRpk+H556DPn3cW7ar6dmZrfXb/6lT0KWLPmWpzaVLaqC6cEF9D1m3ZWVw +8SK0bQvXX6++h7p2Vcvizvd6aSmsWaMGEuE+TSaIGBz8Cxw6VB2tYf1p3Vr947VY1G+B1be17XPk +sYoKKCqCm29Wg4a3N5w9C4WFcPIk3HCD2k7bqRO0aaP+obVurW6vfhpXfzPV+ntVFaSnw8MPw/jx +6h9+Rga89BIcOADduqkfAO3bq00j1vIYDDX/XX179WtQ2+vSkMcLC+H++yEnR+0o/vFHeOstiIxU +XyeTSS1fmzbXvl7Vf6/tLWG9l/Xf2dmwe3ftjzny72PHYO7ca+/jjNatYd8+GDXq2tfb+lNVpf5U +Vqo/1f/900/g56dPWdq0gffeg9TUK8FCUdQg0b79lW379ur/Udu2aiA5f17thzh5Un3Pt28PHTuq +P23bqu/x6j+ubArMy4ORI+HWW113D+EApYnYs2ePMmrUKNvvixcvVpKSkmoc07t3bwWQH/mRH/mR +Hwd/evfuremz2aAoTWOMRmVlJX369OHzzz/npptuIiIigg8++IBb5WuIEEK4TZNpzvLy8uKNN95g +1KhRVFVVMX36dAkgQgjhZk2mJiKEEMLzNJkhvvVp6ZMQAwIC6N+/P+Hh4URERABw6tQpoqOjCQ4O +ZuTIkZw5c8bNpXSNadOm4efnR2hoqG1ffc99yZIlBAUFERISwtatW91RZJep7bVITEzEZDIRHh5O +eHg4W7ZssT3WnF+L3NxcoqKi6Nu3L/369WPFihVAy3xv1PVa6Pbe0NSj4gEqKyuV3r17Kzk5OUpF +RYUSFhamZGVlubtYjSogIEA5efJkjX3PPfec8sorryiKoihJSUnK888/746iudz27duVAwcOKP36 +9bPtq+u5Hz58WAkLC1MqKiqUnJwcpXfv3kpVVZVbyu0Ktb0WiYmJymuvvXbNsc39tSgsLFQOHjyo +KIqilJSUKMHBwUpWVlaLfG/U9Vro9d5o8jURmYSoUq5qlUxJSSEhIQGAhIQENmzY4I5iudywYcPo +ctXkibqe+8aNG4mPj8fb25uAgAACAwPZt29fo5fZVWp7LeDa9wY0/9fC39+fAQMGANChQwduvfVW +8vPzW+R7o67XAvR5bzT5IFLbJETrC9RSGAwGRowYweDBg3n77bcBKC4uxu/ypAI/Pz+Ki4vdWcRG +VddzLygowGQy2Y5rKe+VlStXEhYWxvTp023NNy3ptTh+/DgHDx5kyJAhLf69YX0tbr/9dkCf90aT +DyKOTkJsznbt2sXBgwfZsmULb775Jjt27KjxuMFgaLGvk73n3txfl5kzZ5KTk0NmZibdu3dnbj0z +J5vja1FaWsqECRNYvnw5HTt2rPFYS3tvlJaW8uCDD7J8+XI6dOig23ujyQcRo9FIbm6u7ffc3Nwa +UbQl6N69OwDdunXjgQceYN++ffj5+VFUVARAYWEhvr6+7ixio6rruV/9XsnLy8NoNLqljI3F19fX +9mE5Y8YMW7NES3gtLl26xIQJE5g8eTLjx48HWu57w/paTJo0yfZa6PXeaPJBZPDgwWRnZ3P8+HEq +KipYt24dsbGx7i5Wo7lw4QIlJSUAnD9/nq1btxIaGkpsbCyrV68GYPXq1bY3TktQ13OPjY1l7dq1 +VFRUkJOTQ3Z2tm00W3NVWFho+/fHH39sG7nV3F8LRVGYPn06ZrOZp59+2ra/Jb436notdHtvuGI0 +QGPbvHmzEhwcrPTu3VtZvHixu4vTqI4dO6aEhYUpYWFhSt++fW3P/+TJk8rw4cOVoKAgJTo6Wjl9 ++rSbS+oaDz/8sNK9e3fF29tbMZlMyrvvvlvvc3/55ZeV3r17K3369FFSU1PdWHL9Xf1arFq1Spk8 +ebISGhqq9O/fXxk3bpxSVFRkO745vxY7duxQDAaDEhYWpgwYMEAZMGCAsmXLlhb53qjttdi8ebNu +7w2ZbCiEEMJpTb45SwghhPtIEBFCCOE0CSJCCCGcJkFECCGE0ySICCGEcJoEESGEEE6TICJELU6e +PGlLkd29e3dbyuyOHTvyxBNPuOSeb7zxBu+//36dj6ekpPD//t//c8m9hXCWzBMRwo5FixbRsWNH +5syZ47J7KIrCwIED2b9/P15etS84qigK4eHh7N+/H29vb5eVRYiGkJqIEA6wftdKS0tj7NixgLqo +T0JCAnfffTcBAQH83//9H88++yz9+/dnzJgxVFZWApCRkUFkZCSDBw9m9OjRttxN1e3atYuQkBBb +AFmxYgV9+/YlLCyM+Ph4QE2Cd8cddzSrBZNE0ydBRAgNcnJy+OKLL0hJSWHSpElER0fz9ddf065d +O/79739z6dIlnnzySdavX89XX33Fo48+yu9+97trrrNz504GDx5s+/2VV14hMzOTQ4cO8dZbb9n2 +R0REsH379kZ5bkI4ovZ6sxDCLoPBwJgxY2jdujX9+vXDYrEwatQoAEJDQzl+/DhHjx7l8OHDjBgx +AoCqqipuuumma671008/cdddd9l+79+/PxMnTmT8+PE1kmfedNNNpKamuviZCeE4CSJCaNCmTRsA +WrVqVaOfolWrVlRWVqIoCn379mX37t12r1W9e/Lf//4327dvZ9OmTbz88st8++23tGrVCovF0uzW +uRBNmzRnCeEkR8ak9OnThxMnTrB3715AXdchKyvrmuN69uxp6ytRFIWffvqJyMhIkpKSOHv2LKWl +pYCavrtnz546PgshtJEgIoQDrN/+q6+Gd/XKeFfXEAwGA97e3vzrX//i+eefZ8CAAYSHh7Nnz55r +rt94crAAAAChSURBVH/XXXfx1VdfAVBZWcnkyZPp378/AwcOZPbs2fj4+ACwb98+7r77bpc8RyGc +IUN8hfAA1iG+6enptiayq1ksFgYOHMhXX31V5zBgIRqb1ESE8AAGg4Hf/OY3/OMf/6jzmE8++YQH +H3xQAojwKFITEUII4TSpiQghhHCaBBEhhBBOkyAihBDCaRJEhBBCOE2CiBBCCKdJEBFCCOG0/w+w ++JKDVZScewAAAABJRU5ErkJggg== +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Neuro_Morophy_a.png b/docs/user/tutorials/_static/Neuro_Morophy_a.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2f1ab425de1fdebbdb9ebf093acc6a92c16b51 Binary files /dev/null and b/docs/user/tutorials/_static/Neuro_Morophy_a.png differ diff --git a/docs/user/tutorials/_static/Neuro_Morophy_activeChanA.png b/docs/user/tutorials/_static/Neuro_Morophy_activeChanA.png new file mode 100644 index 0000000000000000000000000000000000000000..198a14035debdd50b2cc6095f567c44f7763d0fd Binary files /dev/null and b/docs/user/tutorials/_static/Neuro_Morophy_activeChanA.png differ diff --git a/docs/user/tutorials/_static/Neuro_Morophy_activeChanB.png b/docs/user/tutorials/_static/Neuro_Morophy_activeChanB.png new file mode 100644 index 0000000000000000000000000000000000000000..fd49beeafcd3635e34609841517697093e323a1d Binary files /dev/null and b/docs/user/tutorials/_static/Neuro_Morophy_activeChanB.png differ diff --git a/docs/user/tutorials/_static/Neuro_Morophy_b.png b/docs/user/tutorials/_static/Neuro_Morophy_b.png new file mode 100644 index 0000000000000000000000000000000000000000..953a8a237fd289d1c827ec7a6944d582c5e61a20 Binary files /dev/null and b/docs/user/tutorials/_static/Neuro_Morophy_b.png differ diff --git a/docs/user/tutorials/_static/Neuron_model_channels_into_morphology_file.html b/docs/user/tutorials/_static/Neuron_model_channels_into_morphology_file.html new file mode 100644 index 0000000000000000000000000000000000000000..c889d2be3ca5c711c411396d68eebfe225e4192c --- /dev/null +++ b/docs/user/tutorials/_static/Neuron_model_channels_into_morphology_file.html @@ -0,0 +1,4230 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Neuron_model_channels_into_morphology_file</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="Build-an-active-neuron-model-by-putting-channels-into-a-morphology-file">Build an active neuron model by putting channels into a morphology file<a class="anchor-link" href="#Build-an-active-neuron-model-by-putting-channels-into-a-morphology-file">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [*]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">chanProto</span> <span class="o">=</span> <span class="p">[</span> + <span class="p">[</span><span class="s">'./chans/hd.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/kap.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/kad.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/kdr.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/na3.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/nax.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/CaConc.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/Ca.xml'</span><span class="p">]</span> + <span class="p">],</span> + <span class="n">cellProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'./cells/h10.CNG.swc'</span><span class="p">,</span> <span class="s">'elec'</span><span class="p">]],</span> + <span class="n">chanDistrib</span> <span class="o">=</span> <span class="p">[</span> \ + <span class="p">[</span><span class="s">"hd"</span><span class="p">,</span> <span class="s">"#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"50e-2*(1+(p*3e4))"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kdr"</span><span class="p">,</span> <span class="s">"#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"p < 50e-6 ? 500 : 100"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"na3"</span><span class="p">,</span> <span class="s">"#soma#,#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"850"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"nax"</span><span class="p">,</span> <span class="s">"#soma#,#axon#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"1250"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kap"</span><span class="p">,</span> <span class="s">"#axon#,#soma#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"300"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kap"</span><span class="p">,</span> <span class="s">"#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> + <span class="s">"300*(H(100-p*1e6)) * (1+(p*1e4))"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"Ca_conc"</span><span class="p">,</span> <span class="s">"#"</span><span class="p">,</span> <span class="s">"tau"</span><span class="p">,</span> <span class="s">"0.0133"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kad"</span><span class="p">,</span> <span class="s">"#soma#,#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"50"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"Ca"</span><span class="p">,</span> <span class="s">"#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"50"</span> <span class="p">]</span> + <span class="p">],</span> + <span class="n">stimList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'inject'</span><span class="p">,</span> <span class="s">'(t>0.02) * 1e-9'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Membrane potential'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'Ca_conc'</span><span class="p">,</span> <span class="s">'Ca'</span><span class="p">,</span> <span class="s">'Ca conc (uM)'</span><span class="p">]],</span> + <span class="n">moogList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'Ca_conc'</span><span class="p">,</span> <span class="s">'Ca'</span><span class="p">,</span> <span class="s">'Calcium conc (uM)'</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="mi">120</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Soma potential'</span><span class="p">]]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> + +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">rdes</span><span class="o">.</span><span class="n">displayMoogli</span><span class="p">(</span> <span class="mf">0.0002</span><span class="p">,</span> <span class="mf">0.052</span> <span class="p">)</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +[INFO] Loading Ca pool Ca_conc into /library . </span> +Rdesigneur: Elec model has 204 compartments and 0 spines on 0 compartments. + +</pre> +</div> +</div> +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="Neuro_Morophy_a.png"> +<img src="Neuro_Morophy_b.png"> +</div> +</div> +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +jkmTJgGgqqpK06ZNn3u8BlFQkpOTMTU1ffz6zwceX2adlJSUF25b16qSX0Pwuvn9tas4wL1794iM +jMTNza1mA35FVc2voqICJycn9PX16dGjBzY2NrUT+Euo6rk5f/58Pv/8c1RU6udXTVXzk8lk9O7d +GxcXF7Zs2VI7Qb+Cqpyb8fHx6OrqMnHiRJydnZkyZQqFhYXPPV79/JT/x8s+V1Kffyk8z+vm11Ce +t6mO/PLz8/H29mbDhg1oampWa3xVVdX85HI5UVFRJCUlERQUVK+G+Hjd3CRJ4vDhw+jp6aFUKuvt +/82qfrecP3+eyMhIjh49yjfffMO5c+eqM7wqq8q5WV5ezuXLl5kxYwaXL19GQ0ODNWvWPHc/DaKg +/O8Dj/fv339iKJZnrfPXhyJftG1de938/u7hzvqmqvmVlZXxzjvvMHbsWIYMGVI7Qb+C6vr8mjZt +ysCBA4mIiKjZgF9BVXILDg7G39+f1q1bM2rUKE6fPs348eNrLfaXUdXPzsjICABdXV2GDh1KWFhY +LUT98qqSn4mJCSYmJri6ugLg7e391OjwT6mOGz81raysTGrTpo0UHx8vlZSUvPDGUkhIyOMbSy+z +bV2rSn5/io+Pr7c35auSX2VlpTRu3Dhp3rx5tR73y6pKfunp6VJWVpYkSZJUWFgoubu7SwEBAbWb +wHNUx7kpSZIUGBgovfXWW7US86uoSn4FBQVSbm6uJEmSlJ+fL3Xp0kU6fvx47SbwAlX9/Nzd3aWY +mBhJkiRp2bJl0kcfffTc4zWIgiJJkvT7779Lbdu2lSwsLKRVq1ZJkiRJ3377rfTtt98+XmfmzJmS +hYWF5ODgIF26dOm529Y3Vclv5MiRkqGhoaSmpiaZmJhI27Ztq/X4X+R18zt37pwkk8kkR0dHycnJ +SXJycpKOHj1aJzk8z+vmd/XqVUmpVEqOjo6Svb29tG7dujqJ/3mqcm7+KTAwsF728pKk18/v7t27 +kqOjo+To6CjZ2tq+kd8tUVFRkouLi+Tg4CANHTr0hb28xIONgiAIQrVoEPdQBEEQhPpPFBRBEASh +WoiCIgiCIFQLUVAEQRCEaiEKiiAIglAtREERBEEQqoUoKILwNzIyMlAqlSiVSgwNDTExMUGpVKKl +pcWsWbNq5Jhff/01O3bs+Nu/+/v7s2LFiho5tiBUlXgORRBegq+vL1paWixYsKDGjiFJEs7OzoSH +h6Oq+uzZuSVJQqlUEh4ejkKhqLFYBOF1iBaKILykP397BQYGPp4savny5UyYMAEPDw/Mzc3Zv38/ +H374IQ4ODnh5eVFeXg7ApUuX8PT0xMXFhf79+z+eeuCvLly4QPv27R8Xk40bN2Jra4ujoyOjRo0C +/hi0r3Pnzpw4caI2UhaEVyIKiiBUUXx8PGfOnMHf35+xY8fSp08frl69irq6OkeOHKGsrIzZs2ez +b98+IiIimDhxIkuXLn1qP+fPn8fFxeXx67Vr1xIVFcWVK1f47rvvHi/v2LEjQUFBtZKbILyKZ7er +BUF4KTKZDC8vL+RyOXZ2dlRWVtKvXz8A7O3tuXfvHrdv3+bGjRv07t0b+GP+kz9Hqf2rxMREunXr +9vi1g4MDo0ePZsiQIU+MsmxkZMSxY8dqODNBeHWioAhCFampqQGgoqLyxH0NFRUVysvLkSQJW1tb +goODX7ivv97SPHLkCEFBQfz222+sXLmS69evo6KiQmVlZYOZC0f4ZxGXvAShCl6mT0u7du1IT08n +NDQU+GN+l+jo6KfWMzMze3xvRZIkEhMT8fT0ZM2aNeTk5JCfnw9AamoqZmZm1ZiFIFQPUVAE4SX9 +2SqQyWTP/Pdf1/nra4VCwd69e1m0aBFOTk4olUpCQkKe2n+3bt0eT65VXl7OuHHjcHBwwNnZmblz +56KtrQ38MU+4h4dHjeQoCFUhug0LQj3xZ7fhixcvPr6M9r8qKytxdnYmIiLib7sWC0JdES0UQagn +ZDIZU6ZMYffu3X+7zuHDh/H29hbFRKiXRAtFEARBqBaihSIIgiBUC1FQBEEQhGohCoogCIJQLURB +EQRBEKqFKCiCIAhCtRAFRRAEQagW/w/jfpRy4TKd4AAAAABJRU5ErkJggg== +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYwAAAEZCAYAAACEkhK6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz +AAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd0VGX6wPHvnZ5M2qT3RoAQuiCIgoAICC6I4A8LAiqo +Cy5gR1EUUAQVQVCxF8qyoKuIWFgQQQUEpCOhhfSeyaRNkunz+yNLlCV1SAgh7+ecnJPcmfve55Iw +z3275HQ6nQiCIAhCPWQtHYAgCILQOoiEIQiCIDSISBiCIAhCg4iEIQiCIDSISBiCIAhCg4iEIQiC +IDSISBiC0MIKCgro1KkTZrO5Scvt27cviYmJTVqm0LaJhCG0SuvWraN37954enoSGhrKyJEj2b17 +d0uH5ZLFixdz//33o1ar631vamoqMpmMa6655oLjer0elUpFTExM9bEnn3ySF154ocnjFdoukTCE +Vmfp0qU89thjPP/88+Tn55ORkcEjjzzCN99809KhNZrZbGb16tXce++9jTqvsrKSEydOVP+8bt06 +YmNjkSSp+tioUaPYsWMHeXl5TRav0LaJhCG0KiUlJbz44ousXLmSMWPG4Obmhlwu59Zbb+XVV18F +YP/+/fTr1w+dTkdoaCgzZszAarXWWuauXbu4/vrr0el0REZGsmrVquprTZo0icDAQKKjo1m4cCHn +F0b47LPP6N+/P0899RS+vr7ExsayZcuW6jINBgP3338/YWFh+Pr6cvvtt9d47X379uHj40NoaGj1 +sejoaLZv317987x585g4ceIF502cOLE6ToA1a9YwadIk/rpwg0ajoVevXvznP/+p999VEBpCJAyh +Vfntt98wmUy1fgADKBQKli9fTmFhIb/99hvbt29n5cqVNb43LS2NkSNHMmvWLPR6PUeOHKFHjx4A +zJgxg7KyMlJSUvj5559ZvXo1n376afW5+/fvJz4+nsLCQp5++mmmTJlS/drEiRMxmUwkJiaSn5/P +448/XuP1jx8/TseOHS84JknSBTWFv35/3oQJE1i/fj1Op5PExESMRiN9+/a96H2dOnXi6NGjtf5b +CUJjKFo6AEFojMLCQvz9/ZHJan/W+Wv7flRUFA899BA///wzs2bNuui969atY+jQodx5550A+Pr6 +4uvri91uZ8OGDRw9ehStVotWq+WJJ55gzZo1PPDAA9Vln08SkyZNYvr06eTn52O329myZQsGgwFv +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 +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/PassiveCompartment_HHSquidmodelChannel.html b/docs/user/tutorials/_static/PassiveCompartment_HHSquidmodelChannel.html new file mode 100644 index 0000000000000000000000000000000000000000..9da82d9850aebbb8d0ca9c428bc045b144408ac3 --- /dev/null +++ b/docs/user/tutorials/_static/PassiveCompartment_HHSquidmodelChannel.html @@ -0,0 +1,1852 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>PassiveCompartment_HHSquidmodelChannel</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="Hodgkin-Huxley-squid-model-channels-into-a-passive-compartment">Hodgkin-Huxley squid model channels into a passive compartment<a class="anchor-link" href="#Hodgkin-Huxley-squid-model-channels-into-a-passive-compartment">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [2]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="o">%</span><span class="k">matplotlib</span> <span class="n">inline</span> + +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">chanProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'make_HH_Na()'</span><span class="p">,</span> <span class="s">'Na'</span><span class="p">],</span> <span class="p">[</span><span class="s">'make_HH_K()'</span><span class="p">,</span> <span class="s">'K'</span><span class="p">]],</span> + <span class="n">chanDistrib</span> <span class="o">=</span> <span class="p">[</span> + <span class="p">[</span><span class="s">'Na'</span><span class="p">,</span> <span class="s">'soma'</span><span class="p">,</span> <span class="s">'Gbar'</span><span class="p">,</span> <span class="s">'1200'</span> <span class="p">],</span> + <span class="p">[</span><span class="s">'K'</span><span class="p">,</span> <span class="s">'soma'</span><span class="p">,</span> <span class="s">'Gbar'</span><span class="p">,</span> <span class="s">'360'</span> <span class="p">]],</span> + <span class="n">stimList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'inject'</span><span class="p">,</span> <span class="s">'(t>0.1 && t<0.2) * 1e-8'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Membrane potential'</span><span class="p">]]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mf">0.3</span> <span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">display</span><span class="p">()</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 1 compartments and 0 spines on 0 compartments. + +</pre> +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +gxBCiGD/Dz/D5u/uHLo/AAAAAElFTkSuQmCC +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/PassiveModel_swc_morphology_file.html b/docs/user/tutorials/_static/PassiveModel_swc_morphology_file.html new file mode 100644 index 0000000000000000000000000000000000000000..015492a713622a526dfaf507d16b8d712ed756fa --- /dev/null +++ b/docs/user/tutorials/_static/PassiveModel_swc_morphology_file.html @@ -0,0 +1,2608 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Passive_model_using_morphology</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="Build-a-passive-model-using-a-morphology-file-in-the-.swc-file-format">Build a passive model using a morphology file in the .swc file format<a class="anchor-link" href="#Build-a-passive-model-using-a-morphology-file-in-the-.swc-file-format">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [*]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> + +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">cellProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'./cells/h10.CNG.swc'</span><span class="p">,</span> <span class="s">'elec'</span><span class="p">]],</span> + <span class="n">stimList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'inject'</span><span class="p">,</span> <span class="s">'t * 25e-9'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Membrane potential'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'Ca_conc'</span><span class="p">,</span> <span class="s">'Ca'</span><span class="p">,</span> <span class="s">'Ca conc (uM)'</span><span class="p">]],</span> + <span class="n">moogList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Soma potential'</span><span class="p">]]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> + +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">rdes</span><span class="o">.</span><span class="n">displayMoogli</span><span class="p">(</span> <span class="mf">0.0002</span><span class="p">,</span> <span class="mf">0.1</span> <span class="p">)</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 204 compartments and 0 spines on 0 compartments. + +</pre> +</div> +</div> +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="h10_CNG_swc.png"> +</div> +</div> +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAY0AAAEZCAYAAABrUHmEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz +AAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd0E1f+//+nJMuy3HvHGAPGGGNqCB3TOzj0EnovoQRC +CxDTe6gJhF5C79Whm94NGJtiwA3j3qssS5rvH/tb/z7Z3STsEmKS3Mc5OQdp5LnvuZMzL83cOyOZ +JEkSgiAIgvAO5KVdgCAIgvDnIUJDEARBeGciNARBEIR3JkJDEARBeGciNARBEIR3JkJDEARBeGci +NIS/pKCgIPr161faZfzpxMXFYWFhwbvMxA8JCaFMmTJ/QFXCx0SEhvDBeXp6olKpSE9P/9n7NWrU +QC6XExcX97u3KZPJfvd1fgwGDhzIrFmzfrf1eXp6cunSpZLXHh4e5Obm/mX7T3h/IjSED04mk+Hl +5cXevXtL3nvy5AmFhYUf7OD039yzqtPpPkgNfwYymey/6itBEKEh/CE+//xzdu7cWfJ6x44d9O/f +/2cHrKKiIiZPnkzZsmVxdnZm1KhRaDQa4B+XQtzd3Vm2bBmOjo64urpy7Ngxzpw5g7e3N3Z2dixe +vLhkXTKZDI1GQ69evbC0tKRWrVqEhYWVLPf09GTp0qX4+/tjYWGBXq9n8eLFVKhQAUtLS6pUqcKx +Y8dKPr99+3YaNmzIV199ha2tLV5eXvz0008ly7OzsxkyZAiurq64u7sza9YsDAbDf+yLoKAgunXr +9ou1PXv2jICAAGxsbPDz8+PkyZMAbNy4kT179rB06VIsLCzo3LkzAAkJCXTt2hVHR0e8vLxYu3bt +z9rq0aMHAwYMwNLSEj8/Px48eABAv379iIuLo2PHjlhYWLB8+XJiYmKQy+UltW/btg1fX18sLS0p +X748GzdufNddLvxVSYLwgXl6ekoXLlyQKlWqJD179kzS6XSSu7u7FBsbK8lkMik2NlaSJEmaMGGC +1LlzZykzM1PKzc2VOnbsKE2fPl2SJEm6fPmyZGRkJM2bN0/S6XTSpk2bJDs7O6lPnz5SXl6eFBER +IanVaikmJkaSJEn65ptvJKVSKR0+fFjS6XTS8uXLpXLlykk6nU6SJEkqW7asVKNGDSk+Pl7SaDSS +JEnSwYMHpcTEREmSJGn//v2SmZmZlJSUJEmSJG3btk1SKpXS5s2bJYPBIK1fv15ydXUt2cbAwEBp +5MiRUkFBgZSSkiLVqVNH+uGHH/5jf/xabVqtVipfvry0aNEiqbi4WLp06ZJkYWEhvXjxQpIkSRo4 +cKA0a9asknXp9XqpZs2a0rx586Ti4mIpKipK8vLyks6ePVvSlomJiRQcHCwZDAZp+vTpUt26dX+2 +by5evFjyOjo6WpLJZJJer5ckSZJOnz4tRUVFSZIkSVeuXJFMTU2l0NDQkn3i7u7+X/7fIPzZidAQ +Prh/hsb8+fOl6dOnS8HBwVKrVq0knU5XEhoGg0EyMzOTXr9+XfJ3N2/elMqVKydJ0j8OUGq1WjIY +DJIkSVJOTo4kk8mku3fvlny+Vq1a0vHjxyVJ+sfBsl69eiXLDAaD5OLiIl2/fr2kpm3btv1q3dWr +Vy9Z37Zt26QKFSqULMvPz5dkMpmUnJwsJSUlSSqVSiosLCxZvmfPHqlp06b/cb2/VNu1a9ekq1ev +Ss7Ozj/7fO/evaWgoCBJkiRpwIAB0syZM0uW3b59W/Lw8PjZ5xcuXCgNGjSopK2WLVuWLPtnuP7T +b4XGvwoMDJRWr14tSZIIjb8ro9I+0xH+HmQyGf369aNRo0ZER0f/26Wp1NRUCgoKqFWrVsl7kiT9 +7BKPnZ1dyRiIWq0GwMnJqWS5Wq0mLy+v5LW7u/vP2nd3dychIaHkvX+d+bNz505WrlxJTEwMAHl5 +eT8bvHd2di75t6mpacln0tLSKC4uxsXFpWS5wWDAw8PjF/vj12r717rKli1bsuxfx4BiY2NJSEjA +xsam5D29Xk/jxo1LXv/fPjI1NUWj0WAwGJDLf/vqdHBwMHPmzOHly5cYDAYKCgrw9/f/zb8T/rpE +aAh/GA8PD7y8vAgODmbr1q0/W2Zvb49arebp06c/O/i+jzdv3pT822AwEB8fj6ura8l7//cAHBsb +y/Dhw7l06RL16tVDJpNRo0aNdxokLlOmTMnssHc5EP9SbW5ubkiSxJs3b5AkqaS+2NhYfHx8/q1m ++EeflitXjsjIyP/Yzm9NNPi15UVFRXTt2pUff/yRzp07o1Ao+Oyzz8TA+d+cGAgX/lBbtmzh0qVL +JWcK/ySXyxk2bBgTJkwgNTUVgLdv33Lu3Ln/ua0HDx5w9OhRdDodq1atwsTEhLp16/7Hz+bn5yOT +ybC3t8dgMLBt2zbCw8PfqR0XFxdatWrFl19+SW5uLgaDgdevX3P16tX/urY6depgamrK0qVLKS4u +JiQkhFOnTtGrVy/gH2cNUVFRJeupU6cOFhYWLF26lMLCQvR6PeHh4dy/fx/47VlkTk5OvH79+j8u +02q1aLVa7O3tkcvlBAcHv9f+EP4aRGgIfygvLy9q1qxZ8vr/ftNdsmQJFSpUoG7dulhZWdGyZcuf +fYP+12/Fv/YtWSaTERgYyP79+7G1tWX37t0cOXIEhULxHz/v6+vLpEmTqFevHs7OzoSHh9OwYcOf +re/X2t+5cydarRZfX19sbW3p3r07SUlJv1hb586d/2NtxsbGnDx5kuDgYBwcHBg7diy7du3C29sb +gCFDhvD06VNsbGzo0qULcrmcU6dO8ejRI7y8vHBwcGD48OHk5OS8U93Tp09n/vz52NjY8O233/5s +uYWFBWvWrKFHjx7Y2tqyd+/ekhlb77IPhL8mmVSK55pZWVkMHTqUiIgIZDIZ27Zto2LFivTs2ZPY +2Fg8PT05cOAA1tbWpVWiIPzu5syZw6tXr9i1a1dplyII/7VSPdMYP3487dq149mzZ4SFheHj48Pi +xYtLvmE2b978Z3PvBeGvQIwJCH9mpRYa2dnZXLt2jcGDBwNgZGSElZUVJ06cYMCAAQAMGDDgZzdY +CcJfwX+6ZCQIfxaldnnq0aNHjBgxAl9fXx4/fkytWrVYtWoV7u7uZGZmAv/4RmZra1vyWhAEQShd +pXamodPpCA0NZfTo0YSGhmJmZvZvl6LENzJBEISPS6ndp+Hu7o67uzuffPIJAN26dWPRokU4OzuT +lJSEs7MziYmJODo6/tvfVqhQ4RenCQqCIAj/Wfny5Xn16tV7raPUzjScnZ0pU6ZMyZTKCxcuUKVK +FTp27MiOHTuAfzzULjAw8N/+9vXr10j/eATKX/K/b775ptRrENsntu/vuH1/5W2TJOl3+bJdqneE +r127lr59+6LVailfvjzbtm1Dr9fTo0cPtmzZUjLlVhAEQfg4lGpoVKtWjXv37v3b+xcuXCiFagRB +EITfIu4I/wgFBASUdgkflNi+P7e/8vb9lbft91Kqd4T/r8SvjQmCIPz3fo9jpzjTEARBEN6ZCA1B +EAThnYnQEARBEN6ZCA1BEAThnYnQEARBEN6ZCA1BEAThnYnQEARBEN6ZCA1BEAThnYnQEARBEN6Z +CA1BEAThnYnQEARBEN6ZCA1BEAThnYnQEARBEN6ZCA1BEAThnYnQEARBEN6ZCA1BEAQgLg6C5uoQ +P9Xz60RoCILwt6bVwtffFOE7ZCEPojzJKywq7ZI+aqX6G+GCIAil6eVL6DkhFEerQB6/yMY1zxu1 +orSr+riJMw1BEP52iovhqxmF1P1iBoMz6nPkYj7lV2xGffMuqFSlXd5HTYSGIAh/K+HhUK/zE8Ji +yxP+cA2D3Ftj+jSSG9au9JjcE61WW9olftREaAiC8Leg08HEqXk0nzqOEamfcOSCBpfNe9Gu207v +BWPpeKEjNcrWQCaTlXapH7VSDw29Xk+NGjXo2LEjABkZGbRs2RJvb29atWpFVlZWKVcoCMKfXWgo +1OnwhNio8kTc2cLnvl0xexHFsXw9/kv90aq0vPBeRstroSgNhtIu96NW6qGxevVqfH19S9J98eLF +tGzZksjISJo3b87ixYtLuUJBEP6s9HqYMDWbtkEj6Z/3KTuv67A/cJK0eYtp900fRoWOYnGFqcx6 +KaOulRX1x4whRyFGwn9NqYZGfHw8Z86cYejQoUj/3+ToEydOMGDAAAAGDBjAsWPHSrNEQRD+pG7f +huptH/D2VSWeX9/FSM/OmN57zNoXEVT7rhplzNx56jSZc8lp1BozBhtPT6Lq1sXSSEwq/TWl2jsT +J05k2bJl5OTklLyXnJyMk5MTAE5OTiQnJ5dWeYIg/AkZDDBpZgYHn01gecpB2j2zwPLkOeKdy9J3 +aV+SjJI4WvV7is4cpnwjXzRqNT9Wrkx3tR0pP6bAUNfS3oSPWqmFxqlTp3B0dKRGjRqEhIT8x8/I +ZLJfHJQKCgoq+XdAQAABAQG/f5GCIPypXL0Kg+dc4xOLnjy5mo1pn4Eo5i9h+eaNLErpRHfrLhzR +N6BfZgI/jR5NWzs79leuTMGxTO6Ov42lcyLOn3dBbvLXuEQVEhLyi8fX/5VMkkrnpvkZM2awa9cu +jIyM0Gg05OTk0KVLF+7du0dISAjOzs4kJibStGlTnj9//vOiZTJKqWxBED5CxcXw9fwMDoaPYPWL +0zTJt8Zq9yEemZgycOdADAoD31f9kpeXLjG6f39MjI056OdHg2w1L0dHUvA4iRtZ4Www6Ut4rC0q +C+PS3qQP4vc4dpbamMbChQt58+YN0dHR7Nu3j2bNmrFr1y46derEjh07ANixYweBgYGlVaIgCH8C +Fy9C+ZbniXniz+Pzp2jTfjTq0OdMPn+EgAMBdLPpyJnChow3GBg6aBD9ypQhpW4DvDfl8aDmXRIe +XmZcjivLLZuh6N6aIgpKe5M+ah/NiM8/L0NNmzaNHj16sGXLFjw9PTlw4EApVyYIwsdIo4E5S3I4 +EtaH79Iv0zzSFPXZSzySTBgY1AgzIzPuVFnLgdA7lOvWDReVikfVquH5SiKsfijalDcc0mSxVTMQ +82ZTmdJlH1kuNVAr/ppnGb+XUrs89T7E5SlB+Hs7dw4GLDhOR4thLL+ai3riZIpGj2PKqm/YI+3h +S4uRfPYigc4dO/LG3p6vPT352s6d2KBYkre9IdIQxkxtL3C/QsvBX1CuVkWMlTq8pZcEVA/FzrZs +aW/iB/F7HDs/mjMNQRCE35KfD/OX5nM4oit7kq5TK9UZy6vnOB3/llHLauEr+XLPYy5L01KpPmgQ +Vc3MeO3nh/qnfO6PvUOhIoaVRa7cUXbGpX8vxrR9RaR5bWoqrpDw2pQfn2TQqKY4LP4a0TuCIPwp +nD0r0W/hfnqrR/PgRgHqKdMpHDmOPkvGcFF2kWVOM3B/eJd6zcqTV82fTd7e9JXZ8bJPJPG3ErmQ +84oVhr5Y1VrF2MGBZJVtjLGRgpqaUIJ/0pD/0Jj7V9QYJuvBurS39uMlQkMQhI9abi4ELcrl/NOu +nHpzAx8rTyzuHOT4k5eMW1QdP0UV7lmNZ5xBw8lhQ2lmY8Ohyr7kbU3l/te3SVW+YGZuUzJs1TQa +XItmDczJM65OE9k1HodIpCRJBG8zxsssn7FLy1CUmgZlPEp7sz9aIjQEQfhonT8v0WvBDrpYTuDa +lSLM5y4iuUtX+nw7igfKByzxmITq/iN8W9ZGrlJx0s+PxvEqXjR6TMHbZPYVZLObrti2G883Pc7w +zL4R5RUhpL415/jDImL3mfE6KZvuY+yp/1kRlxJcsHZ1L+3N/qiJ0BAE4aOTnQ3T5qZz81UfLkdd +x8vBC9Ozm1j/8AGz11UnUNmR29Ln9FZbcGfIEHo5OrK5rDcJc+J4vCmOSOkJXxf1ROlxib4jqmDl +74feyJl6utucO1mA5omSYxd1tKulZ+RmU+5JlRh2/BVFh+OZdh2sSrsDPmIiNARB+KhcDjHQNegH +Rhl9xfW7ekwWLyO1bRe6rhzEa+VrDpZbzMPwB1Ts3gZ7Y2PuVquG1wM9YZ3ukl8Uy8oiJ24pO1Ju +UC8GdYgjzqQa9eQ3eRmq4kZUEWc3G+OizmH2RmtUXvYsDzXlyeZwCl8acGvoT56pmHL7a0RoCILw +UUhPh4mzkoiIG8CV19fx9PTD9P6PrDpxgoXrq9LZrB0rsjzpZmvGq549+dLDg7nm7kSPeU3E6bdc +K3zFEkNvLGutYcqw3iS6f4q9UQ6mmRGcvl1EzD4Twt8W0m2YA416aDiU4M/xxfcovKzAzt2b+avz +MZFycDMSofFrxH0agiCUumvXJD77ZhXjDTOZ8FBCuWQpkfUaM2j7IIpkRXznMYyjSYmsbd0abxMT +TvlXQ70ni+hpL0mRv2ROfgNSLLKoP2IQNRpYY2JcjKchmjvnNWQ/NOPQuSxa1DClyzwDD2Q12Hrm +JVk7DSj0VvQd6UTbutH88MM8Ll5szOvX9nh5/TUvUIn7NARB+FNLToYxM+J4mj6C2xEhONWoh0no +Vmbt3sCGvY0ZZzqM1vGpdG3iSWY1f9ZUrMigQltetH5GfFQSe/Jy2ScLxKXDl3zd9zLRlv74y68S ++8Kcy0/0XNyiwEKVzbTvrbGoZMPie+Y8/+EpRbHwSbuqTBscxtngzvTvvx9N0QZwlWPl0LG0u+Wj +JkJDEIRScfWqRI+5yxivDWLHI1AsWMSL2gEMWd0NyUjiquNMFhi0LBjYjvpWVhyt6Eve6iQeLL3D +E14xpygQE6+TjBpVFamyP5ZGUCM/lOCrWuIP67kbk0fXgQ407WvEoYQqnJwXSsE1cKnoR9APyWSn +mzBu3CXi4++D7SUo+gZHQzRSvhwsSrt3Pl4iNARB+EMlJsKwqa/JzhzE9bC7ODVojuz+SiZvX8OP +x4MYbzsYv5gMGrauikGl4qCvL82eGRNZK5S0nCRWap0IUzWm8qhAOrfJIce4ItW5zcMrkPLAmAOn +DTT2L2TlUVOeGFVg5P5XZO4OR6Uow/hpFtSpnMLadUu4fdsDLE6D0XiM8w3Yea4gsdI89MSVdhd9 +1MSYhiAIf5gLFyT6LVnOlPzZDHtuhPHa77hk48jISyOpoCvPcsv6THBy5pqvL10dHNjiWJ63U2NI +PZ7AhcJYVum74NRgESOG7SLRsTqNFDdIiTcj7H4uVzbJUBgV0mOBDdZVbPjhjinPfohDF29Ek66V +Gd8njEMHJ7D/wGCKpU1gPAhZoTtly54ipuLnULcAtU5B5PiXuDt5lnZXfRBiTEMQhD+F5GT4fMJz +yO/HzYdhODRpjfzHdYzcEMQJTrDEZjLF0a+p26EJlsbGXPX3x/tiMU+a3yNBimFOQR0yrI3o+kVt +ytRxw9zIgk+K7xNyQUvcMRXXIgv4rJ8tLforOJpYmaNzQtHcgLJ+/sydH0vUCyeGDr1NWtpPYPUS +sr/Bzekhbyt1IqZNBEZGEqPvKfn8bivMJpmWdnd91ERoCILwQZ06JTFm1VJmZgXRK1aFetMezhQp +mbA2AC+5J+f0/Rjk5kx4/U8Z5ebGEiN3XveO5MndJPbk5nNI3haPwIlM/vwBaWpPasvv8PShirBb +eg4e1vOpbyHfHjYlQlWJEXtfkbXnCabqskz/xpiKbjl8u3wzjx9LYHUVZKOwJBVdhaG8bbsThbWB +pjEKgs40JLN4Mk9ci3BJ1mJjV9q99vESoSEIwgeRmgpdR4ehMHzOuYiXuDbrQMHuhXy+cTJ35XdZ +6DiKyLQs6nTqgIdKRbivP6YbMghddIen0mu+0XZCXf4U48fVpLBCFTyMUrBOz+b8DT03NxdTaChg +3HJrbKo7sOy2kuffP0OXbEy7Xn4M7fKcnTunsSSoEwbVATAehSLfBHuPzSQ3GIe8vJ5y2Qq+3+6F +vmAucSa2vPLbSVioht7l2pZ2133URGgIgvC7kiQ4cEjPlI0rWJA6m8AENeqlG9iiKWLG1nq0N7Tm +YF5netetQnJdWxZ5eTEixYYX9cOJTU9gjdaOu8oAqo/uSpO2ekyVDlQ13OduiI6YowouhhfRubcp +bQaZczTJh6MzH6O5I+FdqxpBy18Ses+bAQN3kpN7AMyKIH8a7u6XiffpRnLdbMyL5Sw/aY1X3EwK +9P5EVQvm4d0kAt92Q654RsqbHMp6q0u7Gz9aYiBcEITfTUYGdBh+H/vi3my4Fodp5y4UTV3I0A3j +CDcKZ73NaPbqCvixcWNqmZtz3MuP/HnxvN36hovaN6w2dMau/gpGjzxAmoMnDeQ3iX6u4sV1A0f2 +5eNfUUnvBXKeqauxcX8k2fuLsLLy5KvJxdiYWbBq9QoiI2PA0gpy2mHvEEm62xCktrdRKiTG3lER +eH8YeUWdiPYP5/qLy3TM7EmiIpG7fU9QvuUDpndJwcL0rzmu8XscO0VoCILw3iQJdvxYTNC25cxP +n0PnNAtMt+xmdUQ4C5IX0I4WdEk3Z3DXrhSZmrKpUiVa3TLi1ZhnRGsTmZdXk1zbONqPG4PNJx5U +VURgyIObF7J4uFNFpjaX3rMtcaztwKY7SiLWvkXKMKVLfw96tIlh48Y5nD9fC8n0NhQORm1SgNx5 +PvntVqOwkWgRZcSMsy3J1XxBQrlMbuTupE5MR4xlxlxtfZwKA8/SJENBuU1VcLt+HYWpSWl36Qch +QkMQhFKXlQVthtyknLY3a64moejRncRh4xm0bwz5Uj4rrLrzrY0NF/z9aW9ryw7LCrz94hVJt5LZ +lVvESXkdynf/gs96RyMzUVKZZ9y/pifmhJrgh2l06GpNp+E6DiRW48TahxQ9BP/61Zj5xXNCLn3O +9p0TKNAeBkUf5MX22LscIKXxQBQV9JTLUrD2WCX0uUFkWJsQZrUdy7BqVJIqcanGCczGHaa9kZ6K +i8oQrUthThMrzq55iZHJX/PylJhyKwhCqdHrYdO2IoL2Lef7hLk019hjfvwcc69fYvWRloxVDqRM +ZiGftWuAqbExl/yq4n1Iw9Mp97ijf8sibRssKu/jy3FfkFe2ElUVL3gbZ8aFcxIn9mup4KlnxV5T +nln4MnznC7IOPMbOoQKLV+Wi15gwefI54uIegHka6CbiZH+XZL8apNZNxrJYzvJjDni8DSJfVp7n +PkdJvW9CQEw/Qsqc48LUlXR1ycFrhTuauDS6tcngiX0eXWyNSEtPxdlN/AjTLxGhIQjCfy0zE9qP +uEGl/O48fpCJql1HYkZOZ+TBseQZ5XJcOYovvSvwyMuLoS4uLCl0JarNcx5Ep7Kq0JYI02o0HtcW +n6ZWOBspMdOGceGcxKMtRcQX5jFgriXude1ZdUvF09XPkOWaMnC4J63qp7Luu0XcuOEAFtEgG4yV +8g051VqT3PYiSiMYf8uUdqHjKNA256nfLcLD7tDxdiD3LO9yePJ4ulSLp/wWJyxu6xjXJo+zAfkE +OpjyuUlVtj7uhamt+BGmXyMuTwmC8M4MBlizvpA1R2ax+u0aGuKGyfotTLt8nB3aHYxRfI5xrpz5 +gYG4KJWcquiP6bJU3m6M4ydtMt8b2uDWeClDxp4g18qBmrJQwh8oeHFIycm76bTqaE2XMXr2J/pz +evVjtGESnwRUYdqYFxw/Noa9+/qjlZ0H3QCURhJKpxUUdJqLkY1E61dGTD7fmYKCYUR7x3En7jRt +M3rwRhnHkxH7aNnyCZXPWONxWOKbAAVbK6bRxFJNV0cHdr3oTtInCobqDzCq7WOsLf+aD5/6wy5P +PXv2jJiYGORyOWXLlsXHx+e9GhUE4c8nORm6T7hNxZxOhN7LgSFDuRfQkRGnhlK2uAyHGMCIBvWJ +c3RkZrlyjH1hQWStMCIKE5hbVJM8h2IGTaqH0t+LcopEMtOyuXBGwYldGtzLFLF0t5qXVpUZteMF +GQcf4eJWntnfp5Ga6MKoUVtITgkBlRJZ0XBsnU6T3rQ7Unkd3pkKvt3uD9mziXY0cNVyNdUftaKJ +rAPnP9uKf98QRj5V4T3MkfU1tSwcmklllYp1lWw4Fvo588qZM6POFirbJJMap8RIl4t4YuEv+8Uz +jejoaFauXMmZM2dwc3PD1dUVSZJITEwkPj6eDh06MHHiRDw9Pf+nht+8eUP//v1JSUlBJpMxfPhw +xo0bR0ZGBj179iQ2NhZPT08OHDiAtbX1z4sWZxqC8IcxGGDZ6jy2nP6KtTFb+NTIDdXmvXx5agcH +pYPMV47mEQY2NW9OVbWa465VKJgWS/zpRPYUFnBUVpcqvcbRss9bbI1zcNYncftiIY+3qHiZm0Xv +qVaUb2zL2msqnq19i1JjxZCR1nzip2XN2mWEhmrA3AHyGmJnH0Z6tc7I68VhWSxn2Wln3N7OI9fY +lbtOO1A98aKmVJOQWsewmnCQFoUS3otdOe2UwaQG+Tio5Ez0U3HrUS8uVLFnosl+6thFk5ksx1E3 +Af+UbKwmbS7tLv9gPujsqR49ejBs2DACAgJQKpU/W1ZcXMzly5fZvHkzBw4c+J8aTkpKIikpierV +q5OXl0etWrU4duwY27Ztw97enilTprBkyRIyMzNZvHjxz4sWoSEIf4j4eOg/5S7+qW2Yc7sA+YTx +XPapy8T7k3HHlXGaqoxs15Zcc3PWVfSmXbCMqK9e8KA4kYXFLTDzOcbQSavIc3ejvvwWzyNMebpP +xrGb6TRra0mXLySOJPtx6ttHaCPkNG5dmS8Gv2Lf3ikcOdoKg+oZaLphZp5OYdkxGDocxdgIJt4w +p8XjSWiKG/DQ+wwJjwtoo2vLzbKXyZu6nS7WeZRf6sqT4nRGNdehM9Mx0U9F7NOuHPQswzDLUzS3 +e0Jelgx1Rj/qvEoj//t7bDMdxfToSShMLUu76z+IDxoaWq0WY+M/7mcPAwMDGTt2LGPHjuXKlSs4 +OTmRlJREQEAAz58//9lnRWgIwoclSbBgRTbbL05kWexuGsvLYNi4k5HHVnCDG8w1HsBJGwdO16xF +cysrdsnLkzDiBW9epbE615YIE0uafDGask3V1FQ8QpNnROjxPIJ3FmHrIjFkvhGxdn5s2P6SzGMa +ynp5EzTtLc+ftWHjpq/JzL0Csm4oJDUq5+8oCJyCkY1Eu0hjxl3sgbagH88qPSH0xR0+K+jBM6sn +xE7dSqDHhrJcAAAgAElEQVR3AhW+cyQzJpthrWXE2RQwyluFFNeaXXaV+czhOp/ZXqdIA/qY9jTO +NKfo23Ms1M/kx9wBtHfdw7JbvXHysC/tXfBBfNDQcHR0pFOnTvTu3ZtmzZohk8neq6FfExMTQ5Mm +TQgPD8fDw4PMzEwAJEnC1ta25HVJ0SI0BOGDiYqCwTPu8klKK2bf0yAfOZoDnj58FTuDNppmBBTZ +M75LZ5QqFft9/PDZnEfUkihOF2ewSd8czxYL6DU6BLmZHG9ecu+axMMflDxOz6TnJCu8m9uy7oqS +52sTURts+GK8irKu5qxevYLnz2NBXRs0lbCxv0xms44YVSykYoYRS0/UQZ41g3j3XG5mHKBZSiBZ +ykyejN1Ki8YRVN5jg+qahjGtFdx0y6ZvGRPK5n7KFkUdGpSJoJ9VMBgkcp9/SnNdVfRLD7JCM5mN +uSNp5XSMKm2Wc8bOmAtzrmFqLn7u9Zf84kD406dPOXToEPPmzaN///5069aN3r17U7du3fdq8F/l +5eXRtWtXVq9ejYXFzwefZDLZL4ZVUFBQyb8DAgIICAj4XesShL8bSYJ5K9I5cGEUPzw7RkVbLwrP +7mb0wUXcjjnA94rhrPTzZG/FivR1cuLbFGeiGj7lXGoWSzR+6F3yGT2lMbrKZfCTvyA61pLgXUoO +h2TQsIU5y8dbcDylEt+PC0cXqaB15/IM7hXP1q1fsTjYD0w1QF+sVC/J/tSP7IbPsNHKWXbUE5e3 +88k0s+aWw04qPW9IE3lHbvbeSvVu1xlx2RSX4RbMamJg9+A82jqomW/sz9aMFiR6v2Wt2QpURgbS +wrxpZdIG+fLtfJfTlLW5z6lne4mJfZtyyE1OsjKInpcdkSn+Oo8QCQkJISQk5Hdd5ztNuU1ISODA +gQPs37+flJQUevbsycKFC9+78eLiYjp06EDbtm2ZMGECAD4+PoSEhODs7ExiYiJNmzYVl6cE4QOL +jIQhM6/SIKUzX4dqkM+czSYjE+YnLaCVvgmVdGVY0Kkj9kolJ8v4YRaURPTRJLYWGris8KHGgC/4 +tHs2XopojIuKuHsqj/Ob9ZjY6xkyz4i3TlXZsPklWSc1VKxckW+mveH2zV5s2z6W/OL7oOuGyriQ +4nJfYui0A5URTLpuRZMn0ynU1+Cu2xGUz5yoIlXhWsBeXEeeoslLBV7rLFlTQ8eKGpnUNDOhj5st ++2K7IFUpZJLJTqzUWpLCXGhm0R/1kg1sS+7PsrypVLO8S8O28znuVoSJ6TQG73Ol2C6JMz1CODx+ +A3K5vLR3yQfxhz5GJDc3lyNHjvDtt9+SmJhISkrKezUsSRIDBgzAzs6OlStXlrw/ZcoU7OzsmDp1 +KosXLyYrK0sMhAvCByJJMO/bFI5dGMKmJ2dxda1E5rxVDDk3kyx9Jt8o2jG7Vm2iXFyY6uHBF7fM +ePXFc+7oUllcGIBNtd0MmrKVIgcbasoe8uCuitDv4W5iJj3GW+LT2oHvQxQ8X5eImdyGyZPBQl2W +NWuWEBP7DJStkensUDvtpKDLcJQ2Bjq+MGHE5f7o87vxqPx1kp9n0VTXjBu+J1FM3kvbQi0Vlzpw +zC2fKQ3yKGNqxMiKplx41ZXYyiZMUW3DxaKApKfWNDAfjc2K79kX8xkL82fhqX5J6/ZzOOOWjt5y +KoMPlkUyT2Jj1x+5X3ALm/BmxO3dg7mxqrR3zQfxwUOjsLCQkydPsm/fPm7cuEGbNm3o3bs3LVq0 +wMjo/W4mv379Oo0bN8bf37/kEtSiRYuoU6cOPXr0IC4uTky5FYQPKCIC+s0+T5u0Xkx/WIhiwSJW +5xewJGsJI4p7ozWyYk3rVlRSqThpW4X8L17z8n46q/OteWmqpvkX43BtakI9+W0Sk80J217IofNZ +fBpgRp+JMo6nVub4kqfooxQE9vCgW4cMNmxYyJUr1qB2hcLqWNreI6dFK5TeOVRKM2L+qQCMMyYR +6RHH0ze3aJPfiUdOt8ievo0OjhlUWOxEmD6bES2KUVgYGOej4vHLbtzzsWWK8Q68rDNJeaWmpmoc +zt9v42R4AHM0c7BRphHYbjaX3GPJsZ3GoMPlMTJOZlO33dwtvIHppdoU3gqjomcDHjzeh7n5HzcJ +6I/0QUOjT58+nD9/niZNmtC7d2/atWuHWv1xPMRLhIYg/O8kCRavTeHET71ZHX6DChbuxC/5gZHn +ZpFhlM7s4jZMahZAurU1K8tWoMNePVGLojhVnMNmQ2O8Wi0gcOxt7E2ycNCncutUMRd/0CFZFzN4 +rpJEV382/vCc7GANftUrMnNyHGfPjmD37l5o5fFQ1AYzswTya3ZF0ege1lo5S05XwCV+PsnWcm7n +H6FJenvemsYRPWkzbatHU36DAxmvchjeWiLJrohR3irSoztx1sudCeq9VLVNJP2NEd66MZTbc5SL +t6oyW7sAhVxH95azuV7uKckOkxlypDJqktnUcw+3i66jvlgLza0nVPaozbaqZtR5fOcf1+pU4kzj +F9fxS6GxY8cOunTp8m+D0x8DERqC8L95+BAGfHOYnmlDGftUi3zxUr5JfsXWwm2M1Pfkla0nR+rW +pb65OXvyy5E07DlPUzJYWFCFYufndJ8xH6NK5tST3ebRIzMerZO48iaN7qMt8GvvyIYQGRFrkrFR +OzB9moaighp89/08ElMigE4YyWUYvGZiCFyNygi+umpH/YjZFFCRa+b78I6rg7HCmPsDN9Gw/X38 +DlmhuKJlbAt44J7PwHIq1CnNOejow1CLE9S3f0VWqhyXrEFUOXOdO+dc+Vq3kFzJgt5Nv+Gh9z2i +nCYw6IQ/VoVpbOmzlxtFIagv10JzMwKfMjXY5mfGpzcvoenfjlddtFRptBeZTFHau+qD+EPGNDIz +M9m5cycxMTHodLqShtesWfNeDb8PERqC8N8xGGDF9xkc/SmQLffvYOtbg4ihUxj+YAquRc70lWrw +VYd2SCYm/FjOF98VWbze/padmmKC5VWpM2ASNXqkUUMRRl62EXc2F3Psp0yq1zel3ySJo2lVOLng +KSQY07u/E80bFPPdd0u5d08HqtqgdUftcJTCbj1R2hoIfGbKoKsjkAracsv1J1SvbKgoVeRq6514 +DjpL07vG2OwxZlpjA6cq5vKZiwmVimrxo7o2n9lepbX9Q/JzZJjGd+GTW1FEHFUyVb+EeH0ZBjQK +4pnPVSLcRjPoVG1ss9PY+vk+bmgvYRJSC82Np/i4V2errymf3r2CZkAbbjR8wtbjLzh9Xkf8q3Qs +TK1/u1P/hP6Q0KhXrx716tWjatWqyOVyJElCJpMxYMCA92r4fYjQEIR3d/euxICg3QxNH82QF3qM +VqxlZlQYu3S7mKkfyLFyXlzz9aWbnR2rIp2IGf2Ma/m5LCuqh321ffSethe1fTHlpddcD5Zx9fti +8sw0DA9SklymGpvXPyfrvIZan1bkq3FvOHx4EocPB6BXKkDzCWZW4eS3aoHSO5XKaUqCzrRGnTaW +sLJPSHj9hqbFzbhW/TDqiQdp/1aP63cWLK9ezMZquTSxMaW1ZRl2FrTgU9dwutlcoVgLhhdNafhM +y+sfc5kuLeap1o8BdefxpupZ7rkNYeBPDXBJSWdr/wNc1Z1DFVKTohvP/xEWPiZ8ev8amoGtuVL3 +EZuPveLkcR01yzSgcfp0Fr1tg1wpZk/94jp+KzRq1qxJaGjoezXyexOhIQi/TaeDld/ncD64JRvu +PcK8XkNufzaUiU9m4io50VL6lAUd22NlZMQxW18sprzhxc1MVhfYEGWmoO3kKTjUl1FffpNnkebc +X2ngQlQaXYZZULuzPWsvynm2LhFHGxdmzcjmbXwLNmyYRmZeHOhaYaLOQFOjF0YBIVgXyVl0pgpu +cXOJdszhUepFWud24qnrHXK+3kxHWQ6eK2zY417IvHoFVDFX0dfdhqOp7XD2SGKA1RkUSOQ8qUaz +t84kbIzma8NCbmsaMKDWYjJqHOOaRx/6n2uOR0Im2/sf4LLhJ1QhNSi6/gIfN3+2+JhQ98ENCge1 +4mKt+2w+GkvwaR31yjSnYtQ8rIutqSPPoPWbGli5fhzjt7+3PyQ0li9fjqWlJR07dkT1fwaHbG1t +36vh9yFCQxB+3e3bEv3mbqJf7iS+CJcoWruBcREnuKq7yldST7ZUq02kuztfuLgx8YwJr2a/4kRx +Ptv0DfBtP48Wox9T3jgKeWERt7fqOHIsm8qfqBkwBY6lVub0oqfIk00YPNSGmlVNWb16BRFPs0DR +DLlkAuUWIHVd8I9xiytOfBoxlyylE1el/dRLbUmOeToxU76jrWcsFVbacEVWwJfNtNibyRlZwYyQ +t50oLlfIKPMjmBrrSX9cjqYZ1cle+5BZurlcLGxDX7+VFNfdwwX3LvQJaYdXdCY7BxzmImcwDqmO +9nokld382VxRSd3HdygY3JJz1e+w6WA8F87paOzeHo/XQTjr1dSTp3O6mYzEKuHsXtgfc/Eb4b+8 +jt8KjXXr1vH1119jbW1dcsOLTCYjKirqvRp+HyI0BOE/02ph6doMbpxrw+a7jzFp2IifmnVhYkIQ +zQob4mzmw7rWLfBSKjlu5EPBqJc8eJ3LksJK4P6IbrPWYF5OS1VZODcvqbi6qohUVQHDZxuR6eXP +pu8iybxQRP0mXnwxPJndP87i1CkfJGNPKPJCZX+Wou6BKO2K6RphTt8b4zAUNOai7SHKxlXGwciO +xyPXUL/RI6pstuJ1XCGjWuspttIz2lvN0zediPU0ZoL5PmxNi0gOc6RpXjO0q64SpJnNiYJu9PRe +j3HDrZzxaEOva12oFJnNzoGHOS87hXFINbTXX+Lj5sfmCkrqPblP/pDmBFe5wcb9yVy5rKOZS1ec +o2fiaVBQU57J0fZQ5Habhie3sC85j3OZrzAxF78R/ovr+K3QKFeuHPfu3cPe/uN5gJcIDUH4d3fv +Gegzcw1fpU2ne7QCzbptTHxwiCvyK8wu7s2ihg1ItrNjqYsXHTZoeL45kR0auGxUnkbDJ+PbOZ1P +5PeJiTPl3nI9wc/T6DDQgvrdbVl1Vk7k+mTcnFyZPSONiIjubNkyjDxtIWjro7Z4RWHL5hhXjscv +xZgZwYGYpQ3hulsIRMupKdXkbpcf8O59kZqnTCm6rGNUK4loxyKGV1SRldCWB2XtGGe6D3fLPJKf +WVI//zOMVp5lYc4U9hX057OyO7AJWM+Jco3oerMPfuE57Bp4mLNGJ1Fe8af42mt8XH3ZUt6Iuk8f +kje0KScrXuWHfencvqGnpWNf7KOnUgk9lRXZHOwioTa/ROVT2zmaKaf52K8pGtqERb7lP+iz9krT +HxIarVq14ujRo5iZmb1XQ78nERqC8P/TaGDut0k8udyJDfcfY9y2HXtrN2BO0iJaaBsis/+Egw0a +UEutZu9bT5JGP+dSbgGrtHUoU2sH7WYEU8YyHsviTG5th2MHs/CsbsygqQpOZnhzet4zlJmmjBpj +Slk3d9asWcTrmGyQWqBUFlBccwDKZiex0chZcKY27rGzCXOKIiH+JU2Lm3OvwQFsxx6k4UMFpnuM +mdpYR0i5Avp5qjDPbMI5Zy/GmB6kok06qVEmVM/tgfWas6xIGcuWgpG0dT2ER9PVHK1Qg053B1Pt +cQ4/DjjCT0YnUF6tSvG1KHxcKrPZS0G9F2HkDmnMMa8rbNiTyYO7BtrYD8UmdgL+FFFGmcf+nnpc +OY3DyV1cKLKj+YzZXGtemZC8DPSZOaR1aIOtmfI3+/3P6A8JjcDAQCIiImjatGnJmIaYcisIH4d7 +D3T0mb6UWclzaZuoInnhGkY820iaPpWR+jbMbdMarakp2xy88ZuTSlhwBis19iRYaOg84xtsa2mo +LXvAvVsmhCwtJk6Wz9CvlRRUqsKG1S/JvqqlRauyDOyTw5YtC7h0yRGUtZHprZF5rkbq+hUmShmT +r7jz6ZOFvDWXE5Z9hWb5rXla4Qr6adtolVaI03eWLK6uYZd/Ae2c1FSX+XHItCb9LU5Twy6e9LdG +eKf2wG3zJb6LHch3BRNo7HAWn+bLOeJdnrYPR1P7fi67+x8j2PgYRtf8KL4aRSXnymwpJ6feqwhy +hjXksNtl1u/JIfyRRFursVjGj6I2+diZFLK/TzHeuYeQn9rHfWUFGi+czfGqLoQVZKPLSoIftyG7 +G0rSq6c4WjqU9q79IP6Q0Ni+fXtJY4CYcisIH4GCApi2KI7I2z3ZdfsBsl49+bGCP0GZCxhU2I3w +clW5WM2f9haWrL3nSNTUVxws1LNHqkHNz4KoO+wFNZQPSU014c4SLSfD0mjTx5wGvR1ZF2wg8ock +vDzdmTU9levXB7NrVzeKJAvQVsbY9hra7m0wdtDQ/YkVPW5+ha6oBiHKY3ya3oQUm1iSZ6yjrXky +Hius2eVeyJJ6GmrZqOhg7cERGtLG6gaN7V+QnSbH+U0g3vvusj3iM1ZoplLT6ha1Wi3kSEUXmkeM +p+6tAvb0O8Zp9VGMrvlSfDWaSk4+bPaUUT/6OdlD67Hf6TLrd+cS+VRGO9PJWCQNoj7ZqMy07P+8 +iE+SdpEefIQomzrUWfE1O13MiNPkoUuOgc0bkEdE0s6rITa2Tdl2ciwKtXiMyC+u410fWPgxEaEh +/J09DjPQa/IsZiStoFO8kpfzVjPhxVaSjZLoI3Vkadu2mCqVHFZWwnJ8LDefF7CsqBImZW/Sac52 +XNyScDe84fpuOcd/zMa5ihFDpir4KbsCJ4IiURdaMHGCHLXKn3XrgkhI0YCuASrTtxS1aoGqykuq +Jhsz5afemKX15prdedzflsPE2JjwsWto6f8U73WWXJRpmNpUi4elEZ+72fFTQQuq2z2lnf0DCvNk +mL5oSc3gl+y93YzFRTPxNntKw1bzOOatptHLqTS4pmHf58c4aXYExfXK6K7GUsmxIps9ZNSPiyRr +WF12215k/Y8FREcqaG/yNZYpvWlMBsVWeg73zadR9BZenT1Jtmc7Kq+czEZTA+mF+Rhin8GG71Gm +ZPGZRwNeq/rzKKwlimbxpOx0wcrKvLR38wfxQUOjffv2DBw4kPbt22P6L9PPCgoKOHnyJDt27ODM +mTPvVcD/QoSG8HeUkwNfzntJwb2erHkQjmHQQJbZm7OpYCsDi7py2b8h4Z6ejLB15svdRjxdl8AW +rRE3lW40Hz2Fiu3TqCO7x4OH5lxbqOV5cQ5DpxlTVKUK65e/JO92MR07u9Glo57165dy+7YZyBuh +kBvQ1xqOcfO92GjkzA1ugEf0dO46PUL+Roe35M3dvuuo2fYmNXereRmlY1QbPUZWMMzLjNuZ7XB0 +SqCn3VX0xRL6J3VocDWbkxdrMrc4CCdVAq1aBHGqio5PombRJETDvj7HOWFxGMUNH3RX4vBxrMgm +d4n6b1+TMewTdllcYP0uDQmxxrRTzMcyvRPNSCPdQeJEr2xahW/gXsh5jKr3wXnpaDZSQH5+AVLE +XdjwAxaSMR2dG3LXMJKoqGrYtnvMpKpzqewUSsseLzE1Ez/3+ovr+KXQSElJYd26dRw6dAiFQoGL +iwuSJJGUlIROp6Nnz56MGTMGB4c//tqfCA3h7yYsTKLnlOksillJ/QIrnkyex6iYFTgU2fGJaQDf +tWmBu5ERx/K9KRj5gtMpBr4vrk7Zuj/QfPp1qps9pjBXxs3FxRy7l0rz7mY07ufE+jM6XmxMprJP +GaZ9lULwmYkcPBiATlYedE7Iy2yGnqNQKWV8FeJFnScLeGWZTUJKJPWLG3G7xQ7KDD5Bo5+U5FyR +GN0G4h21DC+vJjqtDQbXQgbanMVIbiD/YWUC7iu5fMKDWfoFqBQaOjWbTXDVdPzfzKHFRR0He53g +mPVB5DcqobvyhkoO5dnkLtEgKZa0odXZrrrE+l1FpCeqaWNYinV2K1qQQpwbnOuSQpsH67l08waO +TUZgNGcAO4qzKMrNg1uXYOs2XK3caOzQiIsZE0gvcKJ8m0tMr7YQbUIKyT8MoEJBdQKTW2Fq9fFM +/Pk9/WGXp5KSkoiNjQWgbNmyODs7v1ej70uEhvB3kZUFY4MiUIX2ZEnoC6ShI1hqoWJz8Va+0PRl +Z/3GvHVwYL6lB52W5XHvRDarihzIsM6g06zFuFRLxYcXXDuo4sSWbCwryhk2Tc75nIqcmBOJuc6S +qVP0FOQFsH79JNJzVFBcFaX1fYp7tEDlkEuPMFu63P6abH0ZHmmu0qSgOY+rnkE5aRetI/Qo9xrz +ZVMDd8oW0t9ThTarOW9dTRhueQJzlY7Mh2VoGuHCvb3mfG1YRBEmdG/yDZeqR1E+aQFtz0kc7nGK +w3b7kF2viP7KWyrZe7HR1UDDtHhShlZli/wSG3ZpyU+3pJV2Bda5jWlFCs+9ZFxtG0/rW+v4KTQM +r66TyBjXmSPaTIpzsiD4OOw/hK+rL952rTgf9QWFdnLqBezly+priL5ohe5EPyrrKhBc+yeu1Qvj +zKR9eLiU7jHuQxFjGoLwFxYaKjF02lcseb0Gf7kjt8fMYGLsclwMjrjbtedQwwb4GxuzN9yD+KlR +7C2EwwY/6vaaTbWBUdRX3CLihQXXggoJzc9m8FcqdFWrsGnFC/LuGeje3ZFmTUxZu3YZTyLUIDXA +SJWGrlVrVFXDqJ5owoRzg1CndyBEfYZPMuqT4PqMnBnraaPJwvo7cxbW0HLEt5BAVxWu2k95YOfM +CMsTOJprSA2zo3FkFSK36phhWEiy3oXeDeZwq/ZjXNLn0zFYydGupznkuAdueKEPScTHvhwbXfQ0 +yEwkcZAvm6TLbNxVTHGOPc0KVmFfUJtWshQeVJYTGvCa5pdXc/rFG3wHzyDy86ac12agz0yDAz8i +O3uR+h61UNt24cqTwUh+2XSpu5Y+VXYQsaU2Vg+6Yac053CDQ6RWj2WoZzyqgiLa9g3H3FHMnvrF +dYjQEISPS1YWDJ7xCEN0HzbeeEXh2AlMNcRyWR/CUF13NjRrTaGZGZvNKlBlcgIXQ7V8q6mATYVL +tJ63H2+HF6g0uVxfZuDQtXSadFbTdKATG4OLebY5hWr+ZZg0PoNDh2Zy4oQ/krwWMlRI1Segav0D +toUKZgc3o2zURC7aXcQt0Q1rcxNeTV5OS+donNdYscW9gO8+0dLEXsWnKh+umvvQ3/wMHla5/D/2 +3jsqqnN937+mMPTeq6gIIoiAShUBe+9dUWNJjCWmW2ISe40VOxYUFHtXkGKLYgUUu6AiIoL0NgMz +zMzvj8nJ+Zxfck6KiScnX661WIu12cy7197v2vc89/O+z1P02ICgJ/683lLGTOUishXujPJfwB2/ +KxhVLKJfvA4n+55hv+0eSG2E8nwhbhbObLWup13FG16Nc2WL/CJbY+oRyWxpXxWJba0HHQRvuOwj +JNvvAYFn1xD/sppWn87lSjdv0hTlKN+8gu1RCNMz6dLInxLDsaRn9kW7XS6T2izG3zaeh6v64PKy +BxUWZRxudwRzt0JGuGdzL0mb7UfKKUOHvLxXGBg0JML/7Wc0iEYDDfx1uJKqYtLCr5iXs5oOVcYk +TfiMKdXfESoLpqZRCAltfOiiY0Bkoil3l+azVa7HbYkxPT+bg1OH1/gIbnPxhD6nN1cgdoJJs0Uk +Vbpwet4TTMSmfDVDxsuX/YmKGkd1nQ0onBE67Idho9CRqPn8vBv+mYu5ZfwERUE1PgIv7k5cTZvA +azTdZMBpQS3zwurxMNGil5kD58R+DDBIwd2siOIcbXwfhVCzqYDZivmky/2J8F1Ctv9ZxLXzGXDK +kNO9E9hvvwdVqiOqC29wM/tBLKrekPteEzZJr7Atph5dhTPtKtbjKG9Me0ExyYFC3rin0TJ+HSll +Ery+nc/p1s5kKypR5WXBhg1I8t7QwyGIB+JpZGcHYNH5Dl+2nodp3T1ero/Au6Idd1wyOROcSJBj +Me1dszm7TZ89l8sws3Hg22+/ZdSoUWhp/T039kGDaPy3L6OBBv4wKithxKepNMkayty0Asrem8xX +WgWcE5/nvfqRrO/aDS2JhINVTTD46DlHXwuJqvfEo/1GAr68SqDONZ6+0Ofy1zJSS8sY+4kEga8H +25c9oTpTzZjRpnh52rJu3RKycwyh3hex4QPqh4ahbV3C0DuW9EudS6FQjycVtwlVhHO3zw6aDDmN +d5yEW3n1fNZZiYWxiFH2ZnyvDKOD0VXaWORS+lpM83vtEW15xdeyr7lU25mRLb+jMPgotYpvGHLa +nISuZ4lrFIvyqh2q88W4mjqx1aqeEGkJOWOd2FBxle17lJjiTkDJOhrX2xIgKOFMuBCZ0/c0Orme +60p7mi+Zy/6mphTKq1E/vgORkRjJBXSwCeWq9AuKyp1w65LCjNYLKcusQ7p/LJ5yd5J8krkVcIvB +DgVY6b5m30YRSU+q8Q8MYunSpQQFBfHiBRw7BtOn/7dnw5/HnyoaLVu2/I8DZ2ZmvtXAb0ODaDTw +dyIpRcGsFV+x6e4a7C2cOTI0gm/L1xAmb0+ORw9uu7gwXtucjzequX64klVyG6Tmr+i9YA1NXJ9i +qSjg/Boxh5KLCOimQ7fxlmw6Vc/jXcUE+Dvw4fvV7N69iORkFxD4IxRLUXXphU6rVHzydZma9CHi +inakkkK76jCetU3CYOouQs6pyb2m5qMuauRmasY11iejtjOtjO8TZvWIqlIBdhntMN+Rz9yKGcTL ++jOs+XpqQvZSypcMPWlPYqcE4prEUn/VBvX5UlxNHdlqVU87WSlPRzuwvvQ60XuVWAu9aVO8DjeV +CT7CMo53BYlZEganNvNQ3xun5V+xx0pEVW016lupsGEj9oa2eFt24uKrL5EaahMaGseU1t+RdcAF +vSsjsBWbciTwCEU+WYxplkPJEzk7d8t4XK5kxIiRzJs3DwcHRy5cgHXr4NIlGD0ali0Dyd9zb9+f +Kxo5OTn/8R+dnZ3fauC3oUE0Gvg7UF0N/adfxDFvBMtTi3k+cRqfcI0CZQFdtQcR1bUz1kIRR140 +phL7++cAACAASURBVPzTHHZXanFa4ELY6Lk0H5FFoPAaV84bc2ZlOXXWSj6YrcWFqsacnp+FtYEF +c2ZVkZk5lujogdQp3UBpAq3moN19ORYyEV8l9KDRsw85p59IyzJvqhxyKZ+5hp7PK5Ae0eKTjiqe +2ioY10SH/JpOWJrl08syjVoZGNxsQ+PYYpYUTOegLIIBTbYjDNtOvtY0hp1sSnLYWeJcYlFctUZ1 +vpTmpg5sNpcTUl/Jk1HWrHtzi5g4FQ5aAbQuWo2HWpfmokoO91FhKT6B4vQO8h07YbzkE+IMFNTV +VMK5sxC9ixbWzbGx7MPlR9NRN6tiSMB6+jTfyaP1nXF+1ptaYylH2h3B1P0lA1tkc+OIDtFnylDr +GTNjxkw+/PBDQJ/YWFi/HpRKmDYNIiLgb5rK+JEGe6qBBv5HOX66lsVrZ7HsyUY8de3ZNyiCr+Xr +GCwbwLmATuTY2jAPO3rOLSP+hop1dS7YuJ8ifMFx2pjepLhQyMXZdZwrKCNisha6Ae5sXZaN7IGA +DybqY2vjwfr13/Cq0ArqmyG0O4Vw+CC0JfV8dt4L/9vzuGyYhm2RJYZGInJmrKCbIBed7Tp801bJ +ORc5IxtJEMjbUW9Sy2CLVNRKNdz0wPOglFVPJ7BL9gE9HeMw6rCRp7rjGHbak4tBZ4lzjUV+3QrV +uVKam9izyVxOe3UN94ebse51Bnv3q2gqCceraDk+iGikVc3B/vU4yw9QcmYPVT7D4Ov3OaJdRX1F +GRw9iODYSQIcfKg3G0363ZHoBuQyxW8x7gbJ5ESOpGVJex45PyI+6Cz+TfNp6/iME5v1OJpWgUvz +FixevJgePXrw4oWQDRsgOhqCg+Gjj6BDB/ibFrX9Ce9ENK5evcpHH33EgwcPkMvlKJVKDAwMqKys +fKuB34YG0WjgfxWpFPpNjif4ySimZ1aTOWEaM1WpFIre4Gs8iiPt2+MpEBNz0YbHywrZKDfiiY6E +3rPm0zj4GU1VT0hZr8uhM29oFa5Dz/ct2HxSSfbeYkLb2xExUknU1mVcvdYE1L4I9Z+jGhKKjl0+ +w27b0id1IVnCSuRlVbiJXHgweQXBLW5js16P9Y0U7PaW08tWG2dhK/KN9BludhGJSIXsZmPanhCx +4c4QNtd+TEfrk9h2XMNDkyEMP9WGK20TiW0Ri/y6Bapz5TQ3sWWzaS0hwjruDDVi7ctMDhxS4Sbp +hVfJAvxQYqYj49DAOtxLd/E86RiCzpMo/mgoyaJKlCUFEBON8PtrhDn480p/KllPOmHT4TZf+s1F +lP+C8t3jaFXbkvMtL3Az8BoDmr5Et7aIPVsE3HglpXuPXixZsoTmzd1JSdFYUKmp8N57MHkyNG78 +354N7553IhqtW7dm3759DBkyhFu3brF7924eP37M0qVL32rgt6FBNBr4X0OthrjDNSzZNps9GRsx +btGajSF+bJHvZqB8CCdCe1JlaMhWRSNcp+ez75mIaKU7rbuso+3H1wiSXOF6qjEJS8spN1XwwSwJ +l2WNiJ//FDszc2bPqOb776ezb19HlOrWIFBB5wHo+ibRJs+A91M+orbSlWe1D/FXBHB3+AZadD2H +204djivrWByqxN9cQqC+Gw/17RhpfA5jXQUVaTYEnDVm15VurJXPwN/0Iq6dlnPHshvDzrTnulcy +MV6x1F03QXWugubGtmwyldFeq560wTqsefaAI8fUeEoG41k6hyBq0daXc2RQDT4vtnL3UjIGw77k +8ehu3BBUoMrPgU2b0M5+Qah9CHeVMygsaoFnxyQ+C5hPQbIB4nMRNMKK4wHHedP6AcPdn5JzXc3u +/dUU1Yv5cPIUZsyYgURixu7dGgtKJNJEFSNHwt+0Kd+v4p2JRlpaGl5eXj8mv729vbl9+/ZbDfyf +SEhI4OOPP0apVDJhwgRmzJjxrxfdIBoN/A8hlUKfqWfxzhnO1zdquDbmQ6ZJzmBeb4Gx4yAS2/rQ +Va3LyoMGXNpRzRqFDQLrR3RdshWvRrepL5OS8pWKxBclDJ0owTjYjS2LnyF/KmTaFAnaklA2bJhO +aUUTUFmD52J0en6DpUzMjLMDsHk+lOvCVAJlwTwJP4T12AO0PSriSm49szqrcDIV08vMnrs6LRhi +dAEbQyklmaYEnrfjyNkglsvn4GF4G9+Oi7llH8iQ+K6kt0hht08MsuvGcK4KNyNrNhnLCNFVcWOA +mDVZjzl+Uo2P1lhalH9Oe6pQGCs5OaCcNo8iuXn9JuaT53Gtlx+PqUSd/RDWrsW4SoGfTSeulX5N +jdiIjqFxjPP5jqydbbF/NAAMFBwNPoKx5zN6umZzcY8OcRfKMbN1YO7ceYwcOZKcHDEbNsDu3RAW +pslXhIb+v2NB/Sf+iHen+JdO0NfXp66ujlatWvHll19iY2Pzp76wlUolU6dOJTk5GXt7e9q2bUuf +Pn1wd3f/08ZsoIE/A7UatsdWsnvnZNY+3I+lkxeLPgwkShTN0LoI9vTogVCiTfxzJ/g8j7mVYs4J +GtH5gwW4Db6HN7dJ2mbIocMluAdLmDXPie2nFWRHPKZbFyv6TNZnw/rl3H3QFJRuCKyTEY9wQVun +lk/Ot8Uv4yu+176KaV0t9h5q8j6JoHtqLdnLBPToqkDcWsiHdpY8ELXB2fAK4SZnKHmiR9P9rcg5 +4kmIYi5OOjmM6RXBDWd3GiXMo7LuHJ+MGIf0hgEsEeBmqMsmexUhhlKu9IVBj55y5js1bbWmEFEz +mQ6UU2pRztHeb2h9ezXKPc95PmMRad9+y2tVFerbKbBmLfYSU1ysBnC1ZCYXhTJG9N5Ax0bRZEcO +Rrx3LToOT9kzcCc+7s8YYJrH4U0Sxj6UERDUmrMXluHnF0BiIvTtCzduwPjxkJ4OjRr9t2fB349f +jDRycnKwtrZGLpezevVqKisrmTx5Mi4uLn/KBV29epV58+aRkJAA8KMNNnPmzH9edEOk0cBfnMpK +GPnxaTpnDiUiS0XKB9P4QnEAaxxQNRvOLXd3xsmNmbpUzvGrAjbIm9LE6yAh884QaHSFe7d1OTOv +itcGdXwwQ8IthRMn5j3D2caCGZ/XcObMHI6fCEGt8kGgm496SCg6DjkMy3Cid+pCHgheYV5mjI6N +lDczl9Mlr5iyY1p82klJgbWK0c765KiCCDHKwMPsDSUvJPhcbsGt2MbMrV+AkVYFncPmccPNin5J +ETxyPM8u/xiqb+pCSjWuBpZsNJQSaiLiQq961jzIITEBArS+wL1qLJ0oJddOwOVuubS6uoIbL2VY +zF3ECU8LyhXVcOUCbNyMu0VT9M1HkvFoEga+eUwJWIRDfSpFO97Du8abyx6XuRlwhV7uz1C9rmDP +TiWPy+oZOSqC+fPnY2Bgx65dGgtKT08TVQwfDrq6/+0Z8Nfkb7l66tChQ5w9e5aoqCgAYmNjuX79 +OpGRkT+e0yAaDfxVUathw45Sdhz8kKjMI2h7h7HI05Rzqgt0F41mb+duWCLicLo9OXOLiKw1JU9P +QY9vVuDZNgO96mKSvoHTj4oZPE6CaUhztix6ivqlkI+nCZDJ+rFly0SqpS0BMXQajm6b4/i9NGJ8 +yheUV1sgra6gsa4N2Z8toYP2E4jW5usAJTed64lorE2FKpgWBln4WeZSXiii2fcteb7Dlq/rF6AW +Cundfi7XW2jR5/z7PLW+QHRgDFVpEkiW4mpgySaDakIsJCR3lbH6bh4XUwQEir6lRc1gOlHCI2cB +aeHZuF9YSkaNCYYL5nLMWZtaWSXEn4TYONrYeVNlOJmsrP44tMvgs6BvUdwtR31mHE2V9pxqe5LC +tpn093jMg0QhsScrUeuZMGPGTCZPnkxuri7r18OePdCpkyZfERz8+y0ohVLB6azTnHpyiq29tyIU +CP/QefFX4U+1pwYPHszBgwfx9PT8SZP1P3Nz369t6D537twffw8LCyMsLOxPuZ4GGvi1FBfDuJmJ +BDwcwIVMJYljPmKKbiz+tSGYtFlFrKM9c8st6TirlOinlexTtSC4zxo6TL1MG+ENzscacmBvGY39 +xMzc6cSuU3Vkj3lI397mtJ9oR+S6JTzNcQOlPbRYjW7vL7CSifnscATGL7rwQHmPAFULHo6Pwdzr +Ki5bdVjdTMzRYbUMcpTgKgjERKeYflYpVFcIMDrZEtUWcyYqFlCmNmdQ8FzSvKoxv/gRnqpLfNNv +IpVpIlhWj6u+MRutlLS3VhDfRU7X9BdcWSOmnWA579f2pBPFpDcv5YD/PZySlqK46M69eZs5a6Oi +vqIEtm1FFJ9EoEMgzxqfJO21Hz4tE9k2PJD8w43QXTIWEx0hx8KOkNnqIWGNs0naocu0dZU0c/ck ++uBSunTpRkKCgP79ISMDJk6EzExwcPj9z+xp6VO2pW8j+k40LmYuTPCZgEqt+tuIxoULF7hw4cIf ++pn/NtLIz8/Hzs6OFy9e/ESZBAIBjf4ks/DatWvMnTv3R3tqyZIlCIXCf0mGN0QaDfyVUKth9dY3 +pOwbybo756nyDWNJC2NSdC4RojOJk2HheNQJ2XnMjCvRtaxR2KFnn0bHpTEE2l3i2SMtznxTxTNR +LR98ISFd5cSp+c9o3sSC6dMUHDywiKSUQFC5g+UVtEb0QEe3ho/PBdPq9nRSxVcJkgaR0/kozoP3 +4xIjIka3nk1+SjrbSGii3RL0FHS3ykReC8YX3WGzEV/VLeCF0oXh/vPJ9M0hLHUmrw2/Z2dIDBUZ +QkiuxVXPnI161YTY6XIivJw1t95w66oO7dXf4VkXRpigmFQvEa88b2BxdgXPHMOomTmNc6YyVEWv +YXsU2hn38bMNI1M6n2q1DV1C9jLMcyXPt3bFPb8rr2xekhAYT6uWj3EQvuZglJCbuTJ69OrD0qVL +sbZ2ZedO2LABjI01FtTQoaCj8/ueV219LUcfHiUqPYp7b+4R4RXBBN8JuFv+/fOm78SemjFjBsuW +LfvFY38U9fX1uLm5kZKSgp2dHX5+fsTFxf1LIrxBNBr4q/D6NYyfk8DI6/3pUqhF3ITxzFPtJkjR +hRvtBlNuYsLmAntspheyudSIq0ILuk1bilfvq9jUvSDxWzHHM4voN0oLs7Dm7Fj0FEGhmC8/U/Hy +5Xvs3DmCOrk3aJciGBSOdqNHDEtvQs/L87mhvotHtTu1LR8gmLaBgKRaEvLVLAxV42uhRYBRUyq0 +9elrmYZArUZ8qTFGW0z4puYbMuVtGOm7mCz/TPxuzKZE+yo7wmIpz1BDch2uemZs0K2ivaMBR9oX +s+ZGCZk3DWhfvw4vRVtCBCWktBVR1eQikoQ1FPoO5tXU0dwwqEb94hmsj8S4oJwWNj1IezUPga2S +UcHraWuyn4JtEfhUtuWG23VuBF6ii9dDKh/I2BNXR3G9mMlTpjFjxgzy801Yvx727YNu3TRiERDw ++y2o+2/usy19G7F3Y/G28WaCzwT6Ne+Htlj7j50Uf2HeiWj4+PiQkZHxL8datmzJ3bt332rg/0R8 +fPyPS27Hjx/PrFmz/uXvDaLRwF+BZZtecfrYaDbd/p5Srw7M8qyiQF1ME+sJJAe0oVu1hEVbxBxM +lLC1vhEebfcQ+M0ZgvQuc/GIIQd2FGPfSkSfyVbEnq4l62glQwcb4enZgnVr5/G6sCWo9SF8LHr+ +cfi9NGVsykxyquUYV+lj6QClny+l/YMibt0SMruTCltTMT2t7CiQ2NLP/CY6YiXKVFtst1gwt3QW +qXUdGOG1gpftvscr/RuqBTfY3iGGsgwlJMtx1TVhg241Ic6GHAh6w5rUMh7fMSVMsYFW9Z74C0pJ +aCdEZR2PIn4L5d0+5P7onjzWqUb98B6sWo2dShcryyFkZn+JsecrprRbhFlBJnXHxuOucCa+9Rny +/dLo1uIBGUe1OJBSiYWdI/PmL2DIkOHEx4uIjIT79+GDDzQ/tra/7xnVyGs4cP8AUelR5JTn8J73 +e4z3HU8T0yZ/7GT4H+FPFY1NmzaxceNGnj59StOmTX88XlVVRXBwMHv27Hmrgd+GBtFo4L/Jixdq +Js85SO97YxmSI2RPxES+1d1FR+Vgzob3RSDRIS7dlpJ5ZayttaLcoIxOizYQ6Hme4hwFp2bX8LBe +yvufSUhTOJKw5Dk+LS2YOE7Izp0ruX6zLagagdsW9PtOxUom5uPEsQhzvSitK6GloTM5ny4irCaL +nNNivuykRGkuZJiDKa+13OhlcgMTXTk1N81put2GhXmfkFTbl2HuaykNSaDZvTnUKTPY1imG0gwF +JCs0YqFTRbsmRsT65bPuciXPH9oQXruJ1qomeAvLOdEB9PWPUJIYi2zULK73DeCVqAZuXYM163A1 +ckRt8gHZWWNwDkzno4C5SL8XYXprJMZibY4HHkWndSZtrZ8Sv02blPtVBASHsHz5clxc/NixQ2NB +WVtroorBg39/4cC0/DS2pW9j//39BDsFM9F3Ij2a9UAs/Pk0rloNt29DfDzMmvX33dPxp4pGRUUF +ZWVlzJw5k2XLlv04kKGhIebm5m816NvSIBoN/LdYtimHu/sG8F16JukdezPP8RXF2tWYNJ5CRosW +TCzSJ2JuHduzDDmmcqLjoFX4TDyPi+o+ZxZqc+xmMb2GaWEZ6kr0oqdIqnWY8Xk9t29/TNy+gSjr +PcA8De3hXdHWr2Ta+XDc7ozmkfIxfkJvnk1ahb/VdaRxWswJUvLMTs2YxrqUCLzpYHQbO6MaKjIN +cd/pyIqsDzgmG8kgly3Iwg7jlDUHpTST7Z1jKb5TC0n1uOoYsV6nipBmJkT75rH2Ug2vs5wIl23C +T22Lm6iKY11VWKhiyLt0GvmUhZwPb0aFqhrOJ8GW7bSyacUb7c8pyO9M25AExrdeyOs4H1xf9KTE +4g0Jgadx97mDSXUxB3dCVmk9IyPGMH/+fIqKbIiMhIMHoXdvjVi0bfv7nk1FbQV77+4lKj2KUlkp +433G857PezgY/ftMeWGhZgXWrl1QUQFjxsCcOfB3banxzpbcKpVKCgsLqa+v//GYk5PTWw38NjSI +RgPvmuxsNePmxvBh+iQCpMasH9yD7aLDhDOaMx17Y60UsS/BnKsbFaytd8C60SWClx0gzDKZywkG +HNpYhLm7gP5TLNl9vI4XCdW8N0YXa6tQIiM/p6zcB7SkCAZ1Rsc5g2FpbnS9/BV3lU9oLfcmd3A0 +LQLPoLdLzHJ3JRdcVIxoJEEtakUbgyc0MS2nPEuHFjHObEwfzR7Z+/R2jEWrw27M8mYiLn/Iti6x +FN2VQpKSZtqGbJBUEuxmQlSrPCIvyCjLaUa4bDOBahOctKo52kOObcU2nqXdQD5jKSltLKitrYTj +RxAePIq3fTuy5fOokbvSPSSWXs7ryd85EN/yANJd0rgZcJEQnzsUXFWw/5gM9I2ZOesrJkyYxNmz +OkRGQlYWfPihZiWUtfVvfy5qtZrUl6lEpUdx7NExOjftzETfiXRq0unfroCSy+HUKU3RwkuXoF8/ +GDsW2rcH4d9j0dS/5Z2IRmRkJPPmzcPKygqRSPTj8T8zp/FLNIhGA++Sldty+f5AHyJvPuBuYDem +uz3ETO1ApddYnjR2Yl62Cd5fVRFZYsldkS5dv1xJQMdE6vIrODGrlkxpDeM/1iZTYcfZFTkE+1kw +ZLAhmzat4v5DP1CZQuhk9AOj8H9pwajkr8itqsJF2oTK0AtYD9mN0z41W8xU7PVS0s9BgqmkJa76 +eXiaF1L+Uovm+xoTe3EwW2XT6WRzHNOOW9Ar+hi9oudEdY3hzb0qSFLjIjFko3YlQc1N2OSRy/pz +tUhfedFBup526GKmXcvxXlKc8iN5/PQlsq8Wc95dh/ryYoiJQfv7q7Sw68b94oUIzXQYFRyJh+AE +0kPj8ZS5kOSTSJ7/NULc7nF9n4STVytx82jJsmXL8fHpzPbtAjZuBCcnTVQxYMDv+1ZfLC1m953d +bEvfhlKtZILPBMZ4j8FK3+pnz1erNTvEo6M1iXUPD41QDBwIhoY/nPTwIZw9Cx9//Hunyl+edyIa +TZs25caNG/91S+r/0iAaDbwL7j9QMXXOGqbe/4q2lSasHdiNbQZHCZZ8SGJoJ7wqRGzcps2hJD12 +KBvh124HfrNP4S26yYnvdDl6qYSuA8TYd2hK9MIcDFT6fPFZPSkp33LydC/Uyibguhv9vhOxlomY +evZ9FHlOGMr00XMvgA9X45VUw2EprA1UEWotwVXfFSu9CvwsX1LxRkjTg005Gd+DdbUzCTQ/j2P4 +GoRVH2D6upCt3XZTcL8CktQ0kxiwQVJBQAtT1rvlsiFFjqowgHDpKsIQItGTc7pnJY5PV/CkVE3p +nG+46qRGVZAHGzdh9OwVDtYDePRiLmZub3g/aDGGj3PRvzIGK4EBJwKOI2l7C1fD55zeJibthYye +ffqxbNkyKiubEhkJR49C//4asfDx+e3PQ6VWcf75eaLSo0jITqC3W28m+k4kxCnk3+7vKijQ2E/R +0VBTo7GfRo/+PxVuCwshLg5iYjQnjxwJixb9bf2pdyIa4eHhJCYm/qX65jaIRgN/Jmo1rInKI2dX +KN/czuX0oMHMMb+MjbAFL/3HU2JmztbbFqi/lrKm1ga5SR6hy7bTyeUkaRe0ObCmBP0mMHCKJbFH +peRdqmXy+1pAXzZvno5U6gVm99AZ3gVtgxKmnu+K/e1eVCmqaWxlSPEnCwm+n8/5J0LmdlTjYS4m +wKQR+rpq2ls9RVopwOZII64c7sLK2q9wN7qDe/hy6hXDsXlRzZYeMeQ/KIIkaCbRZ724Er+Wpqxr ++oJNyfWIS8LpIF1GB+pRGClJ7F6Ew91FPNZy4NUXn3DHSoH66RNYsxabGjV6ZmN59nQ6Lm0ymOQ/ +j6oEG1ye9qHauJyzgadw8buFKK+Ug3uUlNaLmfrRJ3z88RckJxsRGQm5uf+0oCwsfvvzyK/KJ/p2 +NNsztqOvpc9E34mM8hqFqa7pz55fVwcnT2ryFJcv/9N+Cgn5wX6SSuH4cY1QXL0KffpoOjCFh2vK +4f6NeSeiMW7cOJ48eULPnj2R/LCUQSAQ8Omnn77VwG9Dg2g08GeRcUfJxLnf8cXjb3FTOrKohzsX +xTfxMPuIi/7+9H4t5rMVAjbfM+es2prOo1cSMOo0uiX5HJul4GZpNWM/0uGR0oqzq17SMcyMrp0d +WLv2O17k+oFYgbB/d3RcrjHsVkuCL08jr+41rSTNeT5tEWF1mdy9KGJWJxXG5mJ62ViBliGdrB+h +qAPjEw7ciwlnWd03OOjm0DpsCbXiXjhlqdjcYzcvH7+GJCEuYj3Wa1XSxsuUNY1esDlJiWF5H8Jk +39IJGWXmai51ysP25nyyHAN5PGUM2ca1kHkbVq2hsbY1Ur3pvHk1BP+gBEa0WELx/nB8ikO43+gu +N4JSaO1zk5wkNYcTa7BycGL+gkWEhg5h+3YRmzdDs2aaqKJvXxD/YmnUf6VeVU98VjzbMrZx6cUl +BrcYzATfCbS1a/uzUYVaDWlp/7SfvLw0QjFgwA/d+FQquHBBIxTHjmk2fIwapVEUff0/YOb8b/BO +qtw6OTnh5OSEXC5HLpe/1WANNPBXRamENdvyebivHQk380jsOZhujsl4CEyoC93GbbEuZ44ak75F +yDCFI02bJTB26SFCjJI5tc6AQ0mldOgtZlSnZkQtzMFCUsmq5SYcObycTz/vAioraD8d/eANBOZY +M2TLal5WlWGmNKNy1H6sHOchPC5gVJiQyv4CRjYyRiGyJ8zyASLUSM5YUbAlhM9q52IoqaRfp4+o +1g/B6lEvtvSIIVf9EsF6Ec3E+qzXrsDb15CV9hUMSyjD6sYI+su+oDPVvLSRcSo0G7PUeVTIB3Fx +5SYKdGRwJQHBhs24mnvwWm8XudV+9GgdQ4egdlQdHU6jc9/yzCuZPQMW4N3kNvJd2iyJqSYwJJTz +qd+hVPoSGalpbjR4sGbpqpfXb38Oz8uesz1jOztv78TRyJGJvhOJ7R+Lobbhz57/+jXExmrEorZW +Yz/dugU/dqO+d08jFHv3gqWlJqJYsgRsbH7vVPl/nl9dsLCmpgb9v4giN0QaDfyR3EhT8OWc2cx7 +sAZdnWYs6ejMZaO7ONh/wR3Plkx5rEPHr+tZW2JNtkRIlzmr6RB8jMfXVOxbXobYQc2AKdbsP17N +69Q6pk0WUVw8gV27P0AhbwbN4jDoOw47qZhJCZOpeGVAc7krZV1P0zRsH+IDAub7qLjnAKOcdRGK +nAkzf4SeRIn6vBnl6wJYKJsPIgGdghdQZtIS14dmbO0RQ072CwSJYpqKdFgvrsCrtRkrrHPZHq/C +ofZ9Qmun0IkKHjsJeeB/F4PLS8ju/iHXB/hTSQ3En0a4ew+udqE8r1yMSN+CEcHraFp6Ge1Lo3FU +mnPK7wSiwFRseMGpaCFPS+qJGDuOOXPmc+GCJZGRmtTA5MmakuRmZr/t/tfV13H88XG2pW8j/XU6 +I1uOZILvBFpat/zZ82tr4cQJjf2UmqqJJsaOhXbtfthfUVCgEYmYGE1BsJEjNWLh4fHWc+V/nXdi +T6WmpjJhwgSqqqp4+fIld+7cYcuWLWzcuPGtBn4bGkSjgT+C+npYsjEH6d4QPs8sICpiKMtMTtNK +PJRroQOwl4rZHqvHoWOG7FE5ENJ5KwGfHsWu5gGHvhKQ+rqK0ZO1yVZbcnbtK3p1M6JN65asWbOM +4mJfMHuMztAu6Bq+YfK5PhhlBqCr0MWsVQE6I9dgd7yWNfYQ76ZmiJMEA61mtDN9gqmeHPl1Q+pX ++LGgeh6VmNIzYD6lNk40v+vA1h67ef7sOYKzYlxEOqwTVuDhb8Zys1yiE6BJ3SeE1o2lI2WkNxOR +63UdrqwlZ8RsUju7UCergAP7kcQn4WTfl2f5CzF3rmKC3xK002tp9Kg/Sn0ZCYEncPS/St3DSg4d +liMyMGb2nG/p3ft9du6UsGWL5j08bRr06vXb0wEPix6yLX0bMZkxeFh5MNF3IgPcB6Aj/mlR5HoC +VAAAIABJREFUKbUabt7URBT792sS6WPGaARDXx9NlvvYMY1QXL+usZ0iIjRdmH7FOtrycs2/n05S +ciBW1LC57z99xi+Jhp+fH4cOHaJv374/lhPx8PDg/v37bzXw29AgGg28Lddu1TJ17kzmP9qIgZYr +X3bWo1irHlGLj8hu3IjlqfoYLlGzSuqAtlkW7VZup7PjMeK36rH/ZDEh3cQ4dWpM7KIc7E0NmPS+ +DtHRkWTc7ghiFaJ+/dBudonhN33wvTSOCkUlzR0NqJm0iBbfvyFaCDt8oIe9GFttF9oYv8DeWIo0 +Uw/J0tYsLP2GPGVj+rVdSGkjfdzvuBHVbTfPcp79H7Eowy3AnGVGucScFeNeN5v2ikGEU0qqh5gi +l3PIru/i+aQFXA+0RFn6BrZvx/DOI0wsR/LyxVe4trrHWO+FyM40x7swjGz7x1wPSsKt1RWenBQS +f6UG95ZeLFu+El3dcNavF5CQAMOGwdSp0KLFb7vvUoWUg/cPEpUeRXZpNmO9xzLeZzzNzJv97Pn5 ++f+0n+RyTUQREfFDcyWlEs6d0wjFyZMQFKT5Y58+v6qna3W1JmLZuVfJ95cEaPtWIOlYTO6MpuhK +/p4bNt5JTgN+upFP/FuzWg008Behrg6+WXkXwYleJGYWEjVoKEtsT+GjPZ6c0O4E5AnZ8LGIzfeN +uIA53SetInzwPl5n1DD7cwUqyzImLbfj6MlqLs55ycfTtHj86DM++TQCldIWQr5AP3gNIc/s6bVx +JW+qy3EwNkD3w3U0zX7CsbMCJrdTE2ilxftGzrjrv6Gp2UOqsyXwmT9rX33FQ4U3g30X0aSZAuvb +vpy0iWF33V4EW7RwFemzVlxO0yAdlurXEHdWiZd8OVPru9FOUMoFnwpO252h5G48T0MXkjFlM+q8 +FzDzCyzf1IDhJIpqT9DSLoGpgb2QnuiBZ9oUvve4yMFei3C2zaBgl4T4uFp69RtA+t3lXLvmzIwZ +mm/jU6bAxo1gYvLb7nvG6wyi0qPYd28fgY6BfBb4Gb1ce6El+umqzNpazeKm6Gi4dg0GDYKoKI0m +CARo6qF/8UOewtZWIxQrVvyq3YEyGZw+rRGKc8kCtL2qUIUVMnKekIgm5oSYuCD6u4YZfxC/KhF+ +5coVAORyOevWrWtovdrA/yQ3MmR8/flEvru3j2xnHzqOM6FK/zF6Ppu4ZmbFztMGPIuUMLLeCQ/P +E3ywcD/upHLwEyEXcyoZ9YE2T9VWrPziNYP669F4UldWr5pPdXULcDmEQd8xONaIGRc3k8p8MbZa +1uh8cJhGyvnkJQro2FFAkzZi3je3w1mvmhYWWVS9FCOe70NU1gxu1rVnaMtlOHjuwyYtkNMWu9nt +dhThVjHNhPqsE5XjFKTNEp0aDicJ8FWs51NlCH6CMhIDyog3OsirnNs87j2HR9M7weMH8MFaHDCl +QjiLsrpu9Gwdg3/znmhdHE6Tq59xpu1JXgbtxKD6Bdf3qEms12Lax5+xY/jn7N5tQPv2Gito3jzo +3v237ZiuqK0g7l4cUelRFEuLGe8znjuT7uBo7PiTc9Vqjau0axccOAC+vpqo4vDhH4KG/HxY+UOe +orxck6dIToZf8S6qq9Ps2du5V0lCvABt92rqQwsZ9CWMcTUnzMSF7NInHLq7gQXPz5MYkYhI+Pde +evs2/KI9VVRUxPTp00lOTkatVtOlSxfWrVv3X93s12BPNfBbkMngkyW3sEgYwPtZZSwb1pVYo3N4 +Gk3jamAogx6KGLJIxKoCBwq1ZXRYsJZuPvtI2SVh3+FSAjoKcezYhH1LntPUQZ+RIyzYtHEzT58G +g9lTdAZ3Q9/oNe8nDUb3njtNaIR84HE8nI7yNFnA7A5qJGYi+tqbYSUR4mtdQHWREJM1HkTe+ZQL +sp4McV+NzPsJbhlh7OwYy5O8xwjPauEilLBWUIFdsDGLxfkcTzHFX7GGcJU33sJyTrdTIxbuIKeq +jHvTp5NrrYK0GwjWRuJo1IKCmoWItVwYEbAOh9zH2D/oj5aWkoTAk1gEXKD8ppQT8TJsHJ1YsGgZ +1tYD2bBBSHKyZkXqlCng5vbr7/U/ynpsy9jG0YdH6dSkExN8J9C5SeeffRG/eqXRgehozarYf9hP +jo5o/KMjRzQnpKVpEhijRv2qeh8KBaSkQPReJSdPCBA3rUERVkif/mrGupvR0dSUrJJHHLx/kP33 +91NYU4iFrgXlsnJyP83925ZLfyc5jStXrhAcHPyLx94lDaLRwK8l/U4dH80Yw+rMwxTYtmZ6SCGm +2t48CxqHtkqfqJ3anDxjxkGVHZ16baL9tL3IHr8idqEUmXE9/Sdbc/xEFSX3VHw8TcSlSytISh4E +YiGiPoPQcU1h+HV/XC73xVhhjFHYA2zbb0V2op6vA9UU2AgZ5qSHuZYR/tavqK0UYLC5OdsuT+WM +dCiDmm5E6XcDl/Ru7OoQy+P8h/8iFhbtDFmsLiT+gg0hikg6qF1wE1VyKqwebekGsnSNyZg0imJD +OZw/h3DbDhysQskrXIqlnZoxPsuQXNOlVX5ncq2fcT3oLHaeF7l/SMT3d6S0Cwtn0aKV3L3bishI +jcBOnapJMhsZ/fr7/HNlPUa3Go21wU8tI5lMk3TetQtu3NDYT2PHQmAgCJT1mrd9TIymQFRIiEZF +evf+xcbfSiVcvAi79io5chSE9rXIQwvoPkDJey3N6GxqSlbxAw49OMT++/spkhZhpmtGfkU+vgJf +Qh+EEnDdjx6PeiEUN+Q0/u1n/J5+Gj937F3SIBoN/BKVlTB9bhItz0UwIKeOpQM7sM/qe5xsZnCv +pS9fXBLjtEyHVbWOmNrepf2KrfgZJ3BwvoiUR1UMG6/NU5U5l6IKGDlMB13dEWzfPos6uQMEzUE/ +ZAWhT50Ij/8AasQ0dlOhNWIRxvFVLGkON5wEDGskwVrLikCbXFR1oLOzCXvjJ3NYOpa+jXYgCjhP +k8yexLbfy8OCewgTJbigxVphJUbBBiyuLyL5eyc6KNbTCTsctWo43UGGTskqHjq1JG10N6pFUjhx +Aq3Dx7Gw7s/rlwto3iKb4c1WoExpQ5syb641T+V5cArmJmlc2C3mRYmS0eMmMmHCPOLizNmxA/z9 +NaugOnf+9RaUSq3i3PNzbEvf9otlPdRqTX4iOlpT0bZtW41Q9OsHujpquHNHIxRxcZr+rRERmmy7 +peV/vgaVZtntrjglBw6C2qIORWghnforGOdjSldTU54U3+PQg0McuH+AUlkpJjomvK58jZ/aj/aZ +7Wl7yxOH4c8ReB5BavwA/+4lCIV/nQoYfyR/aiL86tWrpKamUlRUxKpVq34cqKqqCpVK9VaDNtDA +n0n6HQVLpvdmZUYyp4JDCez0AFs9fWqDYlCXaHHySy02ZdgQLTCg22er6NF9B1f2C5gSJ6N1iIDB +Xzcm7rtcWrpW880cLyLXbaGw0AdcjmLQxwPnajHDd81EVahLM0sLqj9agNOtXNbfFXCkMwxwFDNZ +x4FgyxxE5CKMc+T0vonESifT3X4fQ3qOwOlBb+KMqtjuOhvRbglu6LNaUIFeO30W18q4dN6Rzoo9 +rMQEM+1a4ju85mH+Ch7bdyPto8+R11bArg3oXbmJjul7lMmzaGJ1jkmuY5Fc6UXze++R6BvPseBd +qIpekry7Hh1DE2Z9PQ8Xlwls2qRFx46aiOLqVXBx+fX3N78qn50ZO9mesR1DbUMm+k5kU89NP1vW +Iy/vn/YTaITix77eeXkQ+UOeoqpKYz2dOwfNm//H8f+x/HZ3nIq4A2rkenIUoYWE7pQzoa0J3c0c +eVKUycE7O/n8/gEq5ZUYaRtRUFlAoDKQkCsh+D12x3bEfdQDj1E9YTGCB2pMbpphYmKHoIsa/p6B +xh/Cv400Ll68yPnz59myZQuTJk368bihoSG9e/emWbOfXyL3LmiINBr4OcrKYMLXp/G9MYbeL8TM +HuTBLcNXGLp8Sa6jM6uPavFquzFb651o3foIYXO3o53/gN3za6nQrqf/JAtOHK2i5qWQaVMkHD2y +lZu3eoDpM3QH9cTA8BXj4oej/9gFL70mlI9fgdfLO+yVwqa2AjrbinHTsyPIMg89LSWqU1akbBvP +jppPCLc+iVVIHLaP+3LQ7yCZxRmIfogsVgsqEbfTZUl1GTdutKJr/Vq6oYNET05yhyJEL5aT2Xks +d7o0RVlSAJu3Yvr8DQrt6chKR9LTPxbvqovY3u+NoVDI2YCT6AYkUnCxluRLMjxatWL+gtW8eBHK ++vWab+dTp2q+zBsY/Lp7+4+yHlHpUXyf+z1DWgxhgu8E2ti1+UlUIZVq7KfoaM3u7CFDNGLh7w+C +6ipNdjsmRtP1aOBAzYUEB//HEEf9j2AkTkXMPhVSgRJFWCFBfWuZGGRMLzMzHr+5/aP1JFVI0Zfo +U1RVRHB9MO2utSPgdTMsh99E1eQkNUbPMM0AwzeW1JkJSW3biGvmI7mnaM6FgNB/26zpf513Yk/l +5OTg7OxMVVUVoBGN/zYNotHA/58r12tZNnsAqzOSOOfbka+803EyHsXtwJ50uScgYrGElcVOVOmV +02nJGkKaHOTwEiFn71Qz+D0dXtQZcWVvCRPfk1Bc/DkHDkxBKdJC3HsY2q5JDL8SgnNqJ5qJnJGO +iKaVOoXEp7AkVICvlYjWhnb4mxdgpidHft6Eq2vHsqXmSwLMLtAoZAcWOT054nOMO6XpP4iFmNWC +SlTB2iwpryIzPZCeyhV0R0CdsZJL7V+ier6G9MHTeRRoqem7vW49ltXaVNR9g0Tgz5DW67F+Ukyr +vM68McvjWlA8Bs3PcTtOyL3ndfQZMIgpU1Zw9Kgju3ZpdkxPmwYdOvz6znTPyp6xI2MHO2/vxMnY +iQk+ExjqORQDyb+qjVr9g020Cw4dAj8/jVD07Qu6WvWQlKQRijNnIDRUIxS9eoHOTzfy/V8ePIDY +OBXRcSoqalXUhxbi11fGhBAj+lqY87gwnYMPNMnsuvo69LT0KK4uJrQulOArwQTWOmE26BKKRgnU +6uZjdkOAfqUVFdb1XPTz55rBQNJeOdHmkgr/szXYPxXQs6wr2rq/s2XgX5x3Ihp3795l9OjRlJSU +AGBpacmuXbvw9PR8q4HfhgbRaOAflJSomfj5LgZem0qTSjO+6dWITOtq1B4zUehZsnGHmLMnrDmu +tqHz0I30HLeR2ydkxO4qp1WQAOdQew6uzCOwrT6tWweyPnIdlVWNIfgb9NutoMOTpgTFj8ZSboVu +z+9p5ryH29dUfNNBgK25iA4WlvgYl2NrLEN2U4/MJaPZUDkbT6N03NtvxDi/Cyc9T5FRnqYRC7WI +1cIqZEFaLC2SknW/C73r59EDBcUWam4EZSHNiSJt3Jc8b6EH9+8iWBuJpcSF4qIlWFkaM6zFSvRv +2dC2uA3pLjd5FpyIWDeN8zECapRiPvp0Bt7enxEVpcfVq/Dee5oSHz/WY/oF6urrOPboGNsytpHx +OoNRXqMY7zP+Z8t65OZqtGDXLs2O8LFjNS6TvZ0aMjL+madwdtYIxdChv1jqNisL9sSp2LlPRVGp +GmVoIT69pUzoYEg/CzOeFKb9GFHUq+rRFmlTVlNGuDScoEuBBOhaYdo7hTrHZBSiMsyvC9Gts+S1 +g4LzbXpyVdKdp48sCD+nwDdFhlW+FrlWOZh006dDD3NsBvf6zfPwf4V3IhqBgYEsXryY8PBwAC5c +uMDs2bNJTU19q4HfhgbRaAAgPqWK2Pn9WHnzImv7dGFj42s0MpvOfd8QPrgIrt8ZslrWGAenG4Qv +j8SmOpXoBXKKBfX0nWjBycMVCKvETBxvxPbtsWRlhUCzoxj0HkuzCh36HfsQgzJTGrctxix0DYXn +ZHzdXoDSQkQ/O0M89BU0MqtG+lBC1tzhrCv9Gme9bHxC1qBfGsoZt0QyKm4hTtTCRS1ilbCaiiAR +S/NrefV4IH2UM+iBlOd2Qu62vkNJ4TFuvT+dAkcxXEtFuDkKM+N2lOQtoblrAX1t1mNwK5CWVc4k +eydS1S6B6uevSDxZh72TE199u5Kysn5s2CBAS0sTVYwc+as2RwOash5R6VHEZMbQ0qolE30n0t+9 +/0/KekilmpWwu3ZpGhv9w37y8wPBy1xNA4vYWM0yqYgIzUW4uv7HsV+8gD37VOzYq+LVK1CFvsGz +Vw0TOuszwNKMrMJbHLx/kAP3D6BGjVggpkpWRXhVOMEXAgmwNcKoSwIyh4tQV4NZmhhtpTlPXOCC +1zCuqttTc8uQDim1tLpYj6hazpumBTj3NqKdcxW1hw5geO0aOUIhrqWliH8hAvpf5Z2IRqtWrbhz +584vHnuXNIjG/9uUlqoZNn0rgzM/waPEhsn99Kk2tqfIfyo25bosWqFF1H1H7ookdJ+xgq5B2zm8 +XER8WhUDRuuQK9Xn5rEKJr8v4fbt70hKGoXa7AW6A/tgop9HxImxmD5zxqOZNuKBCxGeK2W+r4Cn +tgKGOujjrivE1aoCaY6Y3G8Hseb1N5hLigkMXoGu1J/EJudIq7qB+IfIYqWwiuJAEctfKih5GkFf +5Ud0o5L7ziKetLhCvvQmNyeOp9xMBQlnEe87gL7JQCrz5hDsnUp7wVFsH3bEsl6XxICTqNue5nli +HTcyZLQLD2f69LWcPetBbKymJcS0aZqtDL/GgqqR13DwwUG2pW/jadlTxrYay3jf8biY/WtmXK2G +K1c0eYrDhzXLY8eO1VTs0JFXajypmBhNlnvwYI1Y/LiF++d59QriDqjYvlfJ82wB6vZFuPWoZmJ3 +PQZYmpJdePPHiEIoECJEiKxWRueyzgRcaEtgcy302p+i2uEqWqV1mGXqIhIaku5pyCXXCK5J22B0 +WZvwJCkeNwSUU4KsVQ3e3XVpoXqK7MABDLOzyVSrwcAAV5EIfT09JM+fI/gL9Q/6I3knotGvXz9a +t25NREQEarWaPXv2kJaWxtGjR99q4LehQTT+32XP0SIurBzAt/8fe+cZEOWddv3fVIbeq/QmIB1U +sKIiYEWxxRaN0TSTrclmN9lNzKbobrKbnpiIxm4sxG4UEERAUZoiKCjNQq/SBqbd74cxZN0ku8/7 ++MTd7HI+IeD9n7kd58x1znWd63I+H8dP5ZPhF3B0+A2VfuG88aVA6zZ7vtC6EDVhHzN+8y41GU1s +23yXESPBfZwjKe83EDdZgYPDQpI3v8GAYIh0xjIUvqdYkjEN14LRBNk5oFn+Frb5NfzVTUSmByx0 +MSBAYUSwQzvKJhENryTyfs0ryCQaJo3ZgEwVRIZ7DgW9echSDfAWxLwt7qY+Ssw7NdB/6ykStY8R +SyeFvhJqPNOolTaSvyoJpbQf9h9AkZaF2OgJVK1PMzNiL37NZQTejqHbtIVzY48jeKRRuEtEfbuO +Rx9/inHj1rF1qyUFBbB6tX7Rkct3h62/F0UNRWwq3MTesr2McRnD6vDVzPCZ8Z1Yj5s3v+1+ksv1 +UtfSpeBkq4bUVP0PT57Us9Xy5TBjBhj88GBcczPs3a9j024tFWViRGNa8ZzezeoZCuY5WFLdeJF9 +V/exv2w/MokMnU6HZkBDXEsc0WfDGRWpRhF1jB6nQgxva7C8bopObkhWuCvnXJdS0BTA8CwRY1P7 +8Lkq547xLaRjBMbFiLC6lovo+HGEu3cp0+mwsbDAW6lE7OODLCkJZs6k09UfC5t/PA/yU8ZDIY2O +jg5eeeWVwSiR8ePHs27dOiwtv39r1sPAEGn896GjQ2DF6jf4eeHrtJh580qMCiyDuRX9BJFVMla/ +oeDdRg805g3E//ltfOTH+eJ1DY0aNTNW2XHqq3aMRXLmJ7nx6Se7aGrxQzR2HUZj3yb2SgDhp+YS +YOiOdtnHeN4pYJMc9gSKmOUkIcTIgkjHVlRdIppfi+fDq6+gFEyIH/0WUpkHZx3zudh3HlmqHG+d +mLclPdwcJeLtSimS+l+SqFtIjKiDnEAx9Q6HKLdTULx4Apr+LvhiKyYlVfRrX8RAO41FwRuxu64l +qnkUV9yLuT7uOEptEWf2CpiYmfOLF9ej1a5k40YpJib6quKRR/7p3Bugj/XYfWU3m4o20a5s5/Gw +x1kZuvI7sR69vXr5aetWfcfSokX6qiIyQkBUWKAnir17wctLTxQLF8I/SIhob4cDKQKf79JwpUiM +KKod14S7PD7bgAVOllQ35rH/6n4OXD2AXCJHo9UgHhAT1xTHmNwQIsd3Ig0/To9jKaYVOsxumqM0 +kZM+OpxzNgu4dt2V6EwdI9OVONRJuWV7E+tJYiYE90HaMcxyc6nXammUSHA3McFBqUQ8ZQqSxES0 +cQlcvCEm78BtTE/3YtEKM+vHozAY6p76wWv8EGkolUo2btxIZWUlwcHBrFq16v9s5esLL7zAsWPH +kMvleHl58cUXX2Bubg7A+vXr2bJlCxKJhA8++IC4uLjvPugh0vivgSDAJztucyH5EV67VMLL86P4 +2ukGlu4v0WrnzV8+gcxUF05iS9zKj5iV9BeOfqDjxPke5iwxoK5XQdHJPp5+0oC01B0UFEwH34OY +zHgcv3Zj4lNW4j7ghkXSKTylh0hphQ9Hi5jgIGK0iTVRji3oBqBtfQwf5/+BZq0zsyLeQmxiyzmb +K+T15yBLk+OjE7FB2ktlpMBfrxlj2vpbEnXTGCPqJCMcmiz2UjLck6uzg9G1NMAnGzFr0tHTsQ57 +Sy/muX+EzTUPwju8OROcTsvYozSVNZCT2U9waAjP/vxDzp0by549EBenJ4t/ov7cu38CubdzSS5K +5lD5IaZ6TWV12GpiPWPvi/UQBMjO1hPFwYP6DtgVK/SD2Iqmm3qPYudOfT7H8uV6t9vL6wfPvXsX +Dh4S+GyXhqLzYkSRHTgl3OWxOXIWDTOnpvE8+6/uJ+VaCgqpApVahUKtIO5OHGMLAgid0oA4+AS9 +tpWYXxYwa7KkxUrGydFTOW80nZZCOyZlqAnLUiPrVtPs0YD3FBHhlvWoD3+FeUUF1wQBjI3xFosx +NDJClpSEaNYs2vxHk3q0kbqjzXjnaWm3hJIgDUqZBp9aCU+fjcHYeKh76gev8UOksXDhQuRyOePG +jePkyZO4ubnx/vvvP9Bh3yAtLY0pU6YgFov57W9/C8CGDRu4evUqS5YsIT8/n7q6OmJjY7l+/Tri +v+vfHiKN/w50dsL81ev45aW3UMpH8PP4ZixskqgYlciy0+D/niUfDHjgPTybGW9soL3gGls+6yEg +XITzaHsOf9pI4kwDNOrnOZDyK7QWNzGaOx9ro3oeObAGpwZX3MbX4uTzCefKNbwxUUSAnZjJ5pZE +O7YhEQTa3hvNZ5mvUq32JylkPWIbAy6aV5I7kIUsTcZwQcJ6aR9lEVreK7PEof1VEoVxhIvvkjpa +R6PhNi5FjaVyohtUVyL6+GNMB5zprl9PgIeSeJOduFRF4txvRtroo3SHH+XGsX7KK1XMmjefqVPf +Yc+eYZSUwBNPwJNPwrBh//zetfS2sKNkx2Csx5rwNTwa8ih2xnb3/V5tLWzfrje1DQ31FcXSpeBo +2PmtT1FWpq8mli/Xr0n9Aabq7YXDR/REkZclRhx6F9u4DlYmyVjkasatxvPsu7qPg9cOYiQzok/V +h6nalPjaeMaV+RAcV4Uu4BRKizqsCsGo04pqR0NSR87lgjYGca4Zk073E5Qn4q7QRn9QF+HjVbh1 +XEZ84gTi9nbKBQFrMzM8lEoIDkY+dy666dMp7rIj58AdDNK7camBkmCodR7AqkOCT3cHPrNvYDq2 +kH6DS4wafR3x0JzGD1/jh0gjKCiIK1euAKDRaBg5cuSPEh1y8OBBUlJS2LlzJ+vXr0csFvPiiy8C +kJCQwLp164iKirr/QQ+Rxn80tFp4e+M1urfMY2l1E6/OCiXNqwmp/+8x1Nrx1noJW0rdqJSJmPbK +n4l03sbmNzQ0qNQkrLAnLaUVOzM548dF8/lnyXRrjJFNX4GhdxqPHJ+H19VQ/AI1WE5YT1V+L6/E +iLCwETPLzoxo27sopDpak0PZevT3lPRHMT/wz0icBigyvkO2KhNZuhR/pLwp7aM4TM0HJY54db3J +bCEYf0k3J8eoaZBtoTBhFnWh1nCpGPHGzzGURqG8/RpjA0sY2ZdFcN0Y1Iouzo09QpdTKhd26dDo +5Kx+9iWMjX/B558bYmOjryoWLvyHVgGgj/U4XX2a5OJkTlWeYvbw2awJX8M413H3DeD19OjN7K1b +4coVWLxYX1VEBKkQpZ7SE8WpUxAbqyeK6dP1hsb3QKmEEycENu7ScDZNjDiwC6upHTw6X8piNxNu +NZ1jf9l+DlUc0hPFQB/WamumVk5lQq0bAXGlqIdnoDZsxapAjEGfBcWeVpwOWUxR+0gcziqYmNqH +b5mMOqM7GIxSEh3WhUlxJmY5ObRoNDRJJLgZGWGjUiGeNg1JYiJdUZNJzeql5nAjnuc0KA3gUqiW +HoUG71sifHyu4zK3HM2wHFS621haTsXKKgErqzgMDP4HrPwTxY8aI/K3OzN+zP0ZW7ZsYfHixQDU +19ffRxDOzs7U1dX9aGcP4d8Pra0CT6/8JX+48CHHgkYy/ok2rO3H0TdiAr/dq6NzuwM/07owPmEX +f3zqj6Ru7OH5nD5mP6LAoNOMQ8kdrHnMmn37vuIvfw1HNO5VjKP/ytT8UYS98zLhrtYYPPcmvecb +WSsT0ZUoZpGjCWNs+jAz7KB1jz+b9rxEnnIq84f/BX+PExQpmshWZSA7ISUUBW/I+rgQ0sfyYleC +sjfwW7xxk/VyclwTWZKdFMybT5vno3D2LJLHdyOTz0XbfJa4oMN4q7cTXRbBdWd7MpLepaW7mJwj +atzcXPnNuve5cmUmH30kYsYM/XjD6NH//J7VddXxxSV9rIe5gTlrwtfw2czPsFB8u/RCp7tffho/ +Xj8VPnOGgMHli7B1hz6TfPhwvfT02WfwA76lSgWnTumJ4vTXYkQ+PZhNbePZlyUs8TJTMUlXAAAg +AElEQVSmrqmUvaV7GXv8CCZyE7qV3ThpnYi9NIVJrY74TC2kf+4+dHRjVCBFUmBOVkA4WQlLuFod +QPAZMVFvK5l+S8Qtmwocxw4QHNNA2OkTWGRe43qGgNLICDOpFEd7e9yTkmDmLMqM/TlzsA7+2oVn +eQW1AVDjrqItTIxXfwuzxpVjGlVIrzQHIyM/LK0SsLLaiKnpyP/YyuLHwA/eqZKSkvumv5VK5eCf +RSIRXV1d//DCU6dOpbGx8Tvff+utt5g1axYAb775JnK5nCVLlvzgdf4+ouAbrFu3bvDrmJgYYmJi +/uHjGcK/NzQaeOmvl1AdWsDvbvTyTFIYNU5mDIRvwabKgF8vVfBemxcGtrU8u2ER2socfvtYH8ND +IeFJRw5vbmJBkoDM/yPeWr8M/A5i+ot4Auusmfz+84SZuaF48j0MSst5SwWls8QsGmbIOCs1tqZd +tB7z4LNNvyOjZy7zvD9ksW8ql2SdnFWnIzshIVyk4DV5P9mBfSwp8mVkzp94HUesDQY4NaGOo5Kv +KFg6jx7rJXDsGPL1qeh0T6Hoz2ae8xe49u9lVLEP2SOqODDzl9QUNnB5xwATJk3izbc/4quvhrN+ +PTz1FFy7Bg4O/+R+6TScuHGCTUWbyLmVw6IRi9i/YD8RjhH3/Z+prv5WfjIx0Xc/rV8PDsoavUfx +0k69obF8uT5R0NPzB/99Tp/WS08nj4oR3HoxntLGE6lilvgYUt90if1l+5l46iimclO6+rtw07gx +pWASUwascJ+SR9+SHUh6lRhfViAvMOVk6EiyZy6kodidMce0xD+vJvGukkbX2/iM7cZnXDmj0lKR +H2nluk6HtakpNjIZARERyOfNo29iPKeuGVB+sAG3pWrE2mvcDtPR7a6h10CHj08ZMbPL0Thmo6UT +K6t4rKyWYmm5Fbn8u0GIarWaa9euERwc/ECv5X8nnDlzhjNnzvyfXvOfdk/9WNi6dSubNm3i9OnT +KO4N0mzYsAFg0OdISEjgtddeY/Tffdwakqf+s3Drto5frv0Fv724kbThY3h7bBXmrs/T7hTEhr9q +yTjrwRmRJfFrP2BixDts3qClrldN/DIbTqe04+ksw91tKbt2/wmVRS3GiYuwlbYwd88KgrQ+2M7b +h2VDNh/awdeeIhYOkzPeUoSzZT/tZ5w48sGLHL+7lET3zzEdcYUSSQ9Z6nRkGWJCRXL+IFdyOkDN +lqIQJqg2MAdz5EZq0sc1UmGcQfHSmahkavjySxTny1B1/QZ740jm2G3Fo84Lrx5r0kcdoznwECWH ++mhrFViw/BkcHV9lyxZzhg3TS1Dz5v2gCjSI6o5qNhdt5otLX+Bu4c7q8NUsHLHwvliPnh69HbF1 +q96OWLxY71WEuXcgOrBfLz+Vl+vbopYvvzeV990PZ1otnD0LG3eqOXZYjM5BieGUVhYtgKX+Chqb +cthbtpevb3yNqdyUu8q7eKu9mXJ5PFMNjHEcn0uvZyGKRjUWFUZ0GJpxPGI8eWaz6T9nT8xpFaHn +oUvoYMC/mfCwNuxuX8AiO5sOtZpmiQRXhQILQDJzJpLERCpdR5P6dQeqU534XBGo9IYbnmqMe0V4 +6Orwi7uK6chC+iQXMTENuyc5JWBiEopIdL83KggC165dIz09nfT0dLKysvD19eX8+fP/sdtJH0rL +7Y+BkydP8utf/5qsrCxs/iZS4Bsj/OLFi4NGeGVl5XeqjSHS+M+ARgO/eiUN32NL8Os05PnpZjR5 +BNIWsoqkLDEB71nzcb8HAWGnmf/iy+TuvMOxM0pmLFJQWy+ioULL/CRftm/bT0ufGfLpKzFyP8O8 +AwsJbAzEZ3ohdqJ97NDCF8H69tlJFnK8bProKLTm5J9eIKVtDTOct2MZfI5SsZIzGj1ZhIvl/M6g +n1O+GnYURzFV8yZzkKMy05E5ppoymzKuLIpBq+yCLVtQXO9ioOk1glwMmSg6TmhTMGJpPzljDtNg +lUreXhUW5hYsX/M2N28u59AhCYmJerKIiPjH92lAM8DB8oMkFyVzuekyy4KW8Xj44wTafRvlo9Pp +d0ls3apflTpxot6nmDFVhcHpE/qqIi1N33q1fDkkJHwvQ+l0+tTbz3apOXhAhMZyAPnkVuYtEFge +LKe5MZu9ZXs5VXVKTxR9dwlQBTC5OJo4awnWY87S61aKcbUO85sm3DK35FjkTAo0UzA7a87EdCX+ +JVLqjeowDm0lzKMO0+IzWJWVUSMIYGiIh06HaNgwFPPno546ndNtwyg51IBTtgrjHigKF+gwU+PU +qsHX9zLu066htj+LSCIMkoSl5RSkUvPvPL+GhgZOnz5NWloa6enpSKVSpk6dSmxsLFOmTMH2n0Sx +/9TxkyUNHx8fVCoVVlZWgD6q5JNPPgH08tWWLVuQSqW8//77xMfHf+fvD5HGTx8lZQO8/puf8VbO +NjZMHcX+gNsY+axDoXPmD2+I2VLpTb2RisQ/voZxewrJGwfwCRLhEGjJ6S/bWfqIETk5B7hcNg7R ++FcxGvUB0zNiCS2OInRiC3Yun3KiXsNfokSMsxeRYGnICPte7laYk/7HX/Jl47NMdTyAfUgaJdJ+ +stSnkWWKGSmW84Kin2MeGvaWTGGmdh2J6GizhuzRVylyb+fGrFCEpgZEn3+OvNkKzZ3XmehbTXBP +GeOagql1uEHJ2IPUtBZRmKYiJCSEmXM38vXXo6ip0edArVnzT1dFcLXlKslFyewo2UGwfTBrwtcw +x2/OfbEeVVXfyk/m5vqKYsliAfuaPH1FsX8/BAToiWL+/O9d7v1N1Pjnu9Qc2C9iwFCNdHILcxbo +WB4qobUph72lX5JWnTZYUQQrg4m9PIo4FzWmI8/S53wDszIBk0YzLjs4cDJiPqX1UXhnGTDmdD8u +tVJuWlXjFtHCcNMbmORmYtzUxA1BwNrEBEeVCiE6GoN587gzIoYT57V0nWjHv0jgphtUeGswGAA3 +8S38p5RgGlFIv+QyZubRg0RhZOT/nQ+Y3d3dnD17lvT0dNLS0qivr2fSpEnExsYSGxuLt7f3D0rg +/4n4yZLGg2KINH660Ghg9W8PE5LxGAFt1jyZqEbqOIO6kLn8eptA6wFn9grDmDhvG3EJf2DrX5Q0 +9GqIfcSGU1+2EREiRcRrHDvxM4QRezCZ+gsiKzyZfGou4YEirEb9mYKrvbwxUYS3Dcy1NiLcqZee +28ZkvvIcO2//ivE2J3AJP0yxvJ+c/kxkWSJGiw34pULJV646jpUmMlv3IokMcNNBxLmIQvJD5dyc +4Ak3riP6PBlpTyiipt8x0zsD3w4lY5t9Oe+XQ2VUCuXn7lBToSZ+5mK8vP/Mzp0OeHrqq4o5c+Af +jTv1qnrZV7aP5OJkajpqWBm6klVhq+6L9eju1nPB1q16lWnJEj1ZhJpWfTtPIZF8m/v0PUmF30SN +b9ql4cu90CvSIJncwqz5WpZHiGhvzubL0j1k1GRgJjfjrvIu4T3hxF0JJ9a3G0X4WZR2t7C8JELe +YU6umydpgYu4WRZERJaIUZlqjDq1NA+rISC0DpfuS1idz6VnYIAWsRgXAwNMZDIkiYkwM5FsIYCL +x1uxPTuATQsUhQm0Wmpw6BrAx7cI97gyNLbZSOWmgyRhYTERicT4715fGi5evDgoORUVFTFy5MjB +aiIiIgKJ5L93//cQaQzhJ4Wz57vZ8dJj/LwknT9PCuVgSCtS/1fwqrNixWuGfNjhjanrdeb/4QVK +Dl/heJaSaQuMqa7R0NMkMG5sPLt3baLP5hrGM1fg2qtizr5HGe3ggPm0DdRebuKP40UYWcMCWyPG +OvfS32ZA9u+fYlvli0RaZOMVuZciox5ye88iyxIxRiJnrWE/+5xEZF5dxFzh58ygl2uuYi6EZHNu +/DCaQ+2hsBDx1p2Ie2dh1PM4c1y+wr/NEr9OOzIjT1Djd5CCg3cRawyYu3QdHR1rOX7cgHnz9F1K +oaH/+N4U1heyqWgT+8r2McZlDGvC1zDdZ/pgrIdOB2fO6IniyBGIidETxfTRbcgP7dNXFVVV3/oU +kZHf61OUlemJYvdega5+HeJJLSTM07B8tEBnUxZ7y74k62YWpjK9mT3q7ijiy0cwOaAVaWgOAxbN +WBWIEfotOeUbTJbbQu5e8GRcpobwcwK9ui503jUEetViW5OHTWkpt3U6MDTETadD5+mJ4fz5tI6K +51i5KS3H2/DLF2hygGvDtUg0As6GVQSOv4xpWAED0utYWEy8RxTxGBreP1AoCAIVFRWDclNWVhbu +7u7ExsYydepUxo0bh7Gx8Xfuw38r/mWksWbNGjZt2vRABz8IhkjjpwWNBp585nPmnv45NRZevD6l +A4XLGrqHjeeVd3WczfUiR2LOjF/8CSfZRyR/NoBfsAg7H1POHO5h0QJnjhw+zJ1eQ+QzVmFmVcyy +nY8TJfLHcvbHdFeW8sYoaLcRsdTOkBjnPrT9Us794XG+uPIy/qaXGDFyKwWmXZzrykGWDeMkBjxh +1M8eOyl5FSuZL6whni6KvMVc9M8gd0YAdz1M4XQG0q+OIXSuZph8CnGmR4hsd8dYJ3A2+iCVxmnk +H+rF09WN+Dmfkp0dR329iGee0edB/YN0DTr7O9l9ZTfJRcmDsR6PhT2Gs5nz4O9UVuqlp+3bwcrq +nvyU1I/thWN6ojhzRj9HsXy5flfr95QxN25A8i4NO/YItN0VEMe0EJukZvkYLd0tWey5spvc27mY +yEzoUfYQ1RHFjCpfxofegaA8NPJOrIuk9ArWHAkYw3nTJOQ59kzIGGDEJSkNijosA2oYblOBdXEO +pk1NVAsCVkZG2Gk06GJikM1JIt8qirOne7A404/THbgUAs02Gmz6e/H1ycd9Sika61wMDJ0Gqwlz +87GIxfcPqDQ2Nt7nS4jF4vt8CTs7u+/cgyHo8S8jjYKCAiIjIx/o4AfBEGn8dHAotY19f1rB85cv +8qvZrlz1sqEn+GfMTZPittGOTWoPgsd9zYzFv2b3xy0092iZONeK1H3tTI4xoLpqOxevxCCe/AKG +I/awaP9ColsjcZ51CF1zJn8ZDlccYam9gqnOA0h0Ii68sYwvLryCq2E1YSM/p8CynXOd55DlwESJ +nBXG/ey0NKS08mkWsphJoruc9xNx0e80OfPC6LeSITp4CGlGAdrGFwi1dyCKC8S0DKfe+iaF0SmU +1RdQcU5F9NhY/AI/JiXFC39/fVUxaxb8UPPNN7Eem4o2cbj8MHFecawO18d6iO9193R1fSs/Xb+u +l59WLNcR2p2tl55SUiA8XD9PkZQEZmbfOaemBrbs0bBtj46mRhFMaGHSXBXLJqjobcniy9Ld5N3J +w1hiTN9AH2PbxjD7lhtR4bVoAi8iUvdhWSKnQWHP4aA4LikTcDxrzrjTA7jVSKizqsTdrxI3oQS7 +oguolEpaJBKcZTIMjIyQzZtHz8QZHGt24/bX7fjnCXRaQJm/FpFIh5PxDQLHFmISUoBGdgdLy9h7 +BnYcCoXzfc+lp6dn0JdIT0/n9u3bxMTEDBKFj4/Pf5Uv8SB4qKTR1dWFSCQa2tw3hP8RVCpYtfZT +krJ+wU2zEF5PaMPA89fIJcN54WUpX9R50211lwUvvUBVVgYnzgwQP9+EymtKFGIJwxx/xqGjL6GN +/BTDcW8QnzGWcaWTGRF3GZloL59aCZz2EPGIg4xpThoMZQIFby/gi8x1WMnaiI78kDzbei50FCDL +gUlSGUuNB9hiasat2l+wkFmMFXVyNlDg/Igs8hZEoJFqEe3cjbSoEd2d3zPZvZPg/jtMbPKh0CeP +soj9FOTcpLdeYMqsX6LWvMTp06Y88oieLEaM+OH70dLbwvbL20kuTkYQBNaEr2F5yPLBWA+tVr8e +e9s2OHZMv11v5UqY5n4N2Zc79DsqzM31FcXixfeWbN+PO3fgiz1avtij5U6tGNH4FsbNGWBpjJL+ +1rN8WbqL/Pp8jCRGKAeUTGoaT2KLA+GRNxjwL0bWocK8QkGFuQtHAudQeWs8/mflRGeqMW3X0eF0 +FR/Pcoa1FeFQVkq9TodIocBZq0Xj54di4SJKXWNILRBjlKHEvQpKA6HeQYOVthtvnzw8Y0rQWOVh +ZOxzr5qYhqnpqPuG6zQaDQUFBYOVRGFhIZGRkYOSU0RExH9sS+yPjYdCGvn5+axatWpwmM/CwoLN +mzcPVRpD+F4IAmzZU03lu/OIr2vhhenWVI8IQ+mzlOe+gDsHPfhaZEvcqg/xsF3P5s/78Q8RYT7M +iPwMJTOnRbNv/266nM5jGL+WkdcdmZo+l5Hj2jG0/5SdOg17/EXMd5Qww0HA0khL8Yez2HbiNWQS +DRPC3+W8403y24qR5eqIlciYZzpAssKWzjvPs5DJRIi7yAxRkx2aT2FSMEJfN6ItXyAuN0Da/Htm +uRYS1CcQ2urEmYiTXPM4SN6RVmyNLJkw/QMKCxfS0yNm7Vr9G/v3NCQB38Z6bCraRGpVKol+iawJ +X8NYl7GDn4wrKvREsWOHvptqxQpYMqUJ2/Q9+m82NupLjeXL4XuGzhobYfteLcm7tdRWiGFsK1GJ +/Syb0kd/2xn2XtlFYUMhhhJDNCoNUxrGktRtRUDkNfp9yzC8rcH4lgkX7X057rOQ1suhjDorEJkj +oNR0IXUrwdOuFKeaQizr67kJWBkaYqnTIcTGok1I4mt1EBWne/A9p0MthyuBOjRSLXaW5YRE5WEa +WIBO1omVdfy9amIqcvm3EpIgCFy/fn2ww+nMmTO4ubkNdjhNmDBhyJf4P8JDIY2goCA++eQTxo8f +D0BOTg7PPPMMJSUlD3Twg2CINP490dUl8MtnNvBU2mtsigxmT5QSid/LhFRYM2W9BRv7vPEOyWHG +il+wL/k2rb0aoqZbknmwk/hYW/LyvqKyT4LB9NW4qdpZtH8VUSNEmAT9laNtvXweJiLBQUSivRh7 +Mw2lm6eyPeWPDAhGTA77CxdcyyloLkGWKxAnlTLdbIBNEhdo/B0LicRX0kN6RC9nRl/n6vTh0FCP +KHkL4lp/THueZpZdFtHdVlgOyDgbfZBLklQuneomyD8cv9DP+PrrcCIj9V1Q8fHwdzmag7jTdYet +l7ayuXgzFgoL1oSvYUnQksFYj44OfbL4tm36wMClS2HFgj6CKg/q5ae8PP1y7WXL9Hsq/q7bp7UV +du7T8vluDZUlUohuJWJ2P0tju1B3nOHLKzspaS7BQGSATq0joX4cSSojvCPKUHrdwPS6gKTZnEzn +YNKdHkGb5834TA2BxWKaFXew9biEq0EJzteKEHp7aRWLcZZKEVtYIJs3n5rg6RyrsESSqcSnHMr9 +4I6TFlNxJ56+5/AeX4TWohBTs1AsLeOxtp6GiUnYfcN1TU1NnD59elByEgRhsJKYPHkyDv9sJH4I +/ys8FNIICwv7TlBheHg4RUVFD3Twg2CINP69IAjwp89Kad06j6n1Gp5IAo3XI2htJvP8myIOlfly +y1jLgt/8hjuFhzl5RkXsXBMqLvfhaCujX/kROVcmIY37OWaOWazYvorxdk5YT3ybrDutvBcJo+1F +LLCX4m6lpmz3RHbtWkebxoH4kHe44HmZooYypOd1JEglTDFX8ZnWC8u2V1jIcBxkSlJHtZM6uZlb +41yhogLR1p2Ia+Nwk01jslEese1utJk1cnHUAfKqL9J0TU3U+EcRSddz4YItjz4Ka9eCt/f33wON +TsPx68dJLk4m91YuC0csZE34GsIdwxGJRGg0+p1F27bpswDj4mDFMi3xsgyke3boW6LGjtUTRWLi +d3a0dnTAngNaPtut4WqBFEa1Ezqrj0emdqC9e4Z9pTspaylDjhyxWszM22NJkopwjiil3+UW5ldg +oMeGkx7R5BjMxyLXkfEZKjwqxTRaXsPNtRgXZTEu16/RpNUiMjDASatFFRKCdO4iTiuiKM7V4nVO +h0QDJcE6VAoN1nZXCYnMxTTgImIDsLL+ph12MjLZtyVYb28v2dnZg5LTzZs3iYmJGSQKX1/fIV/i +IeBHJY3CwkIAduzYgVKpHAwV3Lt3LwqFgnffffeBDn4QDJHGvw/q6rW88tzLPHb+U5IjAjkwVgD/ +3zLnpAKzz53ZI7gQs2AzPm6vsGVzLyPCxMiMZdyqUBMS/BiHv16HOvodFKGfsnTvQiYJwThO+4wr +tTf480jwtIXFDjL8bdVcOzSG3Ztfo2HAnWlB71DgU0BB/VWkeTpmSsREWaj4fCAIj7uvsgAnFAo1 +qVH1nJitom2ELVy4iHjfYUQ1K4i09mC05Aaxjd6UeBRRHLifrKwKjFVGRE7+E1evrkIslvHss/r3 +cROT73/+Ve1VbC7ezNZLW/Gw9GB1mD7Ww1iul1NKS/VEsWsXuLrCikcFFo0oxerIVn0i4bBheulp +0SKwt7/v2l1dsP+Qjk93qrl8XgphHQTO7GXRtDZ0dzPYV7qTirYKpIIUuVrOnNujSTLWYBteyoB9 +E5bFIlq1ThzxnkzJ3dl45poxJkONRauWXruLuNoX49p0CduGeu4IApYKBWYiEbpp02gek8SRJndU +ZwbwvwJVXnDTRYuRoh0Pv2x8ovLRmZdhbvH9w3UajYbCwsJByamgoICIiIhByWnkyJFDvsS/AD8q +acTExAy+AARB+M7XmZmZD3Twg2CINP71EAT4w5upuO5ZilpqzavT1Ug9n8JaFcaKdQqSW4dj5FZF +0hNPcHDXNTqVWsInmZF7qpupkyM4/vVuOjxOYhDzMglp0cTWxuA38xi1Lbm8HQYGNvCYo4xQBzXl +qaP48pN11Pb6MyvwbQr8zlNwpxzpBS2zJWJCLDUk94wktPcV5mHOgIlAanQNJxYa0ONqBqdSER8/ +j7j2WWKdVIwUehjZ6EpuaBr59l+Rd6oBn2HD8Qr5jDNnxjNxol6Cion5/tUR38R6bCraRElTCcuD +l/N42OOMsNM74a2tej7Ytk3vOSxfDiviGvC7uF3vU/T06Jlo2TLw87vv2r298NURHR/vVFN0VooQ +3InfjB4WTGuG3kz2l+ygsqMSiU6CsdqI+bcjmGPdh1lYGWrTdiyLZVQbuHPIYxa3qycRmiNnVLYW +leYuCsdcnI2K8LxZgri3l3axGCexGJ2DA5K5CzhnF8u5y4a4n9dh0g2XgwX6TVSYO5USGpmFqe9F +ZIYWf1NNTEQiMbr3ehC4cePGoNyUmZmJs7PzYIfThAkTMPkh5h3CQ8PQcN8Q/iUoq+jnzRd/zc/O +p/DCNAfKQoLBZRlrPxBTmONDgcyIxGfW0VGZTNpZNVMSTSi52MMIPxuuXdvHDaEbg4RnGXndhpnn +EomYXEaLdh/v+kCrPaxxkjF6mJrK7FC+fO+PXL8bytwRb1MYcJb8W9eR5GuZIxHhbaVhe0cM4wZe +Yi4GNFmISR1fzqnFlqgsDBClfIXozG3kdc8xw7GaiQPG2PeYkDPqINn9J6nK7yYkNAmp4V8pK3Pm +8cf1KbNubj/wvJvLSC5KZueVnYTYhwzGehhIDVCr4cQJPVFkZOhXZa9c0Mvk1n1Idu/Qj1/Pn68n +irFj7zNE+vvhyHEdH+1Uk5cuRfDvwnt6N0kzGpD0neZA6U5qOmsQ68SYq8xYUhfCTIe7GISWIYh7 +MCtVcNnMl6NOC+kpiSQ6S0dIoZh2gxpsHLJxES7hUVNBh1aLSC7HTqdjIDKS3tjFHFIG0XVOYMQl +uOUKtW5aDExacRtxBt+ReWBWg4VlzN8M132bgtvc3ExGRsag5KTVagflpilTpgz5Ev+GeGg7wrdv +305tbS0ajWbw4A8++OCBDn4QDJHGvwaCAM+9lELgsVX0ybx5ba4Gke+LjC62xf8vDmzXujFqagrD +hz/Pzl0dBIZL0Wigv0eMkeE75FRGI4t/DjdVPUuOLGdcdAs9Zpv4zE7HpWHwpLOUCc4aagqC2Pv2 +OsraR5Pk9xcuhaRzoboKSYGGuVIYZqHjy/bpJGheYCZQaSvh5KRrZD5ii06sg127EeWCXc9jxNmU +M63DiW7DDvLCD5B2NRehVcKIqFeorHwOCwsFzz2nV4e+b8/2N7Eem4o2UdtZy2Ohj/F4+ON4Wnoi +CHDpkp4odu/Wr6JYsUzDAvM0zA9uhZMn9b2z3ywyUnybGaVSwYmTOj7cqSbnlBSddzfuCV3MmVGH +TJVOSulObt29BVqwVVnzaIM/8S5tSEKuIekbwKDShHPWQZwyWY6iwJuxmWq8rkvoMM/HwSYX964r +DGuqp14QsDQwwFAmQzt9Fpd8EjlTZcew8wJW7VASJNBrocLMtYSQ8NOYeeWjMHG9FyP+zXCdPtiw +r6+P7OzsQcmptraWiRMnDhLF8OHDh3yJf3M8FNKIjo4mOjqaoKAgxGLxoDy1YsWKBzr4QTBEGg8f +Z861c/TFJUy9WcFvp5lRGx6HuUEca14zYFetPxLH28x47GmOHShEJegYEWlIcV4/YSFL+Drn96jH +vY6l09es2rWSmEApgsf77JAPkOYOjw+TEOeq5c4Vf/ZuWMfllvHMHf5XSkJOcLG6FkmhmiQpWFoI +HGlbRKL2WeJQc9lJyvGEcvLm2EFvN2zfifiCB36SGCaZ3iGuwZOr7pe54L2f9KwyXM1dcQn4lLy8 +OKZPF/HssxAd/V0JShAEChsKSS5KZl/ZPsa6jh2M9ZCKpTQ16T2KrVv1vsOKRwUeDbmMV2ayfpGR +r6++oli4UD/GfQ8aDaSl63h/h5ozx6VoXXtwTuhi9oybyLVpHCzdRV13HYJWYNiAHauavIjxakYI +vIGiSYO23ooMx5HkDizF4aIjYzJV2DRpGLDOwNEkD5+mMhQ9PXSIxTiIxaicnemfvpRjsrE0FckJ +LBLR6ABVnlpkFi24Bp1meHgOYpMWLK3/dnOdEwBarXbQl0hPTyc/P5+wsLBBX2LUqFFDvsRPDA+F +NP7VnVLfhyHSeHjQauFXaz9h5okX2BnkS0qMFRLPX7J8m5zbx3zJlZoz67F1tA1iE3UAACAASURB +VNR8Sk6+hkkzjCjI7mVkZChn87bR5rsfRcR7rNy9mDi7YRhGvEfKQCd7fWGZo5jZrjqaqnzZ9+Yr +FDTEkuT7HqVhR7h4oxZxsZp5EgGFhYSM1seYL6xiAkryPKQcTaykZKot1NfBrn2I8ycyztyFSfJe +IhqdOReSRrbJQS7l1jPCNx6R4YfcuuXFk0/qd207On73uXb2d7KrZBfJxcl09nfqYz1CH2OY2TAG +BuDoUT1R5OTogwdXTq1jwo3NiHfv1F/gm4DAv1lkpNVCZpbABztUpB2RoLFX4hjfyYyZNSiEVA6V +7aKpuwmdVof7gCNPtrkQ5duAxr8G42odXV2OfO0QQ2nTfPzOmxB1VgeqFuTWp3AWFzC8oYpujQaR +TIaVINAbPZaqiCWkNXtgc0GCQyNcCYRu636MPS8TGnESM7cijE1HDFYTZmYjEYkkCIJAVVXVoNyU +mZmJk5PTfb7Ev8Nw7xD+93gopPHOO+9gZmbGrFmzMPibJcVWf/MJ6mFjiDQeDnYcvEXeXxYyseEu +P1soQjP8afxu+jF6gx3bBjwJm3AET59fsHd/G+Fj5HS2qLE0t+FO/Q6uK24hi3mRpK9jmK0Nx2bS +Z5zsuM2WEZDoIGKBq0BnvSf7X/8D527NIMn7A8ojU7hw7SaiEjXzxTp0lnIKWp7hER4hAiXZw+Gr +R25THWUFZVcRpaQiK55Lgi1M0xhg2acgO+Igp1pP0VWtYnjIC9TcfAFXVxOeffb7lxwJgkDOrRw2 +FW3iSMUR4r3jWR22mimeUxAhJj9fLz/t3aufrVs5v5ukgS8xObBVH+r0TUDgyJGDJYtOB7nnBN7b +ruLkIQkqi37s4jtJmHEDQ9Epjl7bQ0tPC1qtFr9+F57utCU0oB619x1Mr0Gdxp1j1jOoq0ogMkdK +2EXolV/F3PIUnv0luLU20iwIWMhkSIyM6IlfyGnbBGrLzBhRKKbdCiq9tYhsmnEJScU/9AwS4wGs +bb/ZNRGLTKYPxWppaSEjI2NQclKr1YOVRGxsLI7fx65D+MnioZDGRx99xMsvv4yFhQXie+adSCSi +urr6gQ5+EAyRxo+Lnh6BF9a+xeysd9kc4sXXU70wtVrJExukHCsNoNemjYRlazh+6AIGxuDmI6Om +AqwsN3C+0Q9p/M8ZW2LH4to4fGL3c+buFT4Jhol2Ipa6QX+rK/te/z3Z1XOY4/kxN0bv42LZTURX +BkgS6+izMKaq9dcsZgZ+IiWng7XsX9lEk78F5OYiOl6CeflCZth1MLvDnlazJs6NOMDxolzsRLY4 +DP+Iy5cTmTtXzHPP6WOa/h4tvS1su7yN5KJkRCKRPtYjeDm2xrbU1embnLZtA7UaVi5Ts9whHbeT +n0FmJkybppef4uMHAwIFAS5eFHh/h4qjKWL6DdVYxrURP7MCQ8lJTlz7kva+drRaLSH9rqzttWD4 +iNuoXZoxLZVSIfPluGIhqtIoos7q8CkX6DU7g61xFsM7rmLa28NdsRg7kYgeLx9uT3ycU90BmBUb +4HpTxJVAuGuvxNDrEiEjj2MxrART85FY35vCNjYORiQSoVQqB32J9PR0qqqqBn2J2NhY/P2/u5Ni +CP85eCik4eHhQX5+/n0b9v7VGCKNHweCAH/96BzyjQvoMrbiT7MkiL2fZ9YJO3S7PTkutiNhwZ9p +qXuHy1cHiJ5sTHFeH4H+y8kofRZdzEt49NWwJncJo2LPUtSVxXthIgLsBB5zFUHXMPa/+RKZFQtJ +9NhI9ajd5JfdRCgbYI5IR5uZJV0dv+MRJuAkHuDUqH72remk29EYTpxAlHoXz6bpzLBuZ2q9K5e9 +8skedoDsc+UMHzYWnWIjHR0BPP20PmH271+yOkFHenU6m4o2kVaVxhy/OawJX8MYlzH094s4dEgv +P+Xnw/x5AitCLzPm0ieIvkrRZ5svW6YvV+4FBAoCFBfrieJwiphekQbz2DamzLyKsfw4J8v306ns +RKPVMLrPnbUqQ9yDb6Ox6URRpqDIJJDTA49iVuxHdJYG++ZeVOZHcJTkEdhSTZ9Wg1gmw1Qspn1M +HOe8F1FebYd/kZReY7juqwX7JpwiTuIflI6BsQHWttPvtcNOQio1RavVUlxcPCg5XbhwgdDQ0EHJ +adSoUcj+0YKPIfxH4aGQRlxcHAcPHvy3yn4ZIo3/e9yqU/Paz1/kkQsp/Gq6MfUhM/HojiP2TQu2 +9XrjGZaNh+9ajhy/zagJCupr+3FzjuTi1Y/oCE7G2vYoqw8vIz76NtdF+3g/SISlvcCTbiIU/Q4c +ePN3pJctYabbZmpHb6eotBbdtQESRVrumDghvfsyjxCBsVTN8ZhuUlYpURlLYH8KokwLRqnDmGWk +IqjJnpzgk6TqDnPnahtevmuprfs9QUFWrF37/Qmzd7ru8EXxF2wu3oyVoRVrwtewOGgx5gYWnDun +J4qUFP2q7BVT65jT9DmG+7aBqem3AYEuLoPXKy0VeH+7ipT9IroHdJjEthEzowRjw6OkXU+hu78b +jVbDpD53nhak2IfeRqfoRVxpTq5pJHnNK3ArcCD6rA6puhKJ6WG8NJfx7GimDbCUSFBbWnFn8ipS +RdHIrpjgWS3iqj90OPVh4HOJkFGHsXQox9xyLNbW07CySsDQUJ/2WlVVNSg3ZWZm4uDgMNjhNGHC +BMy+JxV3CP8deCikMWfOHMrKypg0adKgpzHUcvufA0GA5187hGfKGmrN3fkkyQpjh+dY8p4puQXD +abXsYcrcZ0g9dRprexEmpgLaAQeaOjdRbVOESdB7PHZgAbNC1NQbfcEnvgIqB4G1bmIsdTakrH+R +k5dWMt1lG3eiN1NUUou2op+ZIh03DT2w6XmVhfiiMRA4NL2D48s16Pp7Yf9BJGdCiDOyI0mjwFAt +JiskhcM1qZj1GmPm8j7V1QtYtkzCM8+Av//9z0utVXP8xnGSi5I5d/sci0YsYk2EPtbj5k39fort +2/Xq0oqkbpZJv2TYsc+gvv7+gMB7Uk15ucCHO1Xs3y+io1PAcEoL46YXYWR8hDM3DtE30IdWq2F6 +nxtr5GAeehuJWkVfgz2ZhuMpr1pMcJ4JYflaVIocTBUnGdFdjml/H71iMVZAe0AE+WGruNLgjk+x +HK0Eyv21aJ0acBh5khEjTmJobI+13bR77bDjkUgUtLa2DvoS6enp9Pf33+dLODk5PfwX1hD+LfFQ +SGPr1q2DhwFDLbf/Qcgr7OTQL5fi31zDy4kGdAc9zuSz/hhsceeUyJbYOX/izs13qL2jIjhSTs11 +CeYWGyjsN0M24SUWHZnEQjcbOh03kuykotkJnnUT4SSxImXDbzhesJp45100jvmc4ks1aG70kyDS +UmkQyPC+V0hiGG0mYg7MbyVzngju3EZ0MA2j3MnMtRUzp82eeqvbZHkd4FRRHl6WEXTxGQpFCM8+ +q39f//tmnqr2KpKLktl6eStell6sDl/NgoAFCCpjUlL0PkVJCSxKUrPCJYORue8hyjv/bUDg5MmD +AYGVlfDBDhX79gm0tYowmNTM6GkXMTL+ipzq4wyoBxC0WhZ2u7LMTI1haB2yDh0td11IF8+gtXQm +o3LEDL+upNfkMA6SbII6a+nXapFJpcilMmrHLybDIgHtdSt8rou57gOtLr3I/S4RMvoAlrY1WFnH +3pvCjkehcEWpVJKbmzsoOVVWVjJhwoRBkggICBjyJYbwvXhoE+F9fX3cunULv7+LPPhXYYg0Hgxa +LTz/5NtMSf8T70U5cWFCFG4DC4h/w4pdnd74hmVgM2wt6ZkNjI4xoLJMhYvzU5yvS0SY9ALxF5xZ +aRiAznsj26x6qXCB59zEeMjNOfjOrzl6/ilinfbRPGYjl4urUFf3EyvScV06lpEDvyMRM6qspOx9 +tJWCOClcKkZ0/DLDSiazwEbH5IZhFPrkkWqSQvnVatyGraG67jWmTLFh7Vp98Ovfvif2qftIuZrC +5uLNlLWUsTx4OavDV+NnHUBWlp4oDh+GcWMFVoSVMKvmAwyOpeiHNJYv1xPGPfm1uho+3qVi916B +lgY9UYxMyMXAOIXztSdRa9RItAIrup1ZYKdEMqIReaOY6gFvsnoXIlwaz5gsLfatdxgw2Ye3uhiv +nlY6AQuxmB4HVwqin6L4bgDuV4yRauBagBaNawO2o04Q6H8cExOfwWrCzGw0IKG4uHhQcrpw4QLB +wcGDvsTo0aOHfIkh/I/wUEjjyJEjvPDCCwwMDFBbW0txcTGvvvoqR44ceaCDHwRDpPG/x65D1RT/ +aSG2KoHXF8gxdvoV8z9x4EK+D20WPYyJX8Op1Cx8/CUoezSYmcVSdPNV+qLWE1nXxtq7EzEN2sJO +s1YK3PSVhb+RGYfe/QWHzj7LJIdDtI35mNLiGwzUKpkohgqmEav5NQlIKXGSsuuJVspHyyAjE1Fq +CyG3R7HERIZvqzVZQcc52HkYSbsWmeV7tHUsZs0aKU8+qQ/8+wbfDOBtLtrM3rK9jHYezeNhjzN7 ++GxuVsvZsUMvP5mZCayMq2dp7ybsD38OTk76iuKRR+BezMXNm/DxrgF27YWm22IMJjYSlnAWmfF+ +Lt5MQ6fVoRDgqS5Hprv2IPi2Iq01oEwI4nzTMmzyA4jKViPTXUAmP0KwshwzVT9KsRhzkYja0AQy +XRagrHXEt1xKtSc0u/UiDSgmMHovtlZNWNvG36sm4pDL7aiurh6UmzIyMrCzsxv0JSZOnDjkSwzh +f4WHNtyXkZHBpEmTBiPSAwMDKS0tfaCDHwRDpPH/j54egd+sep6YooOsj7XnRvRsJlwcjcnnbqRi +y+Tpb1B+/X0GNGpcXMX0dntzp/0jmnwPMlx8lmdvTMM1ci97DG6R4a0nixBTE45++DO+yvg54+2O +0TX2I0oLK+i/pWSMSESVsJiZuqeYjI7zPhJ2PN3KbV8JHDmKJN2IKX1eLNZaIBY0nPZL4UhlOq5y +f5oGkvl/7d13XFR3vv/x1zR672XoHaQpiCAqit1oNJYENboxXU1veze/3CSba0zfxM2muNGYaJQY +e+8gNhAEKwooIL33zsyc3x/ecOOa7JKgYsz3+XjM48EMp3w/DJw38z3ne74eHuEsWgQzZ8JPhgdR +21bLmrNrWHl6Jc2dzSwIX8D80PkYa11Yv/5aUFy5ArMnNzPPeCNhBz9E1tz0fzcI/N+TH8XF8Nna +LtYkSpQXyNGLKyN0bBJy4+/JLE5G0klYSgqearFlhFcDOtcmdAWmnJJFcfbKXHyOOxKR2Uqb3nZs +5YcIbSmiU6fDQKFAZ2hGeszjnNJF4XTRHONWyA7S0ulRhk3UtU8T5qah2NhPwNJyHKamA6mrqycp +Kamny6mtre268xLOzs799Jsj3E1uS2hERUWRlpZ23bwaISEhYhKm3wlJgqVLd2L/7SMc9HJg80Q/ +PDUPMfKvtqxv9MY/fA9K42c5fbacQUNUFBeaguITcs3KcHb5ksXpUwmO3MsG/Qvs9IXHXSHK0pgd +ny9iw54XGGK9j6aYj8nLvEhraTsRchWlmseZwVyi6OBQuIw1T9ZTY6WBTVsxPujBdH17ptU6km9/ +mX12GzmZm4mL1TwKKt9m+nRbFi2Cn04M+eOlsiuyVrD38l4m+U7i4fCHiXGKY99eOd9+C/v3w/j4 +bua5JjP29HuozmVeuzx27lyIjQW5nLKya0GxOlFHaZ4S1fASBow7gMwokbNlR5G0Emr0ebrdnIiA +OiTLdtpKbDmhGUnR+fsJP2JMwOUymo3W4aPJwKu9niaudTuVukWQFPgQTWXu+FzSo8gFKrxakQdl +MWDod9ibN2PjMAFr6wlYWMSj1Rpw7Nixni6n3Nxchg0b1tPlFBQUJM5LCDfdbQmNBQsWEB8fzzvv +vMOmTZtYtmwZ3d3dfPHFF33aMcCHH37ISy+9RE1NTc8I86VLl7Jy5UoUCgXLli1j7NixNzZahEav +XLrSxudPzMOnIpfXZqgwVL/IlM9dOJ7lS7tNDUFRj5N0+ChhkSoqSmUYG7/GmU5PLMPeZEHKaOIj +zrDZ6BgbfOFhVxhubcjur57khx0vMdDiMI2DP6Lw9DnaKzoIVhpT1/0sCdxLkKydPcN0fPdYEy3d +tci27McpJZg/mVgxpNqJ4/6H2KLbTGdFEzqDD5BkD7JwoZIFC64fW3G14Spfn/6ar09/jY2RDQ+H +P8wDQQnkZ1vy7beQmAh+vjrmhZ1jZtknWBzceO2Ex4MPXrvNrIEBFRXwxbouvknUUXxRiXJYMYFj +9yAZrSO7Ig10En46Q57SGhM4oBaU3dRUu5LaPImmU5OJPixhU5+BTm8jYZ05mHd30KVQYChTcjJy +PulGo7HJs8aiQUZ2kJZ2rzKso3cywG83VmaR2DhcGzdhYODPmTNnerqcTpw4QXBwcE+XU1RUFHr/ +OlxdEG6y2xIara2tLFmyhH379gEwbtw4XnvtNQx+csfO36K4uJhHH32UnJwcTp06hZWVFdnZ2cye +PZv09HRKS0sZPXo0ubm5PSPRexotQuPf6uqSeOr5Txhy4AO+GexGRlw8sSdHofrKg2MKM4aPfZWM +rOVY2YKeUodcMZ/T1XMxjPwLCRkBTA2oYpf5Htb6Ssx1gTF2Buxd9Rjrt7xCsFkaTWHvU3I2i666 +TrwUltD9/3iAYagV7Wyd0M0PD3XQeTUX2e4swk4F8ajKAesOfQ4EbmFz+W4culwpbl1JVFQEixdf +uwHsjzOadmg62HJpCyuyVpBVnkXCgAQeHvgw1t1hfPfdte6nzk6JeXFFzG3/Cq/9X1y7veycOddu +EGhtTVUVfJnYxapEHVfPKVEOu4rf6B1ojdaRW5WJTJIYqDVmoUIPj+B6ZO1wtdmX9Irp6J8YRuyx +ViTdTizl+whrL6FLp8NQoaDewoMDA5+gtj4A70uGVDhAmU8rBGcSGPstzqZg6zQBK+sJWFiM4OrV +/5vS9NChQ9jY2PR0N8XFxWFubt6/vyjCH87vej6NmTNn8tprr3Hvvff2hMbSpUuRy+W88sorAIwf +P5433niDIUOGXN9oERq/aPO2HC7/9yzKzQz5fKYan86HiVyiZlOzB2GRiTS0v0J1TR3unnKam4dR +0PjfdId8wrQcfea7a9hvtYXVfhLTnWGivQF7Vz/OD5teJsjkJE3BH1F6Pg2psQsHhTM23W+RQCBK +g242zGpn1wwt2oxUlHvLGFvozZ/avKi0KGOPeiOphWk4yOdQ3r6UBQtsefzx66dOPVNxhhVZK1h7 +bi1hDmE8HP4wY1ymsWubAd9+C1lZMCO+jnkG64k5/A4yE+NrQTF7Nri7U1MDy7/v4utELQWnVShi +CvEeuwWNwVrya88hl2C41pjHjRTYD2hAqtEjpz2Us/kJOKcEEZFZQqteIt7aNLw7G2iRyTCRKckK +mEKq3VTMCh2xrZZzKVBLi08ZlkN3EuyzBxvLYf/7aWIcra3m142XaG9vZ/To0cTHxxMfH4/LTwYI +CkJ/uBnHzl+8r/HkyZN/cQcymaxPV09t3boVtVpNSEjIda+XlZVdFxBqtZrS0tLfvJ8/kuZmiddn +zSGkIJOPplugdFvMnH94k3zBl1Sny4SHDuXU6bOED1LQqfHjSsV7VPtsYSzvs7DVihNhiTzkr2Oy +Gv5pZ8i+NY/zyOaXGGCUhnPELLIvnER1tBtLRSABureYqXOg1kJi1Z/qOTJGgn37Mf2zjjkNbkyq +iyDd6zj/o/gL7dV1NF76EG/fAyxcqGTmzP+bt6Kho4G159ayMmslVa1VPBT2EGkPZ1CQ5c6378OT +22BYZDuPO+5ncvUSDI6XXhudvXULhIZS3yBj+fddrExs50qGHoqYAjwmb8RtViJF9Re50iIxocGE +962MsPBrRlMucbYtkpQdDxB4yAHvgkzUqlWEdWVjpu1Cq5Oj07Nhc+wblHcOxDPHhLpWaNJrpXHm +cYyHfUOsiQF26olYWT+BUvk5x46dZE3iQQ4cmEF+fn7PfZyeeeYZMV5CuCv9YmikpqaiVqtJSEgg +KioKoCdAevOHMGbMGCoqKm54fcmSJSxdurSnu+un2/05v7SvN954o+fruLg44uLi/mOb7kYaDbz1 +wXZM1j1DZqgDy2dMZcSRibS/68l2fRWhcYtIS0/EEiXOzrYUVb5Lgd0lRrR+zOetrpzxO8BT/hpG +u8Dntobs++4JHt38EiFGqTiFTOfcxXSM07SYyocwXHqTyRpDLrnI+J/HGjg/oAu27cZloQkLO33x +bbbjQMB2HjNYgl29B/lNG0lIGMCTT0J4+LX26iQdSQWHWZG1gh25OxjnPY4lo5bg2D6atd8pGPEg +ONhqmOefzgcD3sfuVDJMmwYfvwPDh9PYomDFhi7++XwHeSf1kEdfxm38epynfk9Z42WK23Xc12zK +p456GHu001qqx+mGeGpWT2fIASV+jbuJULxGeGcpXZKEoVbBJZeRbHBPwLDUBcdyJaUdWpr9yshf +sJoB3oeIsB6JjcNEzMwOce5cGesSD3DgwJvXzXv9j3/8g8jISDFeQrijJCcnk5ycfFO3+YvdUxqN +hv3797Nu3TrOnTvHpEmTSEhIICgoqE87PH/+PPHx8RgZXZtbuKSkBGdnZ9LS0vj6668B+POf/wxc +65568803e0Krp9GiewqA8xfqWfvwPbTrd/DFTG+C6hfg954rOztcCI38lLzCt7B16ECnMaBT999c +NoVIxQ5ekPlQ4LSGlX7dxLjCZBsT9n/3BJu2Pk+I0QlqPN6j9FI6Zp0SyCYwRfdnRiFxYoCc1Qub +KTasRLb9CIOOW/N0ezidhi3sVG8krfI4Jh0LkFm+weLFFsybBz9225c2lbLq9CpWnl6JscqYh8Mf +ZqzDXPZttWb1aigvl5g7OJd5LZ8TdPJriI+/1v00aRJNXQZ8vbGL5Wu15JzQQz7kIi6j1tJhsJ6q +5qsYy3TcrzFhulsnBvZd1Ja7crZyItqjExl6uJpO6Xu8dSfw6m6iXSZDrrBkb+gjlBGN22Vzmk3h +akAruvBMfIZ9i6epFXauE7G0HEdZmSkHDyZx4MABDh8+jLu7e0+X07Bhw8S818Lvym07p9HZ2cm6 +det48cUXeeONN1i8eHGfdvpTHh4eN5wIP3nyZM+J8MuXL9/waeOPHhp19VqWPPoUPjn7eGOaE8Z2 +TzLqE2/2XPXCyv0k3crFtLRewdlZQV3DYq4YBhJouooXugOoc17LSr8Owl1hirU5u799im07n2KQ +cRIVLh9QnHMKa40cGQ8wW1pMmKyLfcNg3WNt1JedQ2/3ZSZftGd+QyTnXDPZpLeJtvpqyur/wdhJ +97JwoZwRI66N2O7SdrE9ZzsrslaQWpLKrKBZzA14hLJTg1i9WsaRIxJTBlfyoGIto1LfRhEWfC0o +pk+nRWXJN5u6+GKthotH9ZFFXcB51Dd06G2kpq0EaxkkSEbc492OykiitMqfi4VTsTwQTUhWJhrl +BsK6L2Gm60InU1BgN5QjnrMxqPTEoVxJToCWxsBiLIZvI8gtA7XjWKztJ9DWFkBKyv/NVqenp9cz +5/WoUaOws7Pr77dfEH6zWx4aHR0d7Ny5k8TERAoLC5kyZQoLFiy4qQONPD09ycjI6Lnk9u2332bl +ypUolUo++eQTxo0bd2Oj/6ChIUnwz2/Taf1wDhsH2XIuehTjtoyn8KAHpcadOHk8xeX8nQSHyaiq +vI9CxX24OH7Gi41+aF3Ws8KvBX93mGxuza5vnmXH3ieJNttFqcP7XM09j41WD2Me40/MxVnVyeZ7 +tGye20FHWjKW+5p4tMKdmEY/knx3s6VlG+at/lSxnEWLvHnkkZ4B1mRXZ7MicwVrzq0hwCaABWEP +49w4k/VrDdiwQSLcp4V5Vju578zrmNgY9IzQbrZw4etNXXz1vYbsFH1kg09hP/JrOvS20dhRiRMw +V25AfEA7Mp0e+dUDuZo9HZ/tamzLd2Mp30twVwUaJCSFFQcC51OuiMUl35JGcygKbIKIdHyi1+Jl +5oW9+0QUiqGcPFnWc5VTdXU1o0aNIj4+ntGjR+Pp6SnOSwh3jVsaGg8++CAXLlxg4sSJ3H///QQH +B/dpRzfTHzE0zmTX8vXj0+jSa2HljGCGXJqP6XJ3jkhWBIS8yYVL/yAoRENjfQwlPIWV41c826TG +2HkzXwc04eYhcY+JPTu+foE9hx4m1mIjRdbvUXj5MjaSGY7SMyxgIgrjbhLndLN/XAvaPfvwPwTP +1IdjLFOxXb2J9MYjaOsW4zf4ZZ56ypiJE6/diry+vZ7E84msOrOKkqYS5ofOZ7TlYxzZ7s7q1aCi +m/neR5lTsASXjrxrVz3NmUOjywBWbOpiRaKGi8f0kMccxTb2K9qUe2jrbsAHmKNSET2gE02rGXnl +sdRlTCViWztS5wb8pAzU2ja6kFNkHcMRz9no13hhV6kiN1BDU3Ah1iM2EehQiIvrBEws4snOVpGU +lMKBAwe4cOECMTExPSERFhZ2wyXegnC3uKWhIZfLf3EODZlMRlNTU5923Bd/pNCoa9Dw0dP/D7eM +7fzXHBfU8scJ+sCXXc2uePqvoaj8NZxd6tBqvCnX/jcGdht5utUca/U2Vvk3ovbQMcFQzdYVL3Po +yByGWq2jyPA9CoqLsMaJAOkVHmIQlXYS3z3aTppfJYodR4k/bsATNSPIdc5mi2ozrS21lDZ+yUOP +jeGJJ2R4e4NGp2H/lf2sOrOKvZf3Mt57PNPdH6UmfSRr18rJuajjgQHnmFe/jEElW5HNnAFz5tAQ +NJTlG7tZ+b2W3FQV8uH7sY5eTovsEBptGwMlOQlmMgb4d9Fa68jl4niUB+PxSzmPvmwroZoCVJKW +LqUNyb5zKFcNR51vSb0llAQ1IBtyHO/wLfjahGLrOoGSEjUpKWd7BtUFBgb2hER0dHSfxxwJwu/F +73qcRl/8UUJjbeIp2t6cy8qhTpQOuIfhXw3ncJ47BvanadM+jbHpRYyNcjxlDwAAIABJREFUbSnv +egutzUGealKhdtnDqsAGHD20jFV5sGXFnzlyYgYxVl9TIP+AksoKrGTBxEqvMlPmxHlvWP1kBznS +eUz3XOKhM/aMbBnIQc/d7GnbhX5zNCrnj3nuOaeey2UvVl/kmzPfsPrsatRmaub4P4JJYQJbfzAh +OUlivH8Bc7pWMb7gc/Qmj4OEBOoGjeHzLRLfrNdyOUOOYtRWLAZ9RbN0DLnUyTAUzLST8HLTUl3h +y9XLE3Dc4IvNlf04y5Lw1TbQiYJi6xiOud2Pfq0PNtUqcoO6aQq9jO3wzQTaN+HmNYmmlmBSUys5 +ePAQhw4dwtbWtufkdVxcHBYWFv391gpCvxChcZfaf6SYPX+ZQ4VlN3vGDGPCtnu5ctSVK3oaTCwX +06XdhaOjCRUdr9NpeYFF7Z242e/nm5AG7Nw1xOPHpq/+QvqpiUTaLCe/829UN9RiIRvJdOnPjJDr +czgK1j3cTln+Udz3VfF8TiiGRiq2Wm8mv/0MtdV/5Z7757NokZLw8GtjKhLPJ7Lq9CqKGouYEzQP +/5YnObrTjS1bJCJcKpmjXM99l9/DbPRgSEigevBE/rFDwZr1OvJP61CMTcQsZCVNugyM0DJWpuBe +Nx1OlgqKSwdSc3oifolaDFq3EaQ7j6XUTavKlqNeCZSphqMutKLOSqJ0QB3ymCN4Bx0gQB2N3Ggo +WVmQlHScgwcP9kxC9OOgOrVa3d9vqSDcEURo3GWqazv5+OknUV4+w7JZ/ozKXED3FleStDbYOi6l +qfkTAgKgvPlFGkxqWaRpwMXuIN+ENuLq1k1sVzAbVrzKmbMjCbX+lLzmZXS0tWLNTBbwJB56Etvu +0bF5Rgttxw4z/EAHiwrjuOB6mq2yLUgtVrQYfsHTzwQwbx6YmGo5kH+AVWdWsTtvN2M8xzJM72ny +D8ew/nsZjkaNzDHbwQOX/wenaDdISKAqdhrLdunz3Q86rl7oQDn+G4z9v6FZOo81Ou5RKhnnq8Uc +E66WxKJLGoH7rktYs4cgbQUa5BRZDyXVZRZ6dT5Y1arIC+qieWAOdkO3MMBeia3LGC5esuTIkYsc +OnSIgoKC6yYhCggIECevBeFniNC4S0iSxLuv/QP97Z/x8T1q/JuexP5bX7Z2OmNlv5aautcZFNFA +ef0T1BrKeUxbiotDEqsHNuPj0s2glkg2fPUqOZcG42f9N3JqP0OmkePOozzJNDSWOr5/sJtDoaUY +HjjNvGRj4ppC2OO2g7Suw7RUPcrwe59n4UJDoqIgtzaHVadXsfrsahxNHZls+wwdWfexeb0hnY0d +zLE/yOyCJQQEKyEhgYrhM/lonwnfb5AoymtCNXE5hp5raSUPFySmGCqI89eiaHakOH8Ulhu8sD2X +gqcsDRddG/X6Dpx0nUmZ3gicrlpRayNRFlKDcmgSXj6n8HWJ4WqFGydP1pCUlEJWVlbPoLrRo0cT +GRmJ8l8nBhcE4QYiNO4C69Ye48rfFrIvXE2n7RTCvo5ia6MTKos06hpeIiw8j9rm+dTq2bBQWYCl +/UESB7UQ4qTBtXQCm795iYpiD1wsP+RS9T8xwIpI6VkWyIeQ4yWx7pEuzmpO4XmgjJdTB9Bt1cE2 +081Ud9bSIvuSF14aQkICaFS1rL+wntVnV1PQUMB9ro9hmf84Sdscyc3WMMsllTml7xHtWopsdgKl +cQl8eNia9T9AaVElepP+jp56I+2yYvyRmGIhJ9pLoqPKj+pz8Tiv1mJbv59AXT5yFOTZx3PabjL6 +9d5Y1KvIG9BBa+QFbAfvJsjBjKbuEDIzu0lJyeg5eT1q1ChGjRrF0KFDewaHCoLQeyI0fsdyCmpY ++8hsCox1pA4ZwchvJ5BUbkejqpq2jhcJHJBCS/s0KmX+PGN0AaXjYTYPamaIvQyD7AQ2rXkJRZMG +M9P3yK7egJksgEnSc0xReJIcI7F+bjuVFw4zel8HDxcO5bhHCsnspa0yniGT32bxYguCQjvYlbeT +1WdXk1SYxBiXe/Gsepbsg2EcOSwx0eU8c+uWMdY8DdXsmeTEzOWjVEe2bobKhhz0xn2Mwm4PGnk1 +A2UwyV7OICcFdUURaPeF4bgrD1ddGh66JkpMAzjtNJUGaTCOJeaUOeuoCitDP/oQ7i5FGOkHczZb +xbFjl0hJOYKrq2tPSIwYMULcEVYQbgIRGr9DDU2dfDTvcTrqzvPdhMGM3fEg5y/YcVknB/l/oXb9 +ARTxVDGQZ42y0TmnsC2ihTgLIxpPPsaW9c/gKF1C0nufS3UHcSSeP7GIIEMLNk+T2B5bhiolnSf3 +2uGqsmKHzTbKdPm0dX/Asy9P5P4HJM7UH2XN2TVsvLiRYOtBhLa8RGXaCPbuVBBlV8Cc9hVMZQsm +CZNJj/gTH51yY+92aFAdRm/U38HiCHq0EauSEe8Ofvrm1OfEYLzGBKecTHylfGRKE846TeKy2Rgs +KtXItAryQ5vQDMnA1v8kDoYO5BZbkJpaSnJyCubm5j2D6uLi4sTIa0G4BURo/I50d0t8+P8+QJP0 +LZ9PjWDY8XnUHHUircsKQ+O3MDb9EmOzcJoYwnOWeVSpj3A4rIV4AwcuJz/N7u2P4qO/jzrt+5S3 +XsKfGSyWJdDmZMSGBzUcNc4kcH8xz6UN4pLreVL099JVH0rImE945hkrDNSXWHN2DWvOrsFYYU60 +9r9ozbyHfdsMCDQv5f6uNcxgA3az4tgf8CeWnfUieXc3ba4/oB/1FVqjLKxlGuKN5Az3AtsWT9qS +w7DdWIlH8xlcpRbybKI5ZzeJ7vYQbCuMKPDtpiEiD5OBKTiadFBR70jGqQaSk4+j0+l6bs0xcuRI +XH86AbggCLeECI3fib27LnD6L/P4YooHAfmPIO1wJ6XdHmOzZShVH2LtoKZFNoKXLXI565FKdnAb +o7X+nNj9IsdSpuFruIbC1o/p0nQwgod5SB7HycFKfpjdTtnlI0zbriOu0ZO9drsoVeaild5l4Yv3 +MGJiFdvy17Hm3BqKG0qJk/8FLtxP0lZLXA0qeUC7llmsx2HmMDZ6PcRnmR6cSG5EE74cg4B1aAwu +4ymXiLdWEOOsQFEYjjLRGpeMS/hqr9Jm5MRZxymU6cViV2JHowWUhleiGHwCc7s8utvsyDrXSUpK +JvX19YwcObKny8nHx0dc4SQIt5kIjTvcgZ3ZZLy2iO1DLJF0czDeGMixJkeMTJajp/8eji42aDqH +8IxdLil+Z6gNaGNw/VD2bHqZi+ejcDX8lNzGLzHHhQfkjxBlEMC26RI7BxVheSybZ3a7UW9XTorR +HprrQxn5wEfMf0TJ+e6trDm3hqNXjxGjeBqjnAWc3OmEhVTPA1Ii98t/wGl6NKvUC1iR4cLpzKtI +Q/+GvvsOdMoqwlUw0llOmKEF0vEwLBKb8ay+iKOsm7OO47hsPga9Rm9MGvW4HNJKR9QZVG5ZKNq1 +5F5Vcfz4JQoLrzJ8+PCekAgODha35xCEfiZC4w6VkVXErhcf47CHIfUG92K2ZTAnq50xNv0SpfJ9 +HFxtsewayAPqLLaHF2Cj7kJdeC9bEl+gqtweE8UHlLStw4eRPKm4n243RzbO1pDRfZxxuzuYUOJK +su0hilV5GFq8y7OvjkDrvp8fLiay7dJ2ArWzsS1cyPm93ijaWkmQr+d++Q/YTI3m7zbzWX/KjryS +Y8hjPkffIRmFvJWhxgqGu4BPnTsk2uOWWoRndyXFDlHkWYymTROGfakZJa4aaiIL0fmfpLP9KhWV +KtJOFlFQcJWYmBhGjBjByJEjiYiIEJfBCsIdRoTGHaahup3l98/lsLqbWoPJ6O+OIb1KjYnpFygU +H+Dgao+rxp/h7ifZG1VBsJEFDZmPsGPTk+hrrtLc9Xe02mOMks9hrnwUqXH6bBxVi+50Ko/vc6be +qoxM0yTammKZ+dRf8Yw/yc7CRDZe3IRL833YFj7BlaQA5G3tTJdv4X75D0iTRrLMcBa7spTUGnyH +3sA1yMwuYifXMdRaRbS1HMckL2w2d+BVU0aHhSfZthOok0dgU2pHkwWUhVbQGZRFnSabxupOMrJK +KSwsZejQoYwYMYK4uDgGDRokJiAShDucCI07RFVlG1/Ne5rTFjVUGE9Dvi+C9BpnjE2+QK74AGcX +Z4apXJAFplMSXo1f/SBOJj3FiaOTsVVtpKTtS5wxYL4iASfbQLbP0HHEJJO4PY0MqTAlzeowdVIH +AbH/YPiDtZxoTmT9+Q1Y1k7EruAJ8pMCMdG0MEP7PVMtk7kSN4UvO0dzPKeITt8vMPbehUZVS7CB +nFgnGSFVttiuMcX7QiXG+iacc5xEld4QjKtdUGiUFIbW0xpyjirZGRoqa8k6V0FxccV1ITFw4EAR +EoLwOyNCo5+VVrTyz2dfIFsqp051H7qkQaTV/hgWH2Fnq+YBe30uxuRgrG7DJGcWuzYvpqrcDj3p +c+q61hMtH8l8xT1cGGbNtlFNaLMzmL/fmlKLi1wxyUTf5EnGveBDgcFmfji3CWXJSBzzHyf/yADs +qGN651rGuF0iKXIma2uCuVi/D0XYCvTs0jFUaIi2VBFtIsNzmxqvA004dGnJVY+lTD8GRbMP5nUG +5Ae1Uh+aQ6X+aaoqrpB9sZqSkipiY2OvCwnR3SQIv28iNPpJfV0H3zy2kCT9ejRd02g7FkZqrQsG +Bl9gYPQRbmZqpvg1khtfiqvMjivHn2DX1kcwkU5T2/klpuQxSzWdQNuh7J6mIE0/i3H7u3FqauGi +xXGauj2Ieuo+6hx3su3CXvSv3oPdlbkUpAXipqzgvrbv8BigY7v3Peyv6qbW7FvM/bfSYViOp76C +WFuJ4DMWBG9S4lSroUg9mkr9SDQdftiVm1Ds0UXlgHxKjM9QXJVFXk451dVNDB06tGe+9fDwcBES +gnCXEaFxm1U3NvDZ/Y+T6ihDr2Eq9cd9Sat3R674HBf1p4Qa22MRU4QiuAmrokkc2vUoZy/EYMRa +WrQrGaIMYJZsPPmjXNgdWo151nmGXVRSYJFOvUyLy8xZdPodZvfZNMwK52B+7l7yL3kRZXCO0Z07 +qIv0Y69REOe1+9D3W4vK5hwKhY5ICwUDa+QM+8EYj6sySpxGU2UQibbdF9syU8pcuyn3v0qhcTa5 +5ankXMhBT9+IYcOGExsbS2xsLEFBQSgUitv+MxUE4fYRoXGbnDlVwIaXniPF2xST0vspz3DgfJ0H +yD5jgN8Kom26qBlTjbvKhZJTC9i9/SEU3YU0da/CUXaJBxRjMPeL5uBoKK4/xejjWpqVF6kyKsFs +5EQ04ac5kHEVu/x5yLPGUF1pzwTFfjzNr3JuQDjJVNFqtxor94M06bUSZKRkUJeWYdtMCLugosxx +LNX6Eejaff43JLoo9SnmiuEFsouPculCNu7uHsTGDusJCTc3t9v28xME4c4gQuMW27P9BMf/9iZ7 +gsOwzRjNmWw1NW0q5LJlDPXfhnVkFfqehuhfmUVK0hyKinyQa9ejkDYwTuVNlMVoMsfbkWGSw8CM +JswaCik3y6Y1zJu2kCpOnzTG/fL9NF4cil6XllgpiVYfK06p26kw2Yqtxy4ajGuwVsoZ3KVldJIB +A3KdqLYeR5M8EHmrGzblJpS5dFHkWcQl1XnOXk2i6Eoe4eEDe0IiJiamZw52QRD+uERo3AJarcSK +rxI5sn8ThSbxKDP9ScsdALIMjPU+Izr8MPrDuzEpm8z5zDmcOzccI9leWru/J1opI95wFMVjAki3 +Lcf5XD521WXUW1yiKtiUAgsZutNRmOdOorTCh4GKs+hZNnPFp5Vy+23YuO+i0aQaY4WMiEYt44+q +cK8eTLPxcDo0PhjWO2HWqMdVz1aKHIo5qznLydy9GCs7iY4ZxpAh0URFRREWFiamMBUE4QYiNG6i +xto2Vi7+L7Yby5FyJ1KQbUdZoxOStI4A539iH3cRD+MR5J2by4mTU9Eng/auREKUlYxSDqZtZBTp +bq2Y517CuayERvNs8vxMKGl0wSFnPJUFwzCXWrAzLqI8oJRm121Yqg9QZ1KLCh2jSySGZ9lj1j0B +jTwAqc0dy0pruvRkFLnXcdnsChn1aVzKTyYiLIjo6GEMGTKEqKgo7O3tb+rPQhCEu5MIjZsgaUcq +33z1N0q0E6m54Et2cSAyeQpWxmsIiN6Bi30EpZdnkZoxFUlTSbdmHSHyAoYZh9AyLJJs21b0i89j +X1VAq2kRGQZumFwdT2PZMLq7jbAwv0J9QBrGPt+j75xFhbIV9yaJiRcM8awbh4FuEFK7O8Z1dpjX +qyh27aDEpoKzXOJk2SHsrNoZHBlDREQkQ4YMITAwUJywFgThNxGh8RuVXKnho+ee5bJhAM1Xgsm8 +GEanthkZqwgP/QFnJ2+uXFnA+YsTkEm5yKRdhEmlhNm60BoVyWXzeiyLc7BoyaZC3klx+Wzqa+Jo +l5SoPA5j4LcPc48k2kyLULZ0EX/FHt/6kZh1BaFsc8GwwRbrKkMqHbopsavmoiKPjLpUjEwqGBI1 +mMjIaAYOHEhgYKAYQCcIwk3zuw6Nv//973z22WcoFAomTZrEu+++C8DSpUtZuXIlCoWCZcuWMXbs +2BvW/S2F558t5bPX3iSvPYTaClfyitypbXFCxvf4qn/A2NKKwpIXqasLAo5gIT9OjKwF6wH+1Hi5 +U9udi3VlNgaactIuLqRMCkdPnYqx1yGM3I6jMriEfZOMQRWDcG0OxbjdB/1mR8xrzDFsU1Dm1EGF +eQ155JMr5WBgWUFUZDihoREEBwfj7+8vxkUIgnBL/W5DIykpibfffptdu3ahUqmorq7G1taW7Oxs +Zs+eTXp6OqWlpYwePZrc3Nwb7o7am8Ib61vZuewb9pwspKomhLxiN4qrgkFWgFy+H3ebdJq1PpRX +PYuMUgwVh/GXl+LuaAiegVRad6NqOIN1UwGHqkbSrm7G2u4YrsorOOssULd4YN/ii0mbC4bN1pjX +mWDSrKDaVkO1RRPF+mUUyi9TY1BMQJAZUYOHERwcQmBgIMbGxrfyxysIgvCzfrehMWvWLJ544glG +jRp13etLly5FLpfzyiuvADB+/HjeeOMNhgwZct1yNxQuSRQfOM0n7y2nslNNaaMFZfW2lFSH095l +jky2Dwfro9iYNFJQcz/NTUbY6ufibFiDnbUClYs7TabdGLSkYd1RiZm+MxYKM4y7zDFpt8KozRKj +ZhPMG/UxaJdRa62l3qydWqM6alTlVOqV0mHVysBBzkREDsHX1w83NzfRtSQIwh3lZoRGv/SH5OXl +kZKSwl/+8hcMDAz44IMPiIiIoKys7LqAUKvVlJaW/uw2HG3WodPpodWp6Oq2obXDF51uKTLZRUyM +crExz8HP4SClDbboY4ONygVjmTuR/iV0W6kw6TjPkKt2hFTEYnRVgVYBTWZutBl302rYQYdeG+3K +FqpVTTTZFNDq0Y6ltznD40II9Q1ArVZjZmZ2m35igiAId4ZbFhpjxoyhoqLihteXLFmCRqOhvr6e +1NRU0tPTmTVrFvn5+T+7nV+a3U0uW45CqUNfpkNtY4OltTndzcboq6yRVHLkhlps0BGrbkdfVYUc +DTq5hEZejg4JlY0JhBrREFSLQ6g3Xp6umJqaoaenJ2aUEwThrpCcnExycvJN3eYtC439+/f/4vc+ +//xz7rvvPgAiIyORy+XU1NTg7OxMcXFxz3IlJSU4Ozv/7DZKq5NuboMFQRDuMj/egPRHb775Zp+3 +2S/zb06dOpVDhw4BkJubS1dXFzY2NkyZMoXExES6urooKCggLy+PwYMH90cTBUEQhJ/RL+c0FixY +wIIFCwgODkZPT49vv/0WgMDAQGbNmkVgYCBKpZLPPvtMdBUJgiDcQf6Qg/sEQRD+iG7GsbNfuqcE +QRCE3ycRGoIgCEKvidAQBEEQek2EhiAIgtBrIjQEQRCEXhOhIQiCIPSaCA1BEASh10RoCIIgCL0m +QkMQBEHoNREagiAIQq+J0BAEQRB6TYSGIAiC0GsiNARBEIReE6EhCIIg9JoIDUEQBKHXRGgIgiAI +vSZCQxAEQeg1ERqCIAhCr4nQEARBEHpNhIYgCILQayI0BEEQhF4ToSEIgiD0Wr+ExsmTJxk8eDDh +4eFERkaSnp7e872lS5fi4+ODv78/+/bt64/mCYIgCL+gX0Lj5Zdf5q233iIrK4u//vWvvPzyywBk +Z2fz/fffk52dzZ49e1i4cCE6na4/mtivkpOT+7sJt5So7/ftbq7vbq7tZumX0HB0dKSxsRGAhoYG +nJ2dAdi6dSsJCQmoVCrc3d3x9vbm5MmT/dHEfnW3/+KK+n7f7ub67ubabhZlf+z0nXfeITY2lhdf +fBGdTseJEycAKCsrY8iQIT3LqdVqSktL+6OJgiAIws+4ZaExZswYKioqbnh9yZIlLFu2jGXLljFt +2jR++OEHFixYwP79+392OzKZ7FY1URAEQfi1pH5gamra87VOp5PMzMwkSZKkpUuXSkuXLu353rhx +46TU1NQb1vfy8pIA8RAP8RAP8fgVDy8vrz4fv/ule8rb25vDhw8zYsQIDh06hK+vLwBTpkxh9uzZ +PP/885SWlpKXl8fgwYNvWP/y5cu3u8mCIAgC/XROY/ny5SxatIjOzk4MDQ1Zvnw5AIGBgcyaNYvA +wECUSiWfffaZ6J4SBEG4g8gkSZL6uxGCIAjC78MdNyJ8z549+Pv74+Pjw7vvvvuzyzz99NP4+PgQ +GhpKVlbWr1q3v/3W+oqLixk5ciRBQUEMGDCAZcuW3c5m91pf3j8ArVZLeHg4kydPvh3N/VX6UltD +QwMzZswgICCAwMBAUlNTb1eze60v9S1dupSgoCCCg4OZPXs2nZ2dt6vZvfaf6rt06RLR0dEYGBjw +4Ycf/qp17wS/tb5ffWzp81mRm0ij0UheXl5SQUGB1NXVJYWGhkrZ2dnXLbNz505pwoQJkiRJUmpq +qhQVFdXrdftbX+orLy+XsrKyJEmSpObmZsnX1/euqu9HH374oTR79mxp8uTJt63dvdHX2ubNmyet +WLFCkiRJ6u7ulhoaGm5f43uhL/UVFBRIHh4eUkdHhyRJkjRr1ixp1apVt7eA/6A39VVVVUnp6enS +q6++Kn3wwQe/at3+1pf6fu2x5Y76pHHy5Em8vb1xd3dHpVLxwAMPsHXr1uuW2bZtG/PnzwcgKiqK +hoYGKioqerVuf/ut9VVWVuLg4EBYWBgAJiYmBAQEUFZWdttr+Hf6Uh9ASUkJu3bt4pFHHkG6w3pN ++1JbY2MjR44cYcGCBQAolUrMzc1vew3/Tl/qMzMzQ6VS0dbWhkajoa2trWfA7p2iN/XZ2toSERGB +SqX61ev2t77U92uPLXdUaJSWluLi4tLz/OcG9/3SMmVlZf9x3f72W+srKSm5bpnCwkKysrKIioq6 +tQ3+lfry/gE899xzvP/++8jld9SvJdC3966goABbW1seeughBg4cyKOPPkpbW9tta3tv9OW9s7Ky +4oUXXsDV1RUnJycsLCwYPXr0bWt7b/Smvlux7u1ys9rYm2PLHfXX2dsrpe60/0J767fW99P1Wlpa +mDFjBp988gkmJiY3tX199VvrkySJHTt2YGdnR3h4+B35/vblvdNoNGRmZrJw4UIyMzMxNjbmnXfe +uRXN/M368rd35coVPv74YwoLCykrK6OlpYXvvvvuZjexT/pyFebv4QrOm9HG3h5b7qjQcHZ2pri4 +uOd5cXExarX63y5TUlKCWq3u1br97bfW9+NH/e7ubqZPn87cuXOZOnXq7Wn0r9CX+o4fP862bdvw +8PAgISGBQ4cOMW/evNvW9v+kL7Wp1WrUajWRkZEAzJgxg8zMzNvT8F7qS30ZGRnExMRgbW2NUqnk +vvvu4/jx47et7b3Rl+PD3XJs+Xd+1bHl5p6O6Zvu7m7J09NTKigokDo7O//jybgTJ070nIzrzbr9 +rS/16XQ66cEHH5SeffbZ297u3upLfT+VnJws3XPPPbelzb3V19qGDRsm5eTkSJIkSa+//rr08ssv +377G90Jf6svKypKCgoKktrY2SafTSfPmzZM+/fTT217Dv/Nrjg+vv/76dSeK75Zjy4/+tb5fe2y5 +o0JDkiRp165dkq+vr+Tl5SW9/fbbkiRJ0hdffCF98cUXPcssWrRI8vLykkJCQqRTp07923XvNL+1 +viNHjkgymUwKDQ2VwsLCpLCwMGn37t39UsO/05f370fJycl33NVTktS32k6fPi1FRERIISEh0rRp +0+64q6ckqW/1vfvuu1JgYKA0YMAAad68eVJXV9dtb/9/8p/qKy8vl9RqtWRmZiZZWFhILi4uUnNz +8y+ue6f5rfX92mOLGNwnCIIg9NoddU5DEARBuLOJ0BAEQRB6TYSGIAiC0GsiNARBEIReE6EhCIIg +9JoIDUEQBKHXRGgIf3i1tbWEh4cTHh6Oo6MjarWa8PBwTE1NWbx48S3Z56effsqqVat+8fvbtm3j +rbfeuiX7FoS+EOM0BOEn3nzzTUxNTXn++edv2T4kSWLgwIGkp6ejVP785JmSJBEeHk56evoNdyUV +hP4kPmkIwr/48f+o5OTknsmg3njjDebPn8/w4cNxd3dn06ZNvPjii4SEhDBhwgQ0Gg0Ap06dIi4u +joiICMaPH09FRcUN2z927Bj+/v49gbFs2TKCgoIIDQ0lISEBuHYDuujoaPbt23c7ShaEXhOhIQi9 +VFBQQFJSEtu2bWPu3LmMGTOGs2fPYmhoyM6dO+nu7uapp55i48aNZGRk8NBDD/Hqq6/esJ2jR48S +ERHR8/zdd9/l9OnTnDlzhi+//LLn9cGDB5OSknJbahOE3vr5z8aCIFxHJpMxYcIEFAoFAwYMQKfT +MW7cOACCg4MpLCwkNzeXCxcu9MwlodVqcXJyumFbRUVFxMbG9jwPCQlh9uzZTJ069bo7jDo5ObFn +z55bXJkg/DoiNAShl/T09ACQy+XXnWeQy+VoNBokSSIoKKhXtwXbO/ihAAABMklEQVT/6anEnTt3 +kpKSwvbt21myZAnnz59HLpej0+l+F3M5CH8sontKEHqhN9eL+Pn5UV1dTWpqKnBtjoLs7OwblnNz +c+s51yFJEkVFRcTFxfHOO+/Q2NhIS0sLAOXl5bi5ud3EKgSh70RoCMK/+PG/e5lM9rNf/3SZnz5X +qVRs2LCBV155hbCwMMLDwzlx4sQN24+NjSUjIwMAjUbDgw8+SEhICAMHDuSZZ57BzMwMuDbv8/Dh +w29JjYLwW4lLbgXhNvvxktu0tLSeLq9/pdPpGDhwIBkZGb94Wa4g9AfxSUMQbjOZTMajjz76b+fR +3rFjBzNmzBCBIdxxxCcNQRAEodfEJw1BEASh10RoCIIgCL0mQkMQBEHoNREagiAIQq+J0BAEQRB6 +TYSGIAiC0Gv/H8JmNGFeqWbnAAAAAElFTkSuQmCC +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Passive_model_using_morphology.html b/docs/user/tutorials/_static/Passive_model_using_morphology.html new file mode 100644 index 0000000000000000000000000000000000000000..a303607cd290060f3a2ac48f83526976b1c7f1b7 --- /dev/null +++ b/docs/user/tutorials/_static/Passive_model_using_morphology.html @@ -0,0 +1,2601 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>[]</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="A-passive-model-using-a-morphology-file-in-the-.swc-file-forma">A passive model using a morphology file in the .swc file forma<a class="anchor-link" href="#A-passive-model-using-a-morphology-file-in-the-.swc-file-forma">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [*]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">cellProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'./cells/h10.CNG.swc'</span><span class="p">,</span> <span class="s">'elec'</span><span class="p">]],</span> + <span class="n">stimList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'inject'</span><span class="p">,</span> <span class="s">'t * 25e-9'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Membrane potential'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'Ca_conc'</span><span class="p">,</span> <span class="s">'Ca'</span><span class="p">,</span> <span class="s">'Ca conc (uM)'</span><span class="p">]],</span> + <span class="n">moogList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Soma potential'</span><span class="p">]]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> + +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">rdes</span><span class="o">.</span><span class="n">displayMoogli</span><span class="p">(</span> <span class="mf">0.0002</span><span class="p">,</span> <span class="mf">0.1</span> <span class="p">)</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 204 compartments and 0 spines on 0 compartments. + +</pre> +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAY0AAAEZCAYAAABrUHmEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz +AAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd0E1f+//+nJMuy3HvHGAPGGGNqCB3TOzj0EnovoQRC +CxDTe6gJhF5C79Whm94NGJtiwA3j3qssS5rvH/tb/z7Z3STsEmKS3Mc5OQdp5LnvuZMzL83cOyOZ +JEkSgiAIgvAO5KVdgCAIgvDnIUJDEARBeGciNARBEIR3JkJDEARBeGciNARBEIR3JkJDEARBeGci +NIS/pKCgIPr161faZfzpxMXFYWFhwbvMxA8JCaFMmTJ/QFXCx0SEhvDBeXp6olKpSE9P/9n7NWrU +QC6XExcX97u3KZPJfvd1fgwGDhzIrFmzfrf1eXp6cunSpZLXHh4e5Obm/mX7T3h/IjSED04mk+Hl +5cXevXtL3nvy5AmFhYUf7OD039yzqtPpPkgNfwYymey/6itBEKEh/CE+//xzdu7cWfJ6x44d9O/f +/2cHrKKiIiZPnkzZsmVxdnZm1KhRaDQa4B+XQtzd3Vm2bBmOjo64urpy7Ngxzpw5g7e3N3Z2dixe +vLhkXTKZDI1GQ69evbC0tKRWrVqEhYWVLPf09GTp0qX4+/tjYWGBXq9n8eLFVKhQAUtLS6pUqcKx +Y8dKPr99+3YaNmzIV199ha2tLV5eXvz0008ly7OzsxkyZAiurq64u7sza9YsDAbDf+yLoKAgunXr +9ou1PXv2jICAAGxsbPDz8+PkyZMAbNy4kT179rB06VIsLCzo3LkzAAkJCXTt2hVHR0e8vLxYu3bt +z9rq0aMHAwYMwNLSEj8/Px48eABAv379iIuLo2PHjlhYWLB8+XJiYmKQy+UltW/btg1fX18sLS0p +X748GzdufNddLvxVSYLwgXl6ekoXLlyQKlWqJD179kzS6XSSu7u7FBsbK8lkMik2NlaSJEmaMGGC +1LlzZykzM1PKzc2VOnbsKE2fPl2SJEm6fPmyZGRkJM2bN0/S6XTSpk2bJDs7O6lPnz5SXl6eFBER +IanVaikmJkaSJEn65ptvJKVSKR0+fFjS6XTS8uXLpXLlykk6nU6SJEkqW7asVKNGDSk+Pl7SaDSS +JEnSwYMHpcTEREmSJGn//v2SmZmZlJSUJEmSJG3btk1SKpXS5s2bJYPBIK1fv15ydXUt2cbAwEBp +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 +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/SinglePassiveCompartment_CurrentInjection.html b/docs/user/tutorials/_static/SinglePassiveCompartment_CurrentInjection.html new file mode 100644 index 0000000000000000000000000000000000000000..9d18d22b9a1e7a0d46e24575bfa2db8ed4082ec0 --- /dev/null +++ b/docs/user/tutorials/_static/SinglePassiveCompartment_CurrentInjection.html @@ -0,0 +1,1789 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>[]</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="Create-a-single-passive-compartment-model,-current-is-injected-as-the-simulation-runs.-This-script-displays-the-membrane-potential-of-the-soma-as-it-charges-and-discharges.">Create a single passive compartment model, current is injected as the simulation runs. This script displays the membrane potential of the soma as it charges and discharges.<a class="anchor-link" href="#Create-a-single-passive-compartment-model,-current-is-injected-as-the-simulation-runs.-This-script-displays-the-membrane-potential-of-the-soma-as-it-charges-and-discharges.">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [1]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="o">%</span><span class="k">matplotlib</span> <span class="n">inline</span> + +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">stimList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'inject'</span><span class="p">,</span> <span class="s">'(t>0.1 && t<0.2) * 2e-8'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Soma membrane potential'</span><span class="p">]]</span> +<span class="p">)</span> +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mf">0.3</span> <span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">display</span><span class="p">()</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 1 compartments and 0 spines on 0 compartments. + +</pre> +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Single_passive_Compartment.html b/docs/user/tutorials/_static/Single_passive_Compartment.html new file mode 100644 index 0000000000000000000000000000000000000000..ad23218b96a3c079a76b6f998f85314793cdeeb2 --- /dev/null +++ b/docs/user/tutorials/_static/Single_passive_Compartment.html @@ -0,0 +1,1596 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Single_passive_Compartment</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h2 id="Creates-Single-Passive-Compartment-Model">Creates Single Passive Compartment Model<a class="anchor-link" href="#Creates-Single-Passive-Compartment-Model">¶</a></h2> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [2]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">()</span> +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">showfields</span><span class="p">(</span> <span class="n">rdes</span><span class="o">.</span><span class="n">soma</span> <span class="p">)</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 1 compartments and 0 spines on 0 compartments. + +[ /model[0]/elec[0]/soma[0] ] +diameter = 0.0005 +fieldIndex = 0 +Ra = 7639437.26841 +y0 = 0.0 +Rm = 424413.177334 +index = 0 +numData = 1 +inject = 0.0 +initVm = -0.065 +Em = -0.0544 +y = 0.0 +numField = 1 +path = /model[0]/elec[0]/soma[0] +dt = 0.0 +tick = -2 +z0 = 0.0 +name = soma +Cm = 7.85398163398e-09 +x0 = 0.0 +Vm = -0.06 +className = ZombieCompartment +idValue = 465 +length = 0.0005 +Im = 1.3194689277e-08 +x = 0.0005 +z = 0.0 + +</pre> +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Spiny_neuron_reaction-diffusion_system.html b/docs/user/tutorials/_static/Spiny_neuron_reaction-diffusion_system.html new file mode 100644 index 0000000000000000000000000000000000000000..aaabeb4b2d9699bdd541e08e31182a86c009e88d --- /dev/null +++ b/docs/user/tutorials/_static/Spiny_neuron_reaction-diffusion_system.html @@ -0,0 +1,3553 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Spiny_neuron_reaction-diffusion_system</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="Spiny-neuron-from-a-morphology-file-together-with-reaction-diffusion-system-in-it">Spiny neuron from a morphology file together with reaction-diffusion system in it<a class="anchor-link" href="#Spiny-neuron-from-a-morphology-file-together-with-reaction-diffusion-system-in-it">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [2]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> + +<span class="n">library</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Neutral</span><span class="p">(</span> <span class="s">'/library'</span> <span class="p">)</span> +<span class="n">compt</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">makeChemOscillator</span><span class="p">(</span> <span class="s">'osc'</span> <span class="p">)</span> +<span class="n">compt</span><span class="o">.</span><span class="n">volume</span> <span class="o">=</span> <span class="mf">1e-18</span> +<span class="n">moose</span><span class="o">.</span><span class="n">copy</span><span class="p">(</span> <span class="n">compt</span><span class="p">,</span> <span class="s">'/library/osc'</span><span class="p">,</span> <span class="s">'spine'</span> <span class="p">)</span> +<span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/library/osc/spine'</span> <span class="p">)</span><span class="o">.</span><span class="n">volume</span> <span class="o">=</span> <span class="mf">1e-19</span> +<span class="n">moose</span><span class="o">.</span><span class="n">copy</span><span class="p">(</span> <span class="n">compt</span><span class="p">,</span> <span class="s">'/library/osc'</span><span class="p">,</span> <span class="s">'psd'</span> <span class="p">)</span> +<span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/library/osc/psd'</span> <span class="p">)</span><span class="o">.</span><span class="n">volume</span> <span class="o">=</span> <span class="mf">1e-20</span> + +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">turnOffElec</span> <span class="o">=</span> <span class="bp">True</span><span class="p">,</span> + <span class="n">useGssa</span> <span class="o">=</span> <span class="bp">False</span><span class="p">,</span> + <span class="n">cellProto</span> <span class="o">=</span> <span class="p">[[</span> <span class="s">'./cells/h10.CNG.swc'</span><span class="p">,</span> <span class="s">'elec'</span><span class="p">]],</span> + <span class="n">spineProto</span> <span class="o">=</span> <span class="p">[[</span> <span class="s">'makePassiveSpine()'</span><span class="p">,</span> <span class="s">'spine'</span> <span class="p">]</span> <span class="p">],</span> + <span class="n">spineDistrib</span> <span class="o">=</span> <span class="p">[</span> <span class="p">[</span><span class="s">"spine"</span><span class="p">,</span> <span class="s">'#apical#,#dend#'</span><span class="p">,</span> <span class="s">'10e-6'</span><span class="p">,</span> <span class="s">'1e-6'</span> <span class="p">]],</span> + <span class="n">chemProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'/library/osc'</span><span class="p">,</span> <span class="s">'osc'</span><span class="p">]],</span> + <span class="n">chemDistrib</span> <span class="o">=</span><span class="p">[[</span> <span class="s">'osc'</span><span class="p">,</span> <span class="s">'#apical#,#dend#'</span><span class="p">,</span> <span class="s">'install'</span><span class="p">,</span> <span class="s">'H(p - 5e-4)'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'psd/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'conc of a in PSD'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'spine/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'conc of a in spine'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'dend/a'</span><span class="p">,</span> <span class="s">'conc'</span><span class="p">,</span> <span class="s">'conc of a in Dend'</span><span class="p">]</span> + <span class="p">]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> + +<span class="n">av</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">vec</span><span class="p">(</span> <span class="s">'/model/chem/psd/a'</span> <span class="p">)</span> +<span class="n">av</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">concInit</span> <span class="o">*=</span> <span class="mi">10</span> + +<span class="sd">'''</span> +<span class="sd">dv = moose.vec( '/model/chem/dend/a' )</span> +<span class="sd">print len( dv )</span> +<span class="sd">dv[0].concInit *= 2</span> +<span class="sd">'''</span> + +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mi">100</span> <span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">display</span><span class="p">()</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +Rdesigneur: Elec model has 204 compartments and 1164 spines on 21 compartments. +Chem part of model has 744 dendrite voxels X 3 pools, + +180 spine voxels X 3 pools, 180 psd voxels X 3 pools. + +</pre> +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +O+64g6eeeoqdO3eyc+fOo7YphBCidyQtQC666CKysrKOWLd8+XLmzZsHwLx583jhhRcAWLZsGXPm +zMFut1NSUsKQIUP46KOPqK+vp6Ojg0mTJgFwyy23xL8jhBCid/XoPZDGxkby8/MByM/Pp7GxEYC6 +ujqKi4vjnysuLsbr9R61vqioCK/X25NFFkII0YVeu4muaRqapvXW7oUQQpwkW0/uLD8/n4aGBgoK +CqivrycvLw8waxY1NTXxz9XW1lJcXExRURG1tbVHrC8qKupy+w899FB8ecqUKUyZMuWU/wYhhOjL +Vq5cycqVK0/JtjR16G51ElRXVzNr1iw2b94MwPz588nOzua+++6joqKCtrY2KioqqKysZO7cuaxZ +swav18u0adOoqqpC0zQmT57MwoULmTRpEv/0T//E9773Pa644oqjf4imkcSfIoQQX0onc+5MWg1k +zpw5rFq1iqamJgYMGMAjjzzC/fffz+zZs3nqqacoKSlh6dKlAJSVlTF79mzKysqw2WwsWrQofnlr +0aJF3HrrrQSDQWbOnHnM8BBCCNHzkloD6UlSAxFCiBN3MudO6YkuhBAiIRIgQgghEiIBIoQQIiES +IEIIIRIiASKEECIhEiBCCCESIgEihBAiIRIgQgghEiIBIoQQIiESIEIIIRIiASKEECIhEiBCCCES +IgEihBAiIRIgQgghEiIBIoQQIiESIEIIIRIiASKEECIhEiBCCCESIgEihBAiIRIgQgghEiIBIoQQ +IiESIEIIIRIiASKEECIhEiBCCCESYuvuA1u2bOGdd96huroaTdMoKSnhoosuYtSoUT1RPiGEEKcp +TSmljvXGH//4R37zm9+QnZ3NpEmTKCwsRClFfX09a9asoampie9///vcdNNNPV3mY9I0jS5+ihBC +iC6czLmzyxpIa2srb775Jmlpacd83+fz8eyzzya0UyGEEH1flzWQvkZqIEIIceKSUgP57ne/2+WG +NU1j4cKFCe1QCCHEl0OXrbD++7//m3fffZfCwkImTpzIxIkTmTBhQnw6GeXl5YwaNYoxY8Ywd+5c +wuEwLS0tTJ8+nWHDhjFjxgza2tqO+PzQoUMZMWIEr7322kntWwghxKnR5SWspqYm/vKXv7B06VKs +VivXX3891113HZmZmSe1w+rqai677DK2bt2K0+nk+uuvZ+bMmWzZsoWcnBzmz5/PY489RmtrKxUV +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 +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +zqP3tW/fXs6dO/eEPEA0mhfu/h/Ro1FP+d30mHRo2Pmp9Wj/C4iJEfHyevq9yLw8cTl9WjZu2yb1 +6teT6ouqy4I6G+WrRksk7/qruS3+CekF6eLyrYvM+XWO9HrrO+nfcpj8Zn1UhrYaX+p9/Reg1qql +9drWsvSbPiIeHi9VcLr4YbGk7UmT+HnxcuujW3K+f6xMMo2VM6PuSsLSBMkKyxJ1nvr5gl4A5x6c +k+qLqkuXTV3kYc7DUpH5PFzPz5dyp07J3vT0p96/du2atGnTRvz8/GTPrl2i27tXpFkzET8/kc2b +9W7PNwStVis7duyQypUrS9u2bSUiIuKN9f2/WJWYKM6nTsnRzMxXev/Nm2nSu/dhmTVrnhw/3lem +Tq0k9esbi4UF0qqVqXz1laccOtRUrl3rKBERb0tkZHeJiOgs4eEtX8v19ELvLCkpkYiICImMjBSV +SvVSHTztjOJP/P2M4vr161KrVi0pKSmRu3fvio+Pj+h0uicVBnnK5VfCuJaTZUWlvTKr93/zfEJE +/zzZ2IikPsPl2u7qVVmRkCDVq1eXrzd+LYNavSu/WR+VPk0GlLoug3cNlgn7JkjdKk1kl+0x+dl/ +h8xouKzU+/kvIb0gXSr+WFFud24iMnHiK8koKhKpVUtk8eLS1S2/JF8+PPChuHzrIpsjNz/1eSlL +nMvJEcdTp+RkVtZT7+uSk+XGkCHywMhIrpuby5UPPxTdS84frwOtVivbt2+XmjVrSkBAgOzbt++N +j9EjXXQ6+fT2bal49qzcyM9/LVlFRSKjR4tUqiQSHq6/lpx8XxYvniddurQSW1tLqVLFU0aM6CQL +F46XM2cWSlrawbI3FKdPn5b169fLmjVrZO3atbJ27doXEt63b19xdXUVY2NjcXd3l9WrVz9239vb ++5GhEBGZNWuWVKxYUfz8/OTAgQNPV/g1Puz/YkbDZfJ1w+Vy4cN+pSazLNCmjciePU+/dyQzU6qc +Py+bt26V+vXrS9dNXWV+wHqZHbhK0n5PKjUd9t/aLxW+ryA/LPxBFnpvk/dbfCEbXQ9Jl+bdS62P +/yqiUqKk6ucOonKwFbl69aXeq9OJDBsm0quXlNoCR0TkyJ0j4v2DtwzYOUDSCtJKT/BL4mBGhjif +OiVX/9xtpaSILFki0qqVfoUzZIhoz52Tbdu2Sc2aNaVOnTqyfv16KSoqKjOdcnNzZfHixVK9enWp +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 +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +AABJRU5ErkJggg== +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/Spinyneuron_morphology_activeChannel.html b/docs/user/tutorials/_static/Spinyneuron_morphology_activeChannel.html new file mode 100644 index 0000000000000000000000000000000000000000..fe068e7946125ff6c2123528a786b61071602162 --- /dev/null +++ b/docs/user/tutorials/_static/Spinyneuron_morphology_activeChannel.html @@ -0,0 +1,3826 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Spinyneuron_morphology_activeChannel</title> +<style type="text/css"> + article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1} +audio:not([controls]){display:none} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +a:hover,a:active{outline:0} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline} +sup{top:-0.5em} +sub{bottom:-0.25em} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic} +#map_canvas img,.google-maps img{max-width:none} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle} +button,input{*overflow:visible;line-height:normal} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none} +textarea{overflow:auto;vertical-align:top} +@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} @page {margin:.5cm}p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000;background-color:#fff} +a{color:#08c;text-decoration:none} +a:hover,a:focus{color:#005580;text-decoration:underline} +.img-rounded{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)} +.img-circle{border-radius:500px;-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px} +.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} +.row:after{clear:both} +[class*="span"]{float:left;min-height:1px;margin-left:20px} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.span12{width:940px} +.span11{width:860px} +.span10{width:780px} +.span9{width:700px} +.span8{width:620px} +.span7{width:540px} +.span6{width:460px} +.span5{width:380px} +.span4{width:300px} +.span3{width:220px} +.span2{width:140px} +.span1{width:60px} +.offset12{margin-left:980px} +.offset11{margin-left:900px} +.offset10{margin-left:820px} +.offset9{margin-left:740px} +.offset8{margin-left:660px} +.offset7{margin-left:580px} +.offset6{margin-left:500px} +.offset5{margin-left:420px} +.offset4{margin-left:340px} +.offset3{margin-left:260px} +.offset2{margin-left:180px} +.offset1{margin-left:100px} +.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} +.row-fluid:after{clear:both} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%} +.row-fluid [class*="span"]:first-child{margin-left:0} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%} +.row-fluid .span12{width:100%;*width:99.94680851063829%} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right} +.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0} +.container:after{clear:both} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0} +.container-fluid:after{clear:both} +p{margin:0 0 10px} +.lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px} +small{font-size:85%} +strong{font-weight:bold} +em{font-style:italic} +cite{font-style:normal} +.muted{color:#999} +a.muted:hover,a.muted:focus{color:#808080} +.text-warning{color:#c09853} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c} +.text-error{color:#b94a48} +a.text-error:hover,a.text-error:focus{color:#953b39} +.text-info{color:#3a87ad} +a.text-info:hover,a.text-info:focus{color:#2d6987} +.text-success{color:#468847} +a.text-success:hover,a.text-success:focus{color:#356635} +.text-left{text-align:left} +.text-right{text-align:right} +.text-center{text-align:center} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999} +h1,h2,h3{line-height:40px} +h1{font-size:35.75px} +h2{font-size:29.25px} +h3{font-size:22.75px} +h4{font-size:16.25px} +h5{font-size:13px} +h6{font-size:11.049999999999999px} +h1 small{font-size:22.75px} +h2 small{font-size:16.25px} +h3 small{font-size:13px} +h4 small{font-size:13px} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee} +ul,ol{padding:0;margin:0 0 10px 25px} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0} +li{line-height:20px} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none} +ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px} +dl{margin-bottom:20px} +dt,dd{line-height:20px} +dt{font-weight:bold} +dd{margin-left:10px} +.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0} +.dl-horizontal:after{clear:both} +.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} +.dl-horizontal dd{margin-left:180px} +hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999} +abbr.initialism{font-size:90%;text-transform:uppercase} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25} +blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right} +blockquote.pull-right small:before{content:''} +blockquote.pull-right small:after{content:'\00A0 \2014'} +q:before,q:after,blockquote:before,blockquote:after{content:""} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px} +code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0} +.pre-scrollable{max-height:340px;overflow-y:scroll} +form{margin:0 0 20px} +fieldset{padding:0;margin:0;border:0} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif} +label{display:block;margin-bottom:5px} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle} +input,textarea,.uneditable-input{width:206px} +textarea{height:auto} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px} +select{width:220px;border:1px solid #ccc;background-color:#fff} +select[multiple],select[size]{height:auto} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);cursor:not-allowed} +.uneditable-input{overflow:hidden;white-space:nowrap} +.uneditable-textarea{width:auto;height:auto} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999} +.radio,.checkbox{min-height:20px;padding-left:20px} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px} +.input-mini{width:60px} +.input-small{width:90px} +.input-medium{width:150px} +.input-large{width:210px} +.input-xlarge{width:270px} +.input-xxlarge{width:530px} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block} +input,textarea,.uneditable-input{margin-left:0} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px} +input.span12,textarea.span12,.uneditable-input.span12{width:926px} +input.span11,textarea.span11,.uneditable-input.span11{width:846px} +input.span10,textarea.span10,.uneditable-input.span10{width:766px} +input.span9,textarea.span9,.uneditable-input.span9{width:686px} +input.span8,textarea.span8,.uneditable-input.span8{width:606px} +input.span7,textarea.span7,.uneditable-input.span7{width:526px} +input.span6,textarea.span6,.uneditable-input.span6{width:446px} +input.span5,textarea.span5,.uneditable-input.span5{width:366px} +input.span4,textarea.span4,.uneditable-input.span4{width:286px} +input.span3,textarea.span3,.uneditable-input.span3{width:206px} +input.span2,textarea.span2,.uneditable-input.span2{width:126px} +input.span1,textarea.span1,.uneditable-input.span1{width:46px} +.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0} +.controls-row:after{clear:both} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0} +.form-actions:after{clear:both} +.help-block,.help-inline{color:#262626} +.help-block{display:block;margin-bottom:10px} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-append input,.input-append select,.input-append .uneditable-input{border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.input-prepend.input-append .btn-group:first-child{margin-left:0} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.form-search .input-append .search-query{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search .input-append .btn{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .search-query{border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0} +.form-search .input-prepend .btn{border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0} +.control-group{margin-bottom:10px} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0} +.form-horizontal .control-group:after{clear:both} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px} +.form-horizontal .help-block{margin-bottom:0} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px} +.form-horizontal .form-actions{padding-left:180px} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0} +.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd} +.table th{font-weight:bold} +.table thead th{vertical-align:bottom} +.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0} +.table tbody+tbody{border-top:2px solid #ddd} +.table .table{background-color:#fff} +.table-condensed th,.table-condensed td{padding:4px 5px} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0} +.table tbody tr.success>td{background-color:#dff0d8} +.table tbody tr.error>td{background-color:#f2dede} +.table tbody tr.warning>td{background-color:#fcf8e3} +.table tbody tr.info>td{background-color:#d9edf7} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6} +.table-hover tbody tr.error:hover>td{background-color:#ebcccc} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc} +.table-hover tbody tr.info:hover>td{background-color:#c4e3f3} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")} +.icon-glass{background-position:0 0} +.icon-music{background-position:-24px 0} +.icon-search{background-position:-48px 0} +.icon-envelope{background-position:-72px 0} +.icon-heart{background-position:-96px 0} +.icon-star{background-position:-120px 0} +.icon-star-empty{background-position:-144px 0} +.icon-user{background-position:-168px 0} +.icon-film{background-position:-192px 0} +.icon-th-large{background-position:-216px 0} +.icon-th{background-position:-240px 0} +.icon-th-list{background-position:-264px 0} +.icon-ok{background-position:-288px 0} +.icon-remove{background-position:-312px 0} +.icon-zoom-in{background-position:-336px 0} +.icon-zoom-out{background-position:-360px 0} +.icon-off{background-position:-384px 0} +.icon-signal{background-position:-408px 0} +.icon-cog{background-position:-432px 0} +.icon-trash{background-position:-456px 0} +.icon-home{background-position:0 -24px} +.icon-file{background-position:-24px -24px} +.icon-time{background-position:-48px -24px} +.icon-road{background-position:-72px -24px} +.icon-download-alt{background-position:-96px -24px} +.icon-download{background-position:-120px -24px} +.icon-upload{background-position:-144px -24px} +.icon-inbox{background-position:-168px -24px} +.icon-play-circle{background-position:-192px -24px} +.icon-repeat{background-position:-216px -24px} +.icon-refresh{background-position:-240px -24px} +.icon-list-alt{background-position:-264px -24px} +.icon-lock{background-position:-287px -24px} +.icon-flag{background-position:-312px -24px} +.icon-headphones{background-position:-336px -24px} +.icon-volume-off{background-position:-360px -24px} +.icon-volume-down{background-position:-384px -24px} +.icon-volume-up{background-position:-408px -24px} +.icon-qrcode{background-position:-432px -24px} +.icon-barcode{background-position:-456px -24px} +.icon-tag{background-position:0 -48px} +.icon-tags{background-position:-25px -48px} +.icon-book{background-position:-48px -48px} +.icon-bookmark{background-position:-72px -48px} +.icon-print{background-position:-96px -48px} +.icon-camera{background-position:-120px -48px} +.icon-font{background-position:-144px -48px} +.icon-bold{background-position:-167px -48px} +.icon-italic{background-position:-192px -48px} +.icon-text-height{background-position:-216px -48px} +.icon-text-width{background-position:-240px -48px} +.icon-align-left{background-position:-264px -48px} +.icon-align-center{background-position:-288px -48px} +.icon-align-right{background-position:-312px -48px} +.icon-align-justify{background-position:-336px -48px} +.icon-list{background-position:-360px -48px} +.icon-indent-left{background-position:-384px -48px} +.icon-indent-right{background-position:-408px -48px} +.icon-facetime-video{background-position:-432px -48px} +.icon-picture{background-position:-456px -48px} +.icon-pencil{background-position:0 -72px} +.icon-map-marker{background-position:-24px -72px} +.icon-adjust{background-position:-48px -72px} +.icon-tint{background-position:-72px -72px} +.icon-edit{background-position:-96px -72px} +.icon-share{background-position:-120px -72px} +.icon-check{background-position:-144px -72px} +.icon-move{background-position:-168px -72px} +.icon-step-backward{background-position:-192px -72px} +.icon-fast-backward{background-position:-216px -72px} +.icon-backward{background-position:-240px -72px} +.icon-play{background-position:-264px -72px} +.icon-pause{background-position:-288px -72px} +.icon-stop{background-position:-312px -72px} +.icon-forward{background-position:-336px -72px} +.icon-fast-forward{background-position:-360px -72px} +.icon-step-forward{background-position:-384px -72px} +.icon-eject{background-position:-408px -72px} +.icon-chevron-left{background-position:-432px -72px} +.icon-chevron-right{background-position:-456px -72px} +.icon-plus-sign{background-position:0 -96px} +.icon-minus-sign{background-position:-24px -96px} +.icon-remove-sign{background-position:-48px -96px} +.icon-ok-sign{background-position:-72px -96px} +.icon-question-sign{background-position:-96px -96px} +.icon-info-sign{background-position:-120px -96px} +.icon-screenshot{background-position:-144px -96px} +.icon-remove-circle{background-position:-168px -96px} +.icon-ok-circle{background-position:-192px -96px} +.icon-ban-circle{background-position:-216px -96px} +.icon-arrow-left{background-position:-240px -96px} +.icon-arrow-right{background-position:-264px -96px} +.icon-arrow-up{background-position:-289px -96px} +.icon-arrow-down{background-position:-312px -96px} +.icon-share-alt{background-position:-336px -96px} +.icon-resize-full{background-position:-360px -96px} +.icon-resize-small{background-position:-384px -96px} +.icon-plus{background-position:-408px -96px} +.icon-minus{background-position:-433px -96px} +.icon-asterisk{background-position:-456px -96px} +.icon-exclamation-sign{background-position:0 -120px} +.icon-gift{background-position:-24px -120px} +.icon-leaf{background-position:-48px -120px} +.icon-fire{background-position:-72px -120px} +.icon-eye-open{background-position:-96px -120px} +.icon-eye-close{background-position:-120px -120px} +.icon-warning-sign{background-position:-144px -120px} +.icon-plane{background-position:-168px -120px} +.icon-calendar{background-position:-192px -120px} +.icon-random{background-position:-216px -120px;width:16px} +.icon-comment{background-position:-240px -120px} +.icon-magnet{background-position:-264px -120px} +.icon-chevron-up{background-position:-288px -120px} +.icon-chevron-down{background-position:-313px -119px} +.icon-retweet{background-position:-336px -120px} +.icon-shopping-cart{background-position:-360px -120px} +.icon-folder-close{background-position:-384px -120px;width:16px} +.icon-folder-open{background-position:-408px -120px;width:16px} +.icon-resize-vertical{background-position:-432px -119px} +.icon-resize-horizontal{background-position:-456px -118px} +.icon-hdd{background-position:0 -144px} +.icon-bullhorn{background-position:-24px -144px} +.icon-bell{background-position:-48px -144px} +.icon-certificate{background-position:-72px -144px} +.icon-thumbs-up{background-position:-96px -144px} +.icon-thumbs-down{background-position:-120px -144px} +.icon-hand-right{background-position:-144px -144px} +.icon-hand-left{background-position:-168px -144px} +.icon-hand-up{background-position:-192px -144px} +.icon-hand-down{background-position:-216px -144px} +.icon-circle-arrow-right{background-position:-240px -144px} +.icon-circle-arrow-left{background-position:-264px -144px} +.icon-circle-arrow-up{background-position:-288px -144px} +.icon-circle-arrow-down{background-position:-312px -144px} +.icon-globe{background-position:-336px -144px} +.icon-wrench{background-position:-360px -144px} +.icon-tasks{background-position:-384px -144px} +.icon-filter{background-position:-408px -144px} +.icon-briefcase{background-position:-432px -144px} +.icon-fullscreen{background-position:-456px -144px} +.dropup,.dropdown{position:relative} +.dropdown-toggle{*margin-bottom:-3px} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""} +.dropdown .caret{margin-top:8px;margin-left:2px} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default} +.open{*z-index:1000}.open>.dropdown-menu{display:block} +.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} +.pull-right>.dropdown-menu{right:0;left:auto} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px} +.dropdown-submenu{position:relative} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;border-radius:0 6px 6px 6px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px} +.dropdown-submenu:hover>.dropdown-menu{display:block} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px} +.dropdown-submenu:hover>a:after{border-left-color:#fff} +.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px} +.typeahead{z-index:1051;margin-top:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} +.well-large{padding:24px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.well-small{padding:9px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #fff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);background-image:-o-linear-gradient(top, #fff, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9} +.btn:active,.btn.active{background-color:#ccc \9} +.btn:first-child{*margin-left:0} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-large{padding:11px 19px;font-size:16.25px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px} +.btn-small{padding:2px 10px;font-size:11.049999999999999px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px} +.btn-mini{padding:0 6px;font-size:9.75px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +.btn-block+.btn-block{margin-top:5px} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3} +.btn-primary:active,.btn-primary.active{background-color:#039 \9} +.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9} +.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9} +.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249} +.btn-success:active,.btn-success.active{background-color:#408140 \9} +.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0} +.btn-info:active,.btn-info.active{background-color:#24748c \9} +.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} +.btn-link{border-color:transparent;cursor:pointer;color:#08c;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0} +.btn-group+.btn-group{margin-left:5px} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px} +.btn-group>.btn{position:relative;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group>.btn+.btn{margin-left:-1px} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px} +.btn-group>.btn-mini{font-size:9.75px} +.btn-group>.btn-small{font-size:11.049999999999999px} +.btn-group>.btn-large{font-size:16.25px} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351} +.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222} +.btn .caret{margin-top:8px;margin-left:0} +.btn-large .caret{margin-top:6px} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px} +.btn-mini .caret,.btn-small .caret{margin-top:8px} +.dropup .btn-large .caret{border-bottom-width:5px} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px} +.btn-group-vertical>.btn:first-child{border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0} +.btn-group-vertical>.btn:last-child{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px} +.btn-group-vertical>.btn-large:first-child{border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0} +.btn-group-vertical>.btn-large:last-child{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.alert,.alert h4{color:#c09853} +.alert h4{margin:0} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847} +.alert-success h4{color:#468847} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48} +.alert-danger h4,.alert-error h4{color:#b94a48} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad} +.alert-info h4{color:#3a87ad} +.alert-block{padding-top:14px;padding-bottom:14px} +.alert-block>p,.alert-block>ul{margin-bottom:0} +.alert-block p+p{margin-top:5px} +.nav{margin-left:0;margin-bottom:20px;list-style:none} +.nav>li>a{display:block} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee} +.nav>li>a>img{max-width:none} +.nav>.pull-right{float:right} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase} +.nav li+.nav-header{margin-top:9px} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)} +.nav-list>li>a{padding:3px 15px} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff} +.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0} +.nav-tabs:after,.nav-pills:after{clear:both} +.nav-tabs>li,.nav-pills>li{float:left} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px} +.nav-tabs{border-bottom:1px solid #ddd} +.nav-tabs>li{margin-bottom:-1px} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c} +.nav-stacked>li{float:none} +.nav-stacked>li>a{margin-right:0} +.nav-tabs.nav-stacked{border-bottom:0} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2} +.nav-pills.nav-stacked>li>a{margin-bottom:3px} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px} +.nav-tabs .dropdown-menu{border-radius:0 0 6px 6px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px} +.nav-pills .dropdown-menu{border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580} +.nav-tabs .dropdown-toggle .caret{margin-top:8px} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999} +.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0} +.tabbable:after{clear:both} +.tab-content{overflow:auto} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none} +.tab-content>.active,.pill-content>.active{display:block} +.tabs-below>.nav-tabs{border-top:1px solid #ddd} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0} +.tabs-below>.nav-tabs>li>a{border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff} +.nav>.disabled>a{color:#999} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2} +.navbar-inner{min-height:36px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #fff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #fff, #f2f2f2);background-image:-o-linear-gradient(top, #fff, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0} +.navbar-inner:after{clear:both} +.navbar .container{width:auto} +.nav-collapse.collapse{height:auto;overflow:visible} +.navbar .brand{float:left;display:block;padding:8px 20px 8px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none} +.navbar-text{margin-bottom:0;line-height:36px;color:#777} +.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333} +.navbar .divider-vertical{height:36px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff} +.navbar .btn,.navbar .btn-group{margin-top:3px} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0} +.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0} +.navbar-form:after{clear:both} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:3px} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0} +.navbar-search{position:relative;float:left;margin-top:3px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px} +.navbar-fixed-top{top:0} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)} +.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0} +.navbar .nav.pull-right{float:right;margin-right:0} +.navbar .nav>li{float:left} +.navbar .nav>li>a{float:none;padding:8px 15px 8px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff} +.navbar .nav .dropdown-toggle .caret{margin-top:8px} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;border-radius:6px 0 6px 6px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222), to(#111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff} +.navbar-inverse .brand{color:#999} +.navbar-inverse .navbar-text{color:#999} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111} +.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff} +.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0 5px;color:#ccc} +.breadcrumb>.active{color:#999} +.pagination{margin:20px 0} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)} +.pagination ul>li{display:inline} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;background-color:transparent;cursor:default} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px} +.pagination-centered{text-align:center} +.pagination-right{text-align:right} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0} +.pager:after{clear:both} +.pager li{display:inline} +.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5} +.pager .next>a,.pager .next>span{float:right} +.pager .previous>a,.pager .previous>span{float:left} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:default} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0} +.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%} +.modal.fade.in{top:10%} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px} +.modal-header h3{margin:0;line-height:30px} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px} +.modal-form{margin-bottom:0} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0} +.modal-footer:after{clear:both} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} +.modal-footer .btn-group .btn+.btn{margin-left:-1px} +.modal-footer .btn-block+.btn-block{margin-left:0} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)} +.tooltip.top{margin-top:-3px;padding:5px 0} +.tooltip.right{margin-left:3px;padding:0 5px} +.tooltip.bottom{margin-top:3px;padding:5px 0} +.tooltip.left{margin-left:-3px;padding:0 5px} +.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} +.popover.right{margin-left:10px} +.popover.bottom{margin-top:10px} +.popover.left{margin-left:-10px} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none} +.popover-content{padding:9px 14px} +.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} +.popover .arrow{border-width:11px} +.popover .arrow:after{border-width:10px;content:""} +.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff} +.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,0.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0} +.thumbnails:after{clear:both} +.row-fluid .thumbnails{margin-left:0} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto} +.thumbnail .caption{padding:9px;color:#555} +.media,.media-body{overflow:hidden;*overflow:visible;zoom:1} +.media,.media .media{margin-top:15px} +.media:first-child{margin-top:0} +.media-object{display:block} +.media-heading{margin:0 0 5px} +.media>.pull-left{margin-right:10px} +.media>.pull-right{margin-left:10px} +.media-list{margin-left:0;list-style:none} +.label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999} +.label{border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.badge{padding-left:9px;padding-right:9px;border-radius:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px} +.label:empty,.badge:empty{display:none} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} +.label-important,.badge-important{background-color:#b94a48} +.label-important[href],.badge-important[href]{background-color:#953b39} +.label-warning,.badge-warning{background-color:#f89406} +.label-warning[href],.badge-warning[href]{background-color:#c67605} +.label-success,.badge-success{background-color:#468847} +.label-success[href],.badge-success[href]{background-color:#356635} +.label-info,.badge-info{background-color:#3a87ad} +.label-info[href],.badge-info[href]{background-color:#2d6987} +.label-inverse,.badge-inverse{background-color:#333} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a} +.btn .label,.btn .badge{position:relative;top:-1px} +.btn-mini .label,.btn-mini .badge{top:0} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0} to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,0.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,0.15)), color-stop(.75, rgba(255,255,255,0.15)), color-stop(.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} +.accordion{margin-bottom:20px} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.accordion-heading{border-bottom:0} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px} +.accordion-toggle{cursor:pointer} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5} +.carousel{position:relative;margin-bottom:20px;line-height:1} +.carousel-inner{overflow:hidden;width:100%;position:relative} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} +.carousel-inner>.active{left:0} +.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} +.carousel-inner>.next{left:100%} +.carousel-inner>.prev{left:-100%} +.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} +.carousel-inner>.active.left{left:-100%} +.carousel-inner>.active.right{left:100%} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px} +.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px} +.carousel-indicators .active{background-color:#fff} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)} +.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px} +.carousel-caption h4{margin:0 0 5px} +.carousel-caption p{margin-bottom:0} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px} +.hero-unit li{line-height:30px} +.pull-right{float:right} +.pull-left{float:left} +.hide{display:none} +.show{display:block} +.invisible{visibility:hidden} +.affix{position:fixed} +.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0} +.clearfix:after{clear:both} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} +@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden} +.visible-phone{display:none !important} +.visible-tablet{display:none !important} +.hidden-desktop{display:none !important} +.visible-desktop{display:inherit !important} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-tablet{display:inherit !important} .hidden-tablet{display:none !important}}@media (max-width:767px){.hidden-desktop{display:inherit !important} .visible-desktop{display:none !important} .visible-phone{display:inherit !important} .hidden-phone{display:none !important}}.visible-print{display:none !important} +@media print{.visible-print{display:inherit !important} .hidden-print{display:none !important}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:30px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px} .span12{width:1170px} .span11{width:1070px} .span10{width:970px} .span9{width:870px} .span8{width:770px} .span7{width:670px} .span6{width:570px} .span5{width:470px} .span4{width:370px} .span3{width:270px} .span2{width:170px} .span1{width:70px} .offset12{margin-left:1230px} .offset11{margin-left:1130px} .offset10{margin-left:1030px} .offset9{margin-left:930px} .offset8{margin-left:830px} .offset7{margin-left:730px} .offset6{margin-left:630px} .offset5{margin-left:530px} .offset4{margin-left:430px} .offset3{margin-left:330px} .offset2{margin-left:230px} .offset1{margin-left:130px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:30px} input.span12,textarea.span12,.uneditable-input.span12{width:1156px} input.span11,textarea.span11,.uneditable-input.span11{width:1056px} input.span10,textarea.span10,.uneditable-input.span10{width:956px} input.span9,textarea.span9,.uneditable-input.span9{width:856px} input.span8,textarea.span8,.uneditable-input.span8{width:756px} input.span7,textarea.span7,.uneditable-input.span7{width:656px} input.span6,textarea.span6,.uneditable-input.span6{width:556px} input.span5,textarea.span5,.uneditable-input.span5{width:456px} input.span4,textarea.span4,.uneditable-input.span4{width:356px} input.span3,textarea.span3,.uneditable-input.span3{width:256px} input.span2,textarea.span2,.uneditable-input.span2{width:156px} input.span1,textarea.span1,.uneditable-input.span1{width:56px} .thumbnails{margin-left:-30px} .thumbnails>li{margin-left:30px} .row-fluid .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0} .row:after{clear:both} [class*="span"]{float:left;min-height:1px;margin-left:20px} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px} .span12{width:724px} .span11{width:662px} .span10{width:600px} .span9{width:538px} .span8{width:476px} .span7{width:414px} .span6{width:352px} .span5{width:290px} .span4{width:228px} .span3{width:166px} .span2{width:104px} .span1{width:42px} .offset12{margin-left:764px} .offset11{margin-left:702px} .offset10{margin-left:640px} .offset9{margin-left:578px} .offset8{margin-left:516px} .offset7{margin-left:454px} .offset6{margin-left:392px} .offset5{margin-left:330px} .offset4{margin-left:268px} .offset3{margin-left:206px} .offset2{margin-left:144px} .offset1{margin-left:82px} .row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0} .row-fluid:after{clear:both} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%} .row-fluid [class*="span"]:first-child{margin-left:0} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%} .row-fluid .span12{width:100%;*width:99.94680851063829%} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%} input,textarea,.uneditable-input{margin-left:0} .controls-row [class*="span"]+[class*="span"]{margin-left:20px} input.span12,textarea.span12,.uneditable-input.span12{width:710px} input.span11,textarea.span11,.uneditable-input.span11{width:648px} input.span10,textarea.span10,.uneditable-input.span10{width:586px} input.span9,textarea.span9,.uneditable-input.span9{width:524px} input.span8,textarea.span8,.uneditable-input.span8{width:462px} input.span7,textarea.span7,.uneditable-input.span7{width:400px} input.span6,textarea.span6,.uneditable-input.span6{width:338px} input.span5,textarea.span5,.uneditable-input.span5{width:276px} input.span4,textarea.span4,.uneditable-input.span4{width:214px} input.span3,textarea.span3,.uneditable-input.span3{width:152px} input.span2,textarea.span2,.uneditable-input.span2{width:90px} input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px} .container-fluid{padding:0} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left} .dl-horizontal dd{margin-left:0} .container{width:auto} .row-fluid{width:100%} .row,.thumbnails{margin-left:0} .thumbnails>li{float:none;margin-left:0} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .row-fluid [class*="offset"]:first-child{margin-left:0} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto} .controls-row [class*="span"]+[class*="span"]{margin-left:0} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px} .modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0)} .page-header h1 small{display:block;line-height:20px} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left} .form-horizontal .controls{margin-left:0} .form-horizontal .control-list{padding-top:0} .form-horizontal .form-actions{padding-left:10px;padding-right:10px} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px} .media-object{margin-right:0;margin-left:0} .modal{top:10px;left:10px;right:10px} .modal-header .close{padding:10px;margin:-10px} .carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0} .navbar-fixed-top,.navbar-fixed-bottom{position:static} .navbar-fixed-top{margin-bottom:20px} .navbar-fixed-bottom{margin-top:20px} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px} .navbar .container{width:auto;padding:0} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px} .nav-collapse{clear:both} .nav-collapse .nav{float:none;margin:0 0 10px} .nav-collapse .nav>li{float:none} .nav-collapse .nav>li>a{margin-bottom:2px} .nav-collapse .nav>.divider-vertical{display:none} .nav-collapse .nav .nav-header{color:#777;text-shadow:none} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111} .nav-collapse.in .btn-group{margin-top:5px;padding:0} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none} .nav-collapse .open>.dropdown-menu{display:block} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none} .nav-collapse .dropdown-menu .divider{display:none} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-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)} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0} .navbar .btn-navbar{display:block} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:979px + 1){.nav-collapse.collapse{height:auto !important;overflow:visible !important}}@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em} +a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em} +ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none} +.icon-muted{color:#eee} +.icon-light{color:#fff} +.icon-dark{color:#333} +.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px} +.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px} +.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px} +.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px} +.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px} +.pull-right{float:right} +.pull-left{float:left} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)} +.icon-glass:before{content:"\f000"} +.icon-music:before{content:"\f001"} +.icon-search:before{content:"\f002"} +.icon-envelope:before{content:"\f003"} +.icon-heart:before{content:"\f004"} +.icon-star:before{content:"\f005"} +.icon-star-empty:before{content:"\f006"} +.icon-user:before{content:"\f007"} +.icon-film:before{content:"\f008"} +.icon-th-large:before{content:"\f009"} +.icon-th:before{content:"\f00a"} +.icon-th-list:before{content:"\f00b"} +.icon-ok:before{content:"\f00c"} +.icon-remove:before{content:"\f00d"} +.icon-zoom-in:before{content:"\f00e"} +.icon-zoom-out:before{content:"\f010"} +.icon-off:before{content:"\f011"} +.icon-signal:before{content:"\f012"} +.icon-cog:before{content:"\f013"} +.icon-trash:before{content:"\f014"} +.icon-home:before{content:"\f015"} +.icon-file:before{content:"\f016"} +.icon-time:before{content:"\f017"} +.icon-road:before{content:"\f018"} +.icon-download-alt:before{content:"\f019"} +.icon-download:before{content:"\f01a"} +.icon-upload:before{content:"\f01b"} +.icon-inbox:before{content:"\f01c"} +.icon-play-circle:before{content:"\f01d"} +.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"} +.icon-refresh:before{content:"\f021"} +.icon-list-alt:before{content:"\f022"} +.icon-lock:before{content:"\f023"} +.icon-flag:before{content:"\f024"} +.icon-headphones:before{content:"\f025"} +.icon-volume-off:before{content:"\f026"} +.icon-volume-down:before{content:"\f027"} +.icon-volume-up:before{content:"\f028"} +.icon-qrcode:before{content:"\f029"} +.icon-barcode:before{content:"\f02a"} +.icon-tag:before{content:"\f02b"} +.icon-tags:before{content:"\f02c"} +.icon-book:before{content:"\f02d"} +.icon-bookmark:before{content:"\f02e"} +.icon-print:before{content:"\f02f"} +.icon-camera:before{content:"\f030"} +.icon-font:before{content:"\f031"} +.icon-bold:before{content:"\f032"} +.icon-italic:before{content:"\f033"} +.icon-text-height:before{content:"\f034"} +.icon-text-width:before{content:"\f035"} +.icon-align-left:before{content:"\f036"} +.icon-align-center:before{content:"\f037"} +.icon-align-right:before{content:"\f038"} +.icon-align-justify:before{content:"\f039"} +.icon-list:before{content:"\f03a"} +.icon-indent-left:before{content:"\f03b"} +.icon-indent-right:before{content:"\f03c"} +.icon-facetime-video:before{content:"\f03d"} +.icon-picture:before{content:"\f03e"} +.icon-pencil:before{content:"\f040"} +.icon-map-marker:before{content:"\f041"} +.icon-adjust:before{content:"\f042"} +.icon-tint:before{content:"\f043"} +.icon-edit:before{content:"\f044"} +.icon-share:before{content:"\f045"} +.icon-check:before{content:"\f046"} +.icon-move:before{content:"\f047"} +.icon-step-backward:before{content:"\f048"} +.icon-fast-backward:before{content:"\f049"} +.icon-backward:before{content:"\f04a"} +.icon-play:before{content:"\f04b"} +.icon-pause:before{content:"\f04c"} +.icon-stop:before{content:"\f04d"} +.icon-forward:before{content:"\f04e"} +.icon-fast-forward:before{content:"\f050"} +.icon-step-forward:before{content:"\f051"} +.icon-eject:before{content:"\f052"} +.icon-chevron-left:before{content:"\f053"} +.icon-chevron-right:before{content:"\f054"} +.icon-plus-sign:before{content:"\f055"} +.icon-minus-sign:before{content:"\f056"} +.icon-remove-sign:before{content:"\f057"} +.icon-ok-sign:before{content:"\f058"} +.icon-question-sign:before{content:"\f059"} +.icon-info-sign:before{content:"\f05a"} +.icon-screenshot:before{content:"\f05b"} +.icon-remove-circle:before{content:"\f05c"} +.icon-ok-circle:before{content:"\f05d"} +.icon-ban-circle:before{content:"\f05e"} +.icon-arrow-left:before{content:"\f060"} +.icon-arrow-right:before{content:"\f061"} +.icon-arrow-up:before{content:"\f062"} +.icon-arrow-down:before{content:"\f063"} +.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"} +.icon-resize-full:before{content:"\f065"} +.icon-resize-small:before{content:"\f066"} +.icon-plus:before{content:"\f067"} +.icon-minus:before{content:"\f068"} +.icon-asterisk:before{content:"\f069"} +.icon-exclamation-sign:before{content:"\f06a"} +.icon-gift:before{content:"\f06b"} +.icon-leaf:before{content:"\f06c"} +.icon-fire:before{content:"\f06d"} +.icon-eye-open:before{content:"\f06e"} +.icon-eye-close:before{content:"\f070"} +.icon-warning-sign:before{content:"\f071"} +.icon-plane:before{content:"\f072"} +.icon-calendar:before{content:"\f073"} +.icon-random:before{content:"\f074"} +.icon-comment:before{content:"\f075"} +.icon-magnet:before{content:"\f076"} +.icon-chevron-up:before{content:"\f077"} +.icon-chevron-down:before{content:"\f078"} +.icon-retweet:before{content:"\f079"} +.icon-shopping-cart:before{content:"\f07a"} +.icon-folder-close:before{content:"\f07b"} +.icon-folder-open:before{content:"\f07c"} +.icon-resize-vertical:before{content:"\f07d"} +.icon-resize-horizontal:before{content:"\f07e"} +.icon-bar-chart:before{content:"\f080"} +.icon-twitter-sign:before{content:"\f081"} +.icon-facebook-sign:before{content:"\f082"} +.icon-camera-retro:before{content:"\f083"} +.icon-key:before{content:"\f084"} +.icon-cogs:before{content:"\f085"} +.icon-comments:before{content:"\f086"} +.icon-thumbs-up:before{content:"\f087"} +.icon-thumbs-down:before{content:"\f088"} +.icon-star-half:before{content:"\f089"} +.icon-heart-empty:before{content:"\f08a"} +.icon-signout:before{content:"\f08b"} +.icon-linkedin-sign:before{content:"\f08c"} +.icon-pushpin:before{content:"\f08d"} +.icon-external-link:before{content:"\f08e"} +.icon-signin:before{content:"\f090"} +.icon-trophy:before{content:"\f091"} +.icon-github-sign:before{content:"\f092"} +.icon-upload-alt:before{content:"\f093"} +.icon-lemon:before{content:"\f094"} +.icon-phone:before{content:"\f095"} +.icon-check-empty:before{content:"\f096"} +.icon-bookmark-empty:before{content:"\f097"} +.icon-phone-sign:before{content:"\f098"} +.icon-twitter:before{content:"\f099"} +.icon-facebook:before{content:"\f09a"} +.icon-github:before{content:"\f09b"} +.icon-unlock:before{content:"\f09c"} +.icon-credit-card:before{content:"\f09d"} +.icon-rss:before{content:"\f09e"} +.icon-hdd:before{content:"\f0a0"} +.icon-bullhorn:before{content:"\f0a1"} +.icon-bell:before{content:"\f0a2"} +.icon-certificate:before{content:"\f0a3"} +.icon-hand-right:before{content:"\f0a4"} +.icon-hand-left:before{content:"\f0a5"} +.icon-hand-up:before{content:"\f0a6"} +.icon-hand-down:before{content:"\f0a7"} +.icon-circle-arrow-left:before{content:"\f0a8"} +.icon-circle-arrow-right:before{content:"\f0a9"} +.icon-circle-arrow-up:before{content:"\f0aa"} +.icon-circle-arrow-down:before{content:"\f0ab"} +.icon-globe:before{content:"\f0ac"} +.icon-wrench:before{content:"\f0ad"} +.icon-tasks:before{content:"\f0ae"} +.icon-filter:before{content:"\f0b0"} +.icon-briefcase:before{content:"\f0b1"} +.icon-fullscreen:before{content:"\f0b2"} +.icon-group:before{content:"\f0c0"} +.icon-link:before{content:"\f0c1"} +.icon-cloud:before{content:"\f0c2"} +.icon-beaker:before{content:"\f0c3"} +.icon-cut:before{content:"\f0c4"} +.icon-copy:before{content:"\f0c5"} +.icon-paper-clip:before{content:"\f0c6"} +.icon-save:before{content:"\f0c7"} +.icon-sign-blank:before{content:"\f0c8"} +.icon-reorder:before{content:"\f0c9"} +.icon-list-ul:before{content:"\f0ca"} +.icon-list-ol:before{content:"\f0cb"} +.icon-strikethrough:before{content:"\f0cc"} +.icon-underline:before{content:"\f0cd"} +.icon-table:before{content:"\f0ce"} +.icon-magic:before{content:"\f0d0"} +.icon-truck:before{content:"\f0d1"} +.icon-pinterest:before{content:"\f0d2"} +.icon-pinterest-sign:before{content:"\f0d3"} +.icon-google-plus-sign:before{content:"\f0d4"} +.icon-google-plus:before{content:"\f0d5"} +.icon-money:before{content:"\f0d6"} +.icon-caret-down:before{content:"\f0d7"} +.icon-caret-up:before{content:"\f0d8"} +.icon-caret-left:before{content:"\f0d9"} +.icon-caret-right:before{content:"\f0da"} +.icon-columns:before{content:"\f0db"} +.icon-sort:before{content:"\f0dc"} +.icon-sort-down:before{content:"\f0dd"} +.icon-sort-up:before{content:"\f0de"} +.icon-envelope-alt:before{content:"\f0e0"} +.icon-linkedin:before{content:"\f0e1"} +.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"} +.icon-legal:before{content:"\f0e3"} +.icon-dashboard:before{content:"\f0e4"} +.icon-comment-alt:before{content:"\f0e5"} +.icon-comments-alt:before{content:"\f0e6"} +.icon-bolt:before{content:"\f0e7"} +.icon-sitemap:before{content:"\f0e8"} +.icon-umbrella:before{content:"\f0e9"} +.icon-paste:before{content:"\f0ea"} +.icon-lightbulb:before{content:"\f0eb"} +.icon-exchange:before{content:"\f0ec"} +.icon-cloud-download:before{content:"\f0ed"} +.icon-cloud-upload:before{content:"\f0ee"} +.icon-user-md:before{content:"\f0f0"} +.icon-stethoscope:before{content:"\f0f1"} +.icon-suitcase:before{content:"\f0f2"} +.icon-bell-alt:before{content:"\f0f3"} +.icon-coffee:before{content:"\f0f4"} +.icon-food:before{content:"\f0f5"} +.icon-file-alt:before{content:"\f0f6"} +.icon-building:before{content:"\f0f7"} +.icon-hospital:before{content:"\f0f8"} +.icon-ambulance:before{content:"\f0f9"} +.icon-medkit:before{content:"\f0fa"} +.icon-fighter-jet:before{content:"\f0fb"} +.icon-beer:before{content:"\f0fc"} +.icon-h-sign:before{content:"\f0fd"} +.icon-plus-sign-alt:before{content:"\f0fe"} +.icon-double-angle-left:before{content:"\f100"} +.icon-double-angle-right:before{content:"\f101"} +.icon-double-angle-up:before{content:"\f102"} +.icon-double-angle-down:before{content:"\f103"} +.icon-angle-left:before{content:"\f104"} +.icon-angle-right:before{content:"\f105"} +.icon-angle-up:before{content:"\f106"} +.icon-angle-down:before{content:"\f107"} +.icon-desktop:before{content:"\f108"} +.icon-laptop:before{content:"\f109"} +.icon-tablet:before{content:"\f10a"} +.icon-mobile-phone:before{content:"\f10b"} +.icon-circle-blank:before{content:"\f10c"} +.icon-quote-left:before{content:"\f10d"} +.icon-quote-right:before{content:"\f10e"} +.icon-spinner:before{content:"\f110"} +.icon-circle:before{content:"\f111"} +.icon-reply:before,.icon-mail-reply:before{content:"\f112"} +.icon-folder-close-alt:before{content:"\f114"} +.icon-folder-open-alt:before{content:"\f115"} +.icon-expand-alt:before{content:"\f116"} +.icon-collapse-alt:before{content:"\f117"} +.icon-smile:before{content:"\f118"} +.icon-frown:before{content:"\f119"} +.icon-meh:before{content:"\f11a"} +.icon-gamepad:before{content:"\f11b"} +.icon-keyboard:before{content:"\f11c"} +.icon-flag-alt:before{content:"\f11d"} +.icon-flag-checkered:before{content:"\f11e"} +.icon-terminal:before{content:"\f120"} +.icon-code:before{content:"\f121"} +.icon-reply-all:before{content:"\f122"} +.icon-mail-reply-all:before{content:"\f122"} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"} +.icon-location-arrow:before{content:"\f124"} +.icon-crop:before{content:"\f125"} +.icon-code-fork:before{content:"\f126"} +.icon-unlink:before{content:"\f127"} +.icon-question:before{content:"\f128"} +.icon-info:before{content:"\f129"} +.icon-exclamation:before{content:"\f12a"} +.icon-superscript:before{content:"\f12b"} +.icon-subscript:before{content:"\f12c"} +.icon-eraser:before{content:"\f12d"} +.icon-puzzle-piece:before{content:"\f12e"} +.icon-microphone:before{content:"\f130"} +.icon-microphone-off:before{content:"\f131"} +.icon-shield:before{content:"\f132"} +.icon-calendar-empty:before{content:"\f133"} +.icon-fire-extinguisher:before{content:"\f134"} +.icon-rocket:before{content:"\f135"} +.icon-maxcdn:before{content:"\f136"} +.icon-chevron-sign-left:before{content:"\f137"} +.icon-chevron-sign-right:before{content:"\f138"} +.icon-chevron-sign-up:before{content:"\f139"} +.icon-chevron-sign-down:before{content:"\f13a"} +.icon-html5:before{content:"\f13b"} +.icon-css3:before{content:"\f13c"} +.icon-anchor:before{content:"\f13d"} +.icon-unlock-alt:before{content:"\f13e"} +.icon-bullseye:before{content:"\f140"} +.icon-ellipsis-horizontal:before{content:"\f141"} +.icon-ellipsis-vertical:before{content:"\f142"} +.icon-rss-sign:before{content:"\f143"} +.icon-play-sign:before{content:"\f144"} +.icon-ticket:before{content:"\f145"} +.icon-minus-sign-alt:before{content:"\f146"} +.icon-check-minus:before{content:"\f147"} +.icon-level-up:before{content:"\f148"} +.icon-level-down:before{content:"\f149"} +.icon-check-sign:before{content:"\f14a"} +.icon-edit-sign:before{content:"\f14b"} +.icon-external-link-sign:before{content:"\f14c"} +.icon-share-sign:before{content:"\f14d"} +.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} +.corner-all{border-radius:4px} +.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} +.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.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;width:100%} +.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse} +.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0} +.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2} +.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1} +.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2} +.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start} +.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end} +.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center} +body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible} +div#header{display:none} +#ipython_notebook{padding-left:16px} +#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold} +#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000} +#site{width:100%;display:none} +.ui-button .ui-button-text{padding:.2em .8em;font-size:77%} +input.ui-button{padding:.3em .9em} +.navbar span{margin-top:3px} +span#login_widget{float:right} +.nav-header{text-transform:none} +.navbar-nobg{background-color:transparent;background-image:none} +#header>span{margin-top:10px} +.modal-body{max-height:500px} +.center-nav{display:inline-block;margin-bottom:-4px} +.alternate_upload{background-color:none;display:inline} +.alternate_upload.form{padding:0;margin:0} +.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer} +.list_toolbar{padding:5px;height:25px;line-height:25px} +.toolbar_info{float:left} +.toolbar_buttons{float:right} +.list_header{font-weight:bold} +.list_container{margin-top:16px;margin-bottom:16px;border:1px solid #ababab;border-radius:4px} +.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00} +.list_container>div:last-child{border:none} +.list_item:hover .list_item{background-color:#ddd} +.list_container>div>span,.list_container>div>div{padding:8px} +.list_item a{text-decoration:none} +input.nbname_input{height:15px} +.highlight_text{color:#00f} +#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold} +input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:60px} +.ansibold{font-weight:bold} +.ansiblack{color:#000} +.ansired{color:#8b0000} +.ansigreen{color:#006400} +.ansiyellow{color:#a52a2a} +.ansiblue{color:#00008b} +.ansipurple{color:#9400d3} +.ansicyan{color:#4682b4} +.ansigray{color:#808080} +.ansibgblack{background-color:#000} +.ansibgred{background-color:#f00} +.ansibggreen{background-color:#008000} +.ansibgyellow{background-color:#ff0} +.ansibgblue{background-color:#00f} +.ansibgpurple{background-color:#f0f} +.ansibgcyan{background-color:#0ff} +.ansibggray{background-color:#808080} +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;width:100%;padding:5px 5px 5px 0;margin:2px 0 2px 7px;outline:none}div.cell.selected{border-radius:4px;border:thin #ababab solid} +div.prompt{width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.231em} +.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:22px} +.no_input_radius{border-top-right-radius:0;border-top-left-radius:0} +.text_cell .ctb_prompt{display:none} +.code_cell .ctb_prompt{display:block} +.ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px} +.celltoolbar>div{padding-top:0} +.ctb_area{margin:0;padding:0;width:100%} +.ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block} +.ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0} +.ctb_show>.celltoolbar{border-bottom-right-radius:0;border-bottom-left-radius:0} +.button_container{margin-top:0;margin-bottom:0} +.ui-button{min-width:30px} +.celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top} +.celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top} +.celltoolbar label span{font-size:85%} +.celltoolbar input[type=checkbox]{margin:0;margin-left:4px;margin-right:4px} +.celltoolbar .ui-button{border:none;vertical-align:top;height:20px} +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} +div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.input_prompt{color:#000080;border-top:1px solid transparent} +div.output_wrapper{margin-top:5px;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;width:100%} +div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8)} +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;width:100%} +div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px} +div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;-moz-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)} +div.output_prompt{color:#8b0000} +.CodeMirror{line-height:1.231em;height:auto;background:none;} +.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto} +@-moz-document url-prefix(){.CodeMirror-scroll{overflow-x:hidden}}.CodeMirror-lines{padding:.4em} +.CodeMirror-linenumber{padding:0 8px 0 4px} +.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px} +.CodeMirror pre{padding:0;border:0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0} +.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;-moz-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad} +.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000} +.completions select option.context{color:#0064cd} +pre code{display:block;padding:.5em} +.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000} +.highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#ba2121} +.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic} +.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080} +pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f} +.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold} +.highlight-builtin,pre .built_in{color:#008000} +pre .markdown .emphasis{font-style:italic} +pre .nginx .built_in{font-weight:normal} +pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5} +.cm-s-ipython span.cm-variable{color:#000} +.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold} +.cm-s-ipython span.cm-number{color:#080} +.cm-s-ipython span.cm-comment{color:#408080;font-style:italic} +.cm-s-ipython span.cm-string{color:#ba2121} +.cm-s-ipython span.cm-builtin{color:#008000} +.cm-s-ipython span.cm-error{color:#f00} +.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold} +.cm-s-ipython span.cm-meta{color:#a2f} +#menubar .navbar-inner{min-height:28px;border-top:1px;border-radius:0 0 4px 4px} +#menubar .navbar{margin-bottom:8px} +.nav-wrapper{border-bottom:1px solid #d4d4d4} +#menubar li.dropdown{line-height:12px} +body{background-color:#fff} +body.notebook_app{overflow:hidden} +span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%} +div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)} +div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0;border-top:1px solid #ababab} +div.ui-widget-content{border:1px solid #ababab;outline:none} +pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em} +p.dialog{padding:.2em} +pre,code,kbd,samp{white-space:pre-wrap} +#fonttest{font-family:monospace} +p{margin-bottom:0} +.end_space{height:200px} +#notification_area{z-index:10} +.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)} +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} +div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit} +div.output_subarea{padding:.44em .4em .4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1} +div.output_text{text-align:left;color:#000;font-family:monospace;line-height:1.231em} +div.output_stream{padding-top:0;padding-bottom:0} +div.output_stderr{background:#fdd;} +div.output_latex{text-align:left} +.js-error{color:#8b0000} +div.raw_input{padding-top:0;padding-bottom:0;height:1em;line-height:1em;font-family:monospace} +span.input_prompt{font-family:inherit} +input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0 0 1px;padding-left:1px;padding-top:2px;height:1em} +p.p-space{margin-bottom:10px} +div#pager_splitter{height:8px} +#pager-container{position:relative;padding:15px 0} +div#pager{overflow:auto;display:none}div#pager pre{font-size:13px;line-height:1.231em;color:#000;background-color:#f7f7f7;padding:.4em} +.shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace} +.shortcut_descr{display:inline-block} +div.quickhelp{float:left;width:50%} +.rendered_html{color:#000;}.rendered_html em{font-style:italic} +.rendered_html strong{font-weight:bold} +.rendered_html u{text-decoration:underline} +.rendered_html :link{text-decoration:underline} +.rendered_html :visited{text-decoration:underline} +.rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold} +.rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold} +.rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold} +.rendered_html h4{font-size:100%;margin:.95em 0;font-weight:bold} +.rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold} +.rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold} +.rendered_html ul{list-style:disc;margin:1em 2em} +.rendered_html ul ul{list-style:square;margin:0 2em} +.rendered_html ul ul ul{list-style:circle;margin:0 2em} +.rendered_html ol{list-style:decimal;margin:1em 2em} +.rendered_html ol ol{list-style:upper-alpha;margin:0 2em} +.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em} +.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em} +.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em} +.rendered_html hr{color:#000;background-color:#000} +.rendered_html pre{margin:1em 2em} +.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0} +.rendered_html blockquote{margin:1em 2em} +.rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em} +.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px} +.rendered_html th{font-weight:bold} +.rendered_html p{text-align:justify} +.rendered_html p+p{margin-top:1em} +span#save_widget{padding:0 5px;margin-top:12px} +span#checkpoint_status,span#autosave_status{font-size:small} +@media (max-width:767px){span#save_widget{font-size:small} span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none} span#autosave_status{font-size:x-small}}div.text_cell{padding:5px 5px 5px 5px} +div.text_cell_input{color:#000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7} +div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000} +a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden} +h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible} +.toolbar{padding:0 10px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;height:26px;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} +.toolbar .btn{padding:2px 8px} +.toolbar .btn-group{margin-top:0} +.toolbar-inner{border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important} +#maintoolbar{margin-bottom:0} +@-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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms} +.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px} +.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0} +.tooltiptext{padding-right:30px} +.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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:4px;position:absolute;z-index:2}.ipython_tooltip a{float:right} +.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7} +.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute} +.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)} + + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} +.input_area { + padding: 0.2em; +} + +pre { + padding: 0.2em; + border: none; + margin: 0px; + font-size: 13px; +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> +<script type="text/javascript"> +init_mathjax = function() { + if (window.MathJax) { + // MathJax loaded + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ] + }, + displayAlign: 'left', // Change this to 'center' to center equations. + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}} + } + }); + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + } +} +init_mathjax(); +</script> +</head> +<body> + +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="Build-a-spiny-neuron-from-a-morphology-file-and-put-active-channels-in-it">Build a spiny neuron from a morphology file and put active channels in it<a class="anchor-link" href="#Build-a-spiny-neuron-from-a-morphology-file-and-put-active-channels-in-it">¶</a></h1> +</div> + +<div class="cell border-box-sizing code_cell vbox"> +<div class="input hbox"> +<div class="prompt input_prompt"> +In [*]: +</div> +<div class="input_area box-flex1"> +<div class="highlight"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">rdesigneur</span> <span class="kn">as</span> <span class="nn">rd</span> +<span class="o">%</span><span class="k">matplotlib</span> <span class="n">inline</span> + +<span class="n">rdes</span> <span class="o">=</span> <span class="n">rd</span><span class="o">.</span><span class="n">rdesigneur</span><span class="p">(</span> + <span class="n">chanProto</span> <span class="o">=</span> <span class="p">[</span> + <span class="p">[</span><span class="s">'./chans/hd.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/kap.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/kad.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/kdr.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/na3.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/nax.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/CaConc.xml'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'./chans/Ca.xml'</span><span class="p">]</span> + <span class="p">],</span> + <span class="n">cellProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'./cells/h10.CNG.swc'</span><span class="p">,</span> <span class="s">'elec'</span><span class="p">]],</span> + <span class="n">spineProto</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'makeActiveSpine()'</span><span class="p">,</span> <span class="s">'spine'</span><span class="p">]],</span> + <span class="n">chanDistrib</span> <span class="o">=</span> <span class="p">[</span> + <span class="p">[</span><span class="s">"hd"</span><span class="p">,</span> <span class="s">"#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"50e-2*(1+(p*3e4))"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kdr"</span><span class="p">,</span> <span class="s">"#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"p < 50e-6 ? 500 : 100"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"na3"</span><span class="p">,</span> <span class="s">"#soma#,#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"850"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"nax"</span><span class="p">,</span> <span class="s">"#soma#,#axon#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"1250"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kap"</span><span class="p">,</span> <span class="s">"#axon#,#soma#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"300"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kap"</span><span class="p">,</span> <span class="s">"#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> + <span class="s">"300*(H(100-p*1e6)) * (1+(p*1e4))"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"Ca_conc"</span><span class="p">,</span> <span class="s">"#"</span><span class="p">,</span> <span class="s">"tau"</span><span class="p">,</span> <span class="s">"0.0133"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"kad"</span><span class="p">,</span> <span class="s">"#soma#,#dend#,#apical#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"50"</span> <span class="p">],</span> + <span class="p">[</span><span class="s">"Ca"</span><span class="p">,</span> <span class="s">"#"</span><span class="p">,</span> <span class="s">"Gbar"</span><span class="p">,</span> <span class="s">"50"</span> <span class="p">]</span> + <span class="p">],</span> + <span class="n">spineDistrib</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'spine'</span><span class="p">,</span> <span class="s">'#dend#,#apical#'</span><span class="p">,</span> <span class="s">'20e-6'</span><span class="p">,</span> <span class="s">'1e-6'</span><span class="p">]],</span> + <span class="n">stimList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'soma'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'inject'</span><span class="p">,</span> <span class="s">'(t>0.02) * 1e-9'</span> <span class="p">]],</span> + <span class="n">plotList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Membrane potential'</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'Ca_conc'</span><span class="p">,</span> <span class="s">'Ca'</span><span class="p">,</span> <span class="s">'Ca conc (uM)'</span><span class="p">]],</span> + <span class="n">moogList</span> <span class="o">=</span> <span class="p">[[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'Ca_conc'</span><span class="p">,</span> <span class="s">'Ca'</span><span class="p">,</span> <span class="s">'Calcium conc (uM)'</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="mi">120</span><span class="p">],</span> + <span class="p">[</span><span class="s">'#'</span><span class="p">,</span> <span class="s">'1'</span><span class="p">,</span> <span class="s">'.'</span><span class="p">,</span> <span class="s">'Vm'</span><span class="p">,</span> <span class="s">'Soma potential'</span><span class="p">]]</span> +<span class="p">)</span> + +<span class="n">rdes</span><span class="o">.</span><span class="n">buildModel</span><span class="p">()</span> + +<span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> +<span class="n">rdes</span><span class="o">.</span><span class="n">displayMoogli</span><span class="p">(</span> <span class="mf">0.0002</span><span class="p">,</span> <span class="mf">0.0255</span> <span class="p">)</span> +</pre></div> + +</div> +</div> + +<div class="vbox output_wrapper"> +<div class="output vbox"> + + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_stream output_stdout"> +<pre> +[INFO] Loading Ca pool Ca_conc into /library . </span> +Rdesigneur: Elec model has 204 compartments and 556 spines on 0 compartments. + +</pre> +</div> +</div> +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="_static/Neuro_Morophy_activeChanA.png"> +<img src="_static/Neuro_Morophy_activeChanB.png"> +</div></div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZcAAAEZCAYAAABb3GilAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz +AAALEgAACxIB0t1+/AAAIABJREFUeJzsnXd8HOWZ+L/vzK76qneterEsuTdsMC4Qm5KADSaEQIhJ +SHIkv+QCuRS4hIsJuVBSgCTcXUiIY0KoKXQbMMY2YOPeZMnqvfe+2p15398fsxYYbMidjVe25/v5 ++GPtzO7s84w088xTX6GUUtjY2NjY2JxCtEALYGNjY2Nz9mEbFxsbGxubU45tXGxsbGxsTjm2cbGx +sbGxOeXYxsXGxsbG5pRjGxcbGxsbm1OObVxszjnWrFnDjTfeGGgxzjgaGhpwuVz8M90LmzdvJj09 +/TRIZTNRsY2LTUDJysoiODiY7u7uY7bPnDkTTdNoaGg45d8phDjlx5wI3HTTTdx5552n7HhZWVls +2rRp/HVGRgaDg4Nn7fmzObXYxsUmoAghyMnJ4cknnxzfdujQIUZHRz+xm9j/pm/YMIxPRIYzASHE +/+pc2di8H9u42AScL3zhCzz22GPjr9etW8cXv/jFY25sY2NjfPe73yUzM5Pk5GS+/vWv4/F4ACsE +43a7+fnPf05iYiKpqak899xzvPLKKxQUFBAXF8e99947fiwhBB6Ph+uuu47IyEhmz57NwYMHx/dn +ZWVx//33M23aNFwuF6Zpcu+995KXl0dkZCTFxcU899xz4+//05/+xMKFC/ne975HbGwsOTk5bNiw +YXx/f38/N998M6mpqbjdbu68806klMc9F2vWrOGaa645oWxlZWUsWbKEmJgYpkyZwosvvgjAI488 +whNPPMH999+Py+VixYoVALS0tLBq1SoSExPJycnhN7/5zTHfde2117J69WoiIyOZMmUKe/bsAeDG +G2+koaGBK664ApfLxS9+8Qvq6urQNG1c9rVr11JUVERkZCS5ubk88sgj/+yv3OZcQNnYBJCsrCy1 +ceNGNWnSJFVWVqYMw1But1vV19crIYSqr69XSil16623qhUrVqje3l41ODiorrjiCnXHHXcopZR6 +8803lcPhUHfffbcyDEP9/ve/V3Fxcer6669XQ0ND6vDhwyo0NFTV1dUppZT68Y9/rJxOp/rb3/6m +DMNQv/jFL1R2drYyDEMppVRmZqaaOXOmampqUh6PRyml1LPPPqtaW1uVUko9/fTTKjw8XLW1tSml +lFq7dq1yOp3qD3/4g5JSqv/+7/9Wqamp4zquXLlS3XLLLWpkZER1dHSoefPmqd/97nfHPR8fJZvX +61W5ubnqnnvuUT6fT23atEm5XC5VXl6ulFLqpptuUnfeeef4sUzTVLNmzVJ333238vl8qqamRuXk +5KhXX311/LtCQkLU+vXrlZRS3XHHHWr+/PnH/G7eeOON8de1tbVKCKFM01RKKfXyyy+rmpoapZRS +W7ZsUWFhYWrv3r3jvxO32/2//GuwOZuwjYtNQDlqXH7605+qO+64Q61fv14tX75cGYYxblyklCo8 +PFxVV1ePf27btm0qOztbKWXdyEJDQ5WUUiml1MDAgBJCqJ07d46/f/bs2er5559XSlk31QULFozv +k1KqlJQU9fbbb4/LtHbt2o+Ue8aMGePHW7t2rcrLyxvfNzw8rIQQqr29XbW1tang4GA1Ojo6vv+J +J55QS5cuPe5xTyTbW2+9pbZu3aqSk5OPef/nP/95tWbNGqWUUqtXr1Y/+tGPxve9++67KiMj45j3 +/+xnP1Nf+tKXxr9r2bJl4/uOGuGjfJxx+SArV65UDz30kFLKNi42SjkC7TnZ2AghuPHGG7nwwgup +ra39UEiss7OTkZERZs+ePb5NKXVMaCkuLm48RxMaGgpAUlLS+P7Q0FCGhobGX7vd7mO+3+1209LS +Mr7tg5VOjz32GA888AB1dXUADA0NHVOEkJycPP5zWFjY+Hu6urrw+XykpKSM75dSkpGRccLz8VGy +fVCuzMzM8X0fzFHV19fT0tJCTEzM+DbTNFm0aNH46/efo7CwMDweD1JKNO3jI+br16/nrrvuorKy +EiklIyMjTJs27WM/Z3NuYBsXmwlBRkYGOTk5rF+/nj/+8Y/H7IuPjyc0NJTS0tJjbtInQ2Nj4/jP +UkqamppITU0d3/b+G3V9fT1f+9rX2LRpEwsWLEAIwcyZM/+pZHd6evp4Ndw/c8M+kWxpaWkopWhs +bEQpNS5ffX09hYWFH5IZrHOanZ1NRUXFcb/n4womPmr/2NgYq1at4vHHH2fFihXous5VV11lFwDY +jGMn9G0mDI8++iibNm0a9zyOomkaX/3qV7n11lvp7OwEoLm5mddee+3//F179uzhH//4B4Zh8OCD +DxISEsL8+fOP+97h4WGEEMTHxyOlZO3atZSUlPxT35OSksLy5cv5zne+w+DgIFJKqqur2bp16/9a +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 +"> + +</div> +</div> + +<div class="hbox output_area"><div class="prompt"></div> +<div class="box-flex1 output_subarea output_display_data"> + + +<img src="data:image/png;base64,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 +xtPTkylTplQeT31o1de9e/fi5eUFQO/evdmxYwelpaXEx8cTExNDy5Ytqyq8Wk9RqqA8uxx103s7 +CAYHB2Pk1hqT1AJMfB8aohsSQqb0dRq8a/7YcrTstfA+50eC+lju+H/JtJUt+NBrHun7QtBZu5iF +8bf4pYaWMVHVUaXJ703IvZjLzZk3xTpYglCHVNkM8/Pnz7N161aaNGmCr68vAF999RXbt28nJCQE +iUSCg4MDa9euBcDT05N+/frh6emJmpoagYGBT2y2qg/kKXLUzdWRqN57D4KDg9G09UQ1rRDdt3Qr +zys+EkKp0hF9P/1Hri/LLuPmpzcpCCnAoIM2jQ4343rnCai+PpMFl74j2z+Dnb/8iJ2mDh+OGI+B +mhpdjR8zb6SKqRmo4X3Um5D2IajpqWE3267aYxAE4flJlHXs655EIqkX31BzzuVwc8ZNml5oCsB7 +771HuHMPzLIknFo1FBW1e5XG5BYLyFNvgsf5XpXXKhVKQjuGomZfQl6r+ZTuboZKtBcOi2y4/X4+ +HvorMbywhlHNv+ZA7s84jerDrcHD2dG4ER2MamYJEXmanJDXQ7CcYInNFJsaiUEQXmUv+7NTzDCv +pf7eWR58LZgSO3Na5utWJg6AnCh1jLo92mR1d/ddygvKyH9/CA69+/LG0QAajFMh7qMkTBeXEJnz +IXkdJrAuaDZvar1L/MYDOO/YyYDrEfz5/6PfqpuGuQbef3iT9F0SKetSaiQGQRD+PbEwYi318ATB +3NxcklPvoLBX591Qywcn5eeTV2iHwzvuj1yb/H0yuu9HUqbniYXFSAA8P30XbeNLJMxKweILJRFz +x+PVfRybZD8xwK2UP3/6FXcVLd5Fwv4mjWltYFBtz3qfpq0m3n/ca8JS1VHFbKBZtccgCMK/I5JH +LfXwJlDXr1/HxK0FRXml2DQ2qTxHfuEGFSraaHk86AMpSSyhMKKQssbf4WK95JEy7cf6IVG9Qvyn +iVjMUyH8izF49xnL9si19HUr4dL6rTRW1eQtCRxq4kVz/Uf7UaqDtrM23ke9Ce0UikQqwbSvabXH +IAjCs4lmq1rq4WYrmUyGpm1jjFIL0PV5kCjyjiSi3zDjkYEFmQczMeyqSZkyEUPD9v8o1250C+wX +WJG6tBSTGQrCIoZT1vcDdkWtppmyDbJ16/HZd5oeYeGE5NfMKrg6jXRocqQJMR/GcHf33RqJQRCE +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 +"> + +</div> +</div> + +</div> +</div> + +</div> +</body> +</html> diff --git a/docs/user/tutorials/_static/SteadyState.html b/docs/user/tutorials/_static/SteadyState.html new file mode 100755 index 0000000000000000000000000000000000000000..eb147cbcbc17cb32f891603a8759c72c8e0fa9f8 --- /dev/null +++ b/docs/user/tutorials/_static/SteadyState.html @@ -0,0 +1,906 @@ +<!DOCTYPE html> +<html> +<head> + +<meta charset="utf-8" /> +<title>SteadyState</title> + +<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> +<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> + +<style type="text/css"> + /*! +* +* Twitter Bootstrap +* +*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.42857143;color:#000;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:3px}.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}.img-circle{border-radius:50%}hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:18px;margin-bottom:9px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:9px;margin-bottom:9px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:33px}h2,.h2{font-size:27px}h3,.h3{font-size:23px}h4,.h4{font-size:17px}h5,.h5{font-size:13px}h6,.h6{font-size:12px}p{margin:0 0 9px}.lead{margin-bottom:18px;font-size:14px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:19.5px}}small,.small{font-size:92%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:9px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:18px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:541px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:9px 18px;margin:0 0 18px;font-size:inherit;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:18px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:2px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}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}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}@media (min-width:768px){.container{width:768px}}@media (min-width:992px){.container{width:940px}}@media (min-width:1200px){.container{width:1140px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}.row{margin-left:0;margin-right:0}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:0;padding-right:0}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:18px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:13.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}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}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:13px;line-height:1.42857143;color:#555}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:32px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:45px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:18px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-lg,select.form-group-lg .form-control{height:45px;line-height:45px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:40px}.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}.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:23px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:25px}.form-horizontal .form-group{margin-left:0;margin-right:0}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:0}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;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}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.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}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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,0.15);border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:541px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:2px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:13px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:2px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:1px}.input-group-addon.input-lg{padding:10px 16px;font-size:17px;border-radius:3px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:2px 2px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:2px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:30px;margin-bottom:18px;border:1px solid transparent}@media (min-width:541px){.navbar{border-radius:2px}}@media (min-width:541px){.navbar-header{float:left}}.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,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:541px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;visibility:visible !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:540px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}@media (min-width:541px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:541px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:541px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:6px 0;font-size:17px;line-height:18px;height:30px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:541px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:0}}.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}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:541px){.navbar-toggle{display:none}}.navbar-nav{margin:3px 0}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:18px}@media (max-width:540px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:18px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:541px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:6px;padding-bottom:6px}}.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,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:-1px;margin-bottom:-1px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:540px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:541px){.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}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-top-right-radius:2px;border-top-left-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:-1px;margin-bottom:-1px}.navbar-btn.btn-sm{margin-top:0;margin-bottom:0}.navbar-btn.btn-xs{margin-top:4px;margin-bottom:4px}.navbar-text{margin-top:6px;margin-bottom:6px}@media (min-width:541px){.navbar-text{float:left;margin-left:0;margin-right:0}}@media (min-width:541px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:0}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:540px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:540px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:18px;list-style:none;background-color:#f5f5f5;border-radius:2px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#5e5e5e}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:18px 0;border-radius:2px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:17px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:18px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:3px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:58.5px}}.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}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#000}.alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:2px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f5f5f5;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.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,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:18px;background-color:#fff;border:1px solid transparent;border-radius:2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:1px;border-top-left-radius:1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:1px;border-top-right-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:1px;border-bottom-right-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:18px}.panel-group .panel{margin-bottom:0;border-radius:2px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.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,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:3px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;-webkit-overflow-scrolling:touch;outline:0}.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 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:2px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.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-size:13px;font-weight:normal;line-height:1.42857143;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:13px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:2px 2px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.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,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;backface-visibility:hidden;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after,.item_buttons:before,.item_buttons:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after,.item_buttons:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*! +* +* Font Awesome +* +*//*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.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;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.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)}.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)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}/*! +* +* IPython base +* +*/.modal.fade .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}code{color:#000}pre{font-size:inherit;line-height:inherit}label{font-weight:normal}.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.corner-all{border-radius:2px}.no-padding{padding:0}.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}.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.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}.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.hbox.reverse,.vbox.reverse,.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.hbox.box-flex0,.vbox.box-flex0,.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.hbox.box-flex1,.vbox.box-flex1,.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex,.vbox.box-flex,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex2,.vbox.box-flex2,.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.hbox.start,.vbox.start,.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.hbox.end,.vbox.end,.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.hbox.center,.vbox.center,.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.hbox.baseline,.vbox.baseline,.baseline{-webkit-box-pack:baseline;-moz-box-pack:baseline;box-pack:baseline;justify-content:baseline}.hbox.stretch,.vbox.stretch,.stretch{-webkit-box-pack:stretch;-moz-box-pack:stretch;box-pack:stretch;justify-content:stretch}.hbox.align-start,.vbox.align-start,.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.hbox.align-end,.vbox.align-end,.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.hbox.align-center,.vbox.align-center,.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}.hbox.align-baseline,.vbox.align-baseline,.align-baseline{-webkit-box-align:baseline;-moz-box-align:baseline;box-align:baseline;align-items:baseline}.hbox.align-stretch,.vbox.align-stretch,.align-stretch{-webkit-box-align:stretch;-moz-box-align:stretch;box-align:stretch;align-items:stretch}div.error{margin:2em;text-align:center}div.error>h1{font-size:500%;line-height:normal}div.error>p{font-size:200%;line-height:normal}div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible}#header{display:none;background-color:#fff;position:relative;z-index:100}#header #header-container{padding-bottom:5px;padding-top:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#header .header-bar{width:100%;height:1px;background:#e7e7e7;margin-bottom:-1px}@media print{#header{display:none !important}}#header-spacer{width:100%;visibility:hidden}@media print{#header-spacer{display:none}}#ipython_notebook{padding-left:0;padding-top:1px;padding-bottom:1px}@media (max-width:991px){#ipython_notebook{margin-left:10px}}#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:red;font-weight:bold}#ipython_notebook img{height:28px}#site{width:100%;display:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:auto}@media print{#site{height:auto !important}}.ui-button .ui-button-text{padding:.2em .8em;font-size:77%}input.ui-button{padding:.3em .9em}span#login_widget{float:right}span#login_widget>.button,#logout{color:#333;background-color:#fff;border-color:#ccc}span#login_widget>.button:hover,#logout:hover,span#login_widget>.button:focus,#logout:focus,span#login_widget>.button.focus,#logout.focus,span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{color:#333;background-color:#e6e6e6;border-color:#adadad}span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{background-image:none}span#login_widget>.button.disabled,#logout.disabled,span#login_widget>.button[disabled],#logout[disabled],fieldset[disabled] span#login_widget>.button,fieldset[disabled] #logout,span#login_widget>.button.disabled:hover,#logout.disabled:hover,span#login_widget>.button[disabled]:hover,#logout[disabled]:hover,fieldset[disabled] span#login_widget>.button:hover,fieldset[disabled] #logout:hover,span#login_widget>.button.disabled:focus,#logout.disabled:focus,span#login_widget>.button[disabled]:focus,#logout[disabled]:focus,fieldset[disabled] span#login_widget>.button:focus,fieldset[disabled] #logout:focus,span#login_widget>.button.disabled.focus,#logout.disabled.focus,span#login_widget>.button[disabled].focus,#logout[disabled].focus,fieldset[disabled] span#login_widget>.button.focus,fieldset[disabled] #logout.focus,span#login_widget>.button.disabled:active,#logout.disabled:active,span#login_widget>.button[disabled]:active,#logout[disabled]:active,fieldset[disabled] span#login_widget>.button:active,fieldset[disabled] #logout:active,span#login_widget>.button.disabled.active,#logout.disabled.active,span#login_widget>.button[disabled].active,#logout[disabled].active,fieldset[disabled] span#login_widget>.button.active,fieldset[disabled] #logout.active{background-color:#fff;border-color:#ccc}span#login_widget>.button .badge,#logout .badge{color:#fff;background-color:#333}.nav-header{text-transform:none}#header>span{margin-top:10px}.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:80%}.modal_stretch .modal-dialog .modal-body{max-height:none;flex:1}@media (min-width:768px){.modal .modal-dialog{width:700px}}@media (min-width:768px){select.form-control{margin-left:12px;margin-right:12px}}/*! +* +* IPython auth +* +*/.center-nav{display:inline-block;margin-bottom:-4px}/*! +* +* IPython tree view +* +*/.alternate_upload{background-color:none;display:inline}.alternate_upload.form{padding:0;margin:0}.alternate_upload input.fileinput{display:inline;opacity:0;z-index:2;width:12ex;margin-right:-12ex}.alternate_upload .input-overlay{display:inline-block;font-weight:bold;line-height:1em}ul#tabs{margin-bottom:4px}ul#tabs a{padding-top:6px;padding-bottom:4px}ul.breadcrumb a:focus,ul.breadcrumb a:hover{text-decoration:none}ul.breadcrumb i.icon-home{font-size:16px;margin-right:4px}ul.breadcrumb span{color:#5e5e5e}.list_toolbar{padding:4px 0 4px 0;vertical-align:middle}.list_toolbar .tree-buttons{padding-top:1px}.dynamic-buttons{display:inline-block}.list_toolbar [class*="span"]{min-height:24px}.list_header{font-weight:bold;background-color:#eee}.list_placeholder{font-weight:bold;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px}.list_container{margin-top:4px;margin-bottom:20px;border:1px solid #ddd;border-radius:2px}.list_container>div{border-bottom:1px solid #ddd}.list_container>div:hover .list-item{background-color:red}.list_container>div:last-child{border:none}.list_item:hover .list_item{background-color:#ddd}.list_item a{text-decoration:none}.list_item:hover{background-color:#fafafa}.action_col{text-align:right}.list_header>div,.list_item>div{padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.list_header>div input,.list_item>div input{margin-right:7px;margin-left:14px;vertical-align:baseline;line-height:22px;position:relative;top:-1px}.list_header>div .item_link,.list_item>div .item_link{margin-left:-1px;vertical-align:baseline;line-height:22px}.new-file input[type=checkbox]{visibility:hidden}.item_name{line-height:22px;height:24px}.item_icon{font-size:14px;color:#5e5e5e;margin-right:7px;margin-left:7px;line-height:22px;vertical-align:baseline}.item_buttons{padding-top:4px;line-height:1em;margin-left:-5px}.item_buttons .btn-group,.item_buttons .input-group{float:left}.item_buttons>.btn,.item_buttons>.btn-group,.item_buttons>.input-group{margin-left:5px}.item_buttons .btn{min-width:13ex}.item_buttons .running-indicator{color:#5cb85c}.toolbar_info{height:24px;line-height:24px}input.nbname_input,input.engine_num_input{padding-top:3px;padding-bottom:3px;height:22px;line-height:14px;margin:0}input.engine_num_input{width:60px}.highlight_text{color:blue}#project_name{display:inline-block;padding-left:7px;margin-left:-2px}#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold}#tree-selector{display:inline-block;padding-right:0}#tree-selector input[type=checkbox]{margin-left:7px;vertical-align:baseline}.tab-content .row{margin-left:0;margin-right:0}.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;transform:translate(0, 0);content:"\f114"}.folder_icon:before.pull-left{margin-right:.3em}.folder_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px}.notebook_icon:before.pull-left{margin-right:.3em}.notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px;color:#5cb85c}.running_notebook_icon:before.pull-left{margin-right:.3em}.running_notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f016";position:relative;top:-2px}.file_icon:before.pull-left{margin-right:.3em}.file_icon:before.pull-right{margin-left:.3em}#notebook_toolbar .pull-right{padding-top:0;margin-right:-1px}ul#new-menu{left:auto;right:0}.kernel-menu-icon{padding-right:12px;width:24px;content:"\f096"}.kernel-menu-icon:before{content:"\f096"}.kernel-menu-icon-current:before{content:"\f00c"}#tab_content{padding-top:20px}#running .panel-group .panel{margin-top:3px;margin-bottom:1em}#running .panel-group .panel .panel-heading{background-color:#eee;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}#running .panel-group .panel .panel-heading a:focus,#running .panel-group .panel .panel-heading a:hover{text-decoration:none}#running .panel-group .panel .panel-body{padding:0}#running .panel-group .panel .panel-body .list_container{margin-top:0;margin-bottom:0;border:0;border-radius:0}#running .panel-group .panel .panel-body .list_container .list_item{border-bottom:1px solid #ddd}#running .panel-group .panel .panel-body .list_container .list_item:last-child{border-bottom:0}.delete-button{display:none}.duplicate-button{display:none}.rename-button{display:none}.shutdown-button{display:none}/*! +* +* IPython text editor webapp +* +*/.selected-keymap i.fa{padding:0 5px}.selected-keymap i.fa:before{content:"\f00c"}#mode-menu{overflow:auto;max-height:20em}.edit_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.edit_app #menubar .navbar{margin-bottom:-1px}.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;transform:translate(0, 0);width:20px}.dirty-indicator.pull-left{margin-right:.3em}.dirty-indicator.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-dirty.pull-left{margin-right:.3em}.dirty-indicator-dirty.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-clean.pull-left{margin-right:.3em}.dirty-indicator-clean.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f00c"}.dirty-indicator-clean:before.pull-left{margin-right:.3em}.dirty-indicator-clean:before.pull-right{margin-left:.3em}#filename{font-size:16pt;display:table;padding:0 5px}#current-mode{padding-left:5px;padding-right:5px}#texteditor-backdrop{padding-top:20px;padding-bottom:20px}@media not print{#texteditor-backdrop{background-color:#eee}}@media print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container{padding:0;background-color:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}/*! +* +* IPython notebook +* +*/.ansibold{font-weight:bold}.ansiblack{color:black}.ansired{color:darkred}.ansigreen{color:darkgreen}.ansiyellow{color:#c4a000}.ansiblue{color:darkblue}.ansipurple{color:darkviolet}.ansicyan{color:steelblue}.ansigray{color:gray}.ansibgblack{background-color:black}.ansibgred{background-color:red}.ansibggreen{background-color:green}.ansibgyellow{background-color:yellow}.ansibgblue{background-color:blue}.ansibgpurple{background-color:magenta}.ansibgcyan{background-color:cyan}.ansibggray{background-color:gray}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:none}div.cell.selected{border-color:#ababab}@media print{div.cell.selected{border-color:transparent}}.edit_mode div.cell.selected{border-color:green}@media print{.edit_mode div.cell.selected{border-color:transparent}}.prompt{min-width:14ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:540px){.prompt{text-align:left}}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(){div.inner_cell{overflow-x:hidden}}div.input_area{border:1px solid #cfcfcf;border-radius:2px;background:#f7f7f7;line-height:1.21429em}div.prompt:empty{padding-top:0;padding-bottom:0}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}div.unrecognized_cell .inner_cell{border-radius:2px;padding:5px;font-weight:bold;color:red;border:1px solid #cfcfcf;background:#eaeaea}div.unrecognized_cell .inner_cell a{color:inherit;text-decoration:none}div.unrecognized_cell .inner_cell a:hover{color:inherit;text-decoration:none}@media (max-width:540px){div.unrecognized_cell>div.prompt{display:none}}@media print{div.code_cell{page-break-inside:avoid}}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){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}}div.input_prompt{color:navy;border-top:1px solid transparent}div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.CodeMirror{line-height:1.21429em;font-size:14px;height:auto;background:none}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.CodeMirror-lines{padding:.4em}.CodeMirror-linenumber{padding:0 8px 0 4px}.CodeMirror-gutters{border-bottom-left-radius:2px;border-top-left-radius:2px}.CodeMirror pre{padding:0;border:0;border-radius:0}.highlight-base{color:#000}.highlight-variable{color:#000}.highlight-variable-2{color:#1a1a1a}.highlight-variable-3{color:#333}.highlight-string{color:#ba2121}.highlight-comment{color:#408080;font-style:italic}.highlight-number{color:#080}.highlight-atom{color:#88f}.highlight-keyword{color:#008000;font-weight:bold}.highlight-builtin{color:#008000}.highlight-error{color:#f00}.highlight-operator{color:#a2f;font-weight:bold}.highlight-meta{color:#a2f}.highlight-def{color:#00f}.highlight-string-2{color:#f50}.highlight-qualifier{color:#555}.highlight-bracket{color:#997}.highlight-tag{color:#170}.highlight-attribute{color:#00c}.highlight-header{color:blue}.highlight-quote{color:#090}.highlight-link{color:#00c}.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold}.cm-s-ipython span.cm-atom{color:#88f}.cm-s-ipython span.cm-number{color:#080}.cm-s-ipython span.cm-def{color:#00f}.cm-s-ipython span.cm-variable{color:#000}.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold}.cm-s-ipython span.cm-variable-2{color:#1a1a1a}.cm-s-ipython span.cm-variable-3{color:#333}.cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.cm-s-ipython span.cm-string{color:#ba2121}.cm-s-ipython span.cm-string-2{color:#f50}.cm-s-ipython span.cm-meta{color:#a2f}.cm-s-ipython span.cm-qualifier{color:#555}.cm-s-ipython span.cm-builtin{color:#008000}.cm-s-ipython span.cm-bracket{color:#997}.cm-s-ipython span.cm-tag{color:#170}.cm-s-ipython span.cm-attribute{color:#00c}.cm-s-ipython span.cm-header{color:blue}.cm-s-ipython span.cm-quote{color:#090}.cm-s-ipython span.cm-link{color:#00c}.cm-s-ipython span.cm-error{color:#f00}.cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}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}div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:2px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);display:block}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}div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:2px}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,0.5)}div.output_prompt{color:darkred}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}div.output_area .MathJax_Display{text-align:left !important}div.output_area .rendered_html table{margin-left:0;margin-right:0}div.output_area .rendered_html img{margin-left:0;margin-right:0}.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){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}}div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:black;background-color:transparent;border-radius:0}div.output_subarea{padding:.4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.output_text{text-align:left;color:#000;line-height:1.21429em}div.output_stderr{background:#fdd}div.output_latex{text-align:left}div.output_javascript:empty{padding:0}.js-error{color:darkred}div.raw_input_container{font-family:monospace;padding-top:5px}input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}input.raw_input:focus{box-shadow:none}p.p-space{margin-bottom:10px}div.output_unrecognized{padding:5px;font-weight:bold;color:red}div.output_unrecognized a{color:inherit;text-decoration:none}div.output_unrecognized a:hover{color:inherit;text-decoration:none}.rendered_html{color:#000}.rendered_html em{font-style:italic}.rendered_html strong{font-weight:bold}.rendered_html u{text-decoration:underline}.rendered_html :link{text-decoration:underline}.rendered_html :visited{text-decoration:underline}.rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:bold;line-height:1}.rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:bold;line-height:1}.rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:bold;line-height:1}.rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1}.rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h1:first-child{margin-top:.538em}.rendered_html h2:first-child{margin-top:.636em}.rendered_html h3:first-child{margin-top:.777em}.rendered_html h4:first-child{margin-top:1em}.rendered_html h5:first-child{margin-top:1em}.rendered_html h6:first-child{margin-top:1em}.rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.rendered_html ul ul{list-style:square;margin:0 2em}.rendered_html ul ul ul{list-style:circle;margin:0 2em}.rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.rendered_html *+ul{margin-top:1em}.rendered_html *+ol{margin-top:1em}.rendered_html hr{color:black;background-color:black}.rendered_html pre{margin:1em 2em}.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.rendered_html blockquote{margin:1em 2em}.rendered_html table{margin-left:auto;margin-right:auto;border:1px solid black;border-collapse:collapse}.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em}.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px}.rendered_html th{font-weight:bold}.rendered_html *+table{margin-top:1em}.rendered_html p{text-align:left}.rendered_html *+p{margin-top:1em}.rendered_html img{display:block;margin-left:auto;margin-right:auto}.rendered_html *+img{margin-top:1em}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){div.text_cell>div.prompt{display:none}}div.text_cell_render{outline:none;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}a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible}.text_cell.rendered .input_area{display:none}.text_cell.unrendered .text_cell_render{display:none}.cm-header-1,.cm-header-2,.cm-header-3,.cm-header-4,.cm-header-5,.cm-header-6{font-weight:bold;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.cm-header-1{font-size:185.7%}.cm-header-2{font-size:157.1%}.cm-header-3{font-size:128.6%}.cm-header-4{font-size:110%}.cm-header-5{font-size:100%;font-style:italic}.cm-header-6{font-size:100%;font-style:italic}.widget-interact>div,.widget-interact>input{padding:2.5px}.widget-area{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}.widget-area .widget-subarea{padding:.44em .4em .4em 1px;margin-left:6px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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:2;-moz-box-flex:2;box-flex:2;flex:2;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-area.connection-problems .prompt:after{content:"\f127";font-family:'FontAwesome';color:#d9534f;font-size:14px;top:3px;padding:3px}.slide-track{border:1px solid #ccc;background:#fff;border-radius:2px}.widget-hslider{padding-left:8px;padding-right:2px;overflow:visible;width:350px;height:5px;max-height:5px;margin-top:13px;margin-bottom:10px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-hslider .ui-slider{border:0;background:none;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-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-hslider .ui-slider .ui-slider-handle{width:12px;height:28px;margin-top:-8px;border-radius:2px}.widget-hslider .ui-slider .ui-slider-range{height:12px;margin-top:-4px;background:#eee}.widget-vslider{padding-bottom:5px;overflow:visible;width:5px;max-width:5px;height:250px;margin-left:12px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-vslider .ui-slider{border:0;background:none;margin-left:-4px;margin-top:5px;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}.widget-vslider .ui-slider .ui-slider-handle{width:28px;height:12px;margin-left:-9px;border-radius:2px}.widget-vslider .ui-slider .ui-slider-range{width:12px;margin-left:-1px;background:#eee}.widget-text{width:350px;margin:0}.widget-listbox{width:350px;margin-bottom:0}.widget-numeric-text{width:150px;margin:0}.widget-progress{margin-top:6px;min-width:350px}.widget-progress .progress-bar{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.widget-combo-btn{min-width:125px}.widget_item .dropdown-menu li a{color:inherit}.widget-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}.widget-hbox input[type="checkbox"]{margin-top:9px;margin-bottom:10px}.widget-hbox .widget-label{min-width:10ex;padding-right:8px;padding-top:5px;text-align:right;vertical-align:text-top}.widget-hbox .widget-readout{padding-left:8px;padding-top:5px;text-align:left;vertical-align:text-top}.widget-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}.widget-vbox .widget-label{padding-bottom:5px;text-align:center;vertical-align:text-bottom}.widget-vbox .widget-readout{padding-top:5px;text-align:center;vertical-align:text-top}.widget-box{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-radio-box{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;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding-top:4px}.widget-radio-box label{margin-top:0}.widget-radio{margin-left:20px}/*! +* +* IPython notebook webapp +* +*/@media (max-width:767px){.notebook_app{padding-left:0;padding-right:0}}#ipython-main-app{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}div#notebook_panel{margin:0;padding:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}#notebook{font-size:14px;line-height:20px;overflow-y:hidden;overflow-x:auto;width:100%;padding-top:20px;margin:0;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;min-height:100%}@media not print{#notebook-container{padding:15px;background-color:#fff;min-height:0;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}div.ui-widget-content{border:1px solid #ababab;outline:none}pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:2px;padding:.4em;padding-left:2em}p.dialog{padding:.2em}pre,code,kbd,samp{white-space:pre-wrap}#fonttest{font-family:monospace}p{margin-bottom:0}.end_space{min-height:100px;transition:height .2s ease}.notebook_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}@media not print{.notebook_app{background-color:#eee}}.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}@media print{.celltoolbar{display:none}}.ctb_hideshow{display:none;vertical-align:bottom}.ctb_global_show .ctb_show.ctb_hideshow{display:block}.ctb_global_show .ctb_show+.input_area,.ctb_global_show .ctb_show+div.text_cell_input,.ctb_global_show .ctb_show~div.text_cell_render{border-top-right-radius:0;border-top-left-radius:0}.ctb_global_show .ctb_show~div.text_cell_render{border:1px solid #cfcfcf}.celltoolbar{font-size:87%;padding-top:3px}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.celltoolbar select::-moz-placeholder{color:#999;opacity:1}.celltoolbar select:-ms-input-placeholder{color:#999}.celltoolbar select::-webkit-input-placeholder{color:#999}.celltoolbar select[disabled],.celltoolbar select[readonly],fieldset[disabled] .celltoolbar select{cursor:not-allowed;background-color:#eee;opacity:1}textarea.celltoolbar select{height:auto}select.celltoolbar select{height:30px;line-height:30px}textarea.celltoolbar select,select[multiple].celltoolbar select{height:auto}.celltoolbar label{margin-left:5px;margin-right:5px}.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:2px;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad}.completions select{background:white;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000;width:auto}.completions select option.context{color:#286090}#kernel_logo_widget{float:right !important;float:right}#kernel_logo_widget .current_kernel_logo{display:none;margin-top:-1px;margin-bottom:-1px;width:32px;height:32px}#menubar{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;margin-top:1px}#menubar .navbar{border-top:1px;border-radius:0 0 2px 2px;margin-bottom:0}#menubar .navbar-toggle{float:left;padding-top:7px;padding-bottom:7px;border:none}#menubar .navbar-collapse{clear:left}.nav-wrapper{border-bottom:1px solid #e7e7e7}i.menu-icon{padding-top:4px}ul#help_menu li a{overflow:hidden;padding-right:2.2em}ul#help_menu li a i{margin-right:-1.2em}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu:hover>.dropdown-menu{display:block}.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;transform:translate(0, 0);display:block;content:"\f0da";float:right;color:#333;margin-top:2px;margin-right:-10px}.dropdown-submenu>a:after.pull-left{margin-right:.3em}.dropdown-submenu>a:after.pull-right{margin-left:.3em}.dropdown-submenu:hover>a:after{color:#262626}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}#notification_area{float:right !important;float:right;z-index:10}.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}#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}#kernel_indicator .kernel_indicator_name{padding-left:5px;padding-right:5px}#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}#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}.modal_indicator:before{width:1.28571429em;text-align:center}.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;transform:translate(0, 0);content:"\f040"}.edit_mode .modal_indicator:before.pull-left{margin-right:.3em}.edit_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:' '}.command_mode .modal_indicator:before.pull-left{margin-right:.3em}.command_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f10c"}.kernel_idle_icon:before.pull-left{margin-right:.3em}.kernel_idle_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f111"}.kernel_busy_icon:before.pull-left{margin-right:.3em}.kernel_busy_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f1e2"}.kernel_dead_icon:before.pull-left{margin-right:.3em}.kernel_dead_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f127"}.kernel_disconnected_icon:before.pull-left{margin-right:.3em}.kernel_disconnected_icon:before.pull-right{margin-left:.3em}.notification_widget{color:#777;z-index:10;background:rgba(240,240,240,0.5);color:#333;background-color:#fff;border-color:#ccc}.notification_widget:hover,.notification_widget:focus,.notification_widget.focus,.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{color:#333;background-color:#e6e6e6;border-color:#adadad}.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{background-image:none}.notification_widget.disabled,.notification_widget[disabled],fieldset[disabled] .notification_widget,.notification_widget.disabled:hover,.notification_widget[disabled]:hover,fieldset[disabled] .notification_widget:hover,.notification_widget.disabled:focus,.notification_widget[disabled]:focus,fieldset[disabled] .notification_widget:focus,.notification_widget.disabled.focus,.notification_widget[disabled].focus,fieldset[disabled] .notification_widget.focus,.notification_widget.disabled:active,.notification_widget[disabled]:active,fieldset[disabled] .notification_widget:active,.notification_widget.disabled.active,.notification_widget[disabled].active,fieldset[disabled] .notification_widget.active{background-color:#fff;border-color:#ccc}.notification_widget .badge{color:#fff;background-color:#333}.notification_widget.warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning:hover,.notification_widget.warning:focus,.notification_widget.warning.focus,.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{color:#fff;background-color:#ec971f;border-color:#d58512}.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{background-image:none}.notification_widget.warning.disabled,.notification_widget.warning[disabled],fieldset[disabled] .notification_widget.warning,.notification_widget.warning.disabled:hover,.notification_widget.warning[disabled]:hover,fieldset[disabled] .notification_widget.warning:hover,.notification_widget.warning.disabled:focus,.notification_widget.warning[disabled]:focus,fieldset[disabled] .notification_widget.warning:focus,.notification_widget.warning.disabled.focus,.notification_widget.warning[disabled].focus,fieldset[disabled] .notification_widget.warning.focus,.notification_widget.warning.disabled:active,.notification_widget.warning[disabled]:active,fieldset[disabled] .notification_widget.warning:active,.notification_widget.warning.disabled.active,.notification_widget.warning[disabled].active,fieldset[disabled] .notification_widget.warning.active{background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning .badge{color:#f0ad4e;background-color:#fff}.notification_widget.success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success:hover,.notification_widget.success:focus,.notification_widget.success.focus,.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{color:#fff;background-color:#449d44;border-color:#398439}.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{background-image:none}.notification_widget.success.disabled,.notification_widget.success[disabled],fieldset[disabled] .notification_widget.success,.notification_widget.success.disabled:hover,.notification_widget.success[disabled]:hover,fieldset[disabled] .notification_widget.success:hover,.notification_widget.success.disabled:focus,.notification_widget.success[disabled]:focus,fieldset[disabled] .notification_widget.success:focus,.notification_widget.success.disabled.focus,.notification_widget.success[disabled].focus,fieldset[disabled] .notification_widget.success.focus,.notification_widget.success.disabled:active,.notification_widget.success[disabled]:active,fieldset[disabled] .notification_widget.success:active,.notification_widget.success.disabled.active,.notification_widget.success[disabled].active,fieldset[disabled] .notification_widget.success.active{background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success .badge{color:#5cb85c;background-color:#fff}.notification_widget.info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.notification_widget.info:hover,.notification_widget.info:focus,.notification_widget.info.focus,.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{color:#fff;background-color:#31b0d5;border-color:#269abc}.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{background-image:none}.notification_widget.info.disabled,.notification_widget.info[disabled],fieldset[disabled] .notification_widget.info,.notification_widget.info.disabled:hover,.notification_widget.info[disabled]:hover,fieldset[disabled] .notification_widget.info:hover,.notification_widget.info.disabled:focus,.notification_widget.info[disabled]:focus,fieldset[disabled] .notification_widget.info:focus,.notification_widget.info.disabled.focus,.notification_widget.info[disabled].focus,fieldset[disabled] .notification_widget.info.focus,.notification_widget.info.disabled:active,.notification_widget.info[disabled]:active,fieldset[disabled] .notification_widget.info:active,.notification_widget.info.disabled.active,.notification_widget.info[disabled].active,fieldset[disabled] .notification_widget.info.active{background-color:#5bc0de;border-color:#46b8da}.notification_widget.info .badge{color:#5bc0de;background-color:#fff}.notification_widget.danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger:hover,.notification_widget.danger:focus,.notification_widget.danger.focus,.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{background-image:none}.notification_widget.danger.disabled,.notification_widget.danger[disabled],fieldset[disabled] .notification_widget.danger,.notification_widget.danger.disabled:hover,.notification_widget.danger[disabled]:hover,fieldset[disabled] .notification_widget.danger:hover,.notification_widget.danger.disabled:focus,.notification_widget.danger[disabled]:focus,fieldset[disabled] .notification_widget.danger:focus,.notification_widget.danger.disabled.focus,.notification_widget.danger[disabled].focus,fieldset[disabled] .notification_widget.danger.focus,.notification_widget.danger.disabled:active,.notification_widget.danger[disabled]:active,fieldset[disabled] .notification_widget.danger:active,.notification_widget.danger.disabled.active,.notification_widget.danger[disabled].active,fieldset[disabled] .notification_widget.danger.active{background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger .badge{color:#d9534f;background-color:#fff}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,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2);z-index:100;top:auto !important}div#pager pre{line-height:1.21429em;color:#000;background-color:#f7f7f7;padding:.4em}div#pager #pager-button-area{position:absolute;top:8px;right:20px}div#pager #pager-contents{position:relative;overflow:auto;width:100%;height:100%}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}div#pager .ui-resizable-handle{top:0;height:8px;background:#f7f7f7;border-top:1px solid #cfcfcf;border-bottom:1px solid #cfcfcf}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}.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}.shortcut_key{display:inline-block;width:20ex;text-align:right;font-family:monospace}.shortcut_descr{display:inline-block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}span.save_widget{margin-top:6px}span.save_widget span.filename{height:1em;line-height:1em;padding:3px;margin-left:16px;border:none;font-size:146.5%;border-radius:2px}span.save_widget span.filename:hover{background-color:#e6e6e6}span.checkpoint_status,span.autosave_status{font-size:small}@media (max-width:767px){span.save_widget{font-size:small}span.checkpoint_status,span.autosave_status{display:none}}@media (min-width:768px) and (max-width:991px){span.checkpoint_status{display:none}span.autosave_status{font-size:x-small}}.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}.toolbar select,.toolbar label{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}.toolbar .btn{padding:2px 8px}.toolbar .btn-group{margin-top:0;margin-left:5px}#maintoolbar{margin-bottom:-3px;margin-top:-8px;border:0;min-height:27px;margin-left:0;padding-top:11px;padding-bottom:3px}#maintoolbar .navbar-text{float:none;vertical-align:middle;text-align:right;margin-left:5px;margin-right:0;margin-top:0}.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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms}.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px}.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0}.tooltiptext{padding-right:30px}.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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}.ipython_tooltip a{float:right}.ipython_tooltip .tooltiptext pre{border:0;border-radius:0;font-size:100%;background-color:#f7f7f7}.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute}.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)}.terminal-app{background:#eee}.terminal-app #header{background:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.terminal-app .terminal{float:left;font-family:monospace;color:white;background:black;padding:.4em;border-radius:2px;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.4);box-shadow:0 0 12px 1px rgba(87,87,87,0.4)}.terminal-app .terminal,.terminal-app .terminal dummy-screen{line-height:1em;font-size:14px}.terminal-app .terminal-cursor{color:black;background:white}.terminal-app #terminado-container{margin-top:20px}/*# sourceMappingURL=style.min.css.map */ + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} + +div#notebook { + overflow: visible; + border-top: none; +} + +@media print { + div.cell { + display: block; + page-break-inside: avoid; + } + div.output_wrapper { + display: block; + page-break-inside: avoid; + } + div.output { + display: block; + page-break-inside: avoid; + } +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<!-- Loading mathjax macro --> +<!-- Load mathjax --> + <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script> + <!-- MathJax configuration --> + <script type="text/x-mathjax-config"> + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ], + processEscapes: true, + processEnvironments: true + }, + // Center justify equations in code and markdown cells. Elsewhere + // we use CSS to left justify single line equations in code cells. + displayAlign: 'center', + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}}, + linebreaks: { automatic: true } + } + }); + </script> + <!-- End of mathjax configuration --> + +</head> +<body> + <div tabindex="-1" id="notebook" class="border-box-sizing"> + <div class="container" id="notebook-container"> + +<div class="cell border-box-sizing text_cell rendered"> +<div class="prompt input_prompt"> +</div> +<div class="inner_cell"> +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="Finding-a-Steady-State-in-MOOSE">Finding a Steady State in MOOSE<a class="anchor-link" href="#Finding-a-Steady-State-in-MOOSE">¶</a></h1> +</div> +</div> +</div> +<div class="cell border-box-sizing code_cell rendered"> +<div class="input"> +<div class="prompt input_prompt">In [1]:</div> +<div class="inner_cell"> + <div class="input_area"> +<div class=" highlight hl-ipython2"><pre><span class="kn">import</span> <span class="nn">math</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">numpy</span> +<span class="kn">import</span> <span class="nn">moose</span> + +<span class="o">%</span><span class="k">matplotlib</span> inline + +<span class="k">def</span> <span class="nf">displayPlots</span><span class="p">():</span> + <span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">moose</span><span class="o">.</span><span class="n">wildcardFind</span><span class="p">(</span> <span class="s">'/model/graphs/#'</span> <span class="p">):</span> + <span class="n">t</span> <span class="o">=</span> <span class="n">numpy</span><span class="o">.</span><span class="n">arange</span><span class="p">(</span> <span class="mi">0</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="o">.</span><span class="n">size</span><span class="p">,</span> <span class="mi">1</span> <span class="p">)</span> <span class="c">#sec</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span> <span class="n">t</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="n">x</span><span class="o">.</span><span class="n">name</span> <span class="p">)</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">show</span><span class="p">()</span> + +<span class="k">def</span> <span class="nf">getState</span><span class="p">(</span> <span class="n">ksolve</span><span class="p">,</span> <span class="n">state</span> <span class="p">):</span> + <span class="n">state</span><span class="o">.</span><span class="n">randomInit</span><span class="p">()</span> + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mf">0.1</span> <span class="p">)</span> <span class="c"># Run the model for 2 seconds.</span> + <span class="n">state</span><span class="o">.</span><span class="n">settle</span><span class="p">()</span> + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mf">20.0</span> <span class="p">)</span> <span class="c"># Run model for 10 seconds, just for display</span> + + +<span class="k">def</span> <span class="nf">main</span><span class="p">():</span> + <span class="c">#One can build own model or load pre-existing model</span> + <span class="c">#Here we have taken pre-existing model which is in cspace format</span> + <span class="n">moose</span><span class="o">.</span><span class="n">loadModel</span><span class="p">(</span> <span class="s">'../../../../moose-examples/genesis/M1719.cspace'</span><span class="p">,</span> <span class="s">'/model'</span><span class="p">,</span> <span class="s">'ee'</span> <span class="p">)</span> + <span class="n">compartment</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'model/kinetics'</span> <span class="p">)</span> + <span class="n">compartment</span><span class="o">.</span><span class="n">name</span> <span class="o">=</span> <span class="s">'compartment'</span> + <span class="c">#setting up the solver</span> + <span class="n">ksolve</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Ksolve</span><span class="p">(</span> <span class="s">'/model/compartment/ksolve'</span> <span class="p">)</span> + <span class="n">stoich</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">Stoich</span><span class="p">(</span> <span class="s">'/model/compartment/stoich'</span> <span class="p">)</span> + <span class="n">stoich</span><span class="o">.</span><span class="n">compartment</span> <span class="o">=</span> <span class="n">compartment</span> + <span class="n">stoich</span><span class="o">.</span><span class="n">ksolve</span> <span class="o">=</span> <span class="n">ksolve</span> + <span class="n">stoich</span><span class="o">.</span><span class="n">path</span> <span class="o">=</span> <span class="s">"/model/compartment/##"</span> + <span class="c">#setting up state</span> + <span class="n">state</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">SteadyState</span><span class="p">(</span> <span class="s">'/model/compartment/state'</span> <span class="p">)</span> + + <span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> + <span class="n">state</span><span class="o">.</span><span class="n">stoich</span> <span class="o">=</span> <span class="n">stoich</span> + <span class="n">state</span><span class="o">.</span><span class="n">convergenceCriterion</span> <span class="o">=</span> <span class="mf">1e-7</span> + + <span class="n">a</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/model/compartment/a'</span> <span class="p">)</span> + <span class="n">b</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/model/compartment/b'</span> <span class="p">)</span> + <span class="n">c</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/model/compartment/c'</span> <span class="p">)</span> + + <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span> <span class="mi">0</span><span class="p">,</span> <span class="mi">100</span> <span class="p">):</span> + <span class="n">getState</span><span class="p">(</span> <span class="n">ksolve</span><span class="p">,</span> <span class="n">state</span> <span class="p">)</span> + + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mf">100.0</span> <span class="p">)</span> <span class="c"># Run the model for 100 seconds.</span> + + <span class="n">b</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/model/compartment/b'</span> <span class="p">)</span> + <span class="n">c</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">element</span><span class="p">(</span> <span class="s">'/model/compartment/c'</span> <span class="p">)</span> + + <span class="c"># move most molecules over to b</span> + <span class="n">b</span><span class="o">.</span><span class="n">conc</span> <span class="o">=</span> <span class="n">b</span><span class="o">.</span><span class="n">conc</span> <span class="o">+</span> <span class="n">c</span><span class="o">.</span><span class="n">conc</span> <span class="o">*</span> <span class="mf">0.95</span> + <span class="n">c</span><span class="o">.</span><span class="n">conc</span> <span class="o">=</span> <span class="n">c</span><span class="o">.</span><span class="n">conc</span> <span class="o">*</span> <span class="mf">0.05</span> + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mf">100.0</span> <span class="p">)</span> <span class="c"># Run the model for 100 seconds.</span> + + <span class="c"># move most molecules back to a</span> + <span class="n">c</span><span class="o">.</span><span class="n">conc</span> <span class="o">=</span> <span class="n">c</span><span class="o">.</span><span class="n">conc</span> <span class="o">+</span> <span class="n">b</span><span class="o">.</span><span class="n">conc</span> <span class="o">*</span> <span class="mf">0.95</span> + <span class="n">b</span><span class="o">.</span><span class="n">conc</span> <span class="o">=</span> <span class="n">b</span><span class="o">.</span><span class="n">conc</span> <span class="o">*</span> <span class="mf">0.05</span> + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="mf">100.0</span> <span class="p">)</span> <span class="c"># Run the model for 100 seconds.</span> + + <span class="c"># Iterate through all plots, dump their contents to data.plot.</span> + <span class="n">displayPlots</span><span class="p">()</span> + + <span class="n">quit</span><span class="p">()</span> + +<span class="c"># Run the 'main' if this script is executed standalone.</span> +<span class="k">if</span> <span class="n">__name__</span> <span class="o">==</span> <span class="s">'__main__'</span><span class="p">:</span> + <span class="n">main</span><span class="p">()</span> +</pre></div> + +</div> +</div> +</div> + +<div class="output_wrapper"> +<div class="output"> + + +<div class="output_area"><div class="prompt"></div> + + +<div class="output_png output_subarea "> +<img src="data:image/png;base64,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 +BHzF/wdYh8uE9Ct2cwAAAABJRU5ErkJggg== +" +> +</div> + +</div> + +</div> +</div> + +</div> + </div> + </div> +</body> +</html> diff --git a/docs/user/tutorials/_static/StochasticSolver.html b/docs/user/tutorials/_static/StochasticSolver.html new file mode 100755 index 0000000000000000000000000000000000000000..03f41560ef4e0225eb77dd79a13d34e1a6696093 --- /dev/null +++ b/docs/user/tutorials/_static/StochasticSolver.html @@ -0,0 +1,716 @@ +<!DOCTYPE html> +<html> +<head> + +<meta charset="utf-8" /> +<title> StochasticSolver</title> + +<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> +<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> + +<style type="text/css"> + /*! +* +* Twitter Bootstrap +* +*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.42857143;color:#000;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:3px}.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}.img-circle{border-radius:50%}hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:18px;margin-bottom:9px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:9px;margin-bottom:9px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:33px}h2,.h2{font-size:27px}h3,.h3{font-size:23px}h4,.h4{font-size:17px}h5,.h5{font-size:13px}h6,.h6{font-size:12px}p{margin:0 0 9px}.lead{margin-bottom:18px;font-size:14px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:19.5px}}small,.small{font-size:92%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:9px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:18px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:541px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:9px 18px;margin:0 0 18px;font-size:inherit;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:18px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:2px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}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}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}@media (min-width:768px){.container{width:768px}}@media (min-width:992px){.container{width:940px}}@media (min-width:1200px){.container{width:1140px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}.row{margin-left:0;margin-right:0}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:0;padding-right:0}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:18px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:13.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}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}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:13px;line-height:1.42857143;color:#555}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:32px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:45px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:18px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-lg,select.form-group-lg .form-control{height:45px;line-height:45px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:40px}.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}.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:23px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:25px}.form-horizontal .form-group{margin-left:0;margin-right:0}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:0}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;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}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.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}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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,0.15);border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:541px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:2px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:13px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:2px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:1px}.input-group-addon.input-lg{padding:10px 16px;font-size:17px;border-radius:3px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:2px 2px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:2px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:30px;margin-bottom:18px;border:1px solid transparent}@media (min-width:541px){.navbar{border-radius:2px}}@media (min-width:541px){.navbar-header{float:left}}.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,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:541px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;visibility:visible !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:540px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}@media (min-width:541px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:541px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:541px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:6px 0;font-size:17px;line-height:18px;height:30px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:541px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:0}}.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}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:541px){.navbar-toggle{display:none}}.navbar-nav{margin:3px 0}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:18px}@media (max-width:540px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:18px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:541px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:6px;padding-bottom:6px}}.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,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:-1px;margin-bottom:-1px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:540px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:541px){.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}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-top-right-radius:2px;border-top-left-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:-1px;margin-bottom:-1px}.navbar-btn.btn-sm{margin-top:0;margin-bottom:0}.navbar-btn.btn-xs{margin-top:4px;margin-bottom:4px}.navbar-text{margin-top:6px;margin-bottom:6px}@media (min-width:541px){.navbar-text{float:left;margin-left:0;margin-right:0}}@media (min-width:541px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:0}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:540px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:540px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:18px;list-style:none;background-color:#f5f5f5;border-radius:2px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#5e5e5e}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:18px 0;border-radius:2px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:17px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:18px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:3px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:58.5px}}.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}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#000}.alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:2px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f5f5f5;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.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,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:18px;background-color:#fff;border:1px solid transparent;border-radius:2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:1px;border-top-left-radius:1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:1px;border-top-right-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:1px;border-bottom-right-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:18px}.panel-group .panel{margin-bottom:0;border-radius:2px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.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,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:3px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;-webkit-overflow-scrolling:touch;outline:0}.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 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:2px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.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-size:13px;font-weight:normal;line-height:1.42857143;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:13px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:2px 2px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.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,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;backface-visibility:hidden;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after,.item_buttons:before,.item_buttons:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after,.item_buttons:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*! +* +* Font Awesome +* +*//*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.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;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.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)}.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)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}/*! +* +* IPython base +* +*/.modal.fade .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}code{color:#000}pre{font-size:inherit;line-height:inherit}label{font-weight:normal}.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.corner-all{border-radius:2px}.no-padding{padding:0}.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}.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.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}.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.hbox.reverse,.vbox.reverse,.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.hbox.box-flex0,.vbox.box-flex0,.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.hbox.box-flex1,.vbox.box-flex1,.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex,.vbox.box-flex,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex2,.vbox.box-flex2,.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.hbox.start,.vbox.start,.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.hbox.end,.vbox.end,.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.hbox.center,.vbox.center,.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.hbox.baseline,.vbox.baseline,.baseline{-webkit-box-pack:baseline;-moz-box-pack:baseline;box-pack:baseline;justify-content:baseline}.hbox.stretch,.vbox.stretch,.stretch{-webkit-box-pack:stretch;-moz-box-pack:stretch;box-pack:stretch;justify-content:stretch}.hbox.align-start,.vbox.align-start,.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.hbox.align-end,.vbox.align-end,.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.hbox.align-center,.vbox.align-center,.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}.hbox.align-baseline,.vbox.align-baseline,.align-baseline{-webkit-box-align:baseline;-moz-box-align:baseline;box-align:baseline;align-items:baseline}.hbox.align-stretch,.vbox.align-stretch,.align-stretch{-webkit-box-align:stretch;-moz-box-align:stretch;box-align:stretch;align-items:stretch}div.error{margin:2em;text-align:center}div.error>h1{font-size:500%;line-height:normal}div.error>p{font-size:200%;line-height:normal}div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible}#header{display:none;background-color:#fff;position:relative;z-index:100}#header #header-container{padding-bottom:5px;padding-top:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#header .header-bar{width:100%;height:1px;background:#e7e7e7;margin-bottom:-1px}@media print{#header{display:none !important}}#header-spacer{width:100%;visibility:hidden}@media print{#header-spacer{display:none}}#ipython_notebook{padding-left:0;padding-top:1px;padding-bottom:1px}@media (max-width:991px){#ipython_notebook{margin-left:10px}}#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:red;font-weight:bold}#ipython_notebook img{height:28px}#site{width:100%;display:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:auto}@media print{#site{height:auto !important}}.ui-button .ui-button-text{padding:.2em .8em;font-size:77%}input.ui-button{padding:.3em .9em}span#login_widget{float:right}span#login_widget>.button,#logout{color:#333;background-color:#fff;border-color:#ccc}span#login_widget>.button:hover,#logout:hover,span#login_widget>.button:focus,#logout:focus,span#login_widget>.button.focus,#logout.focus,span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{color:#333;background-color:#e6e6e6;border-color:#adadad}span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{background-image:none}span#login_widget>.button.disabled,#logout.disabled,span#login_widget>.button[disabled],#logout[disabled],fieldset[disabled] span#login_widget>.button,fieldset[disabled] #logout,span#login_widget>.button.disabled:hover,#logout.disabled:hover,span#login_widget>.button[disabled]:hover,#logout[disabled]:hover,fieldset[disabled] span#login_widget>.button:hover,fieldset[disabled] #logout:hover,span#login_widget>.button.disabled:focus,#logout.disabled:focus,span#login_widget>.button[disabled]:focus,#logout[disabled]:focus,fieldset[disabled] span#login_widget>.button:focus,fieldset[disabled] #logout:focus,span#login_widget>.button.disabled.focus,#logout.disabled.focus,span#login_widget>.button[disabled].focus,#logout[disabled].focus,fieldset[disabled] span#login_widget>.button.focus,fieldset[disabled] #logout.focus,span#login_widget>.button.disabled:active,#logout.disabled:active,span#login_widget>.button[disabled]:active,#logout[disabled]:active,fieldset[disabled] span#login_widget>.button:active,fieldset[disabled] #logout:active,span#login_widget>.button.disabled.active,#logout.disabled.active,span#login_widget>.button[disabled].active,#logout[disabled].active,fieldset[disabled] span#login_widget>.button.active,fieldset[disabled] #logout.active{background-color:#fff;border-color:#ccc}span#login_widget>.button .badge,#logout .badge{color:#fff;background-color:#333}.nav-header{text-transform:none}#header>span{margin-top:10px}.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:80%}.modal_stretch .modal-dialog .modal-body{max-height:none;flex:1}@media (min-width:768px){.modal .modal-dialog{width:700px}}@media (min-width:768px){select.form-control{margin-left:12px;margin-right:12px}}/*! +* +* IPython auth +* +*/.center-nav{display:inline-block;margin-bottom:-4px}/*! +* +* IPython tree view +* +*/.alternate_upload{background-color:none;display:inline}.alternate_upload.form{padding:0;margin:0}.alternate_upload input.fileinput{display:inline;opacity:0;z-index:2;width:12ex;margin-right:-12ex}.alternate_upload .input-overlay{display:inline-block;font-weight:bold;line-height:1em}ul#tabs{margin-bottom:4px}ul#tabs a{padding-top:6px;padding-bottom:4px}ul.breadcrumb a:focus,ul.breadcrumb a:hover{text-decoration:none}ul.breadcrumb i.icon-home{font-size:16px;margin-right:4px}ul.breadcrumb span{color:#5e5e5e}.list_toolbar{padding:4px 0 4px 0;vertical-align:middle}.list_toolbar .tree-buttons{padding-top:1px}.dynamic-buttons{display:inline-block}.list_toolbar [class*="span"]{min-height:24px}.list_header{font-weight:bold;background-color:#eee}.list_placeholder{font-weight:bold;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px}.list_container{margin-top:4px;margin-bottom:20px;border:1px solid #ddd;border-radius:2px}.list_container>div{border-bottom:1px solid #ddd}.list_container>div:hover .list-item{background-color:red}.list_container>div:last-child{border:none}.list_item:hover .list_item{background-color:#ddd}.list_item a{text-decoration:none}.list_item:hover{background-color:#fafafa}.action_col{text-align:right}.list_header>div,.list_item>div{padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.list_header>div input,.list_item>div input{margin-right:7px;margin-left:14px;vertical-align:baseline;line-height:22px;position:relative;top:-1px}.list_header>div .item_link,.list_item>div .item_link{margin-left:-1px;vertical-align:baseline;line-height:22px}.new-file input[type=checkbox]{visibility:hidden}.item_name{line-height:22px;height:24px}.item_icon{font-size:14px;color:#5e5e5e;margin-right:7px;margin-left:7px;line-height:22px;vertical-align:baseline}.item_buttons{padding-top:4px;line-height:1em;margin-left:-5px}.item_buttons .btn-group,.item_buttons .input-group{float:left}.item_buttons>.btn,.item_buttons>.btn-group,.item_buttons>.input-group{margin-left:5px}.item_buttons .btn{min-width:13ex}.item_buttons .running-indicator{color:#5cb85c}.toolbar_info{height:24px;line-height:24px}input.nbname_input,input.engine_num_input{padding-top:3px;padding-bottom:3px;height:22px;line-height:14px;margin:0}input.engine_num_input{width:60px}.highlight_text{color:blue}#project_name{display:inline-block;padding-left:7px;margin-left:-2px}#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold}#tree-selector{display:inline-block;padding-right:0}#tree-selector input[type=checkbox]{margin-left:7px;vertical-align:baseline}.tab-content .row{margin-left:0;margin-right:0}.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;transform:translate(0, 0);content:"\f114"}.folder_icon:before.pull-left{margin-right:.3em}.folder_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px}.notebook_icon:before.pull-left{margin-right:.3em}.notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px;color:#5cb85c}.running_notebook_icon:before.pull-left{margin-right:.3em}.running_notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f016";position:relative;top:-2px}.file_icon:before.pull-left{margin-right:.3em}.file_icon:before.pull-right{margin-left:.3em}#notebook_toolbar .pull-right{padding-top:0;margin-right:-1px}ul#new-menu{left:auto;right:0}.kernel-menu-icon{padding-right:12px;width:24px;content:"\f096"}.kernel-menu-icon:before{content:"\f096"}.kernel-menu-icon-current:before{content:"\f00c"}#tab_content{padding-top:20px}#running .panel-group .panel{margin-top:3px;margin-bottom:1em}#running .panel-group .panel .panel-heading{background-color:#eee;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}#running .panel-group .panel .panel-heading a:focus,#running .panel-group .panel .panel-heading a:hover{text-decoration:none}#running .panel-group .panel .panel-body{padding:0}#running .panel-group .panel .panel-body .list_container{margin-top:0;margin-bottom:0;border:0;border-radius:0}#running .panel-group .panel .panel-body .list_container .list_item{border-bottom:1px solid #ddd}#running .panel-group .panel .panel-body .list_container .list_item:last-child{border-bottom:0}.delete-button{display:none}.duplicate-button{display:none}.rename-button{display:none}.shutdown-button{display:none}/*! +* +* IPython text editor webapp +* +*/.selected-keymap i.fa{padding:0 5px}.selected-keymap i.fa:before{content:"\f00c"}#mode-menu{overflow:auto;max-height:20em}.edit_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.edit_app #menubar .navbar{margin-bottom:-1px}.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;transform:translate(0, 0);width:20px}.dirty-indicator.pull-left{margin-right:.3em}.dirty-indicator.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-dirty.pull-left{margin-right:.3em}.dirty-indicator-dirty.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-clean.pull-left{margin-right:.3em}.dirty-indicator-clean.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f00c"}.dirty-indicator-clean:before.pull-left{margin-right:.3em}.dirty-indicator-clean:before.pull-right{margin-left:.3em}#filename{font-size:16pt;display:table;padding:0 5px}#current-mode{padding-left:5px;padding-right:5px}#texteditor-backdrop{padding-top:20px;padding-bottom:20px}@media not print{#texteditor-backdrop{background-color:#eee}}@media print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container{padding:0;background-color:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}/*! +* +* IPython notebook +* +*/.ansibold{font-weight:bold}.ansiblack{color:black}.ansired{color:darkred}.ansigreen{color:darkgreen}.ansiyellow{color:#c4a000}.ansiblue{color:darkblue}.ansipurple{color:darkviolet}.ansicyan{color:steelblue}.ansigray{color:gray}.ansibgblack{background-color:black}.ansibgred{background-color:red}.ansibggreen{background-color:green}.ansibgyellow{background-color:yellow}.ansibgblue{background-color:blue}.ansibgpurple{background-color:magenta}.ansibgcyan{background-color:cyan}.ansibggray{background-color:gray}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:none}div.cell.selected{border-color:#ababab}@media print{div.cell.selected{border-color:transparent}}.edit_mode div.cell.selected{border-color:green}@media print{.edit_mode div.cell.selected{border-color:transparent}}.prompt{min-width:14ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:540px){.prompt{text-align:left}}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(){div.inner_cell{overflow-x:hidden}}div.input_area{border:1px solid #cfcfcf;border-radius:2px;background:#f7f7f7;line-height:1.21429em}div.prompt:empty{padding-top:0;padding-bottom:0}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}div.unrecognized_cell .inner_cell{border-radius:2px;padding:5px;font-weight:bold;color:red;border:1px solid #cfcfcf;background:#eaeaea}div.unrecognized_cell .inner_cell a{color:inherit;text-decoration:none}div.unrecognized_cell .inner_cell a:hover{color:inherit;text-decoration:none}@media (max-width:540px){div.unrecognized_cell>div.prompt{display:none}}@media print{div.code_cell{page-break-inside:avoid}}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){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}}div.input_prompt{color:navy;border-top:1px solid transparent}div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.CodeMirror{line-height:1.21429em;font-size:14px;height:auto;background:none}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.CodeMirror-lines{padding:.4em}.CodeMirror-linenumber{padding:0 8px 0 4px}.CodeMirror-gutters{border-bottom-left-radius:2px;border-top-left-radius:2px}.CodeMirror pre{padding:0;border:0;border-radius:0}.highlight-base{color:#000}.highlight-variable{color:#000}.highlight-variable-2{color:#1a1a1a}.highlight-variable-3{color:#333}.highlight-string{color:#ba2121}.highlight-comment{color:#408080;font-style:italic}.highlight-number{color:#080}.highlight-atom{color:#88f}.highlight-keyword{color:#008000;font-weight:bold}.highlight-builtin{color:#008000}.highlight-error{color:#f00}.highlight-operator{color:#a2f;font-weight:bold}.highlight-meta{color:#a2f}.highlight-def{color:#00f}.highlight-string-2{color:#f50}.highlight-qualifier{color:#555}.highlight-bracket{color:#997}.highlight-tag{color:#170}.highlight-attribute{color:#00c}.highlight-header{color:blue}.highlight-quote{color:#090}.highlight-link{color:#00c}.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold}.cm-s-ipython span.cm-atom{color:#88f}.cm-s-ipython span.cm-number{color:#080}.cm-s-ipython span.cm-def{color:#00f}.cm-s-ipython span.cm-variable{color:#000}.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold}.cm-s-ipython span.cm-variable-2{color:#1a1a1a}.cm-s-ipython span.cm-variable-3{color:#333}.cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.cm-s-ipython span.cm-string{color:#ba2121}.cm-s-ipython span.cm-string-2{color:#f50}.cm-s-ipython span.cm-meta{color:#a2f}.cm-s-ipython span.cm-qualifier{color:#555}.cm-s-ipython span.cm-builtin{color:#008000}.cm-s-ipython span.cm-bracket{color:#997}.cm-s-ipython span.cm-tag{color:#170}.cm-s-ipython span.cm-attribute{color:#00c}.cm-s-ipython span.cm-header{color:blue}.cm-s-ipython span.cm-quote{color:#090}.cm-s-ipython span.cm-link{color:#00c}.cm-s-ipython span.cm-error{color:#f00}.cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}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}div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:2px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);display:block}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}div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:2px}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,0.5)}div.output_prompt{color:darkred}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}div.output_area .MathJax_Display{text-align:left !important}div.output_area .rendered_html table{margin-left:0;margin-right:0}div.output_area .rendered_html img{margin-left:0;margin-right:0}.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){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}}div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:black;background-color:transparent;border-radius:0}div.output_subarea{padding:.4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.output_text{text-align:left;color:#000;line-height:1.21429em}div.output_stderr{background:#fdd}div.output_latex{text-align:left}div.output_javascript:empty{padding:0}.js-error{color:darkred}div.raw_input_container{font-family:monospace;padding-top:5px}input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}input.raw_input:focus{box-shadow:none}p.p-space{margin-bottom:10px}div.output_unrecognized{padding:5px;font-weight:bold;color:red}div.output_unrecognized a{color:inherit;text-decoration:none}div.output_unrecognized a:hover{color:inherit;text-decoration:none}.rendered_html{color:#000}.rendered_html em{font-style:italic}.rendered_html strong{font-weight:bold}.rendered_html u{text-decoration:underline}.rendered_html :link{text-decoration:underline}.rendered_html :visited{text-decoration:underline}.rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:bold;line-height:1}.rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:bold;line-height:1}.rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:bold;line-height:1}.rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1}.rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h1:first-child{margin-top:.538em}.rendered_html h2:first-child{margin-top:.636em}.rendered_html h3:first-child{margin-top:.777em}.rendered_html h4:first-child{margin-top:1em}.rendered_html h5:first-child{margin-top:1em}.rendered_html h6:first-child{margin-top:1em}.rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.rendered_html ul ul{list-style:square;margin:0 2em}.rendered_html ul ul ul{list-style:circle;margin:0 2em}.rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.rendered_html *+ul{margin-top:1em}.rendered_html *+ol{margin-top:1em}.rendered_html hr{color:black;background-color:black}.rendered_html pre{margin:1em 2em}.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.rendered_html blockquote{margin:1em 2em}.rendered_html table{margin-left:auto;margin-right:auto;border:1px solid black;border-collapse:collapse}.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em}.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px}.rendered_html th{font-weight:bold}.rendered_html *+table{margin-top:1em}.rendered_html p{text-align:left}.rendered_html *+p{margin-top:1em}.rendered_html img{display:block;margin-left:auto;margin-right:auto}.rendered_html *+img{margin-top:1em}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){div.text_cell>div.prompt{display:none}}div.text_cell_render{outline:none;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}a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible}.text_cell.rendered .input_area{display:none}.text_cell.unrendered .text_cell_render{display:none}.cm-header-1,.cm-header-2,.cm-header-3,.cm-header-4,.cm-header-5,.cm-header-6{font-weight:bold;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.cm-header-1{font-size:185.7%}.cm-header-2{font-size:157.1%}.cm-header-3{font-size:128.6%}.cm-header-4{font-size:110%}.cm-header-5{font-size:100%;font-style:italic}.cm-header-6{font-size:100%;font-style:italic}.widget-interact>div,.widget-interact>input{padding:2.5px}.widget-area{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}.widget-area .widget-subarea{padding:.44em .4em .4em 1px;margin-left:6px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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:2;-moz-box-flex:2;box-flex:2;flex:2;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-area.connection-problems .prompt:after{content:"\f127";font-family:'FontAwesome';color:#d9534f;font-size:14px;top:3px;padding:3px}.slide-track{border:1px solid #ccc;background:#fff;border-radius:2px}.widget-hslider{padding-left:8px;padding-right:2px;overflow:visible;width:350px;height:5px;max-height:5px;margin-top:13px;margin-bottom:10px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-hslider .ui-slider{border:0;background:none;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-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-hslider .ui-slider .ui-slider-handle{width:12px;height:28px;margin-top:-8px;border-radius:2px}.widget-hslider .ui-slider .ui-slider-range{height:12px;margin-top:-4px;background:#eee}.widget-vslider{padding-bottom:5px;overflow:visible;width:5px;max-width:5px;height:250px;margin-left:12px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-vslider .ui-slider{border:0;background:none;margin-left:-4px;margin-top:5px;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}.widget-vslider .ui-slider .ui-slider-handle{width:28px;height:12px;margin-left:-9px;border-radius:2px}.widget-vslider .ui-slider .ui-slider-range{width:12px;margin-left:-1px;background:#eee}.widget-text{width:350px;margin:0}.widget-listbox{width:350px;margin-bottom:0}.widget-numeric-text{width:150px;margin:0}.widget-progress{margin-top:6px;min-width:350px}.widget-progress .progress-bar{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.widget-combo-btn{min-width:125px}.widget_item .dropdown-menu li a{color:inherit}.widget-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}.widget-hbox input[type="checkbox"]{margin-top:9px;margin-bottom:10px}.widget-hbox .widget-label{min-width:10ex;padding-right:8px;padding-top:5px;text-align:right;vertical-align:text-top}.widget-hbox .widget-readout{padding-left:8px;padding-top:5px;text-align:left;vertical-align:text-top}.widget-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}.widget-vbox .widget-label{padding-bottom:5px;text-align:center;vertical-align:text-bottom}.widget-vbox .widget-readout{padding-top:5px;text-align:center;vertical-align:text-top}.widget-box{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-radio-box{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;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding-top:4px}.widget-radio-box label{margin-top:0}.widget-radio{margin-left:20px}/*! +* +* IPython notebook webapp +* +*/@media (max-width:767px){.notebook_app{padding-left:0;padding-right:0}}#ipython-main-app{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}div#notebook_panel{margin:0;padding:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}#notebook{font-size:14px;line-height:20px;overflow-y:hidden;overflow-x:auto;width:100%;padding-top:20px;margin:0;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;min-height:100%}@media not print{#notebook-container{padding:15px;background-color:#fff;min-height:0;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}div.ui-widget-content{border:1px solid #ababab;outline:none}pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:2px;padding:.4em;padding-left:2em}p.dialog{padding:.2em}pre,code,kbd,samp{white-space:pre-wrap}#fonttest{font-family:monospace}p{margin-bottom:0}.end_space{min-height:100px;transition:height .2s ease}.notebook_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}@media not print{.notebook_app{background-color:#eee}}.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}@media print{.celltoolbar{display:none}}.ctb_hideshow{display:none;vertical-align:bottom}.ctb_global_show .ctb_show.ctb_hideshow{display:block}.ctb_global_show .ctb_show+.input_area,.ctb_global_show .ctb_show+div.text_cell_input,.ctb_global_show .ctb_show~div.text_cell_render{border-top-right-radius:0;border-top-left-radius:0}.ctb_global_show .ctb_show~div.text_cell_render{border:1px solid #cfcfcf}.celltoolbar{font-size:87%;padding-top:3px}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.celltoolbar select::-moz-placeholder{color:#999;opacity:1}.celltoolbar select:-ms-input-placeholder{color:#999}.celltoolbar select::-webkit-input-placeholder{color:#999}.celltoolbar select[disabled],.celltoolbar select[readonly],fieldset[disabled] .celltoolbar select{cursor:not-allowed;background-color:#eee;opacity:1}textarea.celltoolbar select{height:auto}select.celltoolbar select{height:30px;line-height:30px}textarea.celltoolbar select,select[multiple].celltoolbar select{height:auto}.celltoolbar label{margin-left:5px;margin-right:5px}.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:2px;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad}.completions select{background:white;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000;width:auto}.completions select option.context{color:#286090}#kernel_logo_widget{float:right !important;float:right}#kernel_logo_widget .current_kernel_logo{display:none;margin-top:-1px;margin-bottom:-1px;width:32px;height:32px}#menubar{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;margin-top:1px}#menubar .navbar{border-top:1px;border-radius:0 0 2px 2px;margin-bottom:0}#menubar .navbar-toggle{float:left;padding-top:7px;padding-bottom:7px;border:none}#menubar .navbar-collapse{clear:left}.nav-wrapper{border-bottom:1px solid #e7e7e7}i.menu-icon{padding-top:4px}ul#help_menu li a{overflow:hidden;padding-right:2.2em}ul#help_menu li a i{margin-right:-1.2em}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu:hover>.dropdown-menu{display:block}.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;transform:translate(0, 0);display:block;content:"\f0da";float:right;color:#333;margin-top:2px;margin-right:-10px}.dropdown-submenu>a:after.pull-left{margin-right:.3em}.dropdown-submenu>a:after.pull-right{margin-left:.3em}.dropdown-submenu:hover>a:after{color:#262626}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}#notification_area{float:right !important;float:right;z-index:10}.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}#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}#kernel_indicator .kernel_indicator_name{padding-left:5px;padding-right:5px}#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}#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}.modal_indicator:before{width:1.28571429em;text-align:center}.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;transform:translate(0, 0);content:"\f040"}.edit_mode .modal_indicator:before.pull-left{margin-right:.3em}.edit_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:' '}.command_mode .modal_indicator:before.pull-left{margin-right:.3em}.command_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f10c"}.kernel_idle_icon:before.pull-left{margin-right:.3em}.kernel_idle_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f111"}.kernel_busy_icon:before.pull-left{margin-right:.3em}.kernel_busy_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f1e2"}.kernel_dead_icon:before.pull-left{margin-right:.3em}.kernel_dead_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f127"}.kernel_disconnected_icon:before.pull-left{margin-right:.3em}.kernel_disconnected_icon:before.pull-right{margin-left:.3em}.notification_widget{color:#777;z-index:10;background:rgba(240,240,240,0.5);color:#333;background-color:#fff;border-color:#ccc}.notification_widget:hover,.notification_widget:focus,.notification_widget.focus,.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{color:#333;background-color:#e6e6e6;border-color:#adadad}.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{background-image:none}.notification_widget.disabled,.notification_widget[disabled],fieldset[disabled] .notification_widget,.notification_widget.disabled:hover,.notification_widget[disabled]:hover,fieldset[disabled] .notification_widget:hover,.notification_widget.disabled:focus,.notification_widget[disabled]:focus,fieldset[disabled] .notification_widget:focus,.notification_widget.disabled.focus,.notification_widget[disabled].focus,fieldset[disabled] .notification_widget.focus,.notification_widget.disabled:active,.notification_widget[disabled]:active,fieldset[disabled] .notification_widget:active,.notification_widget.disabled.active,.notification_widget[disabled].active,fieldset[disabled] .notification_widget.active{background-color:#fff;border-color:#ccc}.notification_widget .badge{color:#fff;background-color:#333}.notification_widget.warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning:hover,.notification_widget.warning:focus,.notification_widget.warning.focus,.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{color:#fff;background-color:#ec971f;border-color:#d58512}.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{background-image:none}.notification_widget.warning.disabled,.notification_widget.warning[disabled],fieldset[disabled] .notification_widget.warning,.notification_widget.warning.disabled:hover,.notification_widget.warning[disabled]:hover,fieldset[disabled] .notification_widget.warning:hover,.notification_widget.warning.disabled:focus,.notification_widget.warning[disabled]:focus,fieldset[disabled] .notification_widget.warning:focus,.notification_widget.warning.disabled.focus,.notification_widget.warning[disabled].focus,fieldset[disabled] .notification_widget.warning.focus,.notification_widget.warning.disabled:active,.notification_widget.warning[disabled]:active,fieldset[disabled] .notification_widget.warning:active,.notification_widget.warning.disabled.active,.notification_widget.warning[disabled].active,fieldset[disabled] .notification_widget.warning.active{background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning .badge{color:#f0ad4e;background-color:#fff}.notification_widget.success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success:hover,.notification_widget.success:focus,.notification_widget.success.focus,.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{color:#fff;background-color:#449d44;border-color:#398439}.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{background-image:none}.notification_widget.success.disabled,.notification_widget.success[disabled],fieldset[disabled] .notification_widget.success,.notification_widget.success.disabled:hover,.notification_widget.success[disabled]:hover,fieldset[disabled] .notification_widget.success:hover,.notification_widget.success.disabled:focus,.notification_widget.success[disabled]:focus,fieldset[disabled] .notification_widget.success:focus,.notification_widget.success.disabled.focus,.notification_widget.success[disabled].focus,fieldset[disabled] .notification_widget.success.focus,.notification_widget.success.disabled:active,.notification_widget.success[disabled]:active,fieldset[disabled] .notification_widget.success:active,.notification_widget.success.disabled.active,.notification_widget.success[disabled].active,fieldset[disabled] .notification_widget.success.active{background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success .badge{color:#5cb85c;background-color:#fff}.notification_widget.info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.notification_widget.info:hover,.notification_widget.info:focus,.notification_widget.info.focus,.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{color:#fff;background-color:#31b0d5;border-color:#269abc}.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{background-image:none}.notification_widget.info.disabled,.notification_widget.info[disabled],fieldset[disabled] .notification_widget.info,.notification_widget.info.disabled:hover,.notification_widget.info[disabled]:hover,fieldset[disabled] .notification_widget.info:hover,.notification_widget.info.disabled:focus,.notification_widget.info[disabled]:focus,fieldset[disabled] .notification_widget.info:focus,.notification_widget.info.disabled.focus,.notification_widget.info[disabled].focus,fieldset[disabled] .notification_widget.info.focus,.notification_widget.info.disabled:active,.notification_widget.info[disabled]:active,fieldset[disabled] .notification_widget.info:active,.notification_widget.info.disabled.active,.notification_widget.info[disabled].active,fieldset[disabled] .notification_widget.info.active{background-color:#5bc0de;border-color:#46b8da}.notification_widget.info .badge{color:#5bc0de;background-color:#fff}.notification_widget.danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger:hover,.notification_widget.danger:focus,.notification_widget.danger.focus,.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{background-image:none}.notification_widget.danger.disabled,.notification_widget.danger[disabled],fieldset[disabled] .notification_widget.danger,.notification_widget.danger.disabled:hover,.notification_widget.danger[disabled]:hover,fieldset[disabled] .notification_widget.danger:hover,.notification_widget.danger.disabled:focus,.notification_widget.danger[disabled]:focus,fieldset[disabled] .notification_widget.danger:focus,.notification_widget.danger.disabled.focus,.notification_widget.danger[disabled].focus,fieldset[disabled] .notification_widget.danger.focus,.notification_widget.danger.disabled:active,.notification_widget.danger[disabled]:active,fieldset[disabled] .notification_widget.danger:active,.notification_widget.danger.disabled.active,.notification_widget.danger[disabled].active,fieldset[disabled] .notification_widget.danger.active{background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger .badge{color:#d9534f;background-color:#fff}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,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2);z-index:100;top:auto !important}div#pager pre{line-height:1.21429em;color:#000;background-color:#f7f7f7;padding:.4em}div#pager #pager-button-area{position:absolute;top:8px;right:20px}div#pager #pager-contents{position:relative;overflow:auto;width:100%;height:100%}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}div#pager .ui-resizable-handle{top:0;height:8px;background:#f7f7f7;border-top:1px solid #cfcfcf;border-bottom:1px solid #cfcfcf}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}.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}.shortcut_key{display:inline-block;width:20ex;text-align:right;font-family:monospace}.shortcut_descr{display:inline-block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}span.save_widget{margin-top:6px}span.save_widget span.filename{height:1em;line-height:1em;padding:3px;margin-left:16px;border:none;font-size:146.5%;border-radius:2px}span.save_widget span.filename:hover{background-color:#e6e6e6}span.checkpoint_status,span.autosave_status{font-size:small}@media (max-width:767px){span.save_widget{font-size:small}span.checkpoint_status,span.autosave_status{display:none}}@media (min-width:768px) and (max-width:991px){span.checkpoint_status{display:none}span.autosave_status{font-size:x-small}}.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}.toolbar select,.toolbar label{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}.toolbar .btn{padding:2px 8px}.toolbar .btn-group{margin-top:0;margin-left:5px}#maintoolbar{margin-bottom:-3px;margin-top:-8px;border:0;min-height:27px;margin-left:0;padding-top:11px;padding-bottom:3px}#maintoolbar .navbar-text{float:none;vertical-align:middle;text-align:right;margin-left:5px;margin-right:0;margin-top:0}.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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms}.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px}.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0}.tooltiptext{padding-right:30px}.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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}.ipython_tooltip a{float:right}.ipython_tooltip .tooltiptext pre{border:0;border-radius:0;font-size:100%;background-color:#f7f7f7}.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute}.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)}.terminal-app{background:#eee}.terminal-app #header{background:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.terminal-app .terminal{float:left;font-family:monospace;color:white;background:black;padding:.4em;border-radius:2px;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.4);box-shadow:0 0 12px 1px rgba(87,87,87,0.4)}.terminal-app .terminal,.terminal-app .terminal dummy-screen{line-height:1em;font-size:14px}.terminal-app .terminal-cursor{color:black;background:white}.terminal-app #terminado-container{margin-top:20px}/*# sourceMappingURL=style.min.css.map */ + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} + +div#notebook { + overflow: visible; + border-top: none; +} + +@media print { + div.cell { + display: block; + page-break-inside: avoid; + } + div.output_wrapper { + display: block; + page-break-inside: avoid; + } + div.output { + display: block; + page-break-inside: avoid; + } +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<!-- Loading mathjax macro --> +<!-- Load mathjax --> + <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script> + <!-- MathJax configuration --> + <script type="text/x-mathjax-config"> + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ], + processEscapes: true, + processEnvironments: true + }, + // Center justify equations in code and markdown cells. Elsewhere + // we use CSS to left justify single line equations in code cells. + displayAlign: 'center', + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}}, + linebreaks: { automatic: true } + } + }); + </script> + <!-- End of mathjax configuration --> + +</head> +<body> + <div tabindex="-1" id="notebook" class="border-box-sizing"> + <div class="container" id="notebook-container"> + +<div class="cell border-box-sizing text_cell rendered"> +<div class="prompt input_prompt"> +</div> +<div class="inner_cell"> +<div class="text_cell_render border-box-sizing rendered_html"> +<h1 id="This-example-illustrates-how-to-loading,-running,-setting-up-solver-and-plotting-a-kinetic-model-defined-in-kkit-format.">This example illustrates how to loading, running, setting up solver and plotting a kinetic model defined in kkit format.<a class="anchor-link" href="#This-example-illustrates-how-to-loading,-running,-setting-up-solver-and-plotting-a-kinetic-model-defined-in-kkit-format.">¶</a></h1> +</div> +</div> +</div> +<div class="cell border-box-sizing code_cell rendered"> +<div class="input"> +<div class="prompt input_prompt">In [1]:</div> +<div class="inner_cell"> + <div class="input_area"> +<div class=" highlight hl-ipython2"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">numpy</span> +<span class="kn">import</span> <span class="nn">sys</span> +<span class="o">%</span><span class="k">matplotlib</span> inline + +<span class="k">def</span> <span class="nf">main</span><span class="p">():</span> + <span class="sd">""" This example illustrates setting up of Stochastic solver, loading, running, and saving a kinetic model </span> +<span class="sd"> defined in kkit format. """</span> + <span class="n">solver</span> <span class="o">=</span> <span class="s">"gssa"</span> <span class="c"># Setting up Stochastic solver</span> + <span class="n">mfile</span> <span class="o">=</span> <span class="s">'../genesis/kkit_objects_example.g'</span> + <span class="n">runtime</span> <span class="o">=</span> <span class="mf">20.0</span> + <span class="n">modelId</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">loadModel</span><span class="p">(</span> <span class="n">mfile</span><span class="p">,</span> <span class="s">'model'</span><span class="p">,</span> <span class="n">solver</span> <span class="p">)</span> + + <span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="n">runtime</span> <span class="p">)</span> + + <span class="c"># Display all plots.</span> + <span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">moose</span><span class="o">.</span><span class="n">wildcardFind</span><span class="p">(</span> <span class="s">'/model/#graphs/conc#/#'</span> <span class="p">):</span> + <span class="n">t</span> <span class="o">=</span> <span class="n">numpy</span><span class="o">.</span><span class="n">arange</span><span class="p">(</span> <span class="mi">0</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="o">.</span><span class="n">size</span><span class="p">,</span> <span class="mi">1</span> <span class="p">)</span> <span class="o">*</span> <span class="n">x</span><span class="o">.</span><span class="n">dt</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span> <span class="n">t</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="n">x</span><span class="o">.</span><span class="n">name</span> <span class="p">)</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">show</span><span class="p">()</span> + + <span class="n">quit</span><span class="p">()</span> + +<span class="c"># Run the 'main' if this script is executed standalone.</span> +<span class="k">if</span> <span class="n">__name__</span> <span class="o">==</span> <span class="s">'__main__'</span><span class="p">:</span> + <span class="n">main</span><span class="p">()</span> +</pre></div> + +</div> +</div> +</div> + +<div class="output_wrapper"> +<div class="output"> + + +<div class="output_area"><div class="prompt"></div> + + +<div class="output_png output_subarea "> +<img src="data:image/png;base64,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 +SaCjFcyeAAAAAElFTkSuQmCC +" +> +</div> + +</div> + +</div> +</div> + +</div> + </div> + </div> +</body> +</html> diff --git a/docs/user/tutorials/_static/h10_CNG_swc.png b/docs/user/tutorials/_static/h10_CNG_swc.png new file mode 100644 index 0000000000000000000000000000000000000000..15085b2715b41b587b2cdfa2bb0b186f7f5c5399 Binary files /dev/null and b/docs/user/tutorials/_static/h10_CNG_swc.png differ diff --git a/docs/user/tutorials/_static/loadKineticModel.html b/docs/user/tutorials/_static/loadKineticModel.html new file mode 100755 index 0000000000000000000000000000000000000000..3ebdb41a6e9483af9ee1480a99eca0dfada25865 --- /dev/null +++ b/docs/user/tutorials/_static/loadKineticModel.html @@ -0,0 +1,941 @@ +<!DOCTYPE html> +<html> +<head> + +<meta charset="utf-8" /> +<title>loadKineticModel</title> + +<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> +<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> + +<style type="text/css"> + /*! +* +* Twitter Bootstrap +* +*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.42857143;color:#000;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:3px}.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}.img-circle{border-radius:50%}hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:18px;margin-bottom:9px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:9px;margin-bottom:9px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:33px}h2,.h2{font-size:27px}h3,.h3{font-size:23px}h4,.h4{font-size:17px}h5,.h5{font-size:13px}h6,.h6{font-size:12px}p{margin:0 0 9px}.lead{margin-bottom:18px;font-size:14px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:19.5px}}small,.small{font-size:92%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:9px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:18px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:541px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:9px 18px;margin:0 0 18px;font-size:inherit;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:18px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:2px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}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}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}@media (min-width:768px){.container{width:768px}}@media (min-width:992px){.container{width:940px}}@media (min-width:1200px){.container{width:1140px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}.row{margin-left:0;margin-right:0}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:0;padding-right:0}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:18px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:13.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}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}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:13px;line-height:1.42857143;color:#555}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:32px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:45px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:18px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-lg,select.form-group-lg .form-control{height:45px;line-height:45px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:40px}.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}.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:23px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:25px}.form-horizontal .form-group{margin-left:0;margin-right:0}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:0}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;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}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.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}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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,0.15);border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:541px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:2px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:3px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:13px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:2px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:1px}.input-group-addon.input-lg{padding:10px 16px;font-size:17px;border-radius:3px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:2px 2px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:2px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:2px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:30px;margin-bottom:18px;border:1px solid transparent}@media (min-width:541px){.navbar{border-radius:2px}}@media (min-width:541px){.navbar-header{float:left}}.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,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:541px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;visibility:visible !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:540px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}@media (min-width:541px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:541px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:541px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:6px 0;font-size:17px;line-height:18px;height:30px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:541px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:0}}.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}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:541px){.navbar-toggle{display:none}}.navbar-nav{margin:3px 0}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:18px}@media (max-width:540px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:18px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:541px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:6px;padding-bottom:6px}}.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,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:-1px;margin-bottom:-1px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:540px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:541px){.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}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-top-right-radius:2px;border-top-left-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:-1px;margin-bottom:-1px}.navbar-btn.btn-sm{margin-top:0;margin-bottom:0}.navbar-btn.btn-xs{margin-top:4px;margin-bottom:4px}.navbar-text{margin-top:6px;margin-bottom:6px}@media (min-width:541px){.navbar-text{float:left;margin-left:0;margin-right:0}}@media (min-width:541px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right;margin-right:0}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:540px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:540px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:18px;list-style:none;background-color:#f5f5f5;border-radius:2px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#5e5e5e}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:18px 0;border-radius:2px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:17px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:18px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:3px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:58.5px}}.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}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#000}.alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:2px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f5f5f5;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.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,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:18px;background-color:#fff;border:1px solid transparent;border-radius:2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:1px;border-top-left-radius:1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:1px;border-top-right-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:1px;border-bottom-right-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:18px}.panel-group .panel{margin-bottom:0;border-radius:2px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.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,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:3px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;-webkit-overflow-scrolling:touch;outline:0}.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 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:2px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.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-size:13px;font-weight:normal;line-height:1.42857143;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:13px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:2px 2px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.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,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;backface-visibility:hidden;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after,.item_buttons:before,.item_buttons:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after,.item_buttons:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}/*! +* +* Font Awesome +* +*//*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.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;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.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)}.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)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}/*! +* +* IPython base +* +*/.modal.fade .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}code{color:#000}pre{font-size:inherit;line-height:inherit}label{font-weight:normal}.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.corner-all{border-radius:2px}.no-padding{padding:0}.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}.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.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}.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.hbox.reverse,.vbox.reverse,.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.hbox.box-flex0,.vbox.box-flex0,.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.hbox.box-flex1,.vbox.box-flex1,.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex,.vbox.box-flex,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex2,.vbox.box-flex2,.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.hbox.start,.vbox.start,.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.hbox.end,.vbox.end,.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.hbox.center,.vbox.center,.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.hbox.baseline,.vbox.baseline,.baseline{-webkit-box-pack:baseline;-moz-box-pack:baseline;box-pack:baseline;justify-content:baseline}.hbox.stretch,.vbox.stretch,.stretch{-webkit-box-pack:stretch;-moz-box-pack:stretch;box-pack:stretch;justify-content:stretch}.hbox.align-start,.vbox.align-start,.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.hbox.align-end,.vbox.align-end,.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.hbox.align-center,.vbox.align-center,.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}.hbox.align-baseline,.vbox.align-baseline,.align-baseline{-webkit-box-align:baseline;-moz-box-align:baseline;box-align:baseline;align-items:baseline}.hbox.align-stretch,.vbox.align-stretch,.align-stretch{-webkit-box-align:stretch;-moz-box-align:stretch;box-align:stretch;align-items:stretch}div.error{margin:2em;text-align:center}div.error>h1{font-size:500%;line-height:normal}div.error>p{font-size:200%;line-height:normal}div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible}#header{display:none;background-color:#fff;position:relative;z-index:100}#header #header-container{padding-bottom:5px;padding-top:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#header .header-bar{width:100%;height:1px;background:#e7e7e7;margin-bottom:-1px}@media print{#header{display:none !important}}#header-spacer{width:100%;visibility:hidden}@media print{#header-spacer{display:none}}#ipython_notebook{padding-left:0;padding-top:1px;padding-bottom:1px}@media (max-width:991px){#ipython_notebook{margin-left:10px}}#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:red;font-weight:bold}#ipython_notebook img{height:28px}#site{width:100%;display:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:auto}@media print{#site{height:auto !important}}.ui-button .ui-button-text{padding:.2em .8em;font-size:77%}input.ui-button{padding:.3em .9em}span#login_widget{float:right}span#login_widget>.button,#logout{color:#333;background-color:#fff;border-color:#ccc}span#login_widget>.button:hover,#logout:hover,span#login_widget>.button:focus,#logout:focus,span#login_widget>.button.focus,#logout.focus,span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{color:#333;background-color:#e6e6e6;border-color:#adadad}span#login_widget>.button:active,#logout:active,span#login_widget>.button.active,#logout.active,.open>.dropdown-togglespan#login_widget>.button,.open>.dropdown-toggle#logout{background-image:none}span#login_widget>.button.disabled,#logout.disabled,span#login_widget>.button[disabled],#logout[disabled],fieldset[disabled] span#login_widget>.button,fieldset[disabled] #logout,span#login_widget>.button.disabled:hover,#logout.disabled:hover,span#login_widget>.button[disabled]:hover,#logout[disabled]:hover,fieldset[disabled] span#login_widget>.button:hover,fieldset[disabled] #logout:hover,span#login_widget>.button.disabled:focus,#logout.disabled:focus,span#login_widget>.button[disabled]:focus,#logout[disabled]:focus,fieldset[disabled] span#login_widget>.button:focus,fieldset[disabled] #logout:focus,span#login_widget>.button.disabled.focus,#logout.disabled.focus,span#login_widget>.button[disabled].focus,#logout[disabled].focus,fieldset[disabled] span#login_widget>.button.focus,fieldset[disabled] #logout.focus,span#login_widget>.button.disabled:active,#logout.disabled:active,span#login_widget>.button[disabled]:active,#logout[disabled]:active,fieldset[disabled] span#login_widget>.button:active,fieldset[disabled] #logout:active,span#login_widget>.button.disabled.active,#logout.disabled.active,span#login_widget>.button[disabled].active,#logout[disabled].active,fieldset[disabled] span#login_widget>.button.active,fieldset[disabled] #logout.active{background-color:#fff;border-color:#ccc}span#login_widget>.button .badge,#logout .badge{color:#fff;background-color:#333}.nav-header{text-transform:none}#header>span{margin-top:10px}.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:80%}.modal_stretch .modal-dialog .modal-body{max-height:none;flex:1}@media (min-width:768px){.modal .modal-dialog{width:700px}}@media (min-width:768px){select.form-control{margin-left:12px;margin-right:12px}}/*! +* +* IPython auth +* +*/.center-nav{display:inline-block;margin-bottom:-4px}/*! +* +* IPython tree view +* +*/.alternate_upload{background-color:none;display:inline}.alternate_upload.form{padding:0;margin:0}.alternate_upload input.fileinput{display:inline;opacity:0;z-index:2;width:12ex;margin-right:-12ex}.alternate_upload .input-overlay{display:inline-block;font-weight:bold;line-height:1em}ul#tabs{margin-bottom:4px}ul#tabs a{padding-top:6px;padding-bottom:4px}ul.breadcrumb a:focus,ul.breadcrumb a:hover{text-decoration:none}ul.breadcrumb i.icon-home{font-size:16px;margin-right:4px}ul.breadcrumb span{color:#5e5e5e}.list_toolbar{padding:4px 0 4px 0;vertical-align:middle}.list_toolbar .tree-buttons{padding-top:1px}.dynamic-buttons{display:inline-block}.list_toolbar [class*="span"]{min-height:24px}.list_header{font-weight:bold;background-color:#eee}.list_placeholder{font-weight:bold;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px}.list_container{margin-top:4px;margin-bottom:20px;border:1px solid #ddd;border-radius:2px}.list_container>div{border-bottom:1px solid #ddd}.list_container>div:hover .list-item{background-color:red}.list_container>div:last-child{border:none}.list_item:hover .list_item{background-color:#ddd}.list_item a{text-decoration:none}.list_item:hover{background-color:#fafafa}.action_col{text-align:right}.list_header>div,.list_item>div{padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.list_header>div input,.list_item>div input{margin-right:7px;margin-left:14px;vertical-align:baseline;line-height:22px;position:relative;top:-1px}.list_header>div .item_link,.list_item>div .item_link{margin-left:-1px;vertical-align:baseline;line-height:22px}.new-file input[type=checkbox]{visibility:hidden}.item_name{line-height:22px;height:24px}.item_icon{font-size:14px;color:#5e5e5e;margin-right:7px;margin-left:7px;line-height:22px;vertical-align:baseline}.item_buttons{padding-top:4px;line-height:1em;margin-left:-5px}.item_buttons .btn-group,.item_buttons .input-group{float:left}.item_buttons>.btn,.item_buttons>.btn-group,.item_buttons>.input-group{margin-left:5px}.item_buttons .btn{min-width:13ex}.item_buttons .running-indicator{color:#5cb85c}.toolbar_info{height:24px;line-height:24px}input.nbname_input,input.engine_num_input{padding-top:3px;padding-bottom:3px;height:22px;line-height:14px;margin:0}input.engine_num_input{width:60px}.highlight_text{color:blue}#project_name{display:inline-block;padding-left:7px;margin-left:-2px}#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold}#tree-selector{display:inline-block;padding-right:0}#tree-selector input[type=checkbox]{margin-left:7px;vertical-align:baseline}.tab-content .row{margin-left:0;margin-right:0}.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;transform:translate(0, 0);content:"\f114"}.folder_icon:before.pull-left{margin-right:.3em}.folder_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px}.notebook_icon:before.pull-left{margin-right:.3em}.notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f02d";position:relative;top:-1px;color:#5cb85c}.running_notebook_icon:before.pull-left{margin-right:.3em}.running_notebook_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f016";position:relative;top:-2px}.file_icon:before.pull-left{margin-right:.3em}.file_icon:before.pull-right{margin-left:.3em}#notebook_toolbar .pull-right{padding-top:0;margin-right:-1px}ul#new-menu{left:auto;right:0}.kernel-menu-icon{padding-right:12px;width:24px;content:"\f096"}.kernel-menu-icon:before{content:"\f096"}.kernel-menu-icon-current:before{content:"\f00c"}#tab_content{padding-top:20px}#running .panel-group .panel{margin-top:3px;margin-bottom:1em}#running .panel-group .panel .panel-heading{background-color:#eee;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}#running .panel-group .panel .panel-heading a:focus,#running .panel-group .panel .panel-heading a:hover{text-decoration:none}#running .panel-group .panel .panel-body{padding:0}#running .panel-group .panel .panel-body .list_container{margin-top:0;margin-bottom:0;border:0;border-radius:0}#running .panel-group .panel .panel-body .list_container .list_item{border-bottom:1px solid #ddd}#running .panel-group .panel .panel-body .list_container .list_item:last-child{border-bottom:0}.delete-button{display:none}.duplicate-button{display:none}.rename-button{display:none}.shutdown-button{display:none}/*! +* +* IPython text editor webapp +* +*/.selected-keymap i.fa{padding:0 5px}.selected-keymap i.fa:before{content:"\f00c"}#mode-menu{overflow:auto;max-height:20em}.edit_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.edit_app #menubar .navbar{margin-bottom:-1px}.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;transform:translate(0, 0);width:20px}.dirty-indicator.pull-left{margin-right:.3em}.dirty-indicator.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-dirty.pull-left{margin-right:.3em}.dirty-indicator-dirty.pull-right{margin-left:.3em}.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;transform:translate(0, 0);width:20px}.dirty-indicator-clean.pull-left{margin-right:.3em}.dirty-indicator-clean.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f00c"}.dirty-indicator-clean:before.pull-left{margin-right:.3em}.dirty-indicator-clean:before.pull-right{margin-left:.3em}#filename{font-size:16pt;display:table;padding:0 5px}#current-mode{padding-left:5px;padding-right:5px}#texteditor-backdrop{padding-top:20px;padding-bottom:20px}@media not print{#texteditor-backdrop{background-color:#eee}}@media print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container .CodeMirror-gutter,#texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{#texteditor-backdrop #texteditor-container{padding:0;background-color:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}/*! +* +* IPython notebook +* +*/.ansibold{font-weight:bold}.ansiblack{color:black}.ansired{color:darkred}.ansigreen{color:darkgreen}.ansiyellow{color:#c4a000}.ansiblue{color:darkblue}.ansipurple{color:darkviolet}.ansicyan{color:steelblue}.ansigray{color:gray}.ansibgblack{background-color:black}.ansibgred{background-color:red}.ansibggreen{background-color:green}.ansibgyellow{background-color:yellow}.ansibgblue{background-color:blue}.ansibgpurple{background-color:magenta}.ansibgcyan{background-color:cyan}.ansibggray{background-color:gray}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:none}div.cell.selected{border-color:#ababab}@media print{div.cell.selected{border-color:transparent}}.edit_mode div.cell.selected{border-color:green}@media print{.edit_mode div.cell.selected{border-color:transparent}}.prompt{min-width:14ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:540px){.prompt{text-align:left}}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(){div.inner_cell{overflow-x:hidden}}div.input_area{border:1px solid #cfcfcf;border-radius:2px;background:#f7f7f7;line-height:1.21429em}div.prompt:empty{padding-top:0;padding-bottom:0}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}div.unrecognized_cell .inner_cell{border-radius:2px;padding:5px;font-weight:bold;color:red;border:1px solid #cfcfcf;background:#eaeaea}div.unrecognized_cell .inner_cell a{color:inherit;text-decoration:none}div.unrecognized_cell .inner_cell a:hover{color:inherit;text-decoration:none}@media (max-width:540px){div.unrecognized_cell>div.prompt{display:none}}@media print{div.code_cell{page-break-inside:avoid}}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){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}}div.input_prompt{color:navy;border-top:1px solid transparent}div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.CodeMirror{line-height:1.21429em;font-size:14px;height:auto;background:none}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.CodeMirror-lines{padding:.4em}.CodeMirror-linenumber{padding:0 8px 0 4px}.CodeMirror-gutters{border-bottom-left-radius:2px;border-top-left-radius:2px}.CodeMirror pre{padding:0;border:0;border-radius:0}.highlight-base{color:#000}.highlight-variable{color:#000}.highlight-variable-2{color:#1a1a1a}.highlight-variable-3{color:#333}.highlight-string{color:#ba2121}.highlight-comment{color:#408080;font-style:italic}.highlight-number{color:#080}.highlight-atom{color:#88f}.highlight-keyword{color:#008000;font-weight:bold}.highlight-builtin{color:#008000}.highlight-error{color:#f00}.highlight-operator{color:#a2f;font-weight:bold}.highlight-meta{color:#a2f}.highlight-def{color:#00f}.highlight-string-2{color:#f50}.highlight-qualifier{color:#555}.highlight-bracket{color:#997}.highlight-tag{color:#170}.highlight-attribute{color:#00c}.highlight-header{color:blue}.highlight-quote{color:#090}.highlight-link{color:#00c}.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold}.cm-s-ipython span.cm-atom{color:#88f}.cm-s-ipython span.cm-number{color:#080}.cm-s-ipython span.cm-def{color:#00f}.cm-s-ipython span.cm-variable{color:#000}.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold}.cm-s-ipython span.cm-variable-2{color:#1a1a1a}.cm-s-ipython span.cm-variable-3{color:#333}.cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.cm-s-ipython span.cm-string{color:#ba2121}.cm-s-ipython span.cm-string-2{color:#f50}.cm-s-ipython span.cm-meta{color:#a2f}.cm-s-ipython span.cm-qualifier{color:#555}.cm-s-ipython span.cm-builtin{color:#008000}.cm-s-ipython span.cm-bracket{color:#997}.cm-s-ipython span.cm-tag{color:#170}.cm-s-ipython span.cm-attribute{color:#00c}.cm-s-ipython span.cm-header{color:blue}.cm-s-ipython span.cm-quote{color:#090}.cm-s-ipython span.cm-link{color:#00c}.cm-s-ipython span.cm-error{color:#f00}.cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}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}div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:2px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);display:block}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}div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:2px}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,0.5)}div.output_prompt{color:darkred}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}div.output_area .MathJax_Display{text-align:left !important}div.output_area .rendered_html table{margin-left:0;margin-right:0}div.output_area .rendered_html img{margin-left:0;margin-right:0}.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){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}}div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:black;background-color:transparent;border-radius:0}div.output_subarea{padding:.4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.output_text{text-align:left;color:#000;line-height:1.21429em}div.output_stderr{background:#fdd}div.output_latex{text-align:left}div.output_javascript:empty{padding:0}.js-error{color:darkred}div.raw_input_container{font-family:monospace;padding-top:5px}input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}input.raw_input:focus{box-shadow:none}p.p-space{margin-bottom:10px}div.output_unrecognized{padding:5px;font-weight:bold;color:red}div.output_unrecognized a{color:inherit;text-decoration:none}div.output_unrecognized a:hover{color:inherit;text-decoration:none}.rendered_html{color:#000}.rendered_html em{font-style:italic}.rendered_html strong{font-weight:bold}.rendered_html u{text-decoration:underline}.rendered_html :link{text-decoration:underline}.rendered_html :visited{text-decoration:underline}.rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:bold;line-height:1}.rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:bold;line-height:1}.rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:bold;line-height:1}.rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1}.rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h1:first-child{margin-top:.538em}.rendered_html h2:first-child{margin-top:.636em}.rendered_html h3:first-child{margin-top:.777em}.rendered_html h4:first-child{margin-top:1em}.rendered_html h5:first-child{margin-top:1em}.rendered_html h6:first-child{margin-top:1em}.rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.rendered_html ul ul{list-style:square;margin:0 2em}.rendered_html ul ul ul{list-style:circle;margin:0 2em}.rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.rendered_html *+ul{margin-top:1em}.rendered_html *+ol{margin-top:1em}.rendered_html hr{color:black;background-color:black}.rendered_html pre{margin:1em 2em}.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.rendered_html blockquote{margin:1em 2em}.rendered_html table{margin-left:auto;margin-right:auto;border:1px solid black;border-collapse:collapse}.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em}.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px}.rendered_html th{font-weight:bold}.rendered_html *+table{margin-top:1em}.rendered_html p{text-align:left}.rendered_html *+p{margin-top:1em}.rendered_html img{display:block;margin-left:auto;margin-right:auto}.rendered_html *+img{margin-top:1em}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){div.text_cell>div.prompt{display:none}}div.text_cell_render{outline:none;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}a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible}.text_cell.rendered .input_area{display:none}.text_cell.unrendered .text_cell_render{display:none}.cm-header-1,.cm-header-2,.cm-header-3,.cm-header-4,.cm-header-5,.cm-header-6{font-weight:bold;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.cm-header-1{font-size:185.7%}.cm-header-2{font-size:157.1%}.cm-header-3{font-size:128.6%}.cm-header-4{font-size:110%}.cm-header-5{font-size:100%;font-style:italic}.cm-header-6{font-size:100%;font-style:italic}.widget-interact>div,.widget-interact>input{padding:2.5px}.widget-area{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}.widget-area .widget-subarea{padding:.44em .4em .4em 1px;margin-left:6px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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:2;-moz-box-flex:2;box-flex:2;flex:2;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-area.connection-problems .prompt:after{content:"\f127";font-family:'FontAwesome';color:#d9534f;font-size:14px;top:3px;padding:3px}.slide-track{border:1px solid #ccc;background:#fff;border-radius:2px}.widget-hslider{padding-left:8px;padding-right:2px;overflow:visible;width:350px;height:5px;max-height:5px;margin-top:13px;margin-bottom:10px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-hslider .ui-slider{border:0;background:none;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-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-hslider .ui-slider .ui-slider-handle{width:12px;height:28px;margin-top:-8px;border-radius:2px}.widget-hslider .ui-slider .ui-slider-range{height:12px;margin-top:-4px;background:#eee}.widget-vslider{padding-bottom:5px;overflow:visible;width:5px;max-width:5px;height:250px;margin-left:12px;border:1px solid #ccc;background:#fff;border-radius:2px;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}.widget-vslider .ui-slider{border:0;background:none;margin-left:-4px;margin-top:5px;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}.widget-vslider .ui-slider .ui-slider-handle{width:28px;height:12px;margin-left:-9px;border-radius:2px}.widget-vslider .ui-slider .ui-slider-range{width:12px;margin-left:-1px;background:#eee}.widget-text{width:350px;margin:0}.widget-listbox{width:350px;margin-bottom:0}.widget-numeric-text{width:150px;margin:0}.widget-progress{margin-top:6px;min-width:350px}.widget-progress .progress-bar{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.widget-combo-btn{min-width:125px}.widget_item .dropdown-menu li a{color:inherit}.widget-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}.widget-hbox input[type="checkbox"]{margin-top:9px;margin-bottom:10px}.widget-hbox .widget-label{min-width:10ex;padding-right:8px;padding-top:5px;text-align:right;vertical-align:text-top}.widget-hbox .widget-readout{padding-left:8px;padding-top:5px;text-align:left;vertical-align:text-top}.widget-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}.widget-vbox .widget-label{padding-bottom:5px;text-align:center;vertical-align:text-bottom}.widget-vbox .widget-readout{padding-top:5px;text-align:center;vertical-align:text-top}.widget-box{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-radio-box{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;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding-top:4px}.widget-radio-box label{margin-top:0}.widget-radio{margin-left:20px}/*! +* +* IPython notebook webapp +* +*/@media (max-width:767px){.notebook_app{padding-left:0;padding-right:0}}#ipython-main-app{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}div#notebook_panel{margin:0;padding:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}#notebook{font-size:14px;line-height:20px;overflow-y:hidden;overflow-x:auto;width:100%;padding-top:20px;margin:0;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;min-height:100%}@media not print{#notebook-container{padding:15px;background-color:#fff;min-height:0;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}}div.ui-widget-content{border:1px solid #ababab;outline:none}pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:2px;padding:.4em;padding-left:2em}p.dialog{padding:.2em}pre,code,kbd,samp{white-space:pre-wrap}#fonttest{font-family:monospace}p{margin-bottom:0}.end_space{min-height:100px;transition:height .2s ease}.notebook_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}@media not print{.notebook_app{background-color:#eee}}.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}@media print{.celltoolbar{display:none}}.ctb_hideshow{display:none;vertical-align:bottom}.ctb_global_show .ctb_show.ctb_hideshow{display:block}.ctb_global_show .ctb_show+.input_area,.ctb_global_show .ctb_show+div.text_cell_input,.ctb_global_show .ctb_show~div.text_cell_render{border-top-right-radius:0;border-top-left-radius:0}.ctb_global_show .ctb_show~div.text_cell_render{border:1px solid #cfcfcf}.celltoolbar{font-size:87%;padding-top:3px}.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,0.075);box-shadow:inset 0 1px 1px rgba(0,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}.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, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.celltoolbar select::-moz-placeholder{color:#999;opacity:1}.celltoolbar select:-ms-input-placeholder{color:#999}.celltoolbar select::-webkit-input-placeholder{color:#999}.celltoolbar select[disabled],.celltoolbar select[readonly],fieldset[disabled] .celltoolbar select{cursor:not-allowed;background-color:#eee;opacity:1}textarea.celltoolbar select{height:auto}select.celltoolbar select{height:30px;line-height:30px}textarea.celltoolbar select,select[multiple].celltoolbar select{height:auto}.celltoolbar label{margin-left:5px;margin-right:5px}.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:2px;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad}.completions select{background:white;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000;width:auto}.completions select option.context{color:#286090}#kernel_logo_widget{float:right !important;float:right}#kernel_logo_widget .current_kernel_logo{display:none;margin-top:-1px;margin-bottom:-1px;width:32px;height:32px}#menubar{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;margin-top:1px}#menubar .navbar{border-top:1px;border-radius:0 0 2px 2px;margin-bottom:0}#menubar .navbar-toggle{float:left;padding-top:7px;padding-bottom:7px;border:none}#menubar .navbar-collapse{clear:left}.nav-wrapper{border-bottom:1px solid #e7e7e7}i.menu-icon{padding-top:4px}ul#help_menu li a{overflow:hidden;padding-right:2.2em}ul#help_menu li a i{margin-right:-1.2em}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu:hover>.dropdown-menu{display:block}.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;transform:translate(0, 0);display:block;content:"\f0da";float:right;color:#333;margin-top:2px;margin-right:-10px}.dropdown-submenu>a:after.pull-left{margin-right:.3em}.dropdown-submenu>a:after.pull-right{margin-left:.3em}.dropdown-submenu:hover>a:after{color:#262626}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}#notification_area{float:right !important;float:right;z-index:10}.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}#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}#kernel_indicator .kernel_indicator_name{padding-left:5px;padding-right:5px}#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}#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}.modal_indicator:before{width:1.28571429em;text-align:center}.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;transform:translate(0, 0);content:"\f040"}.edit_mode .modal_indicator:before.pull-left{margin-right:.3em}.edit_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:' '}.command_mode .modal_indicator:before.pull-left{margin-right:.3em}.command_mode .modal_indicator:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f10c"}.kernel_idle_icon:before.pull-left{margin-right:.3em}.kernel_idle_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f111"}.kernel_busy_icon:before.pull-left{margin-right:.3em}.kernel_busy_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f1e2"}.kernel_dead_icon:before.pull-left{margin-right:.3em}.kernel_dead_icon:before.pull-right{margin-left:.3em}.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;transform:translate(0, 0);content:"\f127"}.kernel_disconnected_icon:before.pull-left{margin-right:.3em}.kernel_disconnected_icon:before.pull-right{margin-left:.3em}.notification_widget{color:#777;z-index:10;background:rgba(240,240,240,0.5);color:#333;background-color:#fff;border-color:#ccc}.notification_widget:hover,.notification_widget:focus,.notification_widget.focus,.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{color:#333;background-color:#e6e6e6;border-color:#adadad}.notification_widget:active,.notification_widget.active,.open>.dropdown-toggle.notification_widget{background-image:none}.notification_widget.disabled,.notification_widget[disabled],fieldset[disabled] .notification_widget,.notification_widget.disabled:hover,.notification_widget[disabled]:hover,fieldset[disabled] .notification_widget:hover,.notification_widget.disabled:focus,.notification_widget[disabled]:focus,fieldset[disabled] .notification_widget:focus,.notification_widget.disabled.focus,.notification_widget[disabled].focus,fieldset[disabled] .notification_widget.focus,.notification_widget.disabled:active,.notification_widget[disabled]:active,fieldset[disabled] .notification_widget:active,.notification_widget.disabled.active,.notification_widget[disabled].active,fieldset[disabled] .notification_widget.active{background-color:#fff;border-color:#ccc}.notification_widget .badge{color:#fff;background-color:#333}.notification_widget.warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning:hover,.notification_widget.warning:focus,.notification_widget.warning.focus,.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{color:#fff;background-color:#ec971f;border-color:#d58512}.notification_widget.warning:active,.notification_widget.warning.active,.open>.dropdown-toggle.notification_widget.warning{background-image:none}.notification_widget.warning.disabled,.notification_widget.warning[disabled],fieldset[disabled] .notification_widget.warning,.notification_widget.warning.disabled:hover,.notification_widget.warning[disabled]:hover,fieldset[disabled] .notification_widget.warning:hover,.notification_widget.warning.disabled:focus,.notification_widget.warning[disabled]:focus,fieldset[disabled] .notification_widget.warning:focus,.notification_widget.warning.disabled.focus,.notification_widget.warning[disabled].focus,fieldset[disabled] .notification_widget.warning.focus,.notification_widget.warning.disabled:active,.notification_widget.warning[disabled]:active,fieldset[disabled] .notification_widget.warning:active,.notification_widget.warning.disabled.active,.notification_widget.warning[disabled].active,fieldset[disabled] .notification_widget.warning.active{background-color:#f0ad4e;border-color:#eea236}.notification_widget.warning .badge{color:#f0ad4e;background-color:#fff}.notification_widget.success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success:hover,.notification_widget.success:focus,.notification_widget.success.focus,.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{color:#fff;background-color:#449d44;border-color:#398439}.notification_widget.success:active,.notification_widget.success.active,.open>.dropdown-toggle.notification_widget.success{background-image:none}.notification_widget.success.disabled,.notification_widget.success[disabled],fieldset[disabled] .notification_widget.success,.notification_widget.success.disabled:hover,.notification_widget.success[disabled]:hover,fieldset[disabled] .notification_widget.success:hover,.notification_widget.success.disabled:focus,.notification_widget.success[disabled]:focus,fieldset[disabled] .notification_widget.success:focus,.notification_widget.success.disabled.focus,.notification_widget.success[disabled].focus,fieldset[disabled] .notification_widget.success.focus,.notification_widget.success.disabled:active,.notification_widget.success[disabled]:active,fieldset[disabled] .notification_widget.success:active,.notification_widget.success.disabled.active,.notification_widget.success[disabled].active,fieldset[disabled] .notification_widget.success.active{background-color:#5cb85c;border-color:#4cae4c}.notification_widget.success .badge{color:#5cb85c;background-color:#fff}.notification_widget.info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.notification_widget.info:hover,.notification_widget.info:focus,.notification_widget.info.focus,.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{color:#fff;background-color:#31b0d5;border-color:#269abc}.notification_widget.info:active,.notification_widget.info.active,.open>.dropdown-toggle.notification_widget.info{background-image:none}.notification_widget.info.disabled,.notification_widget.info[disabled],fieldset[disabled] .notification_widget.info,.notification_widget.info.disabled:hover,.notification_widget.info[disabled]:hover,fieldset[disabled] .notification_widget.info:hover,.notification_widget.info.disabled:focus,.notification_widget.info[disabled]:focus,fieldset[disabled] .notification_widget.info:focus,.notification_widget.info.disabled.focus,.notification_widget.info[disabled].focus,fieldset[disabled] .notification_widget.info.focus,.notification_widget.info.disabled:active,.notification_widget.info[disabled]:active,fieldset[disabled] .notification_widget.info:active,.notification_widget.info.disabled.active,.notification_widget.info[disabled].active,fieldset[disabled] .notification_widget.info.active{background-color:#5bc0de;border-color:#46b8da}.notification_widget.info .badge{color:#5bc0de;background-color:#fff}.notification_widget.danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger:hover,.notification_widget.danger:focus,.notification_widget.danger.focus,.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.notification_widget.danger:active,.notification_widget.danger.active,.open>.dropdown-toggle.notification_widget.danger{background-image:none}.notification_widget.danger.disabled,.notification_widget.danger[disabled],fieldset[disabled] .notification_widget.danger,.notification_widget.danger.disabled:hover,.notification_widget.danger[disabled]:hover,fieldset[disabled] .notification_widget.danger:hover,.notification_widget.danger.disabled:focus,.notification_widget.danger[disabled]:focus,fieldset[disabled] .notification_widget.danger:focus,.notification_widget.danger.disabled.focus,.notification_widget.danger[disabled].focus,fieldset[disabled] .notification_widget.danger.focus,.notification_widget.danger.disabled:active,.notification_widget.danger[disabled]:active,fieldset[disabled] .notification_widget.danger:active,.notification_widget.danger.disabled.active,.notification_widget.danger[disabled].active,fieldset[disabled] .notification_widget.danger.active{background-color:#d9534f;border-color:#d43f3a}.notification_widget.danger .badge{color:#d9534f;background-color:#fff}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,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2);z-index:100;top:auto !important}div#pager pre{line-height:1.21429em;color:#000;background-color:#f7f7f7;padding:.4em}div#pager #pager-button-area{position:absolute;top:8px;right:20px}div#pager #pager-contents{position:relative;overflow:auto;width:100%;height:100%}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}div#pager .ui-resizable-handle{top:0;height:8px;background:#f7f7f7;border-top:1px solid #cfcfcf;border-bottom:1px solid #cfcfcf}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}.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}.shortcut_key{display:inline-block;width:20ex;text-align:right;font-family:monospace}.shortcut_descr{display:inline-block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}span.save_widget{margin-top:6px}span.save_widget span.filename{height:1em;line-height:1em;padding:3px;margin-left:16px;border:none;font-size:146.5%;border-radius:2px}span.save_widget span.filename:hover{background-color:#e6e6e6}span.checkpoint_status,span.autosave_status{font-size:small}@media (max-width:767px){span.save_widget{font-size:small}span.checkpoint_status,span.autosave_status{display:none}}@media (min-width:768px) and (max-width:991px){span.checkpoint_status{display:none}span.autosave_status{font-size:x-small}}.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}.toolbar select,.toolbar label{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}.toolbar .btn{padding:2px 8px}.toolbar .btn-group{margin-top:0;margin-left:5px}#maintoolbar{margin-bottom:-3px;margin-top:-8px;border:0;min-height:27px;margin-left:0;padding-top:11px;padding-bottom:3px}#maintoolbar .navbar-text{float:none;vertical-align:middle;text-align:right;margin-left:5px;margin-right:0;margin-top:0}.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}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms}.smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px}.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0}.tooltiptext{padding-right:30px}.ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;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}.ipython_tooltip a{float:right}.ipython_tooltip .tooltiptext pre{border:0;border-radius:0;font-size:100%;background-color:#f7f7f7}.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute}.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)}.terminal-app{background:#eee}.terminal-app #header{background:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.2);box-shadow:0 0 12px 1px rgba(87,87,87,0.2)}.terminal-app .terminal{float:left;font-family:monospace;color:white;background:black;padding:.4em;border-radius:2px;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,0.4);box-shadow:0 0 12px 1px rgba(87,87,87,0.4)}.terminal-app .terminal,.terminal-app .terminal dummy-screen{line-height:1em;font-size:14px}.terminal-app .terminal-cursor{color:black;background:white}.terminal-app #terminado-container{margin-top:20px}/*# sourceMappingURL=style.min.css.map */ + </style> +<style type="text/css"> + .highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #408080; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ +.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #7D9029 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #A0A000 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ + </style> + + +<style type="text/css"> +/* Overrides of notebook CSS for static HTML export */ +body { + overflow: visible; + padding: 8px; +} + +div#notebook { + overflow: visible; + border-top: none; +} + +@media print { + div.cell { + display: block; + page-break-inside: avoid; + } + div.output_wrapper { + display: block; + page-break-inside: avoid; + } + div.output { + display: block; + page-break-inside: avoid; + } +} +</style> + +<!-- Custom stylesheet, it must be in the same directory as the html file --> +<link rel="stylesheet" href="custom.css"> + +<!-- Loading mathjax macro --> +<!-- Load mathjax --> + <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script> + <!-- MathJax configuration --> + <script type="text/x-mathjax-config"> + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ["\\(","\\)"] ], + displayMath: [ ['$$','$$'], ["\\[","\\]"] ], + processEscapes: true, + processEnvironments: true + }, + // Center justify equations in code and markdown cells. Elsewhere + // we use CSS to left justify single line equations in code cells. + displayAlign: 'center', + "HTML-CSS": { + styles: {'.MathJax_Display': {"margin": 0}}, + linebreaks: { automatic: true } + } + }); + </script> + <!-- End of mathjax configuration --> + +</head> +<body> + <div tabindex="-1" id="notebook" class="border-box-sizing"> + <div class="container" id="notebook-container"> + +<div class="cell border-box-sizing text_cell rendered"> +<div class="prompt input_prompt"> +</div> +<div class="inner_cell"> +<div class="text_cell_render border-box-sizing rendered_html"> +<h3 id="This-example-illustrates-loading,-running-and-plotting-a-kinetic-model-defined-in-kkit-format">This example illustrates loading, running and plotting a kinetic model defined in kkit format<a class="anchor-link" href="#This-example-illustrates-loading,-running-and-plotting-a-kinetic-model-defined-in-kkit-format">¶</a></h3> +</div> +</div> +</div> +<div class="cell border-box-sizing code_cell rendered"> +<div class="input"> +<div class="prompt input_prompt">In [1]:</div> +<div class="inner_cell"> + <div class="input_area"> +<div class=" highlight hl-ipython2"><pre><span class="kn">import</span> <span class="nn">moose</span> +<span class="kn">import</span> <span class="nn">pylab</span> +<span class="kn">import</span> <span class="nn">numpy</span> +<span class="kn">import</span> <span class="nn">sys</span> +<span class="o">%</span><span class="k">matplotlib</span> inline + +<span class="k">def</span> <span class="nf">main</span><span class="p">():</span> + <span class="sd">""" This example illustrates loading, running, and saving a kinetic model </span> +<span class="sd"> defined in kkit format. It uses a default kkit model but you can specify another using the command line ``python filename runtime solver``. We use the gsl solver here. The model already defines a couple of plots and sets the runtime to 20 seconds.</span> +<span class="sd"> """</span> + <span class="n">solver</span> <span class="o">=</span> <span class="s">"gsl"</span> <span class="c"># Pick any of gsl, gssa, ee..</span> + <span class="n">mfile</span> <span class="o">=</span> <span class="s">'../genesis/kkit_objects_example.g'</span> + <span class="n">runtime</span> <span class="o">=</span> <span class="mf">20.0</span> + <span class="n">modelId</span> <span class="o">=</span> <span class="n">moose</span><span class="o">.</span><span class="n">loadModel</span><span class="p">(</span> <span class="n">mfile</span><span class="p">,</span> <span class="s">'model'</span><span class="p">,</span> <span class="n">solver</span> <span class="p">)</span> + <span class="c"># Increase volume so that the stochastic solver gssa </span> + <span class="c"># gives an interesting output</span> + <span class="c">#compt = moose.element( '/model/kinetics' )</span> + <span class="c">#compt.volume = 1e-19 </span> + + <span class="n">moose</span><span class="o">.</span><span class="n">reinit</span><span class="p">()</span> + <span class="n">moose</span><span class="o">.</span><span class="n">start</span><span class="p">(</span> <span class="n">runtime</span> <span class="p">)</span> + + <span class="c"># Display all plots.</span> + <span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">moose</span><span class="o">.</span><span class="n">wildcardFind</span><span class="p">(</span> <span class="s">'/model/#graphs/conc#/#'</span> <span class="p">):</span> + <span class="n">t</span> <span class="o">=</span> <span class="n">numpy</span><span class="o">.</span><span class="n">arange</span><span class="p">(</span> <span class="mi">0</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="o">.</span><span class="n">size</span><span class="p">,</span> <span class="mi">1</span> <span class="p">)</span> <span class="o">*</span> <span class="n">x</span><span class="o">.</span><span class="n">dt</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span> <span class="n">t</span><span class="p">,</span> <span class="n">x</span><span class="o">.</span><span class="n">vector</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="n">x</span><span class="o">.</span><span class="n">name</span> <span class="p">)</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span> + <span class="n">pylab</span><span class="o">.</span><span class="n">show</span><span class="p">()</span> + + <span class="n">quit</span><span class="p">()</span> + +<span class="c"># Run the 'main' if this script is executed standalone.</span> +<span class="k">if</span> <span class="n">__name__</span> <span class="o">==</span> <span class="s">'__main__'</span><span class="p">:</span> + <span class="n">main</span><span class="p">()</span> +</pre></div> + +</div> +</div> +</div> + +<div class="output_wrapper"> +<div class="output"> + + +<div class="output_area"><div class="prompt"></div> + + +<div class="output_png output_subarea "> +<img src="data:image/png;base64,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 +6CAAAAA49A+0Dit63CACagAAAABJRU5ErkJggg== +" +> +</div> + +</div> + +</div> +</div> + +</div> + </div> + </div> +</body> +</html> diff --git a/docs/user/tutorials/_static/rdes5_reacdiff.png b/docs/user/tutorials/_static/rdes5_reacdiff.png new file mode 100644 index 0000000000000000000000000000000000000000..28727e5e385d87d980ad899405db172e57a05389 Binary files /dev/null and b/docs/user/tutorials/_static/rdes5_reacdiff.png differ diff --git a/docs/user/tutorials/_templates/layout.html b/docs/user/tutorials/_templates/layout.html new file mode 100644 index 0000000000000000000000000000000000000000..75df84926246f910c90895c58dcb9a5bce462bb4 --- /dev/null +++ b/docs/user/tutorials/_templates/layout.html @@ -0,0 +1,33 @@ +{% extends "!layout.html" %} +{% block rootrellink %} + <li><a href="http://moose.ncbs.res.in/">MOOSE Homepage</a> »</li> + {{ super() }} +{% endblock %} +{% block sidebartitle %} + + {% if logo and theme_logo_only %} + <a href="http://moose.ncbs.res.in"> + + {% else %} + <a href="http://moose.ncbs.res.in/" class="icon icon-home"> {{ project }} + {% endif %} + + {% if logo %} + {# Not strictly valid HTML, but it's the only way to display/scale it properly, without weird scripting or heaps of work #} + <img src="{{ pathto('_static/' + logo, 1) }}" class="logo" /> + {% endif %} + </a> + {% if theme_display_version %} + {%- set nav_version = version %} + {% if READTHEDOCS and current_version %} + {%- set nav_version = current_version %} + {% endif %} + {% if nav_version %} + <div class="version"> + {{ nav_version }} + </div> + {% endif %} + {% endif %} + + {% include "searchbox.html" %} +{% endblock %} diff --git a/docs/user/tutorials/conf.py b/docs/user/tutorials/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..b2b36b187bef3aa98b9dd0a21e98f19ce5d15ad2 --- /dev/null +++ b/docs/user/tutorials/conf.py @@ -0,0 +1,250 @@ +# -*- coding: utf-8 -*- +# +# MOOSE documentation build configuration file, created by +# sphinx-quickstart on Tue Jul 1 19:05:47 2014. +# +# This file is execfile()d with the current directory set to its containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. +import sys, os + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +#sys.path.insert(0, os.path.abspath('../../moose/moose-core/python')) +sys.path.append(os.path.abspath('../../../../moose-examples/snippets')) +# -- General configuration ----------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +#needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be extensions +# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +extensions = ['sphinx.ext.autodoc', + 'sphinx.ext.mathjax', + 'sphinx.ext.autosummary', + 'sphinx.ext.viewcode', + 'numpydoc'] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix of source filenames. +source_suffix = '.rst' + +# The encoding of source files. +#source_encoding = 'utf-8-sig' + +# The master toctree document. +master_doc = 'index' + +# General information about the project. +project = u'MOOSE' +copyright = u'2016' + +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# +# The short X.Y version. +version = '3.2' +# The full version, including alpha/beta/rc tags. +release = '3.2' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +#language = None + +# There are two options for replacing |today|: either, you set today to some +# non-false value, then it is used: +#today = '' +# Else, today_fmt is used as the format for a strftime call. +#today_fmt = '%B %d, %Y' + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +exclude_patterns = ['_build'] + +# The reST default role (used for this markup: `text`) to use for all documents. +#default_role = None + +# If true, '()' will be appended to :func: etc. cross-reference text. +add_function_parentheses = True + +# If true, the current module name will be prepended to all description +# unit titles (such as .. function::). +#add_module_names = True + +# If true, sectionauthor and moduleauthor directives will be shown in the +# output. They are ignored by default. +#show_authors = True + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + +# A list of ignored prefixes for module index sorting. +#modindex_common_prefix = [] + + +# -- Options for HTML output --------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +html_theme = 'sphinx_rtd_theme' +#html_theme = 'better' + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# html_theme_options = {'stickysidebar': 'true', +# 'sidebarwidth': '300'} + +# Add any paths that contain custom themes here, relative to this directory. +#html_theme_path = [better_theme_path] + +# The name for this set of Sphinx documents. If None, it defaults to +# "<project> v<release> documentation". +#html_title = None + +# A shorter title for the navigation bar. Default is the same as html_title. +#html_short_title = None + +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +html_logo = '../../images/moose_logo.png' + +# The name of an image file (within the static path) to use as favicon of the +# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 +# pixels large. +#html_favicon = None + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, +# using the given strftime format. +#html_last_updated_fmt = '%b %d, %Y' + +# If true, SmartyPants will be used to convert quotes and dashes to +# typographically correct entities. +#html_use_smartypants = True + +# Custom sidebar templates, maps document names to template names. +#html_sidebars = {} + +# Additional templates that should be rendered to pages, maps page names to +# template names. +#html_additional_pages = {} + +# If false, no module index is generated. +#html_domain_indices = True + +# If false, no index is generated. +#html_use_index = True + +# If true, the index is split into individual pages for each letter. +#html_split_index = False + +# If true, links to the reST sources are added to the pages. +#html_show_sourcelink = True + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +#html_show_sphinx = True + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +#html_show_copyright = True + +# If true, an OpenSearch description file will be output, and all pages will +# contain a <link> tag referring to it. The value of this option must be the +# base URL from which the finished HTML is served. +#html_use_opensearch = '' + +# This is the file name suffix for HTML files (e.g. ".xhtml"). +#html_file_suffix = None + +# Output file base name for HTML help builder. +htmlhelp_basename = 'MOOSEdoc' + + +# -- Options for LaTeX output -------------------------------------------------- + +latex_elements = { +# The paper size ('letterpaper' or 'a4paper'). +#'papersize': 'letterpaper', + +# The font size ('10pt', '11pt' or '12pt'). +#'pointsize': '10pt', + +# Additional stuff for the LaTeX preamble. +#'preamble': '', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, author, documentclass [howto/manual]). +latex_documents = [ + ('index', 'MOOSE.tex', u'MOOSE Documentation', + u'Upinder Bhalla, Aviral Goel and Harsha Rani', 'manual'), +] + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +latex_logo = '../images/moose_logo.png' + +# For "manual" documents, if this is true, then toplevel headings are parts, +# not chapters. +#latex_use_parts = False + +# If true, show page references after internal links. +latex_show_pagerefs = True + +# If true, show URL addresses after external links. +#latex_show_urls = False + +# Documents to append as an appendix to all manuals. +#latex_appendices = [] + +# If false, no module index is generated. +latex_domain_indices = True + + +# -- Options for manual page output -------------------------------------------- + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + ('index', 'moose', u'MOOSE Documentation', + [u'Upinder Bhalla, Aviral Goel and Harsha Rani'], 1) +] + +# If true, show URL addresses after external links. +#man_show_urls = False + + +# -- Options for Texinfo output ------------------------------------------------ + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + ('index', 'MOOSE', u'MOOSE Documentation', + u'Upinder Bhalla, Aviral Goel and Harsha Rani', 'MOOSE', 'MOOSE is the Multiscale Object-Oriented Simulation Environment.', + 'Science'), +] + +# Documents to append as an appendix to all manuals. +#texinfo_appendices = [] + +# If false, no module index is generated. +texinfo_domain_indices = True + +# How to display URL addresses: 'footnote', 'no', or 'inline'. +#texinfo_show_urls = 'footnote' + +#numpydoc option +numpydoc_show_class_members = True diff --git a/docs/user/tutorials/index.rst b/docs/user/tutorials/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..1474657e23e8957342f1a3b768d139f361c5f21d --- /dev/null +++ b/docs/user/tutorials/index.rst @@ -0,0 +1,15 @@ +.. MOOSE documentation master file, created by + sphinx-quickstart on Tue Feb 2 14:05:47 2016. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Tutorials for MOOSE +================================== +A set of tutorials for teaching a range of topics, including integrate-and-fire networks, chemical bistables, and oscillators. Has stand-alone graphics and the Python scripts are meant to tinker with. + +.. toctree:: + :maxdepth: 2 + :numbered: + + + tutorial diff --git a/docs/user/tutorials/tutorial.rst b/docs/user/tutorials/tutorial.rst new file mode 100644 index 0000000000000000000000000000000000000000..f3f3ee4ec256400107266d9ddd3418fc188e8c3d --- /dev/null +++ b/docs/user/tutorials/tutorial.rst @@ -0,0 +1,37 @@ +.. A tutorials for MOOSE +.. This tutorials walks through some of the simple and practical approch related to MOOSE + +Audience +This reference has been prepared for the beginners to help them understand the basic to advanced concepts related to MOOSE. +This tutorial walks through a range of topics, including integrate-and-fire networks, chemical bistables, and oscillators. +Has stand-alone graphics and the Python scripts are meant to tinker with. + +MOOSE Tutorial +============== + +This reference has prepared for the users to help them understand from the basic to complex modeling building in MOOSE + +Chemical Signalling Models +^^^^^^^^^^^^^^^^^^^^^^^^^^ +`Load Kinetic Model <_static/loadKineticModel.html>`_ +------------------------------------------------------ + +`Deterministic Simulation <_static/DeterministicSolver.html>`_ +---------------------------------------------------------------- + +`Stochastic Simulation <_static/StochasticSolver.html>`_ +----------------------------------------------------------- + +`Finding Steady State <_static/SteadyState.html>`_ +---------------------------------------------------- + +`Building Simple Reaction Model <_static/Building_Simple_Reaction_Model.html>`_ +-------------------------------------------------------------------------------- + + + +Building of Electical Signalling Models +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Building Chemical-Electrical Signalling Models using Rdesigneur +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ \ No newline at end of file diff --git a/moose-examples/snippets/loadSbmlmodel.py b/moose-examples/snippets/loadSbmlmodel.py index 2781d9fcfaecd7fb864e1119326dd316a8394e1c..9323a467ff664bc068fa695dc75fe57aebd4023f 100644 --- a/moose-examples/snippets/loadSbmlmodel.py +++ b/moose-examples/snippets/loadSbmlmodel.py @@ -70,8 +70,10 @@ def main(): # Loading the sbml file into MOOSE, models are loaded in path/model sbmlId = mooseReadSBML(mfile,'/sbml') - - if sbmlId.path != '/': + if isinstance(sbmlId, (list, tuple)): + print sbmlId + elif sbmlId.path != '/': + s1 = moose.element('/sbml/model/compartment/S1') s2= moose.element('/sbml/model/compartment/S2')