├── README.md ├── index.html ├── LICENSE └── bootstrap.css /README.md: -------------------------------------------------------------------------------- 1 | btc-sweep 2 | ========= 3 | This tool allows you to send all the BTC on a private key to a different address without having to import the key into your own wallet. It relies on [blockchain.info](http://blockchain.info)'s API and [bitcoinjs.org](bitcoinJS)'s javascript bitcoin library. It was originally created for [inputs.io](http://www.inputs.io). 4 | 5 | Installation 6 | ========= 7 | 1. Download the files 8 | 2. Open up index.html in a text editor 9 | 3. Change toAddress to your own address 10 | 4. Open index.html in your browser 11 | 12 | Usage 13 | ========= 14 | 1. Put your private key in the textbox and press Send 15 | 2. Reallocate your BTC 16 | 17 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Private Key Sweeper Example 10 | 11 | 12 | 13 | 26 | 27 | 28 | 29 | 79 | 80 | 81 | 95 | 96 |
97 |
98 |

Private Key Sweeper

99 |

Enter your private key to start sweeping!

100 | 101 |
102 | 103 | 104 | 105 | 106 |
107 |
108 |
109 |
110 |
111 | 112 | 113 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 2013 grayleonard 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /bootstrap.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.0.0 3 | * 4 | * Copyright 2013 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world by @mdo and @fat. 9 | */ 10 | 11 | /*! normalize.css v2.1.0 | MIT License | git.io/normalize */ 12 | 13 | article, 14 | aside, 15 | details, 16 | figcaption, 17 | figure, 18 | footer, 19 | header, 20 | hgroup, 21 | main, 22 | nav, 23 | section, 24 | summary { 25 | display: block; 26 | } 27 | 28 | audio, 29 | canvas, 30 | video { 31 | display: inline-block; 32 | } 33 | 34 | audio:not([controls]) { 35 | display: none; 36 | height: 0; 37 | } 38 | 39 | [hidden] { 40 | display: none; 41 | } 42 | 43 | html { 44 | font-family: sans-serif; 45 | -webkit-text-size-adjust: 100%; 46 | -ms-text-size-adjust: 100%; 47 | } 48 | 49 | body { 50 | margin: 0; 51 | } 52 | 53 | a:focus { 54 | outline: thin dotted; 55 | } 56 | 57 | a:active, 58 | a:hover { 59 | outline: 0; 60 | } 61 | 62 | h1 { 63 | margin: 0.67em 0; 64 | font-size: 2em; 65 | } 66 | 67 | abbr[title] { 68 | border-bottom: 1px dotted; 69 | } 70 | 71 | b, 72 | strong { 73 | font-weight: bold; 74 | } 75 | 76 | dfn { 77 | font-style: italic; 78 | } 79 | 80 | hr { 81 | height: 0; 82 | -moz-box-sizing: content-box; 83 | box-sizing: content-box; 84 | } 85 | 86 | mark { 87 | color: #000; 88 | background: #ff0; 89 | } 90 | 91 | code, 92 | kbd, 93 | pre, 94 | samp { 95 | font-family: monospace, serif; 96 | font-size: 1em; 97 | } 98 | 99 | pre { 100 | white-space: pre-wrap; 101 | } 102 | 103 | q { 104 | quotes: "\201C" "\201D" "\2018" "\2019"; 105 | } 106 | 107 | small { 108 | font-size: 80%; 109 | } 110 | 111 | sub, 112 | sup { 113 | position: relative; 114 | font-size: 75%; 115 | line-height: 0; 116 | vertical-align: baseline; 117 | } 118 | 119 | sup { 120 | top: -0.5em; 121 | } 122 | 123 | sub { 124 | bottom: -0.25em; 125 | } 126 | 127 | img { 128 | border: 0; 129 | } 130 | 131 | svg:not(:root) { 132 | overflow: hidden; 133 | } 134 | 135 | figure { 136 | margin: 0; 137 | } 138 | 139 | fieldset { 140 | padding: 0.35em 0.625em 0.75em; 141 | margin: 0 2px; 142 | border: 1px solid #c0c0c0; 143 | } 144 | 145 | legend { 146 | padding: 0; 147 | border: 0; 148 | } 149 | 150 | button, 151 | input, 152 | select, 153 | textarea { 154 | margin: 0; 155 | font-family: inherit; 156 | font-size: 100%; 157 | } 158 | 159 | button, 160 | input { 161 | line-height: normal; 162 | } 163 | 164 | button, 165 | select { 166 | text-transform: none; 167 | } 168 | 169 | button, 170 | html input[type="button"], 171 | input[type="reset"], 172 | input[type="submit"] { 173 | cursor: pointer; 174 | -webkit-appearance: button; 175 | } 176 | 177 | button[disabled], 178 | html input[disabled] { 179 | cursor: default; 180 | } 181 | 182 | input[type="checkbox"], 183 | input[type="radio"] { 184 | padding: 0; 185 | box-sizing: border-box; 186 | } 187 | 188 | input[type="search"] { 189 | -webkit-box-sizing: content-box; 190 | -moz-box-sizing: content-box; 191 | box-sizing: content-box; 192 | -webkit-appearance: textfield; 193 | } 194 | 195 | input[type="search"]::-webkit-search-cancel-button, 196 | input[type="search"]::-webkit-search-decoration { 197 | -webkit-appearance: none; 198 | } 199 | 200 | button::-moz-focus-inner, 201 | input::-moz-focus-inner { 202 | padding: 0; 203 | border: 0; 204 | } 205 | 206 | textarea { 207 | overflow: auto; 208 | vertical-align: top; 209 | } 210 | 211 | table { 212 | border-collapse: collapse; 213 | border-spacing: 0; 214 | } 215 | 216 | @media print { 217 | * { 218 | color: #000 !important; 219 | text-shadow: none !important; 220 | background: transparent !important; 221 | box-shadow: none !important; 222 | } 223 | a, 224 | a:visited { 225 | text-decoration: underline; 226 | } 227 | a[href]:after { 228 | content: " (" attr(href) ")"; 229 | } 230 | abbr[title]:after { 231 | content: " (" attr(title) ")"; 232 | } 233 | .ir a:after, 234 | a[href^="javascript:"]:after, 235 | a[href^="#"]:after { 236 | content: ""; 237 | } 238 | pre, 239 | blockquote { 240 | border: 1px solid #999; 241 | page-break-inside: avoid; 242 | } 243 | thead { 244 | display: table-header-group; 245 | } 246 | tr, 247 | img { 248 | page-break-inside: avoid; 249 | } 250 | img { 251 | max-width: 100% !important; 252 | } 253 | @page { 254 | margin: 2cm .5cm; 255 | } 256 | p, 257 | h2, 258 | h3 { 259 | orphans: 3; 260 | widows: 3; 261 | } 262 | h2, 263 | h3 { 264 | page-break-after: avoid; 265 | } 266 | .navbar { 267 | display: none; 268 | } 269 | .table td, 270 | .table th { 271 | background-color: #fff !important; 272 | } 273 | .btn > .caret, 274 | .dropup > .btn > .caret { 275 | border-top-color: #000 !important; 276 | } 277 | .label { 278 | border: 1px solid #000; 279 | } 280 | .table { 281 | border-collapse: collapse !important; 282 | } 283 | .table-bordered th, 284 | .table-bordered td { 285 | border: 1px solid #ddd !important; 286 | } 287 | } 288 | 289 | * { 290 | -webkit-box-sizing: border-box; 291 | -moz-box-sizing: border-box; 292 | box-sizing: border-box; 293 | } 294 | 295 | html { 296 | font-size: 62.5%; 297 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 298 | } 299 | 300 | body { 301 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 302 | font-size: 14px; 303 | line-height: 1.428571429; 304 | color: #333333; 305 | background-color: #ffffff; 306 | } 307 | 308 | input, 309 | button, 310 | select, 311 | textarea { 312 | font-family: inherit; 313 | font-size: inherit; 314 | line-height: inherit; 315 | } 316 | 317 | a { 318 | color: #428bca; 319 | text-decoration: none; 320 | } 321 | 322 | a:hover, 323 | a:focus { 324 | color: #2a6496; 325 | text-decoration: underline; 326 | } 327 | 328 | a:focus { 329 | outline: thin dotted #333; 330 | outline: 5px auto -webkit-focus-ring-color; 331 | outline-offset: -2px; 332 | } 333 | 334 | img { 335 | vertical-align: middle; 336 | } 337 | 338 | .img-responsive { 339 | display: inline-block; 340 | height: auto; 341 | max-width: 100%; 342 | } 343 | 344 | .img-rounded { 345 | border-radius: 6px; 346 | } 347 | 348 | .img-circle { 349 | border-radius: 500px; 350 | } 351 | 352 | hr { 353 | margin-top: 20px; 354 | margin-bottom: 20px; 355 | border: 0; 356 | border-top: 1px solid #eeeeee; 357 | } 358 | 359 | p { 360 | margin: 0 0 10px; 361 | } 362 | 363 | .lead { 364 | margin-bottom: 20px; 365 | font-size: 21px; 366 | font-weight: 200; 367 | line-height: 1.4; 368 | } 369 | 370 | small { 371 | font-size: 85%; 372 | } 373 | 374 | cite { 375 | font-style: normal; 376 | } 377 | 378 | .text-muted { 379 | color: #999999; 380 | } 381 | 382 | .text-primary { 383 | color: #428bca; 384 | } 385 | 386 | .text-warning { 387 | color: #c09853; 388 | } 389 | 390 | .text-danger { 391 | color: #b94a48; 392 | } 393 | 394 | .text-success { 395 | color: #468847; 396 | } 397 | 398 | .text-info { 399 | color: #3a87ad; 400 | } 401 | 402 | .text-left { 403 | text-align: left; 404 | } 405 | 406 | .text-right { 407 | text-align: right; 408 | } 409 | 410 | .text-center { 411 | text-align: center; 412 | } 413 | 414 | h1, 415 | h2, 416 | h3, 417 | h4, 418 | h5, 419 | h6, 420 | .h1, 421 | .h2, 422 | .h3, 423 | .h4, 424 | .h5, 425 | .h6 { 426 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 427 | font-weight: 500; 428 | line-height: 1.1; 429 | } 430 | 431 | h1 small, 432 | h2 small, 433 | h3 small, 434 | h4 small, 435 | h5 small, 436 | h6 small, 437 | .h1 small, 438 | .h2 small, 439 | .h3 small, 440 | .h4 small, 441 | .h5 small, 442 | .h6 small { 443 | font-weight: normal; 444 | line-height: 1; 445 | color: #999999; 446 | } 447 | 448 | h1, 449 | h2, 450 | h3 { 451 | margin-top: 20px; 452 | margin-bottom: 10px; 453 | } 454 | 455 | h4, 456 | h5, 457 | h6 { 458 | margin-top: 10px; 459 | margin-bottom: 10px; 460 | } 461 | 462 | h1, 463 | .h1 { 464 | font-size: 38px; 465 | } 466 | 467 | h2, 468 | .h2 { 469 | font-size: 32px; 470 | } 471 | 472 | h3, 473 | .h3 { 474 | font-size: 24px; 475 | } 476 | 477 | h4, 478 | .h4 { 479 | font-size: 18px; 480 | } 481 | 482 | h5, 483 | .h5 { 484 | font-size: 14px; 485 | } 486 | 487 | h6, 488 | .h6 { 489 | font-size: 12px; 490 | } 491 | 492 | h1 small, 493 | .h1 small { 494 | font-size: 24px; 495 | } 496 | 497 | h2 small, 498 | .h2 small { 499 | font-size: 18px; 500 | } 501 | 502 | h3 small, 503 | .h3 small, 504 | h4 small, 505 | .h4 small { 506 | font-size: 14px; 507 | } 508 | 509 | .page-header { 510 | padding-bottom: 9px; 511 | margin: 40px 0 20px; 512 | border-bottom: 1px solid #eeeeee; 513 | } 514 | 515 | ul, 516 | ol { 517 | margin-top: 0; 518 | margin-bottom: 10px; 519 | } 520 | 521 | ul ul, 522 | ol ul, 523 | ul ol, 524 | ol ol { 525 | margin-bottom: 0; 526 | } 527 | 528 | .list-unstyled { 529 | padding-left: 0; 530 | list-style: none; 531 | } 532 | 533 | .list-inline { 534 | padding-left: 0; 535 | list-style: none; 536 | } 537 | 538 | .list-inline > li { 539 | display: inline-block; 540 | padding-right: 5px; 541 | padding-left: 5px; 542 | } 543 | 544 | dl { 545 | margin-bottom: 20px; 546 | } 547 | 548 | dt, 549 | dd { 550 | line-height: 1.428571429; 551 | } 552 | 553 | dt { 554 | font-weight: bold; 555 | } 556 | 557 | dd { 558 | margin-left: 0; 559 | } 560 | 561 | .dl-horizontal dt { 562 | float: left; 563 | width: 160px; 564 | overflow: hidden; 565 | clear: left; 566 | text-align: right; 567 | text-overflow: ellipsis; 568 | white-space: nowrap; 569 | } 570 | 571 | .dl-horizontal dd { 572 | margin-left: 180px; 573 | } 574 | 575 | .dl-horizontal dd:before, 576 | .dl-horizontal dd:after { 577 | display: table; 578 | content: " "; 579 | } 580 | 581 | .dl-horizontal dd:after { 582 | clear: both; 583 | } 584 | 585 | .dl-horizontal dd:before, 586 | .dl-horizontal dd:after { 587 | display: table; 588 | content: " "; 589 | } 590 | 591 | .dl-horizontal dd:after { 592 | clear: both; 593 | } 594 | 595 | abbr[title], 596 | abbr[data-original-title] { 597 | cursor: help; 598 | border-bottom: 1px dotted #999999; 599 | } 600 | 601 | abbr.initialism { 602 | font-size: 90%; 603 | text-transform: uppercase; 604 | } 605 | 606 | blockquote { 607 | padding: 10px 20px; 608 | margin: 0 0 20px; 609 | border-left: 5px solid #eeeeee; 610 | } 611 | 612 | blockquote p { 613 | font-size: 17.5px; 614 | font-weight: 300; 615 | line-height: 1.25; 616 | } 617 | 618 | blockquote p:last-child { 619 | margin-bottom: 0; 620 | } 621 | 622 | blockquote small { 623 | display: block; 624 | line-height: 1.428571429; 625 | color: #999999; 626 | } 627 | 628 | blockquote small:before { 629 | content: '\2014 \00A0'; 630 | } 631 | 632 | blockquote.pull-right { 633 | float: right; 634 | padding-right: 15px; 635 | padding-left: 0; 636 | border-right: 5px solid #eeeeee; 637 | border-left: 0; 638 | } 639 | 640 | blockquote.pull-right p, 641 | blockquote.pull-right small { 642 | text-align: right; 643 | } 644 | 645 | blockquote.pull-right small:before { 646 | content: ''; 647 | } 648 | 649 | blockquote.pull-right small:after { 650 | content: '\00A0 \2014'; 651 | } 652 | 653 | q:before, 654 | q:after, 655 | blockquote:before, 656 | blockquote:after { 657 | content: ""; 658 | } 659 | 660 | address { 661 | display: block; 662 | margin-bottom: 20px; 663 | font-style: normal; 664 | line-height: 1.428571429; 665 | } 666 | 667 | code, 668 | pre { 669 | font-family: Monaco, Menlo, Consolas, "Courier New", monospace; 670 | } 671 | 672 | code { 673 | padding: 2px 4px; 674 | font-size: 90%; 675 | color: #c7254e; 676 | white-space: nowrap; 677 | background-color: #f9f2f4; 678 | border-radius: 4px; 679 | } 680 | 681 | pre { 682 | display: block; 683 | padding: 9.5px; 684 | margin: 0 0 10px; 685 | font-size: 13px; 686 | line-height: 1.428571429; 687 | color: #333333; 688 | word-break: break-all; 689 | word-wrap: break-word; 690 | background-color: #f5f5f5; 691 | border: 1px solid #cccccc; 692 | border-radius: 4px; 693 | } 694 | 695 | pre.prettyprint { 696 | margin-bottom: 20px; 697 | } 698 | 699 | pre code { 700 | padding: 0; 701 | color: inherit; 702 | white-space: pre-wrap; 703 | background-color: transparent; 704 | border: 0; 705 | } 706 | 707 | .pre-scrollable { 708 | max-height: 340px; 709 | overflow-y: scroll; 710 | } 711 | 712 | .container { 713 | margin-right: auto; 714 | margin-left: auto; 715 | } 716 | 717 | .container:before, 718 | .container:after { 719 | display: table; 720 | content: " "; 721 | } 722 | 723 | .container:after { 724 | clear: both; 725 | } 726 | 727 | .container:before, 728 | .container:after { 729 | display: table; 730 | content: " "; 731 | } 732 | 733 | .container:after { 734 | clear: both; 735 | } 736 | 737 | .row:before, 738 | .row:after { 739 | display: table; 740 | content: " "; 741 | } 742 | 743 | .row:after { 744 | clear: both; 745 | } 746 | 747 | .row:before, 748 | .row:after { 749 | display: table; 750 | content: " "; 751 | } 752 | 753 | .row:after { 754 | clear: both; 755 | } 756 | 757 | @media (min-width: 768px) { 758 | .row { 759 | margin-right: -15px; 760 | margin-left: -15px; 761 | } 762 | } 763 | 764 | .row .row { 765 | margin-right: -15px; 766 | margin-left: -15px; 767 | } 768 | 769 | .col-1, 770 | .col-2, 771 | .col-3, 772 | .col-4, 773 | .col-5, 774 | .col-6, 775 | .col-7, 776 | .col-8, 777 | .col-9, 778 | .col-10, 779 | .col-11, 780 | .col-12, 781 | .col-sm-1, 782 | .col-sm-2, 783 | .col-sm-3, 784 | .col-sm-4, 785 | .col-sm-5, 786 | .col-sm-6, 787 | .col-sm-7, 788 | .col-sm-8, 789 | .col-sm-9, 790 | .col-sm-10, 791 | .col-sm-11, 792 | .col-sm-12, 793 | .col-lg-1, 794 | .col-lg-2, 795 | .col-lg-3, 796 | .col-lg-4, 797 | .col-lg-5, 798 | .col-lg-6, 799 | .col-lg-7, 800 | .col-lg-8, 801 | .col-lg-9, 802 | .col-lg-10, 803 | .col-lg-11, 804 | .col-lg-12 { 805 | position: relative; 806 | min-height: 1px; 807 | padding-right: 15px; 808 | padding-left: 15px; 809 | } 810 | 811 | .col-1, 812 | .col-2, 813 | .col-3, 814 | .col-4, 815 | .col-5, 816 | .col-6, 817 | .col-7, 818 | .col-8, 819 | .col-9, 820 | .col-10, 821 | .col-11, 822 | .col-12 { 823 | float: left; 824 | } 825 | 826 | .col-1 { 827 | width: 8.333333333333332%; 828 | } 829 | 830 | .col-2 { 831 | width: 16.666666666666664%; 832 | } 833 | 834 | .col-3 { 835 | width: 25%; 836 | } 837 | 838 | .col-4 { 839 | width: 33.33333333333333%; 840 | } 841 | 842 | .col-5 { 843 | width: 41.66666666666667%; 844 | } 845 | 846 | .col-6 { 847 | width: 50%; 848 | } 849 | 850 | .col-7 { 851 | width: 58.333333333333336%; 852 | } 853 | 854 | .col-8 { 855 | width: 66.66666666666666%; 856 | } 857 | 858 | .col-9 { 859 | width: 75%; 860 | } 861 | 862 | .col-10 { 863 | width: 83.33333333333334%; 864 | } 865 | 866 | .col-11 { 867 | width: 91.66666666666666%; 868 | } 869 | 870 | .col-12 { 871 | width: 100%; 872 | } 873 | 874 | @media (min-width: 768px) { 875 | .container { 876 | max-width: 728px; 877 | } 878 | .col-sm-1, 879 | .col-sm-2, 880 | .col-sm-3, 881 | .col-sm-4, 882 | .col-sm-5, 883 | .col-sm-6, 884 | .col-sm-7, 885 | .col-sm-8, 886 | .col-sm-9, 887 | .col-sm-10, 888 | .col-sm-11, 889 | .col-sm-12 { 890 | float: left; 891 | } 892 | .col-sm-1 { 893 | width: 8.333333333333332%; 894 | } 895 | .col-sm-2 { 896 | width: 16.666666666666664%; 897 | } 898 | .col-sm-3 { 899 | width: 25%; 900 | } 901 | .col-sm-4 { 902 | width: 33.33333333333333%; 903 | } 904 | .col-sm-5 { 905 | width: 41.66666666666667%; 906 | } 907 | .col-sm-6 { 908 | width: 50%; 909 | } 910 | .col-sm-7 { 911 | width: 58.333333333333336%; 912 | } 913 | .col-sm-8 { 914 | width: 66.66666666666666%; 915 | } 916 | .col-sm-9 { 917 | width: 75%; 918 | } 919 | .col-sm-10 { 920 | width: 83.33333333333334%; 921 | } 922 | .col-sm-11 { 923 | width: 91.66666666666666%; 924 | } 925 | .col-sm-12 { 926 | width: 100%; 927 | } 928 | .col-push-1 { 929 | left: 8.333333333333332%; 930 | } 931 | .col-push-2 { 932 | left: 16.666666666666664%; 933 | } 934 | .col-push-3 { 935 | left: 25%; 936 | } 937 | .col-push-4 { 938 | left: 33.33333333333333%; 939 | } 940 | .col-push-5 { 941 | left: 41.66666666666667%; 942 | } 943 | .col-push-6 { 944 | left: 50%; 945 | } 946 | .col-push-7 { 947 | left: 58.333333333333336%; 948 | } 949 | .col-push-8 { 950 | left: 66.66666666666666%; 951 | } 952 | .col-push-9 { 953 | left: 75%; 954 | } 955 | .col-push-10 { 956 | left: 83.33333333333334%; 957 | } 958 | .col-push-11 { 959 | left: 91.66666666666666%; 960 | } 961 | .col-pull-1 { 962 | right: 8.333333333333332%; 963 | } 964 | .col-pull-2 { 965 | right: 16.666666666666664%; 966 | } 967 | .col-pull-3 { 968 | right: 25%; 969 | } 970 | .col-pull-4 { 971 | right: 33.33333333333333%; 972 | } 973 | .col-pull-5 { 974 | right: 41.66666666666667%; 975 | } 976 | .col-pull-6 { 977 | right: 50%; 978 | } 979 | .col-pull-7 { 980 | right: 58.333333333333336%; 981 | } 982 | .col-pull-8 { 983 | right: 66.66666666666666%; 984 | } 985 | .col-pull-9 { 986 | right: 75%; 987 | } 988 | .col-pull-10 { 989 | right: 83.33333333333334%; 990 | } 991 | .col-pull-11 { 992 | right: 91.66666666666666%; 993 | } 994 | } 995 | 996 | @media (min-width: 992px) { 997 | .container { 998 | max-width: 940px; 999 | } 1000 | .col-lg-1, 1001 | .col-lg-2, 1002 | .col-lg-3, 1003 | .col-lg-4, 1004 | .col-lg-5, 1005 | .col-lg-6, 1006 | .col-lg-7, 1007 | .col-lg-8, 1008 | .col-lg-9, 1009 | .col-lg-10, 1010 | .col-lg-11, 1011 | .col-lg-12 { 1012 | float: left; 1013 | } 1014 | .col-lg-1 { 1015 | width: 8.333333333333332%; 1016 | } 1017 | .col-lg-2 { 1018 | width: 16.666666666666664%; 1019 | } 1020 | .col-lg-3 { 1021 | width: 25%; 1022 | } 1023 | .col-lg-4 { 1024 | width: 33.33333333333333%; 1025 | } 1026 | .col-lg-5 { 1027 | width: 41.66666666666667%; 1028 | } 1029 | .col-lg-6 { 1030 | width: 50%; 1031 | } 1032 | .col-lg-7 { 1033 | width: 58.333333333333336%; 1034 | } 1035 | .col-lg-8 { 1036 | width: 66.66666666666666%; 1037 | } 1038 | .col-lg-9 { 1039 | width: 75%; 1040 | } 1041 | .col-lg-10 { 1042 | width: 83.33333333333334%; 1043 | } 1044 | .col-lg-11 { 1045 | width: 91.66666666666666%; 1046 | } 1047 | .col-lg-12 { 1048 | width: 100%; 1049 | } 1050 | .col-offset-1 { 1051 | margin-left: 8.333333333333332%; 1052 | } 1053 | .col-offset-2 { 1054 | margin-left: 16.666666666666664%; 1055 | } 1056 | .col-offset-3 { 1057 | margin-left: 25%; 1058 | } 1059 | .col-offset-4 { 1060 | margin-left: 33.33333333333333%; 1061 | } 1062 | .col-offset-5 { 1063 | margin-left: 41.66666666666667%; 1064 | } 1065 | .col-offset-6 { 1066 | margin-left: 50%; 1067 | } 1068 | .col-offset-7 { 1069 | margin-left: 58.333333333333336%; 1070 | } 1071 | .col-offset-8 { 1072 | margin-left: 66.66666666666666%; 1073 | } 1074 | .col-offset-9 { 1075 | margin-left: 75%; 1076 | } 1077 | .col-offset-10 { 1078 | margin-left: 83.33333333333334%; 1079 | } 1080 | .col-offset-11 { 1081 | margin-left: 91.66666666666666%; 1082 | } 1083 | } 1084 | 1085 | @media (min-width: 1200px) { 1086 | .container { 1087 | max-width: 1170px; 1088 | } 1089 | } 1090 | 1091 | table { 1092 | max-width: 100%; 1093 | background-color: transparent; 1094 | } 1095 | 1096 | th { 1097 | text-align: left; 1098 | } 1099 | 1100 | .table { 1101 | width: 100%; 1102 | margin-bottom: 20px; 1103 | } 1104 | 1105 | .table thead > tr > th, 1106 | .table tbody > tr > th, 1107 | .table tfoot > tr > th, 1108 | .table thead > tr > td, 1109 | .table tbody > tr > td, 1110 | .table tfoot > tr > td { 1111 | padding: 8px; 1112 | line-height: 1.428571429; 1113 | vertical-align: top; 1114 | border-top: 1px solid #dddddd; 1115 | } 1116 | 1117 | .table thead > tr > th { 1118 | vertical-align: bottom; 1119 | } 1120 | 1121 | .table caption + thead tr:first-child th, 1122 | .table colgroup + thead tr:first-child th, 1123 | .table thead:first-child tr:first-child th, 1124 | .table caption + thead tr:first-child td, 1125 | .table colgroup + thead tr:first-child td, 1126 | .table thead:first-child tr:first-child td { 1127 | border-top: 0; 1128 | } 1129 | 1130 | .table tbody + tbody { 1131 | border-top: 2px solid #dddddd; 1132 | } 1133 | 1134 | .table .table { 1135 | background-color: #ffffff; 1136 | } 1137 | 1138 | .table-condensed thead > tr > th, 1139 | .table-condensed tbody > tr > th, 1140 | .table-condensed tfoot > tr > th, 1141 | .table-condensed thead > tr > td, 1142 | .table-condensed tbody > tr > td, 1143 | .table-condensed tfoot > tr > td { 1144 | padding: 5px; 1145 | } 1146 | 1147 | .table-bordered { 1148 | border: 1px solid #dddddd; 1149 | } 1150 | 1151 | .table-bordered > thead > tr > th, 1152 | .table-bordered > tbody > tr > th, 1153 | .table-bordered > tfoot > tr > th, 1154 | .table-bordered > thead > tr > td, 1155 | .table-bordered > tbody > tr > td, 1156 | .table-bordered > tfoot > tr > td { 1157 | border: 1px solid #dddddd; 1158 | } 1159 | 1160 | .table-striped > tbody > tr:nth-child(odd) > td, 1161 | .table-striped > tbody > tr:nth-child(odd) > th { 1162 | background-color: #f9f9f9; 1163 | } 1164 | 1165 | .table-hover > tbody > tr:hover > td, 1166 | .table-hover > tbody > tr:hover > th { 1167 | background-color: #f5f5f5; 1168 | } 1169 | 1170 | table col[class^="col-"] { 1171 | display: table-column; 1172 | float: none; 1173 | } 1174 | 1175 | table td[class^="col-"], 1176 | table th[class^="col-"] { 1177 | display: table-cell; 1178 | float: none; 1179 | } 1180 | 1181 | .table > thead > tr > td.active, 1182 | .table > tbody > tr > td.active, 1183 | .table > tfoot > tr > td.active, 1184 | .table > thead > tr > th.active, 1185 | .table > tbody > tr > th.active, 1186 | .table > tfoot > tr > th.active, 1187 | .table > thead > tr.active > td, 1188 | .table > tbody > tr.active > td, 1189 | .table > tfoot > tr.active > td, 1190 | .table > thead > tr.active > th, 1191 | .table > tbody > tr.active > th, 1192 | .table > tfoot > tr.active > th { 1193 | background-color: #f5f5f5; 1194 | } 1195 | 1196 | .table > thead > tr > td.success, 1197 | .table > tbody > tr > td.success, 1198 | .table > tfoot > tr > td.success, 1199 | .table > thead > tr > th.success, 1200 | .table > tbody > tr > th.success, 1201 | .table > tfoot > tr > th.success, 1202 | .table > thead > tr.success > td, 1203 | .table > tbody > tr.success > td, 1204 | .table > tfoot > tr.success > td, 1205 | .table > thead > tr.success > th, 1206 | .table > tbody > tr.success > th, 1207 | .table > tfoot > tr.success > th { 1208 | background-color: #dff0d8; 1209 | border-color: #d6e9c6; 1210 | } 1211 | 1212 | .table > thead > tr > td.danger, 1213 | .table > tbody > tr > td.danger, 1214 | .table > tfoot > tr > td.danger, 1215 | .table > thead > tr > th.danger, 1216 | .table > tbody > tr > th.danger, 1217 | .table > tfoot > tr > th.danger, 1218 | .table > thead > tr.danger > td, 1219 | .table > tbody > tr.danger > td, 1220 | .table > tfoot > tr.danger > td, 1221 | .table > thead > tr.danger > th, 1222 | .table > tbody > tr.danger > th, 1223 | .table > tfoot > tr.danger > th { 1224 | background-color: #f2dede; 1225 | border-color: #eed3d7; 1226 | } 1227 | 1228 | .table > thead > tr > td.warning, 1229 | .table > tbody > tr > td.warning, 1230 | .table > tfoot > tr > td.warning, 1231 | .table > thead > tr > th.warning, 1232 | .table > tbody > tr > th.warning, 1233 | .table > tfoot > tr > th.warning, 1234 | .table > thead > tr.warning > td, 1235 | .table > tbody > tr.warning > td, 1236 | .table > tfoot > tr.warning > td, 1237 | .table > thead > tr.warning > th, 1238 | .table > tbody > tr.warning > th, 1239 | .table > tfoot > tr.warning > th { 1240 | background-color: #fcf8e3; 1241 | border-color: #fbeed5; 1242 | } 1243 | 1244 | .table-hover > tbody > tr > td.success:hover, 1245 | .table-hover > tbody > tr > th.success:hover, 1246 | .table-hover > tbody > tr.success:hover > td { 1247 | background-color: #d0e9c6; 1248 | border-color: #c9e2b3; 1249 | } 1250 | 1251 | .table-hover > tbody > tr > td.danger:hover, 1252 | .table-hover > tbody > tr > th.danger:hover, 1253 | .table-hover > tbody > tr.danger:hover > td { 1254 | background-color: #ebcccc; 1255 | border-color: #e6c1c7; 1256 | } 1257 | 1258 | .table-hover > tbody > tr > td.warning:hover, 1259 | .table-hover > tbody > tr > th.warning:hover, 1260 | .table-hover > tbody > tr.warning:hover > td { 1261 | background-color: #faf2cc; 1262 | border-color: #f8e5be; 1263 | } 1264 | 1265 | fieldset { 1266 | padding: 0; 1267 | margin: 0; 1268 | border: 0; 1269 | } 1270 | 1271 | legend { 1272 | display: block; 1273 | width: 100%; 1274 | padding: 0; 1275 | margin-bottom: 20px; 1276 | font-size: 21px; 1277 | line-height: inherit; 1278 | color: #333333; 1279 | border: 0; 1280 | border-bottom: 1px solid #e5e5e5; 1281 | } 1282 | 1283 | label { 1284 | display: inline-block; 1285 | margin-bottom: 5px; 1286 | font-weight: bold; 1287 | } 1288 | 1289 | input[type="search"] { 1290 | -webkit-box-sizing: border-box; 1291 | -moz-box-sizing: border-box; 1292 | box-sizing: border-box; 1293 | } 1294 | 1295 | input[type="radio"], 1296 | input[type="checkbox"] { 1297 | margin: 4px 0 0; 1298 | margin-top: 1px \9; 1299 | /* IE8-9 */ 1300 | 1301 | line-height: normal; 1302 | } 1303 | 1304 | input[type="file"] { 1305 | display: block; 1306 | } 1307 | 1308 | select[multiple], 1309 | select[size] { 1310 | height: auto; 1311 | } 1312 | 1313 | select optgroup { 1314 | font-family: inherit; 1315 | font-size: inherit; 1316 | font-style: inherit; 1317 | } 1318 | 1319 | input[type="file"]:focus, 1320 | input[type="radio"]:focus, 1321 | input[type="checkbox"]:focus { 1322 | outline: thin dotted #333; 1323 | outline: 5px auto -webkit-focus-ring-color; 1324 | outline-offset: -2px; 1325 | } 1326 | 1327 | input[type="number"]::-webkit-outer-spin-button, 1328 | input[type="number"]::-webkit-inner-spin-button { 1329 | height: auto; 1330 | } 1331 | 1332 | .form-control:-moz-placeholder { 1333 | color: #999999; 1334 | } 1335 | 1336 | .form-control::-moz-placeholder { 1337 | color: #999999; 1338 | } 1339 | 1340 | .form-control:-ms-input-placeholder { 1341 | color: #999999; 1342 | } 1343 | 1344 | .form-control::-webkit-input-placeholder { 1345 | color: #999999; 1346 | } 1347 | 1348 | .form-control { 1349 | display: block; 1350 | width: 100%; 1351 | height: 38px; 1352 | padding: 8px 12px; 1353 | font-size: 14px; 1354 | line-height: 1.428571429; 1355 | color: #555555; 1356 | vertical-align: middle; 1357 | background-color: #ffffff; 1358 | border: 1px solid #cccccc; 1359 | border-radius: 4px; 1360 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1361 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1362 | -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; 1363 | transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; 1364 | } 1365 | 1366 | .form-control:focus { 1367 | border-color: rgba(82, 168, 236, 0.8); 1368 | outline: 0; 1369 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); 1370 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); 1371 | } 1372 | 1373 | .form-control[disabled], 1374 | .form-control[readonly], 1375 | fieldset[disabled] .form-control { 1376 | cursor: not-allowed; 1377 | background-color: #eeeeee; 1378 | } 1379 | 1380 | textarea.form-control { 1381 | height: auto; 1382 | } 1383 | 1384 | .form-group { 1385 | margin-bottom: 15px; 1386 | } 1387 | 1388 | .radio, 1389 | .checkbox { 1390 | display: block; 1391 | min-height: 20px; 1392 | padding-left: 20px; 1393 | margin-top: 10px; 1394 | margin-bottom: 10px; 1395 | vertical-align: middle; 1396 | } 1397 | 1398 | .radio label, 1399 | .checkbox label { 1400 | display: inline; 1401 | margin-bottom: 0; 1402 | font-weight: normal; 1403 | cursor: pointer; 1404 | } 1405 | 1406 | .radio input[type="radio"], 1407 | .radio-inline input[type="radio"], 1408 | .checkbox input[type="checkbox"], 1409 | .checkbox-inline input[type="checkbox"] { 1410 | float: left; 1411 | margin-left: -20px; 1412 | } 1413 | 1414 | .radio + .radio, 1415 | .checkbox + .checkbox { 1416 | margin-top: -5px; 1417 | } 1418 | 1419 | .radio-inline, 1420 | .checkbox-inline { 1421 | display: inline-block; 1422 | padding-left: 20px; 1423 | margin-bottom: 0; 1424 | font-weight: normal; 1425 | vertical-align: middle; 1426 | cursor: pointer; 1427 | } 1428 | 1429 | .radio-inline + .radio-inline, 1430 | .checkbox-inline + .checkbox-inline { 1431 | margin-top: 0; 1432 | margin-left: 10px; 1433 | } 1434 | 1435 | .form-control.input-large { 1436 | height: 56px; 1437 | padding: 14px 16px; 1438 | font-size: 18px; 1439 | border-radius: 6px; 1440 | } 1441 | 1442 | .form-control.input-small { 1443 | height: 30px; 1444 | padding: 5px 10px; 1445 | font-size: 12px; 1446 | border-radius: 3px; 1447 | } 1448 | 1449 | select.input-large { 1450 | height: 56px; 1451 | line-height: 56px; 1452 | } 1453 | 1454 | select.input-small { 1455 | height: 30px; 1456 | line-height: 30px; 1457 | } 1458 | 1459 | .has-warning .help-block, 1460 | .has-warning .control-label { 1461 | color: #c09853; 1462 | } 1463 | 1464 | .has-warning .form-control { 1465 | padding-right: 32px; 1466 | border-color: #c09853; 1467 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1468 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1469 | } 1470 | 1471 | .has-warning .form-control:focus { 1472 | border-color: #a47e3c; 1473 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; 1474 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; 1475 | } 1476 | 1477 | .has-warning .input-group-addon { 1478 | color: #c09853; 1479 | background-color: #fcf8e3; 1480 | border-color: #c09853; 1481 | } 1482 | 1483 | .has-error .help-block, 1484 | .has-error .control-label { 1485 | color: #b94a48; 1486 | } 1487 | 1488 | .has-error .form-control { 1489 | padding-right: 32px; 1490 | border-color: #b94a48; 1491 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1492 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1493 | } 1494 | 1495 | .has-error .form-control:focus { 1496 | border-color: #953b39; 1497 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; 1498 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; 1499 | } 1500 | 1501 | .has-error .input-group-addon { 1502 | color: #b94a48; 1503 | background-color: #f2dede; 1504 | border-color: #b94a48; 1505 | } 1506 | 1507 | .has-success .help-block, 1508 | .has-success .control-label { 1509 | color: #468847; 1510 | } 1511 | 1512 | .has-success .form-control { 1513 | padding-right: 32px; 1514 | border-color: #468847; 1515 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1516 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1517 | } 1518 | 1519 | .has-success .form-control:focus { 1520 | border-color: #356635; 1521 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; 1522 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; 1523 | } 1524 | 1525 | .has-success .input-group-addon { 1526 | color: #468847; 1527 | background-color: #dff0d8; 1528 | border-color: #468847; 1529 | } 1530 | 1531 | .help-block { 1532 | display: block; 1533 | margin-top: 5px; 1534 | margin-bottom: 10px; 1535 | color: #737373; 1536 | } 1537 | 1538 | .input-group { 1539 | display: table; 1540 | border-collapse: separate; 1541 | } 1542 | 1543 | .input-group.col { 1544 | float: none; 1545 | padding-right: 0; 1546 | padding-left: 0; 1547 | } 1548 | 1549 | .input-group .form-control { 1550 | width: 100%; 1551 | margin-bottom: 0; 1552 | } 1553 | 1554 | .input-group-addon, 1555 | .input-group-btn, 1556 | .input-group .form-control { 1557 | display: table-cell; 1558 | } 1559 | 1560 | .input-group-addon:not(:first-child):not(:last-child), 1561 | .input-group-btn:not(:first-child):not(:last-child), 1562 | .input-group .form-control:not(:first-child):not(:last-child) { 1563 | border-radius: 0; 1564 | } 1565 | 1566 | .input-group-addon, 1567 | .input-group-btn { 1568 | width: 1%; 1569 | white-space: nowrap; 1570 | vertical-align: middle; 1571 | } 1572 | 1573 | .input-group-addon { 1574 | padding: 8px 12px; 1575 | font-size: 14px; 1576 | font-weight: normal; 1577 | line-height: 1.428571429; 1578 | text-align: center; 1579 | background-color: #eeeeee; 1580 | border: 1px solid #cccccc; 1581 | border-radius: 4px; 1582 | -webkit-box-sizing: border-box; 1583 | -moz-box-sizing: border-box; 1584 | box-sizing: border-box; 1585 | } 1586 | 1587 | .input-group-addon.input-small { 1588 | padding: 5px 10px; 1589 | font-size: 12px; 1590 | border-radius: 3px; 1591 | } 1592 | 1593 | .input-group-addon.input-large { 1594 | padding: 14px 16px; 1595 | font-size: 18px; 1596 | border-radius: 6px; 1597 | } 1598 | 1599 | .input-group .form-control:first-child, 1600 | .input-group-addon:first-child, 1601 | .input-group-btn:first-child > .btn, 1602 | .input-group-btn:first-child > .dropdown-toggle, 1603 | .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { 1604 | border-top-right-radius: 0; 1605 | border-bottom-right-radius: 0; 1606 | } 1607 | 1608 | .input-group-addon:first-child { 1609 | border-right: 0; 1610 | } 1611 | 1612 | .input-group .form-control:last-child, 1613 | .input-group-addon:last-child, 1614 | .input-group-btn:last-child > .btn, 1615 | .input-group-btn:last-child > .dropdown-toggle, 1616 | .input-group-btn:first-child > .btn:not(:first-child) { 1617 | border-bottom-left-radius: 0; 1618 | border-top-left-radius: 0; 1619 | } 1620 | 1621 | .input-group-addon:last-child { 1622 | border-left: 0; 1623 | } 1624 | 1625 | .input-group-btn { 1626 | position: relative; 1627 | white-space: nowrap; 1628 | } 1629 | 1630 | .input-group-btn > .btn { 1631 | position: relative; 1632 | } 1633 | 1634 | .input-group-btn > .btn + .btn { 1635 | margin-left: -4px; 1636 | } 1637 | 1638 | .input-group-btn > .btn:hover, 1639 | .input-group-btn > .btn:active { 1640 | z-index: 2; 1641 | } 1642 | 1643 | .form-inline .form-control, 1644 | .form-inline .radio, 1645 | .form-inline .checkbox { 1646 | display: inline-block; 1647 | } 1648 | 1649 | .form-inline .radio, 1650 | .form-inline .checkbox { 1651 | margin-top: 0; 1652 | margin-bottom: 0; 1653 | } 1654 | 1655 | .form-horizontal .control-label { 1656 | padding-top: 6px; 1657 | } 1658 | 1659 | .form-horizontal .form-group:before, 1660 | .form-horizontal .form-group:after { 1661 | display: table; 1662 | content: " "; 1663 | } 1664 | 1665 | .form-horizontal .form-group:after { 1666 | clear: both; 1667 | } 1668 | 1669 | .form-horizontal .form-group:before, 1670 | .form-horizontal .form-group:after { 1671 | display: table; 1672 | content: " "; 1673 | } 1674 | 1675 | .form-horizontal .form-group:after { 1676 | clear: both; 1677 | } 1678 | 1679 | @media (min-width: 768px) { 1680 | .form-horizontal .form-group { 1681 | margin-right: -15px; 1682 | margin-left: -15px; 1683 | } 1684 | } 1685 | 1686 | .form-horizontal .form-group .row { 1687 | margin-right: -15px; 1688 | margin-left: -15px; 1689 | } 1690 | 1691 | @media (min-width: 768px) { 1692 | .form-horizontal .control-label { 1693 | text-align: right; 1694 | } 1695 | } 1696 | 1697 | .btn { 1698 | display: inline-block; 1699 | padding: 8px 12px; 1700 | margin-bottom: 0; 1701 | font-size: 14px; 1702 | font-weight: 500; 1703 | line-height: 1.428571429; 1704 | text-align: center; 1705 | white-space: nowrap; 1706 | vertical-align: middle; 1707 | cursor: pointer; 1708 | border: 1px solid transparent; 1709 | border-radius: 4px; 1710 | } 1711 | 1712 | .btn:focus { 1713 | outline: thin dotted #333; 1714 | outline: 5px auto -webkit-focus-ring-color; 1715 | outline-offset: -2px; 1716 | } 1717 | 1718 | .btn:hover, 1719 | .btn:focus { 1720 | color: #ffffff; 1721 | text-decoration: none; 1722 | } 1723 | 1724 | .btn:active, 1725 | .btn.active { 1726 | outline: 0; 1727 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 1728 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 1729 | } 1730 | 1731 | .btn.disabled, 1732 | .btn[disabled], 1733 | fieldset[disabled] .btn { 1734 | pointer-events: none; 1735 | cursor: default; 1736 | opacity: 0.65; 1737 | filter: alpha(opacity=65); 1738 | -webkit-box-shadow: none; 1739 | box-shadow: none; 1740 | } 1741 | 1742 | .btn-default { 1743 | color: #ffffff; 1744 | background-color: #474949; 1745 | border-color: #474949; 1746 | } 1747 | 1748 | .btn-default:hover, 1749 | .btn-default:focus, 1750 | .btn-default:active, 1751 | .btn-default.active { 1752 | background-color: #3a3c3c; 1753 | border-color: #2e2f2f; 1754 | } 1755 | 1756 | .btn-default.disabled, 1757 | .btn-default[disabled], 1758 | fieldset[disabled] .btn-default, 1759 | .btn-default.disabled:hover, 1760 | .btn-default[disabled]:hover, 1761 | fieldset[disabled] .btn-default:hover, 1762 | .btn-default.disabled:focus, 1763 | .btn-default[disabled]:focus, 1764 | fieldset[disabled] .btn-default:focus, 1765 | .btn-default.disabled:active, 1766 | .btn-default[disabled]:active, 1767 | fieldset[disabled] .btn-default:active, 1768 | .btn-default.disabled.active, 1769 | .btn-default[disabled].active, 1770 | fieldset[disabled] .btn-default.active { 1771 | background-color: #474949; 1772 | border-color: #474949; 1773 | } 1774 | 1775 | .btn-primary { 1776 | color: #ffffff; 1777 | background-color: #428bca; 1778 | border-color: #428bca; 1779 | } 1780 | 1781 | .btn-primary:hover, 1782 | .btn-primary:focus, 1783 | .btn-primary:active, 1784 | .btn-primary.active { 1785 | background-color: #357ebd; 1786 | border-color: #3071a9; 1787 | } 1788 | 1789 | .btn-primary.disabled, 1790 | .btn-primary[disabled], 1791 | fieldset[disabled] .btn-primary, 1792 | .btn-primary.disabled:hover, 1793 | .btn-primary[disabled]:hover, 1794 | fieldset[disabled] .btn-primary:hover, 1795 | .btn-primary.disabled:focus, 1796 | .btn-primary[disabled]:focus, 1797 | fieldset[disabled] .btn-primary:focus, 1798 | .btn-primary.disabled:active, 1799 | .btn-primary[disabled]:active, 1800 | fieldset[disabled] .btn-primary:active, 1801 | .btn-primary.disabled.active, 1802 | .btn-primary[disabled].active, 1803 | fieldset[disabled] .btn-primary.active { 1804 | background-color: #428bca; 1805 | border-color: #428bca; 1806 | } 1807 | 1808 | .btn-warning { 1809 | color: #ffffff; 1810 | background-color: #f0ad4e; 1811 | border-color: #f0ad4e; 1812 | } 1813 | 1814 | .btn-warning:hover, 1815 | .btn-warning:focus, 1816 | .btn-warning:active, 1817 | .btn-warning.active { 1818 | background-color: #eea236; 1819 | border-color: #ec971f; 1820 | } 1821 | 1822 | .btn-warning.disabled, 1823 | .btn-warning[disabled], 1824 | fieldset[disabled] .btn-warning, 1825 | .btn-warning.disabled:hover, 1826 | .btn-warning[disabled]:hover, 1827 | fieldset[disabled] .btn-warning:hover, 1828 | .btn-warning.disabled:focus, 1829 | .btn-warning[disabled]:focus, 1830 | fieldset[disabled] .btn-warning:focus, 1831 | .btn-warning.disabled:active, 1832 | .btn-warning[disabled]:active, 1833 | fieldset[disabled] .btn-warning:active, 1834 | .btn-warning.disabled.active, 1835 | .btn-warning[disabled].active, 1836 | fieldset[disabled] .btn-warning.active { 1837 | background-color: #f0ad4e; 1838 | border-color: #f0ad4e; 1839 | } 1840 | 1841 | .btn-danger { 1842 | color: #ffffff; 1843 | background-color: #d9534f; 1844 | border-color: #d9534f; 1845 | } 1846 | 1847 | .btn-danger:hover, 1848 | .btn-danger:focus, 1849 | .btn-danger:active, 1850 | .btn-danger.active { 1851 | background-color: #d43f3a; 1852 | border-color: #c9302c; 1853 | } 1854 | 1855 | .btn-danger.disabled, 1856 | .btn-danger[disabled], 1857 | fieldset[disabled] .btn-danger, 1858 | .btn-danger.disabled:hover, 1859 | .btn-danger[disabled]:hover, 1860 | fieldset[disabled] .btn-danger:hover, 1861 | .btn-danger.disabled:focus, 1862 | .btn-danger[disabled]:focus, 1863 | fieldset[disabled] .btn-danger:focus, 1864 | .btn-danger.disabled:active, 1865 | .btn-danger[disabled]:active, 1866 | fieldset[disabled] .btn-danger:active, 1867 | .btn-danger.disabled.active, 1868 | .btn-danger[disabled].active, 1869 | fieldset[disabled] .btn-danger.active { 1870 | background-color: #d9534f; 1871 | border-color: #d9534f; 1872 | } 1873 | 1874 | .btn-success { 1875 | color: #ffffff; 1876 | background-color: #5cb85c; 1877 | border-color: #5cb85c; 1878 | } 1879 | 1880 | .btn-success:hover, 1881 | .btn-success:focus, 1882 | .btn-success:active, 1883 | .btn-success.active { 1884 | background-color: #4cae4c; 1885 | border-color: #449d44; 1886 | } 1887 | 1888 | .btn-success.disabled, 1889 | .btn-success[disabled], 1890 | fieldset[disabled] .btn-success, 1891 | .btn-success.disabled:hover, 1892 | .btn-success[disabled]:hover, 1893 | fieldset[disabled] .btn-success:hover, 1894 | .btn-success.disabled:focus, 1895 | .btn-success[disabled]:focus, 1896 | fieldset[disabled] .btn-success:focus, 1897 | .btn-success.disabled:active, 1898 | .btn-success[disabled]:active, 1899 | fieldset[disabled] .btn-success:active, 1900 | .btn-success.disabled.active, 1901 | .btn-success[disabled].active, 1902 | fieldset[disabled] .btn-success.active { 1903 | background-color: #5cb85c; 1904 | border-color: #5cb85c; 1905 | } 1906 | 1907 | .btn-info { 1908 | color: #ffffff; 1909 | background-color: #5bc0de; 1910 | border-color: #5bc0de; 1911 | } 1912 | 1913 | .btn-info:hover, 1914 | .btn-info:focus, 1915 | .btn-info:active, 1916 | .btn-info.active { 1917 | background-color: #46b8da; 1918 | border-color: #31b0d5; 1919 | } 1920 | 1921 | .btn-info.disabled, 1922 | .btn-info[disabled], 1923 | fieldset[disabled] .btn-info, 1924 | .btn-info.disabled:hover, 1925 | .btn-info[disabled]:hover, 1926 | fieldset[disabled] .btn-info:hover, 1927 | .btn-info.disabled:focus, 1928 | .btn-info[disabled]:focus, 1929 | fieldset[disabled] .btn-info:focus, 1930 | .btn-info.disabled:active, 1931 | .btn-info[disabled]:active, 1932 | fieldset[disabled] .btn-info:active, 1933 | .btn-info.disabled.active, 1934 | .btn-info[disabled].active, 1935 | fieldset[disabled] .btn-info.active { 1936 | background-color: #5bc0de; 1937 | border-color: #5bc0de; 1938 | } 1939 | 1940 | .btn-link { 1941 | font-weight: normal; 1942 | color: #428bca; 1943 | cursor: pointer; 1944 | border-radius: 0; 1945 | } 1946 | 1947 | .btn-link, 1948 | .btn-link:active, 1949 | .btn-link[disabled], 1950 | fieldset[disabled] .btn-link { 1951 | background-color: transparent; 1952 | -webkit-box-shadow: none; 1953 | box-shadow: none; 1954 | } 1955 | 1956 | .btn-link, 1957 | .btn-link:hover, 1958 | .btn-link:focus, 1959 | .btn-link:active { 1960 | border-color: transparent; 1961 | } 1962 | 1963 | .btn-link:hover, 1964 | .btn-link:focus { 1965 | color: #2a6496; 1966 | text-decoration: underline; 1967 | background-color: transparent; 1968 | } 1969 | 1970 | .btn-link[disabled]:hover, 1971 | fieldset[disabled] .btn-link:hover, 1972 | .btn-link[disabled]:focus, 1973 | fieldset[disabled] .btn-link:focus { 1974 | color: #333333; 1975 | text-decoration: none; 1976 | } 1977 | 1978 | .btn-large { 1979 | padding: 14px 16px; 1980 | font-size: 18px; 1981 | border-radius: 6px; 1982 | } 1983 | 1984 | .btn-small { 1985 | padding: 5px 10px; 1986 | font-size: 12px; 1987 | line-height: 1.5; 1988 | border-radius: 3px; 1989 | } 1990 | 1991 | .btn-block { 1992 | display: block; 1993 | width: 100%; 1994 | padding-right: 0; 1995 | padding-left: 0; 1996 | } 1997 | 1998 | .btn-block + .btn-block { 1999 | margin-top: 5px; 2000 | } 2001 | 2002 | input[type="submit"].btn-block, 2003 | input[type="reset"].btn-block, 2004 | input[type="button"].btn-block { 2005 | width: 100%; 2006 | } 2007 | 2008 | .fade { 2009 | opacity: 0; 2010 | -webkit-transition: opacity 0.15s linear; 2011 | transition: opacity 0.15s linear; 2012 | } 2013 | 2014 | .fade.in { 2015 | opacity: 1; 2016 | } 2017 | 2018 | .collapse { 2019 | position: relative; 2020 | height: 0; 2021 | overflow: hidden; 2022 | -webkit-transition: height 0.35s ease; 2023 | transition: height 0.35s ease; 2024 | } 2025 | 2026 | .collapse.in { 2027 | height: auto; 2028 | } 2029 | 2030 | .caret { 2031 | display: inline-block; 2032 | width: 0; 2033 | height: 0; 2034 | margin-left: 2px; 2035 | vertical-align: middle; 2036 | border-top: 4px solid #000000; 2037 | border-right: 4px solid transparent; 2038 | border-left: 4px solid transparent; 2039 | content: ""; 2040 | } 2041 | 2042 | .dropdown-menu { 2043 | position: absolute; 2044 | top: 100%; 2045 | left: 0; 2046 | z-index: 1000; 2047 | display: none; 2048 | float: left; 2049 | min-width: 160px; 2050 | padding: 5px 0; 2051 | margin: 2px 0 0; 2052 | list-style: none; 2053 | background-color: #ffffff; 2054 | border: 1px solid #cccccc; 2055 | border: 1px solid rgba(0, 0, 0, 0.15); 2056 | border-radius: 4px; 2057 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); 2058 | box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); 2059 | background-clip: padding-box; 2060 | } 2061 | 2062 | .dropdown-menu.pull-right { 2063 | right: 0; 2064 | left: auto; 2065 | } 2066 | 2067 | .dropdown-menu .divider { 2068 | height: 1px; 2069 | margin: 9px 0; 2070 | overflow: hidden; 2071 | background-color: #e5e5e5; 2072 | } 2073 | 2074 | .dropdown-menu > li > a { 2075 | display: block; 2076 | padding: 3px 20px; 2077 | clear: both; 2078 | font-weight: normal; 2079 | line-height: 1.428571429; 2080 | color: #333333; 2081 | white-space: nowrap; 2082 | } 2083 | 2084 | .dropdown-menu > li > a:hover, 2085 | .dropdown-menu > li > a:focus { 2086 | color: #ffffff; 2087 | text-decoration: none; 2088 | background-color: #357ebd; 2089 | background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd)); 2090 | background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%); 2091 | background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%); 2092 | background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); 2093 | background-repeat: repeat-x; 2094 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); 2095 | } 2096 | 2097 | .dropdown-menu > .active > a, 2098 | .dropdown-menu > .active > a:hover, 2099 | .dropdown-menu > .active > a:focus { 2100 | color: #ffffff; 2101 | text-decoration: none; 2102 | background-color: #357ebd; 2103 | background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd)); 2104 | background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%); 2105 | background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%); 2106 | background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); 2107 | background-repeat: repeat-x; 2108 | outline: 0; 2109 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); 2110 | } 2111 | 2112 | .dropdown-menu > .disabled > a, 2113 | .dropdown-menu > .disabled > a:hover, 2114 | .dropdown-menu > .disabled > a:focus { 2115 | color: #999999; 2116 | } 2117 | 2118 | .dropdown-menu > .disabled > a:hover, 2119 | .dropdown-menu > .disabled > a:focus { 2120 | text-decoration: none; 2121 | cursor: not-allowed; 2122 | background-color: transparent; 2123 | background-image: none; 2124 | filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); 2125 | } 2126 | 2127 | .open > .dropdown-menu { 2128 | display: block; 2129 | } 2130 | 2131 | .open > a { 2132 | outline: 0; 2133 | } 2134 | 2135 | .dropdown-header { 2136 | display: block; 2137 | padding: 3px 20px; 2138 | font-size: 12px; 2139 | line-height: 1.428571429; 2140 | color: #999999; 2141 | } 2142 | 2143 | .dropdown-backdrop { 2144 | position: fixed; 2145 | top: 0; 2146 | right: 0; 2147 | bottom: 0; 2148 | left: 0; 2149 | z-index: 990; 2150 | } 2151 | 2152 | .pull-right > .dropdown-menu { 2153 | right: 0; 2154 | left: auto; 2155 | } 2156 | 2157 | .dropup .caret, 2158 | .navbar-fixed-bottom .dropdown .caret { 2159 | border-top: 0; 2160 | border-bottom: 4px solid #000000; 2161 | content: ""; 2162 | } 2163 | 2164 | .dropup .dropdown-menu, 2165 | .navbar-fixed-bottom .dropdown .dropdown-menu { 2166 | top: auto; 2167 | bottom: 100%; 2168 | margin-bottom: 1px; 2169 | } 2170 | 2171 | .list-group { 2172 | padding-left: 0; 2173 | margin-bottom: 20px; 2174 | background-color: #ffffff; 2175 | } 2176 | 2177 | .list-group-item { 2178 | position: relative; 2179 | display: block; 2180 | padding: 10px 30px 10px 15px; 2181 | margin-bottom: -1px; 2182 | border: 1px solid #dddddd; 2183 | } 2184 | 2185 | .list-group-item:first-child { 2186 | border-top-right-radius: 4px; 2187 | border-top-left-radius: 4px; 2188 | } 2189 | 2190 | .list-group-item:last-child { 2191 | margin-bottom: 0; 2192 | border-bottom-right-radius: 4px; 2193 | border-bottom-left-radius: 4px; 2194 | } 2195 | 2196 | .list-group-item > .badge { 2197 | float: right; 2198 | margin-right: -15px; 2199 | } 2200 | 2201 | .list-group-item-heading { 2202 | margin-top: 0; 2203 | margin-bottom: 5px; 2204 | } 2205 | 2206 | .list-group-item-text { 2207 | margin-bottom: 0; 2208 | line-height: 1.3; 2209 | } 2210 | 2211 | a.list-group-item .list-group-item-heading { 2212 | color: #333333; 2213 | } 2214 | 2215 | a.list-group-item .list-group-item-text { 2216 | color: #555555; 2217 | } 2218 | 2219 | a.list-group-item:hover, 2220 | a.list-group-item:focus { 2221 | text-decoration: none; 2222 | background-color: #f5f5f5; 2223 | } 2224 | 2225 | a.list-group-item.active { 2226 | z-index: 2; 2227 | color: #ffffff; 2228 | background-color: #428bca; 2229 | border-color: #428bca; 2230 | } 2231 | 2232 | a.list-group-item.active .list-group-item-heading { 2233 | color: inherit; 2234 | } 2235 | 2236 | a.list-group-item.active .list-group-item-text { 2237 | color: #e1edf7; 2238 | } 2239 | 2240 | .panel { 2241 | padding: 15px; 2242 | margin-bottom: 20px; 2243 | background-color: #ffffff; 2244 | border: 1px solid #dddddd; 2245 | border-radius: 4px; 2246 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); 2247 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); 2248 | } 2249 | 2250 | .panel-heading { 2251 | padding: 10px 15px; 2252 | margin: -15px -15px 15px; 2253 | background-color: #f5f5f5; 2254 | border-bottom: 1px solid #dddddd; 2255 | border-top-right-radius: 3px; 2256 | border-top-left-radius: 3px; 2257 | } 2258 | 2259 | .panel-title { 2260 | margin-top: 0; 2261 | margin-bottom: 0; 2262 | font-size: 17.5px; 2263 | font-weight: 500; 2264 | } 2265 | 2266 | .panel-footer { 2267 | padding: 10px 15px; 2268 | margin: 15px -15px -15px; 2269 | background-color: #f5f5f5; 2270 | border-top: 1px solid #dddddd; 2271 | border-bottom-right-radius: 3px; 2272 | border-bottom-left-radius: 3px; 2273 | } 2274 | 2275 | .panel-primary { 2276 | border-color: #428bca; 2277 | } 2278 | 2279 | .panel-primary .panel-heading { 2280 | color: #ffffff; 2281 | background-color: #428bca; 2282 | border-color: #428bca; 2283 | } 2284 | 2285 | .panel-success { 2286 | border-color: #d6e9c6; 2287 | } 2288 | 2289 | .panel-success .panel-heading { 2290 | color: #468847; 2291 | background-color: #dff0d8; 2292 | border-color: #d6e9c6; 2293 | } 2294 | 2295 | .panel-warning { 2296 | border-color: #fbeed5; 2297 | } 2298 | 2299 | .panel-warning .panel-heading { 2300 | color: #c09853; 2301 | background-color: #fcf8e3; 2302 | border-color: #fbeed5; 2303 | } 2304 | 2305 | .panel-danger { 2306 | border-color: #eed3d7; 2307 | } 2308 | 2309 | .panel-danger .panel-heading { 2310 | color: #b94a48; 2311 | background-color: #f2dede; 2312 | border-color: #eed3d7; 2313 | } 2314 | 2315 | .panel-info { 2316 | border-color: #bce8f1; 2317 | } 2318 | 2319 | .panel-info .panel-heading { 2320 | color: #3a87ad; 2321 | background-color: #d9edf7; 2322 | border-color: #bce8f1; 2323 | } 2324 | 2325 | .list-group-flush { 2326 | margin: 15px -15px -15px; 2327 | } 2328 | 2329 | .list-group-flush .list-group-item { 2330 | border-width: 1px 0; 2331 | } 2332 | 2333 | .list-group-flush .list-group-item:first-child { 2334 | border-top-right-radius: 0; 2335 | border-top-left-radius: 0; 2336 | } 2337 | 2338 | .list-group-flush .list-group-item:last-child { 2339 | border-bottom: 0; 2340 | } 2341 | 2342 | .well { 2343 | min-height: 20px; 2344 | padding: 19px; 2345 | margin-bottom: 20px; 2346 | background-color: #f5f5f5; 2347 | border: 1px solid #e3e3e3; 2348 | border-radius: 4px; 2349 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 2350 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 2351 | } 2352 | 2353 | .well blockquote { 2354 | border-color: #ddd; 2355 | border-color: rgba(0, 0, 0, 0.15); 2356 | } 2357 | 2358 | .well-large { 2359 | padding: 24px; 2360 | border-radius: 6px; 2361 | } 2362 | 2363 | .well-small { 2364 | padding: 9px; 2365 | border-radius: 3px; 2366 | } 2367 | 2368 | .close { 2369 | float: right; 2370 | font-size: 21px; 2371 | font-weight: bold; 2372 | line-height: 1; 2373 | color: #000000; 2374 | text-shadow: 0 1px 0 #ffffff; 2375 | opacity: 0.2; 2376 | filter: alpha(opacity=20); 2377 | } 2378 | 2379 | .close:hover, 2380 | .close:focus { 2381 | color: #000000; 2382 | text-decoration: none; 2383 | cursor: pointer; 2384 | opacity: 0.5; 2385 | filter: alpha(opacity=50); 2386 | } 2387 | 2388 | button.close { 2389 | padding: 0; 2390 | cursor: pointer; 2391 | background: transparent; 2392 | border: 0; 2393 | -webkit-appearance: none; 2394 | } 2395 | 2396 | .nav { 2397 | padding-left: 0; 2398 | margin-bottom: 0; 2399 | list-style: none; 2400 | } 2401 | 2402 | .nav:before, 2403 | .nav:after { 2404 | display: table; 2405 | content: " "; 2406 | } 2407 | 2408 | .nav:after { 2409 | clear: both; 2410 | } 2411 | 2412 | .nav:before, 2413 | .nav:after { 2414 | display: table; 2415 | content: " "; 2416 | } 2417 | 2418 | .nav:after { 2419 | clear: both; 2420 | } 2421 | 2422 | .nav > li { 2423 | position: relative; 2424 | display: block; 2425 | } 2426 | 2427 | .nav > li > a { 2428 | position: relative; 2429 | display: block; 2430 | padding: 10px 15px; 2431 | } 2432 | 2433 | .nav > li > a:hover, 2434 | .nav > li > a:focus { 2435 | text-decoration: none; 2436 | background-color: #eeeeee; 2437 | } 2438 | 2439 | .nav > li.disabled > a { 2440 | color: #999999; 2441 | } 2442 | 2443 | .nav > li.disabled > a:hover, 2444 | .nav > li.disabled > a:focus { 2445 | color: #999999; 2446 | text-decoration: none; 2447 | cursor: not-allowed; 2448 | background-color: transparent; 2449 | } 2450 | 2451 | .nav > li + .nav-header { 2452 | margin-top: 9px; 2453 | } 2454 | 2455 | .nav.open > a, 2456 | .nav.open > a:hover, 2457 | .nav.open > a:focus { 2458 | color: #ffffff; 2459 | background-color: #428bca; 2460 | border-color: #428bca; 2461 | } 2462 | 2463 | .nav.open > a .caret, 2464 | .nav.open > a:hover .caret, 2465 | .nav.open > a:focus .caret { 2466 | border-top-color: #ffffff; 2467 | border-bottom-color: #ffffff; 2468 | } 2469 | 2470 | .nav > .pull-right { 2471 | float: right; 2472 | } 2473 | 2474 | .nav .nav-divider { 2475 | height: 1px; 2476 | margin: 9px 0; 2477 | overflow: hidden; 2478 | background-color: #e5e5e5; 2479 | } 2480 | 2481 | .nav-tabs { 2482 | border-bottom: 1px solid #dddddd; 2483 | } 2484 | 2485 | .nav-tabs > li { 2486 | float: left; 2487 | margin-bottom: -1px; 2488 | } 2489 | 2490 | .nav-tabs > li > a { 2491 | margin-right: 2px; 2492 | line-height: 1.428571429; 2493 | border: 1px solid transparent; 2494 | border-radius: 4px 4px 0 0; 2495 | } 2496 | 2497 | .nav-tabs > li > a:hover { 2498 | border-color: #eeeeee; 2499 | } 2500 | 2501 | .nav-tabs > li.active > a, 2502 | .nav-tabs > li.active > a:hover, 2503 | .nav-tabs > li.active > a:focus { 2504 | color: #555555; 2505 | cursor: default; 2506 | background-color: #ffffff; 2507 | border: 1px solid #dddddd; 2508 | border-bottom-color: transparent; 2509 | } 2510 | 2511 | .nav-tabs.nav-justified { 2512 | display: table; 2513 | width: 100%; 2514 | border-bottom: 0; 2515 | } 2516 | 2517 | .nav-tabs.nav-justified > li { 2518 | display: table-cell; 2519 | float: none; 2520 | width: auto; 2521 | } 2522 | 2523 | .nav-tabs.nav-justified > li > a { 2524 | text-align: center; 2525 | } 2526 | 2527 | .nav-tabs.nav-justified > li > a { 2528 | margin-right: 0; 2529 | border-bottom: 1px solid #dddddd; 2530 | } 2531 | 2532 | .nav-tabs.nav-justified > .active > a { 2533 | border-bottom-color: #ffffff; 2534 | } 2535 | 2536 | .nav-pills > li { 2537 | float: left; 2538 | } 2539 | 2540 | .nav-pills > li > a { 2541 | border-radius: 5px; 2542 | } 2543 | 2544 | .nav-pills > li + li > a { 2545 | margin-left: 2px; 2546 | } 2547 | 2548 | .nav-pills > li.active > a, 2549 | .nav-pills > li.active > a:hover, 2550 | .nav-pills > li.active > a:focus { 2551 | color: #ffffff; 2552 | background-color: #428bca; 2553 | } 2554 | 2555 | .nav-stacked > li { 2556 | float: none; 2557 | } 2558 | 2559 | .nav-stacked > li + li > a { 2560 | margin-top: 2px; 2561 | margin-left: 0; 2562 | } 2563 | 2564 | .nav-justified { 2565 | display: table; 2566 | width: 100%; 2567 | } 2568 | 2569 | .nav-justified > li { 2570 | display: table-cell; 2571 | float: none; 2572 | width: auto; 2573 | } 2574 | 2575 | .nav-justified > li > a { 2576 | text-align: center; 2577 | } 2578 | 2579 | .nav-tabs-justified { 2580 | border-bottom: 0; 2581 | } 2582 | 2583 | .nav-tabs-justified > li > a { 2584 | margin-right: 0; 2585 | border-bottom: 1px solid #dddddd; 2586 | } 2587 | 2588 | .nav-tabs-justified > .active > a { 2589 | border-bottom-color: #ffffff; 2590 | } 2591 | 2592 | .tabbable:before, 2593 | .tabbable:after { 2594 | display: table; 2595 | content: " "; 2596 | } 2597 | 2598 | .tabbable:after { 2599 | clear: both; 2600 | } 2601 | 2602 | .tabbable:before, 2603 | .tabbable:after { 2604 | display: table; 2605 | content: " "; 2606 | } 2607 | 2608 | .tabbable:after { 2609 | clear: both; 2610 | } 2611 | 2612 | .tab-content > .tab-pane, 2613 | .pill-content > .pill-pane { 2614 | display: none; 2615 | } 2616 | 2617 | .tab-content > .active, 2618 | .pill-content > .active { 2619 | display: block; 2620 | } 2621 | 2622 | .nav .caret { 2623 | border-top-color: #428bca; 2624 | border-bottom-color: #428bca; 2625 | } 2626 | 2627 | .nav a:hover .caret { 2628 | border-top-color: #2a6496; 2629 | border-bottom-color: #2a6496; 2630 | } 2631 | 2632 | .nav-tabs .dropdown-menu { 2633 | margin-top: -1px; 2634 | border-top-right-radius: 0; 2635 | border-top-left-radius: 0; 2636 | } 2637 | 2638 | .navbar { 2639 | position: relative; 2640 | min-height: 50px; 2641 | padding-right: 15px; 2642 | padding-left: 15px; 2643 | margin-bottom: 20px; 2644 | background-color: #eeeeee; 2645 | border-radius: 4px; 2646 | } 2647 | 2648 | .navbar:before, 2649 | .navbar:after { 2650 | display: table; 2651 | content: " "; 2652 | } 2653 | 2654 | .navbar:after { 2655 | clear: both; 2656 | } 2657 | 2658 | .navbar:before, 2659 | .navbar:after { 2660 | display: table; 2661 | content: " "; 2662 | } 2663 | 2664 | .navbar:after { 2665 | clear: both; 2666 | } 2667 | 2668 | .navbar-nav { 2669 | margin-top: 10px; 2670 | margin-bottom: 15px; 2671 | } 2672 | 2673 | .navbar-nav > li > a { 2674 | padding-top: 15px; 2675 | padding-bottom: 15px; 2676 | line-height: 20px; 2677 | color: #777777; 2678 | border-radius: 4px; 2679 | } 2680 | 2681 | .navbar-nav > li > a:hover, 2682 | .navbar-nav > li > a:focus { 2683 | color: #333333; 2684 | background-color: transparent; 2685 | } 2686 | 2687 | .navbar-nav > .active > a, 2688 | .navbar-nav > .active > a:hover, 2689 | .navbar-nav > .active > a:focus { 2690 | color: #555555; 2691 | background-color: #d5d5d5; 2692 | } 2693 | 2694 | .navbar-nav > .disabled > a, 2695 | .navbar-nav > .disabled > a:hover, 2696 | .navbar-nav > .disabled > a:focus { 2697 | color: #cccccc; 2698 | background-color: transparent; 2699 | } 2700 | 2701 | .navbar-nav.pull-right { 2702 | width: 100%; 2703 | } 2704 | 2705 | .navbar-static-top { 2706 | border-radius: 0; 2707 | } 2708 | 2709 | .navbar-fixed-top, 2710 | .navbar-fixed-bottom { 2711 | position: fixed; 2712 | right: 0; 2713 | left: 0; 2714 | z-index: 1030; 2715 | border-radius: 0; 2716 | } 2717 | 2718 | .navbar-fixed-top { 2719 | top: 0; 2720 | } 2721 | 2722 | .navbar-fixed-bottom { 2723 | bottom: 0; 2724 | margin-bottom: 0; 2725 | } 2726 | 2727 | .navbar-brand { 2728 | display: block; 2729 | max-width: 200px; 2730 | padding: 15px 15px; 2731 | margin-right: auto; 2732 | margin-left: auto; 2733 | font-size: 18px; 2734 | font-weight: 500; 2735 | line-height: 20px; 2736 | color: #777777; 2737 | text-align: center; 2738 | } 2739 | 2740 | .navbar-brand:hover, 2741 | .navbar-brand:focus { 2742 | color: #5e5e5e; 2743 | text-decoration: none; 2744 | background-color: transparent; 2745 | } 2746 | 2747 | .navbar-toggle { 2748 | position: absolute; 2749 | top: 9px; 2750 | right: 10px; 2751 | width: 48px; 2752 | height: 32px; 2753 | padding: 8px 12px; 2754 | background-color: transparent; 2755 | border: 1px solid #dddddd; 2756 | border-radius: 4px; 2757 | } 2758 | 2759 | .navbar-toggle:hover, 2760 | .navbar-toggle:focus { 2761 | background-color: #dddddd; 2762 | } 2763 | 2764 | .navbar-toggle .icon-bar { 2765 | display: block; 2766 | width: 22px; 2767 | height: 2px; 2768 | background-color: #cccccc; 2769 | border-radius: 1px; 2770 | } 2771 | 2772 | .navbar-toggle .icon-bar + .icon-bar { 2773 | margin-top: 4px; 2774 | } 2775 | 2776 | .navbar-form { 2777 | margin-top: 6px; 2778 | margin-bottom: 6px; 2779 | } 2780 | 2781 | .navbar-form .form-control, 2782 | .navbar-form .radio, 2783 | .navbar-form .checkbox { 2784 | display: inline-block; 2785 | } 2786 | 2787 | .navbar-form .radio, 2788 | .navbar-form .checkbox { 2789 | margin-top: 0; 2790 | margin-bottom: 0; 2791 | } 2792 | 2793 | .navbar-nav > li > .dropdown-menu { 2794 | margin-top: 0; 2795 | border-top-right-radius: 0; 2796 | border-top-left-radius: 0; 2797 | } 2798 | 2799 | .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { 2800 | border-bottom-right-radius: 0; 2801 | border-bottom-left-radius: 0; 2802 | } 2803 | 2804 | .navbar-nav > .dropdown > a:hover .caret, 2805 | .navbar-nav > .dropdown > a:focus .caret { 2806 | border-top-color: #333333; 2807 | border-bottom-color: #333333; 2808 | } 2809 | 2810 | .navbar-nav > .open > a, 2811 | .navbar-nav > .open > a:hover, 2812 | .navbar-nav > .open > a:focus { 2813 | color: #555555; 2814 | background-color: #d5d5d5; 2815 | } 2816 | 2817 | .navbar-nav > .open > a .caret, 2818 | .navbar-nav > .open > a:hover .caret, 2819 | .navbar-nav > .open > a:focus .caret { 2820 | border-top-color: #555555; 2821 | border-bottom-color: #555555; 2822 | } 2823 | 2824 | .navbar-nav > .dropdown > a .caret { 2825 | border-top-color: #777777; 2826 | border-bottom-color: #777777; 2827 | } 2828 | 2829 | .navbar-nav.pull-right > li > .dropdown-menu, 2830 | .navbar-nav > li > .dropdown-menu.pull-right { 2831 | right: 0; 2832 | left: auto; 2833 | } 2834 | 2835 | .navbar-inverse { 2836 | background-color: #222222; 2837 | } 2838 | 2839 | .navbar-inverse .navbar-brand { 2840 | color: #999999; 2841 | } 2842 | 2843 | .navbar-inverse .navbar-brand:hover, 2844 | .navbar-inverse .navbar-brand:focus { 2845 | color: #ffffff; 2846 | background-color: transparent; 2847 | } 2848 | 2849 | .navbar-inverse .navbar-text { 2850 | color: #999999; 2851 | } 2852 | 2853 | .navbar-inverse .navbar-nav > li > a { 2854 | color: #999999; 2855 | } 2856 | 2857 | .navbar-inverse .navbar-nav > li > a:hover, 2858 | .navbar-inverse .navbar-nav > li > a:focus { 2859 | color: #ffffff; 2860 | background-color: transparent; 2861 | } 2862 | 2863 | .navbar-inverse .navbar-nav > .active > a, 2864 | .navbar-inverse .navbar-nav > .active > a:hover, 2865 | .navbar-inverse .navbar-nav > .active > a:focus { 2866 | color: #ffffff; 2867 | background-color: #080808; 2868 | } 2869 | 2870 | .navbar-inverse .navbar-nav > .disabled > a, 2871 | .navbar-inverse .navbar-nav > .disabled > a:hover, 2872 | .navbar-inverse .navbar-nav > .disabled > a:focus { 2873 | color: #444444; 2874 | background-color: transparent; 2875 | } 2876 | 2877 | .navbar-inverse .navbar-toggle { 2878 | border-color: #333333; 2879 | } 2880 | 2881 | .navbar-inverse .navbar-toggle:hover, 2882 | .navbar-inverse .navbar-toggle:focus { 2883 | background-color: #333333; 2884 | } 2885 | 2886 | .navbar-inverse .navbar-toggle .icon-bar { 2887 | background-color: #ffffff; 2888 | } 2889 | 2890 | .navbar-inverse .navbar-nav > .open > a, 2891 | .navbar-inverse .navbar-nav > .open > a:hover, 2892 | .navbar-inverse .navbar-nav > .open > a:focus { 2893 | color: #ffffff; 2894 | background-color: #080808; 2895 | } 2896 | 2897 | .navbar-inverse .navbar-nav > .dropdown > a:hover .caret { 2898 | border-top-color: #ffffff; 2899 | border-bottom-color: #ffffff; 2900 | } 2901 | 2902 | .navbar-inverse .navbar-nav > .dropdown > a .caret { 2903 | border-top-color: #999999; 2904 | border-bottom-color: #999999; 2905 | } 2906 | 2907 | .navbar-inverse .navbar-nav > .open > a .caret, 2908 | .navbar-inverse .navbar-nav > .open > a:hover .caret, 2909 | .navbar-inverse .navbar-nav > .open > a:focus .caret { 2910 | border-top-color: #ffffff; 2911 | border-bottom-color: #ffffff; 2912 | } 2913 | 2914 | @media screen and (min-width: 768px) { 2915 | .navbar-brand { 2916 | float: left; 2917 | margin-right: 5px; 2918 | margin-left: -15px; 2919 | } 2920 | .navbar-nav { 2921 | float: left; 2922 | margin-top: 0; 2923 | margin-bottom: 0; 2924 | } 2925 | .navbar-nav > li { 2926 | float: left; 2927 | } 2928 | .navbar-nav > li > a { 2929 | border-radius: 0; 2930 | } 2931 | .navbar-nav.pull-right { 2932 | float: right; 2933 | width: auto; 2934 | } 2935 | .navbar-toggle { 2936 | position: relative; 2937 | top: auto; 2938 | left: auto; 2939 | display: none; 2940 | } 2941 | .nav-collapse.collapse { 2942 | height: auto !important; 2943 | overflow: visible !important; 2944 | } 2945 | } 2946 | 2947 | .navbar-btn { 2948 | margin-top: 6px; 2949 | } 2950 | 2951 | .navbar-text { 2952 | margin-top: 15px; 2953 | margin-bottom: 15px; 2954 | } 2955 | 2956 | .navbar-link { 2957 | color: #777777; 2958 | } 2959 | 2960 | .navbar-link:hover { 2961 | color: #333333; 2962 | } 2963 | 2964 | .navbar-inverse .navbar-link { 2965 | color: #999999; 2966 | } 2967 | 2968 | .navbar-inverse .navbar-link:hover { 2969 | color: #ffffff; 2970 | } 2971 | 2972 | .btn .caret { 2973 | border-top-color: #ffffff; 2974 | } 2975 | 2976 | .dropup .btn .caret { 2977 | border-bottom-color: #ffffff; 2978 | } 2979 | 2980 | .btn-group, 2981 | .btn-group-vertical { 2982 | position: relative; 2983 | display: inline-block; 2984 | vertical-align: middle; 2985 | } 2986 | 2987 | .btn-group > .btn, 2988 | .btn-group-vertical > .btn { 2989 | position: relative; 2990 | float: left; 2991 | } 2992 | 2993 | .btn-group > .btn:hover, 2994 | .btn-group-vertical > .btn:hover, 2995 | .btn-group > .btn:active, 2996 | .btn-group-vertical > .btn:active { 2997 | z-index: 2; 2998 | } 2999 | 3000 | .btn-group .btn + .btn { 3001 | margin-left: -1px; 3002 | } 3003 | 3004 | .btn-toolbar:before, 3005 | .btn-toolbar:after { 3006 | display: table; 3007 | content: " "; 3008 | } 3009 | 3010 | .btn-toolbar:after { 3011 | clear: both; 3012 | } 3013 | 3014 | .btn-toolbar:before, 3015 | .btn-toolbar:after { 3016 | display: table; 3017 | content: " "; 3018 | } 3019 | 3020 | .btn-toolbar:after { 3021 | clear: both; 3022 | } 3023 | 3024 | .btn-toolbar .btn-group { 3025 | float: left; 3026 | } 3027 | 3028 | .btn-toolbar > .btn + .btn, 3029 | .btn-toolbar > .btn-group + .btn, 3030 | .btn-toolbar > .btn + .btn-group, 3031 | .btn-toolbar > .btn-group + .btn-group { 3032 | margin-left: 5px; 3033 | } 3034 | 3035 | .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { 3036 | border-radius: 0; 3037 | } 3038 | 3039 | .btn-group > .btn:first-child { 3040 | margin-left: 0; 3041 | } 3042 | 3043 | .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { 3044 | border-top-right-radius: 0; 3045 | border-bottom-right-radius: 0; 3046 | } 3047 | 3048 | .btn-group > .btn:last-child:not(:first-child), 3049 | .btn-group > .dropdown-toggle:not(:first-child) { 3050 | border-bottom-left-radius: 0; 3051 | border-top-left-radius: 0; 3052 | } 3053 | 3054 | .btn-group > .btn-group { 3055 | float: left; 3056 | } 3057 | 3058 | .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { 3059 | border-radius: 0; 3060 | } 3061 | 3062 | .btn-group > .btn-group:first-child > .btn:last-child, 3063 | .btn-group > .btn-group:first-child > .dropdown-toggle { 3064 | border-top-right-radius: 0; 3065 | border-bottom-right-radius: 0; 3066 | } 3067 | 3068 | .btn-group > .btn-group:last-child > .btn:first-child { 3069 | border-bottom-left-radius: 0; 3070 | border-top-left-radius: 0; 3071 | } 3072 | 3073 | .btn-group .dropdown-toggle:active, 3074 | .btn-group.open .dropdown-toggle { 3075 | outline: 0; 3076 | } 3077 | 3078 | .btn-group > .btn + .dropdown-toggle { 3079 | padding-right: 8px; 3080 | padding-left: 8px; 3081 | } 3082 | 3083 | .btn-group > .btn-large + .dropdown-toggle { 3084 | padding-right: 12px; 3085 | padding-left: 12px; 3086 | } 3087 | 3088 | .btn-group.open .dropdown-toggle { 3089 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3090 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3091 | } 3092 | 3093 | .btn .caret { 3094 | margin-left: 0; 3095 | } 3096 | 3097 | .btn-large .caret { 3098 | border-width: 5px; 3099 | } 3100 | 3101 | .dropup .btn-large .caret { 3102 | border-bottom-width: 5px; 3103 | } 3104 | 3105 | .btn-group-vertical > .btn { 3106 | display: block; 3107 | float: none; 3108 | width: 100%; 3109 | max-width: 100%; 3110 | } 3111 | 3112 | .btn-group-vertical > .btn + .btn { 3113 | margin-top: -1px; 3114 | } 3115 | 3116 | .btn-group-vertical .btn:not(:first-child):not(:last-child) { 3117 | border-radius: 0; 3118 | } 3119 | 3120 | .btn-group-vertical .btn:first-child { 3121 | border-bottom-right-radius: 0; 3122 | border-bottom-left-radius: 0; 3123 | } 3124 | 3125 | .btn-group-vertical .btn:last-child { 3126 | border-top-right-radius: 0; 3127 | border-top-left-radius: 0; 3128 | } 3129 | 3130 | .btn-group-justified { 3131 | display: table; 3132 | width: 100%; 3133 | } 3134 | 3135 | .btn-group-justified .btn { 3136 | display: table-cell; 3137 | float: none; 3138 | width: 1%; 3139 | } 3140 | 3141 | .btn-group[data-toggle="buttons"] > .btn > input[type="radio"], 3142 | .btn-group[data-toggle="buttons"] > .btn > input[type="checkbox"] { 3143 | display: none; 3144 | } 3145 | 3146 | .breadcrumb { 3147 | padding: 8px 15px; 3148 | margin-bottom: 20px; 3149 | list-style: none; 3150 | background-color: #f5f5f5; 3151 | border-radius: 4px; 3152 | } 3153 | 3154 | .breadcrumb > li { 3155 | display: inline-block; 3156 | } 3157 | 3158 | .breadcrumb > li + li:before { 3159 | padding: 0 5px; 3160 | color: #cccccc; 3161 | content: "/\00a0"; 3162 | } 3163 | 3164 | .breadcrumb > .active { 3165 | color: #999999; 3166 | } 3167 | 3168 | .pagination { 3169 | display: inline-block; 3170 | padding-left: 0; 3171 | margin: 20px 0; 3172 | border-radius: 4px; 3173 | } 3174 | 3175 | .pagination > li { 3176 | display: inline; 3177 | } 3178 | 3179 | .pagination > li > a, 3180 | .pagination > li > span { 3181 | float: left; 3182 | padding: 4px 12px; 3183 | line-height: 1.428571429; 3184 | text-decoration: none; 3185 | background-color: #ffffff; 3186 | border: 1px solid #dddddd; 3187 | border-left-width: 0; 3188 | } 3189 | 3190 | .pagination > li:first-child > a, 3191 | .pagination > li:first-child > span { 3192 | border-left-width: 1px; 3193 | border-bottom-left-radius: 4px; 3194 | border-top-left-radius: 4px; 3195 | } 3196 | 3197 | .pagination > li:last-child > a, 3198 | .pagination > li:last-child > span { 3199 | border-top-right-radius: 4px; 3200 | border-bottom-right-radius: 4px; 3201 | } 3202 | 3203 | .pagination > li > a:hover, 3204 | .pagination > li > a:focus, 3205 | .pagination > .active > a, 3206 | .pagination > .active > span { 3207 | background-color: #f5f5f5; 3208 | } 3209 | 3210 | .pagination > .active > a, 3211 | .pagination > .active > span { 3212 | color: #999999; 3213 | cursor: default; 3214 | } 3215 | 3216 | .pagination > .disabled > span, 3217 | .pagination > .disabled > a, 3218 | .pagination > .disabled > a:hover, 3219 | .pagination > .disabled > a:focus { 3220 | color: #999999; 3221 | cursor: not-allowed; 3222 | background-color: #ffffff; 3223 | } 3224 | 3225 | .pagination-large > li > a, 3226 | .pagination-large > li > span { 3227 | padding: 14px 16px; 3228 | font-size: 18px; 3229 | } 3230 | 3231 | .pagination-large > li:first-child > a, 3232 | .pagination-large > li:first-child > span { 3233 | border-bottom-left-radius: 6px; 3234 | border-top-left-radius: 6px; 3235 | } 3236 | 3237 | .pagination-large > li:last-child > a, 3238 | .pagination-large > li:last-child > span { 3239 | border-top-right-radius: 6px; 3240 | border-bottom-right-radius: 6px; 3241 | } 3242 | 3243 | .pagination-small > li > a, 3244 | .pagination-small > li > span { 3245 | padding: 5px 10px; 3246 | font-size: 12px; 3247 | } 3248 | 3249 | .pagination-small > li:first-child > a, 3250 | .pagination-small > li:first-child > span { 3251 | border-bottom-left-radius: 3px; 3252 | border-top-left-radius: 3px; 3253 | } 3254 | 3255 | .pagination-small > li:last-child > a, 3256 | .pagination-small > li:last-child > span { 3257 | border-top-right-radius: 3px; 3258 | border-bottom-right-radius: 3px; 3259 | } 3260 | 3261 | .pager { 3262 | padding-left: 0; 3263 | margin: 20px 0; 3264 | text-align: center; 3265 | list-style: none; 3266 | } 3267 | 3268 | .pager:before, 3269 | .pager:after { 3270 | display: table; 3271 | content: " "; 3272 | } 3273 | 3274 | .pager:after { 3275 | clear: both; 3276 | } 3277 | 3278 | .pager:before, 3279 | .pager:after { 3280 | display: table; 3281 | content: " "; 3282 | } 3283 | 3284 | .pager:after { 3285 | clear: both; 3286 | } 3287 | 3288 | .pager li { 3289 | display: inline; 3290 | } 3291 | 3292 | .pager li > a, 3293 | .pager li > span { 3294 | display: inline-block; 3295 | padding: 5px 14px; 3296 | background-color: #ffffff; 3297 | border: 1px solid #dddddd; 3298 | border-radius: 15px; 3299 | } 3300 | 3301 | .pager li > a:hover, 3302 | .pager li > a:focus { 3303 | text-decoration: none; 3304 | background-color: #f5f5f5; 3305 | } 3306 | 3307 | .pager .next > a, 3308 | .pager .next > span { 3309 | float: right; 3310 | } 3311 | 3312 | .pager .previous > a, 3313 | .pager .previous > span { 3314 | float: left; 3315 | } 3316 | 3317 | .pager .disabled > a, 3318 | .pager .disabled > a:hover, 3319 | .pager .disabled > a:focus, 3320 | .pager .disabled > span { 3321 | color: #999999; 3322 | cursor: not-allowed; 3323 | background-color: #ffffff; 3324 | } 3325 | 3326 | .modal-open { 3327 | overflow: hidden; 3328 | } 3329 | 3330 | .modal { 3331 | position: fixed; 3332 | top: 0; 3333 | right: 0; 3334 | bottom: 0; 3335 | left: 0; 3336 | z-index: 1040; 3337 | display: none; 3338 | overflow: auto; 3339 | overflow-y: scroll; 3340 | } 3341 | 3342 | .modal.fade { 3343 | top: -25%; 3344 | -webkit-transition: opacity 0.3s linear, top 0.3s ease-out; 3345 | transition: opacity 0.3s linear, top 0.3s ease-out; 3346 | } 3347 | 3348 | .modal.fade.in { 3349 | top: 0; 3350 | } 3351 | 3352 | .modal-dialog { 3353 | position: relative; 3354 | top: 0; 3355 | right: 0; 3356 | left: 0; 3357 | z-index: 1050; 3358 | width: auto; 3359 | padding: 10px; 3360 | } 3361 | 3362 | .modal-content { 3363 | position: relative; 3364 | background-color: #ffffff; 3365 | border: 1px solid #999999; 3366 | border: 1px solid rgba(0, 0, 0, 0.2); 3367 | border-radius: 6px; 3368 | outline: none; 3369 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 3370 | box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 3371 | background-clip: padding-box; 3372 | } 3373 | 3374 | .modal-backdrop { 3375 | position: fixed; 3376 | top: 0; 3377 | right: 0; 3378 | bottom: 0; 3379 | left: 0; 3380 | z-index: 1030; 3381 | background-color: #000000; 3382 | } 3383 | 3384 | .modal-backdrop.fade { 3385 | opacity: 0; 3386 | filter: alpha(opacity=0); 3387 | } 3388 | 3389 | .modal-backdrop.fade.in { 3390 | opacity: 0.5; 3391 | filter: alpha(opacity=50); 3392 | } 3393 | 3394 | .modal-header { 3395 | min-height: 16.428571429px; 3396 | padding: 15px; 3397 | border-bottom: 1px solid #e5e5e5; 3398 | } 3399 | 3400 | .modal-header .close { 3401 | margin-top: -2px; 3402 | } 3403 | 3404 | .modal-title { 3405 | margin: 0; 3406 | line-height: 1.428571429; 3407 | } 3408 | 3409 | .modal-body { 3410 | position: relative; 3411 | padding: 20px; 3412 | } 3413 | 3414 | .modal-footer { 3415 | padding: 19px 20px 20px; 3416 | margin-top: 15px; 3417 | text-align: right; 3418 | border-top: 1px solid #e5e5e5; 3419 | } 3420 | 3421 | .modal-footer:before, 3422 | .modal-footer:after { 3423 | display: table; 3424 | content: " "; 3425 | } 3426 | 3427 | .modal-footer:after { 3428 | clear: both; 3429 | } 3430 | 3431 | .modal-footer:before, 3432 | .modal-footer:after { 3433 | display: table; 3434 | content: " "; 3435 | } 3436 | 3437 | .modal-footer:after { 3438 | clear: both; 3439 | } 3440 | 3441 | .modal-footer .btn + .btn { 3442 | margin-bottom: 0; 3443 | margin-left: 5px; 3444 | } 3445 | 3446 | .modal-footer .btn-group .btn + .btn { 3447 | margin-left: -1px; 3448 | } 3449 | 3450 | .modal-footer .btn-block + .btn-block { 3451 | margin-left: 0; 3452 | } 3453 | 3454 | @media screen and (min-width: 768px) { 3455 | .modal-dialog { 3456 | right: auto; 3457 | left: 50%; 3458 | width: 560px; 3459 | padding-top: 30px; 3460 | padding-bottom: 30px; 3461 | margin-left: -280px; 3462 | } 3463 | .modal-content { 3464 | -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 3465 | box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 3466 | } 3467 | } 3468 | 3469 | .tooltip { 3470 | position: absolute; 3471 | z-index: 1030; 3472 | display: block; 3473 | font-size: 12px; 3474 | line-height: 1.4; 3475 | opacity: 0; 3476 | filter: alpha(opacity=0); 3477 | visibility: visible; 3478 | } 3479 | 3480 | .tooltip.in { 3481 | opacity: 1; 3482 | filter: alpha(opacity=100); 3483 | } 3484 | 3485 | .tooltip.top { 3486 | padding: 5px 0; 3487 | margin-top: -3px; 3488 | } 3489 | 3490 | .tooltip.right { 3491 | padding: 0 5px; 3492 | margin-left: 3px; 3493 | } 3494 | 3495 | .tooltip.bottom { 3496 | padding: 5px 0; 3497 | margin-top: 3px; 3498 | } 3499 | 3500 | .tooltip.left { 3501 | padding: 0 5px; 3502 | margin-left: -3px; 3503 | } 3504 | 3505 | .tooltip-inner { 3506 | max-width: 200px; 3507 | padding: 3px 8px; 3508 | color: #ffffff; 3509 | text-align: center; 3510 | text-decoration: none; 3511 | background-color: rgba(0, 0, 0, 0.9); 3512 | border-radius: 4px; 3513 | } 3514 | 3515 | .tooltip-arrow { 3516 | position: absolute; 3517 | width: 0; 3518 | height: 0; 3519 | border-color: transparent; 3520 | border-style: solid; 3521 | } 3522 | 3523 | .tooltip.top .tooltip-arrow { 3524 | bottom: 0; 3525 | left: 50%; 3526 | margin-left: -5px; 3527 | border-top-color: rgba(0, 0, 0, 0.9); 3528 | border-width: 5px 5px 0; 3529 | } 3530 | 3531 | .tooltip.top-left .tooltip-arrow { 3532 | bottom: 0; 3533 | left: 5px; 3534 | border-top-color: rgba(0, 0, 0, 0.9); 3535 | border-width: 5px 5px 0; 3536 | } 3537 | 3538 | .tooltip.top-right .tooltip-arrow { 3539 | right: 5px; 3540 | bottom: 0; 3541 | border-top-color: rgba(0, 0, 0, 0.9); 3542 | border-width: 5px 5px 0; 3543 | } 3544 | 3545 | .tooltip.right .tooltip-arrow { 3546 | top: 50%; 3547 | left: 0; 3548 | margin-top: -5px; 3549 | border-right-color: rgba(0, 0, 0, 0.9); 3550 | border-width: 5px 5px 5px 0; 3551 | } 3552 | 3553 | .tooltip.left .tooltip-arrow { 3554 | top: 50%; 3555 | right: 0; 3556 | margin-top: -5px; 3557 | border-left-color: rgba(0, 0, 0, 0.9); 3558 | border-width: 5px 0 5px 5px; 3559 | } 3560 | 3561 | .tooltip.bottom .tooltip-arrow { 3562 | top: 0; 3563 | left: 50%; 3564 | margin-left: -5px; 3565 | border-bottom-color: rgba(0, 0, 0, 0.9); 3566 | border-width: 0 5px 5px; 3567 | } 3568 | 3569 | .tooltip.bottom-left .tooltip-arrow { 3570 | top: 0; 3571 | left: 5px; 3572 | border-bottom-color: rgba(0, 0, 0, 0.9); 3573 | border-width: 0 5px 5px; 3574 | } 3575 | 3576 | .tooltip.bottom-right .tooltip-arrow { 3577 | top: 0; 3578 | right: 5px; 3579 | border-bottom-color: rgba(0, 0, 0, 0.9); 3580 | border-width: 0 5px 5px; 3581 | } 3582 | 3583 | .popover { 3584 | position: absolute; 3585 | top: 0; 3586 | left: 0; 3587 | z-index: 1010; 3588 | display: none; 3589 | max-width: 276px; 3590 | padding: 1px; 3591 | text-align: left; 3592 | white-space: normal; 3593 | background-color: #ffffff; 3594 | border: 1px solid #cccccc; 3595 | border: 1px solid rgba(0, 0, 0, 0.2); 3596 | border-radius: 6px; 3597 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 3598 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 3599 | background-clip: padding-box; 3600 | -webkit-bg-clip: padding-box; 3601 | -moz-bg-clip: padding; 3602 | } 3603 | 3604 | .popover.top { 3605 | margin-top: -10px; 3606 | } 3607 | 3608 | .popover.right { 3609 | margin-left: 10px; 3610 | } 3611 | 3612 | .popover.bottom { 3613 | margin-top: 10px; 3614 | } 3615 | 3616 | .popover.left { 3617 | margin-left: -10px; 3618 | } 3619 | 3620 | .popover-title { 3621 | padding: 8px 14px; 3622 | margin: 0; 3623 | font-size: 14px; 3624 | font-weight: normal; 3625 | line-height: 18px; 3626 | background-color: #f7f7f7; 3627 | border-bottom: 1px solid #ebebeb; 3628 | border-radius: 5px 5px 0 0; 3629 | } 3630 | 3631 | .popover-content { 3632 | padding: 9px 14px; 3633 | } 3634 | 3635 | .popover .arrow, 3636 | .popover .arrow:after { 3637 | position: absolute; 3638 | display: block; 3639 | width: 0; 3640 | height: 0; 3641 | border-color: transparent; 3642 | border-style: solid; 3643 | } 3644 | 3645 | .popover .arrow { 3646 | border-width: 11px; 3647 | } 3648 | 3649 | .popover .arrow:after { 3650 | border-width: 10px; 3651 | content: ""; 3652 | } 3653 | 3654 | .popover.top .arrow { 3655 | bottom: -11px; 3656 | left: 50%; 3657 | margin-left: -11px; 3658 | border-top-color: #999999; 3659 | border-top-color: rgba(0, 0, 0, 0.25); 3660 | border-bottom-width: 0; 3661 | } 3662 | 3663 | .popover.top .arrow:after { 3664 | bottom: 1px; 3665 | margin-left: -10px; 3666 | border-top-color: #ffffff; 3667 | border-bottom-width: 0; 3668 | content: " "; 3669 | } 3670 | 3671 | .popover.right .arrow { 3672 | top: 50%; 3673 | left: -11px; 3674 | margin-top: -11px; 3675 | border-right-color: #999999; 3676 | border-right-color: rgba(0, 0, 0, 0.25); 3677 | border-left-width: 0; 3678 | } 3679 | 3680 | .popover.right .arrow:after { 3681 | bottom: -10px; 3682 | left: 1px; 3683 | border-right-color: #ffffff; 3684 | border-left-width: 0; 3685 | content: " "; 3686 | } 3687 | 3688 | .popover.bottom .arrow { 3689 | top: -11px; 3690 | left: 50%; 3691 | margin-left: -11px; 3692 | border-bottom-color: #999999; 3693 | border-bottom-color: rgba(0, 0, 0, 0.25); 3694 | border-top-width: 0; 3695 | } 3696 | 3697 | .popover.bottom .arrow:after { 3698 | top: 1px; 3699 | margin-left: -10px; 3700 | border-bottom-color: #ffffff; 3701 | border-top-width: 0; 3702 | content: " "; 3703 | } 3704 | 3705 | .popover.left .arrow { 3706 | top: 50%; 3707 | right: -11px; 3708 | margin-top: -11px; 3709 | border-left-color: #999999; 3710 | border-left-color: rgba(0, 0, 0, 0.25); 3711 | border-right-width: 0; 3712 | } 3713 | 3714 | .popover.left .arrow:after { 3715 | right: 1px; 3716 | bottom: -10px; 3717 | border-left-color: #ffffff; 3718 | border-right-width: 0; 3719 | content: " "; 3720 | } 3721 | 3722 | .alert { 3723 | padding: 10px 35px 10px 15px; 3724 | margin-bottom: 20px; 3725 | color: #c09853; 3726 | background-color: #fcf8e3; 3727 | border: 1px solid #fbeed5; 3728 | border-radius: 4px; 3729 | } 3730 | 3731 | .alert h4 { 3732 | margin-top: 0; 3733 | color: inherit; 3734 | } 3735 | 3736 | .alert hr { 3737 | border-top-color: #f8e5be; 3738 | } 3739 | 3740 | .alert .alert-link { 3741 | font-weight: 500; 3742 | color: #a47e3c; 3743 | } 3744 | 3745 | .alert .close { 3746 | position: relative; 3747 | top: -2px; 3748 | right: -21px; 3749 | color: inherit; 3750 | } 3751 | 3752 | .alert-success { 3753 | color: #468847; 3754 | background-color: #dff0d8; 3755 | border-color: #d6e9c6; 3756 | } 3757 | 3758 | .alert-success hr { 3759 | border-top-color: #c9e2b3; 3760 | } 3761 | 3762 | .alert-success .alert-link { 3763 | color: #356635; 3764 | } 3765 | 3766 | .alert-danger { 3767 | color: #b94a48; 3768 | background-color: #f2dede; 3769 | border-color: #eed3d7; 3770 | } 3771 | 3772 | .alert-danger hr { 3773 | border-top-color: #e6c1c7; 3774 | } 3775 | 3776 | .alert-danger .alert-link { 3777 | color: #953b39; 3778 | } 3779 | 3780 | .alert-info { 3781 | color: #3a87ad; 3782 | background-color: #d9edf7; 3783 | border-color: #bce8f1; 3784 | } 3785 | 3786 | .alert-info hr { 3787 | border-top-color: #a6e1ec; 3788 | } 3789 | 3790 | .alert-info .alert-link { 3791 | color: #2d6987; 3792 | } 3793 | 3794 | .alert-block { 3795 | padding-top: 15px; 3796 | padding-bottom: 15px; 3797 | } 3798 | 3799 | .alert-block > p, 3800 | .alert-block > ul { 3801 | margin-bottom: 0; 3802 | } 3803 | 3804 | .alert-block p + p { 3805 | margin-top: 5px; 3806 | } 3807 | 3808 | .thumbnail, 3809 | .img-thumbnail { 3810 | padding: 4px; 3811 | line-height: 1.428571429; 3812 | background-color: #ffffff; 3813 | border: 1px solid #dddddd; 3814 | border-radius: 4px; 3815 | -webkit-transition: all 0.2s ease-in-out; 3816 | transition: all 0.2s ease-in-out; 3817 | } 3818 | 3819 | .thumbnail { 3820 | display: block; 3821 | } 3822 | 3823 | .thumbnail > img, 3824 | .img-thumbnail { 3825 | display: inline-block; 3826 | height: auto; 3827 | max-width: 100%; 3828 | } 3829 | 3830 | a.thumbnail:hover, 3831 | a.thumbnail:focus { 3832 | border-color: #428bca; 3833 | } 3834 | 3835 | .thumbnail > img { 3836 | margin-right: auto; 3837 | margin-left: auto; 3838 | } 3839 | 3840 | .thumbnail .caption { 3841 | padding: 9px; 3842 | color: #333333; 3843 | } 3844 | 3845 | .media, 3846 | .media-body { 3847 | overflow: hidden; 3848 | zoom: 1; 3849 | } 3850 | 3851 | .media, 3852 | .media .media { 3853 | margin-top: 15px; 3854 | } 3855 | 3856 | .media:first-child { 3857 | margin-top: 0; 3858 | } 3859 | 3860 | .media-object { 3861 | display: block; 3862 | } 3863 | 3864 | .media-heading { 3865 | margin: 0 0 5px; 3866 | } 3867 | 3868 | .media > .pull-left { 3869 | margin-right: 10px; 3870 | } 3871 | 3872 | .media > .pull-right { 3873 | margin-left: 10px; 3874 | } 3875 | 3876 | .media-list { 3877 | padding-left: 0; 3878 | list-style: none; 3879 | } 3880 | 3881 | .label { 3882 | display: inline; 3883 | padding: .25em .6em; 3884 | font-size: 75%; 3885 | font-weight: 500; 3886 | line-height: 1; 3887 | color: #ffffff; 3888 | text-align: center; 3889 | white-space: nowrap; 3890 | vertical-align: middle; 3891 | background-color: #999999; 3892 | border-radius: .25em; 3893 | } 3894 | 3895 | .label[href]:hover, 3896 | .label[href]:focus { 3897 | color: #ffffff; 3898 | text-decoration: none; 3899 | cursor: pointer; 3900 | background-color: #808080; 3901 | } 3902 | 3903 | .label-danger { 3904 | background-color: #d9534f; 3905 | } 3906 | 3907 | .label-danger[href]:hover, 3908 | .label-danger[href]:focus { 3909 | background-color: #c9302c; 3910 | } 3911 | 3912 | .label-success { 3913 | background-color: #5cb85c; 3914 | } 3915 | 3916 | .label-success[href]:hover, 3917 | .label-success[href]:focus { 3918 | background-color: #449d44; 3919 | } 3920 | 3921 | .label-warning { 3922 | background-color: #f0ad4e; 3923 | } 3924 | 3925 | .label-warning[href]:hover, 3926 | .label-warning[href]:focus { 3927 | background-color: #ec971f; 3928 | } 3929 | 3930 | .label-info { 3931 | background-color: #5bc0de; 3932 | } 3933 | 3934 | .label-info[href]:hover, 3935 | .label-info[href]:focus { 3936 | background-color: #31b0d5; 3937 | } 3938 | 3939 | .badge { 3940 | display: inline-block; 3941 | min-width: 10px; 3942 | padding: 3px 7px; 3943 | font-size: 12px; 3944 | font-weight: bold; 3945 | line-height: 1; 3946 | color: #ffffff; 3947 | text-align: center; 3948 | white-space: nowrap; 3949 | vertical-align: middle; 3950 | background-color: #999999; 3951 | border-radius: 10px; 3952 | } 3953 | 3954 | .badge:empty { 3955 | display: none; 3956 | } 3957 | 3958 | a.badge:hover, 3959 | a.badge:focus { 3960 | color: #ffffff; 3961 | text-decoration: none; 3962 | cursor: pointer; 3963 | } 3964 | 3965 | .btn .badge { 3966 | position: relative; 3967 | top: -1px; 3968 | } 3969 | 3970 | a.list-group-item.active > .badge, 3971 | .nav-pills > .active > a > .badge { 3972 | color: #428bca; 3973 | background-color: #ffffff; 3974 | } 3975 | 3976 | .nav-pills > li > a > .badge { 3977 | margin-left: 3px; 3978 | } 3979 | 3980 | @-webkit-keyframes progress-bar-stripes { 3981 | from { 3982 | background-position: 40px 0; 3983 | } 3984 | to { 3985 | background-position: 0 0; 3986 | } 3987 | } 3988 | 3989 | @-moz-keyframes progress-bar-stripes { 3990 | from { 3991 | background-position: 40px 0; 3992 | } 3993 | to { 3994 | background-position: 0 0; 3995 | } 3996 | } 3997 | 3998 | @-ms-keyframes progress-bar-stripes { 3999 | from { 4000 | background-position: 40px 0; 4001 | } 4002 | to { 4003 | background-position: 0 0; 4004 | } 4005 | } 4006 | 4007 | @-o-keyframes progress-bar-stripes { 4008 | from { 4009 | background-position: 0 0; 4010 | } 4011 | to { 4012 | background-position: 40px 0; 4013 | } 4014 | } 4015 | 4016 | @keyframes progress-bar-stripes { 4017 | from { 4018 | background-position: 40px 0; 4019 | } 4020 | to { 4021 | background-position: 0 0; 4022 | } 4023 | } 4024 | 4025 | .progress { 4026 | height: 20px; 4027 | margin-bottom: 20px; 4028 | overflow: hidden; 4029 | background-color: #f5f5f5; 4030 | border-radius: 4px; 4031 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 4032 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 4033 | } 4034 | 4035 | .progress-bar { 4036 | float: left; 4037 | width: 0; 4038 | height: 100%; 4039 | font-size: 12px; 4040 | color: #ffffff; 4041 | text-align: center; 4042 | background-color: #428bca; 4043 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); 4044 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); 4045 | -webkit-transition: width 0.6s ease; 4046 | transition: width 0.6s ease; 4047 | } 4048 | 4049 | .progress-striped .progress-bar { 4050 | background-color: #428bca; 4051 | background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); 4052 | 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); 4053 | 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); 4054 | 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); 4055 | background-size: 40px 40px; 4056 | } 4057 | 4058 | .progress.active .progress-bar { 4059 | -webkit-animation: progress-bar-stripes 2s linear infinite; 4060 | -moz-animation: progress-bar-stripes 2s linear infinite; 4061 | -ms-animation: progress-bar-stripes 2s linear infinite; 4062 | -o-animation: progress-bar-stripes 2s linear infinite; 4063 | animation: progress-bar-stripes 2s linear infinite; 4064 | } 4065 | 4066 | .progress-bar-danger { 4067 | background-color: #d9534f; 4068 | } 4069 | 4070 | .progress-striped .progress-bar-danger { 4071 | background-color: #d9534f; 4072 | background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); 4073 | 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); 4074 | 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); 4075 | 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); 4076 | } 4077 | 4078 | .progress-bar-success { 4079 | background-color: #5cb85c; 4080 | } 4081 | 4082 | .progress-striped .progress-bar-success { 4083 | background-color: #5cb85c; 4084 | background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); 4085 | 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); 4086 | 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); 4087 | 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); 4088 | } 4089 | 4090 | .progress-bar-warning { 4091 | background-color: #f0ad4e; 4092 | } 4093 | 4094 | .progress-striped .progress-bar-warning { 4095 | background-color: #f0ad4e; 4096 | background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); 4097 | 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); 4098 | 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); 4099 | 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); 4100 | } 4101 | 4102 | .progress-bar-info { 4103 | background-color: #5bc0de; 4104 | } 4105 | 4106 | .progress-striped .progress-bar-info { 4107 | background-color: #5bc0de; 4108 | background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); 4109 | 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); 4110 | 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); 4111 | 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); 4112 | } 4113 | 4114 | .accordion { 4115 | margin-bottom: 20px; 4116 | } 4117 | 4118 | .accordion-group { 4119 | margin-bottom: 2px; 4120 | border: 1px solid #e5e5e5; 4121 | border-radius: 4px; 4122 | } 4123 | 4124 | .accordion-heading { 4125 | border-bottom: 0; 4126 | } 4127 | 4128 | .accordion-heading .accordion-toggle { 4129 | display: block; 4130 | padding: 8px 15px; 4131 | cursor: pointer; 4132 | } 4133 | 4134 | .accordion-inner { 4135 | padding: 9px 15px; 4136 | border-top: 1px solid #e5e5e5; 4137 | } 4138 | 4139 | .carousel { 4140 | position: relative; 4141 | } 4142 | 4143 | .carousel-inner { 4144 | position: relative; 4145 | width: 100%; 4146 | overflow: hidden; 4147 | } 4148 | 4149 | .carousel-inner > .item { 4150 | position: relative; 4151 | display: none; 4152 | -webkit-transition: 0.6s ease-in-out left; 4153 | transition: 0.6s ease-in-out left; 4154 | } 4155 | 4156 | .carousel-inner > .item > img, 4157 | .carousel-inner > .item > a > img { 4158 | display: inline-block; 4159 | height: auto; 4160 | max-width: 100%; 4161 | line-height: 1; 4162 | } 4163 | 4164 | .carousel-inner > .active, 4165 | .carousel-inner > .next, 4166 | .carousel-inner > .prev { 4167 | display: block; 4168 | } 4169 | 4170 | .carousel-inner > .active { 4171 | left: 0; 4172 | } 4173 | 4174 | .carousel-inner > .next, 4175 | .carousel-inner > .prev { 4176 | position: absolute; 4177 | top: 0; 4178 | width: 100%; 4179 | } 4180 | 4181 | .carousel-inner > .next { 4182 | left: 100%; 4183 | } 4184 | 4185 | .carousel-inner > .prev { 4186 | left: -100%; 4187 | } 4188 | 4189 | .carousel-inner > .next.left, 4190 | .carousel-inner > .prev.right { 4191 | left: 0; 4192 | } 4193 | 4194 | .carousel-inner > .active.left { 4195 | left: -100%; 4196 | } 4197 | 4198 | .carousel-inner > .active.right { 4199 | left: 100%; 4200 | } 4201 | 4202 | .carousel-control { 4203 | position: absolute; 4204 | top: 0; 4205 | bottom: 0; 4206 | left: 0; 4207 | width: 15%; 4208 | font-size: 20px; 4209 | color: #ffffff; 4210 | text-align: center; 4211 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); 4212 | opacity: 0.5; 4213 | filter: alpha(opacity=50); 4214 | } 4215 | 4216 | .carousel-control.left { 4217 | background-color: rgba(0, 0, 0, 0.0001); 4218 | background-color: transparent; 4219 | background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); 4220 | background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%)); 4221 | background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); 4222 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); 4223 | background-repeat: repeat-x; 4224 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); 4225 | } 4226 | 4227 | .carousel-control.right { 4228 | right: 0; 4229 | left: auto; 4230 | background-color: rgba(0, 0, 0, 0.5); 4231 | background-color: transparent; 4232 | background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); 4233 | background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%)); 4234 | background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); 4235 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); 4236 | background-repeat: repeat-x; 4237 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); 4238 | } 4239 | 4240 | .carousel-control:hover, 4241 | .carousel-control:focus { 4242 | color: #ffffff; 4243 | text-decoration: none; 4244 | opacity: 0.9; 4245 | filter: alpha(opacity=90); 4246 | } 4247 | 4248 | .carousel-control .glyphicon, 4249 | .carousel-control .icon-prev, 4250 | .carousel-control .icon-next { 4251 | position: absolute; 4252 | top: 50%; 4253 | left: 50%; 4254 | z-index: 5; 4255 | display: inline-block; 4256 | width: 20px; 4257 | height: 20px; 4258 | margin-top: -10px; 4259 | margin-left: -10px; 4260 | } 4261 | 4262 | .carousel-control .icon-prev:before { 4263 | content: '\2039'; 4264 | } 4265 | 4266 | .carousel-control .icon-next:before { 4267 | content: '\203a'; 4268 | } 4269 | 4270 | .carousel-indicators { 4271 | position: absolute; 4272 | bottom: 10px; 4273 | left: 50%; 4274 | z-index: 15; 4275 | width: 120px; 4276 | padding-left: 0; 4277 | margin-left: -60px; 4278 | text-align: center; 4279 | list-style: none; 4280 | } 4281 | 4282 | .carousel-indicators li { 4283 | display: inline-block; 4284 | width: 10px; 4285 | height: 10px; 4286 | margin: 1px; 4287 | text-indent: -999px; 4288 | cursor: pointer; 4289 | border: 1px solid #ffffff; 4290 | border-radius: 10px; 4291 | } 4292 | 4293 | .carousel-indicators .active { 4294 | width: 12px; 4295 | height: 12px; 4296 | margin: 0; 4297 | background-color: #ffffff; 4298 | } 4299 | 4300 | .carousel-caption { 4301 | position: absolute; 4302 | right: 15%; 4303 | bottom: 20px; 4304 | left: 15%; 4305 | z-index: 10; 4306 | padding-top: 20px; 4307 | padding-bottom: 20px; 4308 | color: #ffffff; 4309 | text-align: center; 4310 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); 4311 | } 4312 | 4313 | .carousel-caption .btn { 4314 | text-shadow: none; 4315 | } 4316 | 4317 | @media screen and (min-width: 768px) { 4318 | .carousel-control .glyphicon, 4319 | .carousel-control .icon-prev, 4320 | .carousel-control .icon-next { 4321 | width: 30px; 4322 | height: 30px; 4323 | margin-top: -15px; 4324 | margin-left: -15px; 4325 | font-size: 30px; 4326 | } 4327 | .carousel-caption { 4328 | right: 20%; 4329 | left: 20%; 4330 | padding-bottom: 30px; 4331 | } 4332 | .carousel-indicators { 4333 | bottom: 20px; 4334 | } 4335 | } 4336 | 4337 | .jumbotron { 4338 | padding: 30px; 4339 | margin-bottom: 30px; 4340 | font-size: 21px; 4341 | font-weight: 200; 4342 | line-height: 2.1428571435; 4343 | color: inherit; 4344 | background-color: #eeeeee; 4345 | } 4346 | 4347 | .jumbotron h1 { 4348 | line-height: 1; 4349 | color: inherit; 4350 | } 4351 | 4352 | .jumbotron p { 4353 | line-height: 1.4; 4354 | } 4355 | 4356 | @media screen and (min-width: 768px) { 4357 | .jumbotron { 4358 | padding: 50px 60px; 4359 | border-radius: 6px; 4360 | } 4361 | .jumbotron h1 { 4362 | font-size: 63px; 4363 | } 4364 | } 4365 | 4366 | .clearfix:before, 4367 | .clearfix:after { 4368 | display: table; 4369 | content: " "; 4370 | } 4371 | 4372 | .clearfix:after { 4373 | clear: both; 4374 | } 4375 | 4376 | .pull-right { 4377 | float: right; 4378 | } 4379 | 4380 | .pull-left { 4381 | float: left; 4382 | } 4383 | 4384 | .hide { 4385 | display: none !important; 4386 | } 4387 | 4388 | .show { 4389 | display: block !important; 4390 | } 4391 | 4392 | .invisible { 4393 | visibility: hidden; 4394 | } 4395 | 4396 | .text-hide { 4397 | font: 0/0 a; 4398 | color: transparent; 4399 | text-shadow: none; 4400 | background-color: transparent; 4401 | border: 0; 4402 | } 4403 | 4404 | .affix { 4405 | position: fixed; 4406 | } 4407 | 4408 | @-ms-viewport { 4409 | width: device-width; 4410 | } 4411 | 4412 | @media screen and (max-width: 400px) { 4413 | @-ms-viewport { 4414 | width: 320px; 4415 | } 4416 | } 4417 | 4418 | .hidden { 4419 | display: none !important; 4420 | visibility: hidden !important; 4421 | } 4422 | 4423 | .visible-sm { 4424 | display: block !important; 4425 | } 4426 | 4427 | tr.visible-sm { 4428 | display: table-row !important; 4429 | } 4430 | 4431 | th.visible-sm, 4432 | td.visible-sm { 4433 | display: table-cell !important; 4434 | } 4435 | 4436 | .visible-md { 4437 | display: none !important; 4438 | } 4439 | 4440 | tr.visible-md { 4441 | display: none !important; 4442 | } 4443 | 4444 | th.visible-md, 4445 | td.visible-md { 4446 | display: none !important; 4447 | } 4448 | 4449 | .visible-lg { 4450 | display: none !important; 4451 | } 4452 | 4453 | tr.visible-lg { 4454 | display: none !important; 4455 | } 4456 | 4457 | th.visible-lg, 4458 | td.visible-lg { 4459 | display: none !important; 4460 | } 4461 | 4462 | .hidden-sm { 4463 | display: none !important; 4464 | } 4465 | 4466 | tr.hidden-sm { 4467 | display: none !important; 4468 | } 4469 | 4470 | th.hidden-sm, 4471 | td.hidden-sm { 4472 | display: none !important; 4473 | } 4474 | 4475 | .hidden-md { 4476 | display: block !important; 4477 | } 4478 | 4479 | tr.hidden-md { 4480 | display: table-row !important; 4481 | } 4482 | 4483 | th.hidden-md, 4484 | td.hidden-md { 4485 | display: table-cell !important; 4486 | } 4487 | 4488 | .hidden-lg { 4489 | display: block !important; 4490 | } 4491 | 4492 | tr.hidden-lg { 4493 | display: table-row !important; 4494 | } 4495 | 4496 | th.hidden-lg, 4497 | td.hidden-lg { 4498 | display: table-cell !important; 4499 | } 4500 | 4501 | @media (min-width: 768px) and (max-width: 991px) { 4502 | .visible-sm { 4503 | display: none !important; 4504 | } 4505 | tr.visible-sm { 4506 | display: none !important; 4507 | } 4508 | th.visible-sm, 4509 | td.visible-sm { 4510 | display: none !important; 4511 | } 4512 | .visible-md { 4513 | display: block !important; 4514 | } 4515 | tr.visible-md { 4516 | display: table-row !important; 4517 | } 4518 | th.visible-md, 4519 | td.visible-md { 4520 | display: table-cell !important; 4521 | } 4522 | .visible-lg { 4523 | display: none !important; 4524 | } 4525 | tr.visible-lg { 4526 | display: none !important; 4527 | } 4528 | th.visible-lg, 4529 | td.visible-lg { 4530 | display: none !important; 4531 | } 4532 | .hidden-sm { 4533 | display: block !important; 4534 | } 4535 | tr.hidden-sm { 4536 | display: table-row !important; 4537 | } 4538 | th.hidden-sm, 4539 | td.hidden-sm { 4540 | display: table-cell !important; 4541 | } 4542 | .hidden-md { 4543 | display: none !important; 4544 | } 4545 | tr.hidden-md { 4546 | display: none !important; 4547 | } 4548 | th.hidden-md, 4549 | td.hidden-md { 4550 | display: none !important; 4551 | } 4552 | .hidden-lg { 4553 | display: block !important; 4554 | } 4555 | tr.hidden-lg { 4556 | display: table-row !important; 4557 | } 4558 | th.hidden-lg, 4559 | td.hidden-lg { 4560 | display: table-cell !important; 4561 | } 4562 | } 4563 | 4564 | @media (min-width: 992px) { 4565 | .visible-sm { 4566 | display: none !important; 4567 | } 4568 | tr.visible-sm { 4569 | display: none !important; 4570 | } 4571 | th.visible-sm, 4572 | td.visible-sm { 4573 | display: none !important; 4574 | } 4575 | .visible-md { 4576 | display: none !important; 4577 | } 4578 | tr.visible-md { 4579 | display: none !important; 4580 | } 4581 | th.visible-md, 4582 | td.visible-md { 4583 | display: none !important; 4584 | } 4585 | .visible-lg { 4586 | display: block !important; 4587 | } 4588 | tr.visible-lg { 4589 | display: table-row !important; 4590 | } 4591 | th.visible-lg, 4592 | td.visible-lg { 4593 | display: table-cell !important; 4594 | } 4595 | .hidden-sm { 4596 | display: block !important; 4597 | } 4598 | tr.hidden-sm { 4599 | display: table-row !important; 4600 | } 4601 | th.hidden-sm, 4602 | td.hidden-sm { 4603 | display: table-cell !important; 4604 | } 4605 | .hidden-md { 4606 | display: block !important; 4607 | } 4608 | tr.hidden-md { 4609 | display: table-row !important; 4610 | } 4611 | th.hidden-md, 4612 | td.hidden-md { 4613 | display: table-cell !important; 4614 | } 4615 | .hidden-lg { 4616 | display: none !important; 4617 | } 4618 | tr.hidden-lg { 4619 | display: none !important; 4620 | } 4621 | th.hidden-lg, 4622 | td.hidden-lg { 4623 | display: none !important; 4624 | } 4625 | } 4626 | 4627 | .visible-print { 4628 | display: none !important; 4629 | } 4630 | 4631 | tr.visible-print { 4632 | display: none !important; 4633 | } 4634 | 4635 | th.visible-print, 4636 | td.visible-print { 4637 | display: none !important; 4638 | } 4639 | 4640 | @media print { 4641 | .visible-print { 4642 | display: block !important; 4643 | } 4644 | tr.visible-print { 4645 | display: table-row !important; 4646 | } 4647 | th.visible-print, 4648 | td.visible-print { 4649 | display: table-cell !important; 4650 | } 4651 | .hidden-print { 4652 | display: none !important; 4653 | } 4654 | tr.hidden-print { 4655 | display: none !important; 4656 | } 4657 | th.hidden-print, 4658 | td.hidden-print { 4659 | display: none !important; 4660 | } 4661 | } --------------------------------------------------------------------------------