From 5653651d1e4a4306efa17bf6e50d0302b8dea99f Mon Sep 17 00:00:00 2001 From: Julian Knauer Date: Sun, 26 Apr 2020 16:11:18 +0200 Subject: [PATCH] initial --- .gitignore | 2 + archetypes/default.md | 6 + config.toml | 53 + content/_index.md | 3 + content/posts/_index.md | 8 + content/posts/can-i-haz-ur-dataz.md | 90 + ...endspacebookplusallaccessredpremium-com.md | 487 ++ content/posts/hack-back-during-cyberwar.md | 18 + ...cking-the-proxmark-v3-easy-w-bus-pirate.md | 41 + ...gineering-of-a-flash-programmer-ezp2010.md | 338 + ...yrc-mc3000-battery-charger-usb-protocol.md | 414 ++ ...unication-protocols-of-embedded-devices.md | 37 + .../there-is-not-enough-cyber-in-the-world.md | 15 + content/posts/welcome-to-the-farm.md | 9 + .../posts/what-if-the-cult-of-dd-is-right.md | 74 + deploy | 10 + layouts/404.html | 103 + public/25.html | 99 + public/404.html | 103 + public/articles/index.html | 1 + public/blog/index.html | 1 + public/categories/brain-fart/index.html | 104 + public/categories/brain-fart/index.xml | 37 + public/categories/ctf/index.html | 100 + public/categories/ctf/index.xml | 27 + public/categories/cyber/index.html | 124 + public/categories/cyber/index.xml | 93 + public/categories/hardware/index.html | 104 + public/categories/hardware/index.xml | 38 + public/categories/index.html | 120 + public/categories/index.xml | 69 + .../categories/reverse-engineering/index.html | 116 + .../categories/reverse-engineering/index.xml | 74 + public/categories/uncategorized/index.html | 108 + public/categories/uncategorized/index.xml | 45 + public/css/bootstrap-responsive.css | 1127 ++++ public/css/bootstrap.css | 5893 +++++++++++++++++ public/css/docs.css | 1 + public/css/fonts/Fixedsys500c.eot | Bin 0 -> 27396 bytes public/css/fonts/Fixedsys500c.otf | Bin 0 -> 55624 bytes public/css/fonts/Fixedsys500c.svg | 835 +++ public/css/fonts/Fixedsys500c.ttf | Bin 0 -> 27216 bytes public/css/fonts/Fixedsys500c.woff | Bin 0 -> 13468 bytes public/css/style.css | 7 + public/docs/index.html | 1 + public/img/8x5overlay.png | Bin 0 -> 197 bytes public/img/dos-grid.png | Bin 0 -> 237 bytes public/img/ega16-palette.png | Bin 0 -> 1902 bytes public/index.html | 224 + public/index.xml | 126 + public/js/README.md | 106 + public/js/application.js | 170 + public/js/bootstrap-386.js | 111 + public/js/bootstrap-affix.js | 117 + public/js/bootstrap-alert.js | 99 + public/js/bootstrap-button.js | 105 + public/js/bootstrap-carousel.js | 207 + public/js/bootstrap-collapse.js | 167 + public/js/bootstrap-dropdown.js | 165 + public/js/bootstrap-modal.js | 247 + public/js/bootstrap-popover.js | 114 + public/js/bootstrap-scrollspy.js | 162 + public/js/bootstrap-tab.js | 144 + public/js/bootstrap-tooltip.js | 361 + public/js/bootstrap-transition.js | 60 + public/js/bootstrap-typeahead.js | 335 + public/js/bootstrap.js | 2386 +++++++ public/js/bootstrap.min.js | 6 + public/js/html5shiv.js | 8 + public/js/jquery.js | 5 + public/posts/can-i-haz-ur-dataz/index.html | 132 + .../index.html | 468 ++ public/posts/index.html | 137 + public/posts/index.xml | 126 + .../index.html | 113 + .../index.html | 348 + .../index.html | 406 ++ .../index.html | 108 + .../index.html | 100 + public/posts/welcome-to-the-farm/index.html | 96 + .../index.html | 147 + public/showcase/index.html | 1 + public/sitemap.xml | 159 + public/tags/ctf/index.html | 100 + public/tags/ctf/index.xml | 27 + public/tags/flasher/index.html | 100 + public/tags/flasher/index.xml | 26 + public/tags/ghidra/index.html | 100 + public/tags/ghidra/index.xml | 26 + public/tags/hacking/index.html | 108 + public/tags/hacking/index.xml | 50 + public/tags/hardware/index.html | 108 + public/tags/hardware/index.xml | 51 + public/tags/index.html | 140 + public/tags/index.xml | 114 + public/tags/index/index.html | 100 + public/tags/index/index.xml | 23 + public/tags/jtag/index.html | 100 + public/tags/jtag/index.xml | 27 + public/tags/programmer/index.html | 100 + public/tags/programmer/index.xml | 26 + public/tags/python/index.html | 100 + public/tags/python/index.xml | 27 + public/tags/reverse-engineering/index.html | 104 + public/tags/reverse-engineering/index.xml | 39 + public/tags/rom/index.html | 100 + public/tags/rom/index.xml | 26 + themes/hugo.386 | 1 + 108 files changed, 20424 insertions(+) create mode 100644 .gitignore create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/_index.md create mode 100644 content/posts/_index.md create mode 100644 content/posts/can-i-haz-ur-dataz.md create mode 100644 content/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com.md create mode 100644 content/posts/hack-back-during-cyberwar.md create mode 100644 content/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate.md create mode 100644 content/posts/reverse-engineering-of-a-flash-programmer-ezp2010.md create mode 100644 content/posts/reverse-engineering-of-the-skyrc-mc3000-battery-charger-usb-protocol.md create mode 100644 content/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices.md create mode 100644 content/posts/there-is-not-enough-cyber-in-the-world.md create mode 100644 content/posts/welcome-to-the-farm.md create mode 100644 content/posts/what-if-the-cult-of-dd-is-right.md create mode 100755 deploy create mode 100644 layouts/404.html create mode 100644 public/25.html create mode 100644 public/404.html create mode 100644 public/articles/index.html create mode 100644 public/blog/index.html create mode 100644 public/categories/brain-fart/index.html create mode 100644 public/categories/brain-fart/index.xml create mode 100644 public/categories/ctf/index.html create mode 100644 public/categories/ctf/index.xml create mode 100644 public/categories/cyber/index.html create mode 100644 public/categories/cyber/index.xml create mode 100644 public/categories/hardware/index.html create mode 100644 public/categories/hardware/index.xml create mode 100644 public/categories/index.html create mode 100644 public/categories/index.xml create mode 100644 public/categories/reverse-engineering/index.html create mode 100644 public/categories/reverse-engineering/index.xml create mode 100644 public/categories/uncategorized/index.html create mode 100644 public/categories/uncategorized/index.xml create mode 100644 public/css/bootstrap-responsive.css create mode 100644 public/css/bootstrap.css create mode 100644 public/css/docs.css create mode 100644 public/css/fonts/Fixedsys500c.eot create mode 100644 public/css/fonts/Fixedsys500c.otf create mode 100644 public/css/fonts/Fixedsys500c.svg create mode 100644 public/css/fonts/Fixedsys500c.ttf create mode 100644 public/css/fonts/Fixedsys500c.woff create mode 100644 public/css/style.css create mode 100644 public/docs/index.html create mode 100644 public/img/8x5overlay.png create mode 100644 public/img/dos-grid.png create mode 100644 public/img/ega16-palette.png create mode 100644 public/index.html create mode 100644 public/index.xml create mode 100644 public/js/README.md create mode 100644 public/js/application.js create mode 100644 public/js/bootstrap-386.js create mode 100644 public/js/bootstrap-affix.js create mode 100644 public/js/bootstrap-alert.js create mode 100644 public/js/bootstrap-button.js create mode 100644 public/js/bootstrap-carousel.js create mode 100644 public/js/bootstrap-collapse.js create mode 100644 public/js/bootstrap-dropdown.js create mode 100644 public/js/bootstrap-modal.js create mode 100644 public/js/bootstrap-popover.js create mode 100644 public/js/bootstrap-scrollspy.js create mode 100644 public/js/bootstrap-tab.js create mode 100644 public/js/bootstrap-tooltip.js create mode 100644 public/js/bootstrap-transition.js create mode 100644 public/js/bootstrap-typeahead.js create mode 100644 public/js/bootstrap.js create mode 100644 public/js/bootstrap.min.js create mode 100644 public/js/html5shiv.js create mode 100644 public/js/jquery.js create mode 100644 public/posts/can-i-haz-ur-dataz/index.html create mode 100644 public/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com/index.html create mode 100644 public/posts/index.html create mode 100644 public/posts/index.xml create mode 100644 public/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate/index.html create mode 100644 public/posts/reverse-engineering-of-a-flash-programmer-ezp2010/index.html create mode 100644 public/posts/reverse-engineering-of-the-skyrc-mc3000-battery-charger-usb-protocol/index.html create mode 100644 public/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices/index.html create mode 100644 public/posts/there-is-not-enough-cyber-in-the-world/index.html create mode 100644 public/posts/welcome-to-the-farm/index.html create mode 100644 public/posts/what-if-the-cult-of-dd-is-right/index.html create mode 100644 public/showcase/index.html create mode 100644 public/sitemap.xml create mode 100644 public/tags/ctf/index.html create mode 100644 public/tags/ctf/index.xml create mode 100644 public/tags/flasher/index.html create mode 100644 public/tags/flasher/index.xml create mode 100644 public/tags/ghidra/index.html create mode 100644 public/tags/ghidra/index.xml create mode 100644 public/tags/hacking/index.html create mode 100644 public/tags/hacking/index.xml create mode 100644 public/tags/hardware/index.html create mode 100644 public/tags/hardware/index.xml create mode 100644 public/tags/index.html create mode 100644 public/tags/index.xml create mode 100644 public/tags/index/index.html create mode 100644 public/tags/index/index.xml create mode 100644 public/tags/jtag/index.html create mode 100644 public/tags/jtag/index.xml create mode 100644 public/tags/programmer/index.html create mode 100644 public/tags/programmer/index.xml create mode 100644 public/tags/python/index.html create mode 100644 public/tags/python/index.xml create mode 100644 public/tags/reverse-engineering/index.html create mode 100644 public/tags/reverse-engineering/index.xml create mode 100644 public/tags/rom/index.html create mode 100644 public/tags/rom/index.xml create mode 160000 themes/hugo.386 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c730821 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +ssh_id_goatpr0n.farm +ssh_id_goatpr0n.farm.pub diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..aabcb17 --- /dev/null +++ b/config.toml @@ -0,0 +1,53 @@ +baseURL = "https://goatpr0n.farm/" +languageCode = "en" +title = "GoatPr0n.farm" +theme = "hugo.386" +preserveTaxonomyNames = true + +[params] + mainpagetitle = "GoatPr0n.farm" + mainpagesubtitle = "A farm w/o animals" + mainpagedesc = "" + copyrightname = "Julian Knauer" + + loadfastload = false + loadspeedfactor = 1.0 + loadonepass = false + +[menu] + [[menu.main]] + identifier = "posts" + name = "All posts" + url = "/posts/" + weight = 20 + +[taxonomies] +category = "categories" +tag = "tags" + +[privacy] + + [privacy.youtube] + disabled = false + privacyEnhanced = true + + [privacy.vimeo] + disabled = false + simple = true + + [privacy.twitter] + disabled = false + enableDNT = true + simple = true + + [privacy.instagram] + disabled = false + simple = true + +[services] + + [services.instagram] + disableInlineCSS = true + + [services.twitter] + disableInlineCSS = true diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..8cc9c35 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,3 @@ ++++ +author = "Julian Knauer" ++++ diff --git a/content/posts/_index.md b/content/posts/_index.md new file mode 100644 index 0000000..f3c74fa --- /dev/null +++ b/content/posts/_index.md @@ -0,0 +1,8 @@ ++++ +aliases = ["posts","articles","blog","showcase","docs"] +title = "Blog" +author = "Julian Knauer" +tags = ["index"] ++++ + +# All posts diff --git a/content/posts/can-i-haz-ur-dataz.md b/content/posts/can-i-haz-ur-dataz.md new file mode 100644 index 0000000..d36ec7b --- /dev/null +++ b/content/posts/can-i-haz-ur-dataz.md @@ -0,0 +1,90 @@ +--- +title: Can I haz ur dataz +categories: + - cyber + - brain fart +tags: +date: 2019-02-01 09:55:07 +--- + +Remote data acquisitions over ssh +--------------------------------- + +To get your data trough `ssh` to your local storage, you simply use pipes. It does not matter if you use `cat`, `dd` or any other command line tool which outputs the data on standard output (_stdout_). + +### Using `cat` + +When using cat the there is no need to add any additional parameters in your command chain. A simple `cat ` will suffice. + +`Cat` does not have any progress information during read operations. + +### Using `dd` + +The program `dd` requires more user interaction during the setup phase. To use `dd` you have to give the _if=_ argument. The use of different blocksizes (_bs_) will not have that much of an impact on the speed. Feel free to have a look at this [this](https://goatpr0n.farm/2019/01/23/what-if-the-cult-of-dd-is-right/). + +![](https://dl.goatpr0n.events/$/VAN9L) + +_ο»ΏWow. So scientific! Much CLI._ + +Examples +-------- + +A simple example with no output to the terminal except of errors. The output to _stderr_ is not suppressed. + +``` bash +$ # Using cat to copy /dev/sda +$ ssh 'cat /dev/sda' > sda.raw +``` + +If you want to suppress errors, use: + +``` bash +$ # Using cat to copy /dev/sda +$ ssh 'cat /dev/sda 2>/dev/null' > sda.raw +``` + +The next example will demonstrate the use of `dd`. + +``` bash +$ # Using dd to copy /dev/sda +$ ssh 'dd if=/dev/sda' > sda.raw +``` + +Of course you can suppress errors as well. + +Speeding up the data acquisition and minor tweaks +------------------------------------------------- + +With the basics covered, we can begin optimizing our data transfer. In the first step we speed up the transfer with `gzip`. + +The argument _-c_ will write the compressed data to _stdout_ which will be piped to your local system. + +Of course you can use this with `cat` as well. + +``` bash +$ ssh 'dd if=/dev/sda | gzip -c' | gunzip > sda.raw +``` + +To add some progress information, you have two options with `dd`. + +``` bash +$ # dd status +$ ssh 'dd if=/dev/sda status=progress | gzip -c' \ +> | gunzip > sda.raw +``` + +The _status_ argument writes the output to _stderr_ and will not end up in your local copy. + +``` bash +$ # dd through pv +$ ssh 'dd if=/dev/sda | gzip -c' \ +> | pv | gunzip > sda.raw +``` + +`Pv` needs to be installed separatly. Check your packet manager. 0r teh Googlez! + +KTHXBYE. + +#### Update #01 + +Fixed a problem within the examples. Had a pipe too much. #Fail diff --git a/content/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com.md b/content/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com.md new file mode 100644 index 0000000..818f499 --- /dev/null +++ b/content/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com.md @@ -0,0 +1,487 @@ +--- +title: Google CTF 2019 - FriendSpaceBookPlusAllAccessRedPremium.com +tags: + - CTF + - hacking + - python +categories: + - CTF + - cyber + - reverse engineering +date: 2019-07-24 12:19:47 +--- + +_#MemeFreeEdition_ + + +The Challenge +------------- + +You are provided a zip file containing two files. + +* `program` +* `vm.py` + +The file `program` contains instructions encoded as emojis for a virtual machine called `vm.py`. At the bottom of `vm.py` I found a list, or lets call it a translation table, with emojis and their function name counter part. + +``` python + OPERATIONS = { + '🍑': add, + '🀑': clone, + 'πŸ“': divide, + '😲': if_zero, + 'πŸ˜„': if_not_zero, + 'πŸ€': jump_to, + 'πŸš›': load, + 'πŸ“¬': modulo, + '⭐': multiply, + '🍿': pop, + 'πŸ“€': pop_out, + '🎀': print_top, + 'πŸ“₯': push, + 'πŸ”ͺ': sub, + 'πŸŒ“': xor, + 'β›°': jump_top, + 'βŒ›': exit + } +``` + +To execute `program` with `vm.py` I ran: + +``` bash +$ python vm.py program +http://^C +``` + +The program started printing letters to the terminal, but became horribly slow, until I decided to terminate the execution. So the challenge seemed to be, to convince `program` to give me its secret. With the first characters looking like an URL, the flag might be hidden within the URL or on the website the URL pointing to. + +In which way I had to convince the program to reveal its secrets to me, I had yet to decide. One way could be to optimize the VM code, the other might be optimizing the code of `program`. + +The Solution(s) +--------------- + +### Solving the Challenge: Trail and Error + +The python script `vm.py` defines a class named `VM` with the following constructor: + +``` python +def **init**(self, rom): + self.rom = rom + self.accumulator1 = 0 + self.accumulator2 = 0 + self.instruction_pointer = 1 + self.stack = \[\] +``` + +The VM stores the program code in the variable `self.rom`. It is filled on creation by reading the source file (`program`) given as argument. The source is stored as a list (returned by `.read().split()` of a `file` object). Two accumulator registers, `self.accumulator1` and `self.accumulator2`, are initialized with '0'. A third register is the `self.instruction_pointer`, it will the the VM which operation in `self.rom` will be executed next. It starts at '1' and not at '0'. The list containing the rom is initialized with an empty string (`['']`) and then extended by the program code. The last variable is `self.stack` which is empty list. + +Lists in Python can be used as a stack like structure. With `list.append()` (`push`) and `list.pop()` (`pop`) the behavior of these data structures is identical. + +I decided to translate the emoji code of `program` into a more human readable version as a beginning. A dictionary of all operations is at the bottom of the code. + +The first version of my script did not translate all emojis in the code. I started digging around further in `vm.py` to find some more emojis I had to consider. As a result a almost completely emoji free version of the program could be generated. The "final" version of my script [emoji2mnemonic.py](https://git.goatpr0n.de/snippets/4) had the following dictionary to translate `program`. + +``` python + OPERATIONS = { + '🍑': 'add', + '🀑': 'clone', + 'πŸ“': 'divide', + '😲': 'if_zero', + 'πŸ˜„': 'if_not_zero', + 'πŸ€': 'jump_to', + 'πŸš›': 'load', + 'πŸ“¬': 'modulo', + '⭐': 'multiply', + '🍿': 'pop', + 'πŸ“€': 'pop_out', + '🎀': 'print_top', + 'πŸ“₯': 'push', + 'πŸ”ͺ': 'sub', + 'πŸŒ“': 'xor', + 'β›°': 'jump_top', + 'βŒ›': 'exit', + 'βœ‹': ';', + 'πŸ₯‡': '[acc=1]', + 'πŸ₯ˆ': '[acc=2]', + 'πŸ’°': '@', + '😐': 'end_if', + 'πŸ–‹': 'func_', + 'πŸ€': 'BRK<', + 'β›°': 'BRK!', + + 'πŸ’ πŸ”ΆπŸŽŒπŸš©πŸ': 'Label01', + 'πŸ’ πŸπŸŽŒπŸ”ΆπŸš©': 'Label02', + 'πŸš©πŸ’ πŸŽŒπŸ”ΆπŸ': 'Label03', + 'πŸπŸš©πŸŽŒπŸ’ πŸ”Ά': 'Label04', + 'πŸ”ΆπŸŽŒπŸš©πŸ’ πŸ': 'Label05', + 'πŸŽŒπŸπŸš©πŸ”ΆπŸ’ ': 'Label06', + 'πŸ”ΆπŸš©πŸ’ πŸπŸŽŒ': 'Label07', + 'πŸš©πŸ”ΆπŸπŸŽŒπŸ’ ': 'Label08', + 'πŸŽŒπŸš©πŸ’ πŸ”ΆπŸ': 'Label09', + 'πŸŽŒπŸπŸ’ πŸ”ΆπŸš©': 'Label10', + 'πŸπŸ’ πŸ”ΆπŸš©πŸŽŒ': 'Label11', + 'πŸ’ πŸŽŒπŸπŸš©πŸ”Ά': 'Label12', + + '0️⃣ ': '0', + '1️⃣ ': '1', + '2️⃣ ': '2', + '3️⃣ ': '3', + '4️⃣ ': '4', + '5️⃣ ': '5', + '6️⃣ ': '6', + '7️⃣ ': '7', + '8️⃣ ': '8', + '9️⃣ ': '9', + } +``` + +The language for `vm.py` also knows labels for the `jump_to` operations and a symbol to distinguish between the accumulators to use. + +A look at the translated source was a little bit more helpful. The example below shows a cleaned up, but shortened version of my interpretation of the syntax after translation. + +``` +load \[acc=1\] 0; +push \[acc=1\] +load \[acc=1\] 17488; +push \[acc=1\] +load \[acc=1\] 16758; +push \[acc=1\] +load \[acc=1\] 16599; +push \[acc=1\] +load \[acc=1\] 16285; +... +push \[acc=1\] +load \[acc=2\] 1; + +func Label01 +pop \[acc=1\] +push \[acc=2\] +push \[acc=1\] +load \[acc=1\] 389; +push \[acc=1\] +push \[acc=2\] +jump_to $\[ Label04 +xor +print_top +load \[acc=1\] 1; +push \[acc=1\] +add +pop \[acc=2\] +if\_not\_zero +jump_to $\[ Label01 +end_if +... +``` + +To find out what each operation does, I looked at the source code of `vm.py`. The `load` instruction reads as follows: "Load accumulator1 with the immediate value 0". With push the value stored in the accumulator1 is pushed to the stack. Other operations take the top two items from the stack to process them (addition, subtraction, multiplication, division, modulo, xor, ...). + +By only looking at the code I had no clue what was going on, but with all the jumps, I though about visualizing the program flow. I used my translated program and formatted the code to be a compatible [Graphviz](https://www.graphviz.org/) [dot file](https://git.goatpr0n.de/snippets/5). The resulting graph was again a little bit more of an help. + +![](https://goatpr0n.farm/wp-content/uploads/2019/07/program.png) + +Call graph of program + +The graph shows a bunch of instructions to fill the stack of the VM. The right side has some more "complicated" instructions with modulo, division, xor, .... + +When I see xor instructions, I often think of encryption and with multiplications and modulo instructions right next to it this though hardens. + +But starring at the graph and the translated code did not help. + +### Solving the Challenge: Finally + +It took me a while of starring until I realized, that I should try something else. + +My next approach to solve this challenge was to write a trace log of the program execution step by step. + +In each instruction function in `vm.py` I added some additional code to store the current status of the registers `self.instruction_pointer`, `self.accumulator1`, `self.accumulator2` and translated each operation into its human readable counter part. I also added (if possible) the parameters and the result of calculations. + +``` +00000002 \[acc1=00000000\]\[acc2=00000000\]: load("acc1", 0) +00000006 \[acc1=00000000\]\[acc2=00000000\]: push(acc1) = 0 +00000008 \[acc1=00017488\]\[acc2=00000000\]: load("acc1", 17488) +00000016 \[acc1=00017488\]\[acc2=00000000\]: push(acc1) = 17488 +00000018 \[acc1=00016758\]\[acc2=00000000\]: load("acc1", 16758) +00000026 \[acc1=00016758\]\[acc2=00000000\]: push(acc1) = 16758 +00000028 \[acc1=00016599\]\[acc2=00000000\]: load("acc1", 16599) +00000036 \[acc1=00016599\]\[acc2=00000000\]: push(acc1) = 16599 +00000038 \[acc1=00016285\]\[acc2=00000000\]: load("acc1", 16285) +... +00000386 \[acc1=00000389\]\[acc2=00000001\]: push(acc2) = 1 +00000388 \[acc1=00000389\]\[acc2=00000001\]: jump_to(Label04) @1040 +00001041 \[acc1=00000002\]\[acc2=00000001\]: load("acc1", 2) +00001045 \[acc1=00000002\]\[acc2=00000001\]: push(acc1) = 2 +00001048 \[acc1=00000002\]\[acc2=00000001\]: jump_to(Label08) @1098 +00001099 \[acc1=00000002\]\[acc2=00000001\]: clone() = 2 +00001100 \[acc1=00000002\]\[acc2=00000001\]: load("acc1", 2) +00001104 \[acc1=00000002\]\[acc2=00000001\]: push(acc1) = 2 +00001107 \[acc1=00000002\]\[acc2=00000001\]: sub(b=2, a=2) = 0 +00001108 \[acc1=00000002\]\[acc2=00000001\]: if_zero() = 0 +00001109 \[acc1=00000002\]\[acc2=00000001\]: pop_out() // 0 +00001110 \[acc1=00000001\]\[acc2=00000001\]: load("acc1", 1) +00001114 \[acc1=00000001\]\[acc2=00000001\]: push(acc1) = 1 +00001115 \[acc1=00000001\]\[acc2=00000001\]: end_if = πŸ€ +00001115 \[acc1=00000001\]\[acc2=00000001\]: …cont… if_zero() +00001116 \[acc1=00000001\]\[acc2=00000001\]: jump_to(Label05) @1050 +00001051 \[acc1=00000001\]\[acc2=00000001\]: if_zero() = 1 +00001055 \[acc1=00000001\]\[acc2=00000001\]: end_if +00001057 \[acc1=00000001\]\[acc2=00000001\]: pop_out() // 1 +... +``` + +There are still a few emojis left, but I did not care about them. With the trace log I could observe the program being executed and calculating the URL, or at least see the trace part where the `print_top` of the characters happens. + +``` +00001076 \[acc1=00000002\]\[acc2=00000001\]: if_zero() = 0 +00001077 \[acc1=00000002\]\[acc2=00000001\]: pop_out() // 0 +00001078 \[acc1=00000002\]\[acc2=00000389\]: pop(acc2) = 389 +00001080 \[acc1=00000002\]\[acc2=00000389\]: push(acc1) = 2 +00001082 \[acc1=00000002\]\[acc2=00000389\]: push(acc2) = 389 +00001083 \[acc1=00000002\]\[acc2=00000389\]: end_if = β›° +00001083 \[acc1=00000002\]\[acc2=00000389\]: …cont… if_zero() +**00001084 \[acc1=00000002\]\[acc2=00000389\]: jump_top() @389 +00000390 \[acc1=00000002\]\[acc2=00000389\]: xor(b=106, a=2) = 104** +00000391 \[acc1=00000002\]\[acc2=00000389\]: print_top("h") +00000392 \[acc1=00000001\]\[acc2=00000389\]: load("acc1", 1) +00000396 \[acc1=00000001\]\[acc2=00000389\]: push(acc1) = 1 +00000398 \[acc1=00000001\]\[acc2=00000389\]: add(a=1, b=1) = 2 +00000399 \[acc1=00000001\]\[acc2=00000002\]: pop(acc2) = 2 +00000401 \[acc1=00000001\]\[acc2=00000002\]: if\_not\_zero() = 119 +00000401 \[acc1=00000001\]\[acc2=00000002\]: end_if = πŸ€ +00000401 \[acc1=00000001\]\[acc2=00000002\]: …cont… if_zero() +00000402 \[acc1=00000001\]\[acc2=00000002\]: jump_to(Label01) @371 +``` + +The `print_top` instruction takes the item from the top of the stack and prints it out. The stack only stores numbers, so the number is converted into a character before output. Right before the `print_top` is a `xor`. + +The `xor` takes the two top items from the stack to get the result of '104' which is the letter "h". The number '106' was pushed to the stack in the beginning, but where does the '2' come from? This took be a while to find out. But only after letting the program run bit longer. + +``` bash +$ grep -A1 xor trace.log +00000390 \[acc1=00000002\]\[acc2=00000389\]: xor(b=106, a=2) = 104 +00000391 \[acc1=00000002\]\[acc2=00000389\]: print_top("h") +00000390 \[acc1=00000003\]\[acc2=00000389\]: xor(b=119, a=3) = 116 +00000391 \[acc1=00000003\]\[acc2=00000389\]: print_top("t") +00000390 \[acc1=00000005\]\[acc2=00000389\]: xor(b=113, a=5) = 116 +00000391 \[acc1=00000005\]\[acc2=00000389\]: print_top("t") +00000390 \[acc1=00000007\]\[acc2=00000389\]: xor(b=119, a=7) = 112 +00000391 \[acc1=00000007\]\[acc2=00000389\]: print_top("p") +00000390 \[acc1=00000011\]\[acc2=00000389\]: xor(b=49, a=11) = 58 +00000391 \[acc1=00000011\]\[acc2=00000389\]: print_top(":") +00000390 \[acc1=00000101\]\[acc2=00000389\]: xor(b=74, a=101) = 47 +00000391 \[acc1=00000101\]\[acc2=00000389\]: print_top("/") +00000390 \[acc1=00000131\]\[acc2=00000389\]: xor(b=172, a=131) = 47 +00000391 \[acc1=00000131\]\[acc2=00000389\]: print_top("/") +00000390 \[acc1=00000151\]\[acc2=00000389\]: xor(b=242, a=151) = 101 +00000391 \[acc1=00000151\]\[acc2=00000389\]: print_top("e") +00000390 \[acc1=00000181\]\[acc2=00000389\]: xor(b=216, a=181) = 109 +00000391 \[acc1=00000181\]\[acc2=00000389\]: print_top("m") +00000390 \[acc1=00000191\]\[acc2=00000389\]: xor(b=208, a=191) = 111 +00000391 \[acc1=00000191\]\[acc2=00000389\]: print_top("o") +00000390 \[acc1=00000313\]\[acc2=00000389\]: xor(b=339, a=313) = 106 +00000391 \[acc1=00000313\]\[acc2=00000389\]: print_top("j") +00000390 \[acc1=00000353\]\[acc2=00000389\]: xor(b=264, a=353) = 105 +00000391 \[acc1=00000353\]\[acc2=00000389\]: print_top("i") +00000390 \[acc1=00000373\]\[acc2=00000389\]: xor(b=344, a=373) = 45 +00000391 \[acc1=00000373\]\[acc2=00000389\]: print_top("-") +00000390 \[acc1=00000383\]\[acc2=00000389\]: xor(b=267, a=383) = 116 +00000391 \[acc1=00000383\]\[acc2=00000389\]: print_top("t") +``` + +Again after a long round of starring at the output, it hit me. The argument `a` is always a prime number, but these are special primes. All primes are palindromes. The argument `b` is the value from the stack. + +In my next step I wrote a script to calculate the palindrome primes and xor them with the values from the stack. I also discarded the idea to optimize the one of the components to solve this challenge. + +As my final solution does not use the next code blocks anymore I will only highlight some ideas and problems I encountered. + +I found a algorithm to calculate palindrome prime numbers on [Stackoverflow](https://stackoverflow.com/questions/22699625/palindromic-prime-number-in-python) and modified it to my needs. + +``` python +def gen\_pal\_prime(a, b): + for i in range(a, b): + y = True + if str(i) == str(i)\[::-1\]: + if(i > 2): + for a in range(2, i): + if i % a == 0: + y = False + break + if y: + yield i + +palindromes = \[_ for _ in gen\_pal\_prime(0, 999999)\] +``` + +The problem with this was, depending on the second parameter it takes a long time to calculate all primes and the other problem was, it did not work. Or it stopped working after the 39th character. + +The algorithm failed to calculate the correct xor value for '93766'. As the string read until it broke "http://emoji-t0anaxnr3nacpt4na.web.ctfco" my guess was, that the next character has to be a 'm' (ctfcompetition). + +Brute forcing the prime number for '93766' returned '93739'. What left me puzzled again. The previous prime number was '17471'. So I split up the whole blocks of pushing numbers to the stack into three blocks. + +``` ++-----------+-----------+-----------+ +| Block 1 | Block 2 | Block3 | ++-----------+-----------+-----------+ +| 17488 | 98426 | 101141058 | +| 16758 | 97850 | 101060206 | +| 16599 | 97604 | 101030055 | +| 16285 | 97280 | 100998966 | +| 16094 | 96815 | 100887990 | +| 15505 | 96443 | 100767085 | +| 15417 | 96354 | 100707036 | +| 14832 | 95934 | 100656111 | +| 14450 | 94865 | 100404094 | +| 13893 | 94952 | 100160922 | +| 13926 | 94669 | 100131019 | +| 13437 | 94440 | 100111100 | +| 12833 | 93969 | 100059926 | +| 12741 | 93766 | 100049982 | +| 12533 | 99 | 100030045 | +| 11504 | | 9989997 | +| 11342 | | 9981858 | +| 10503 | | 9980815 | +| 10550 | | 9978842 | +| 10319 | | 9965794 | +| 975 | | 9957564 | +| 1007 | | 9938304 | +| 892 | | 9935427 | +| 893 | | 9932289 | +| 660 | | 9931494 | +| 743 | | 9927388 | +| 267 | | 9926376 | +| 344 | | 9923213 | +| 264 | | 9921394 | +| 339 | | 9919154 | +| 208 | | 9918082 | +| 216 | | 9916239 | +| 242 | | 765 | +| 172 | | | +| 74 | | | +| 49 | | | +| 119 | | | +| 113 | | | +| 119 | | | +| 106 | | | +| 1 | | | ++-----------+-----------+-----------+ +``` + +The purpose of the last number of each block opened up to me, when I finally found the correct prime for the third block. To decode the correct URL I ignored these numbers ('1', '99', '765') and started building special cases into my decoding function. + +The code below almost worked fine. Each block would be separately being decoded, after a certain number of iterations (`i`). I tried to make some sense of these numbers at the bottom of each block. + +``` python +print('Palindrome Primes #1') +palindromes1 = \[_ for _ in gen\_pal\_prime(1, 18000)\] +palindromes1.insert(0, 2) # manually add the number 2. +print('Palindrome Primes #2') +palindromes2 = \[_ for _ in gen\_pal\_prime(93766 - 99, 999999)\] +print('Palindrome Primes #3') +palindromes3 = \[_ for _ in gen\_pal\_prime(9916239 - 765, 19916239)\] + +palindromes = palindromes1 +stack.reverse() +for i, val in enumerate(stack): + if i == 40: + mode = 'stack2' + palindromes = palindromes2 + if mode == 'stack2': + i -= 40 + if i == 14: + mode = 'stack3' + palindromes = palindromes3 + if mode == 'stack3': + i -= 13 + c = val ^ palindromes\[i\] + print(f'{i:<8d}| {val:8d} ^ {palindromes\[i\]:<8} = {c:3d}', chr(c)) +``` + +While my program ran, I encountered yet again a problem but this time during decoding the third block of numbers. The calculation of my palindrome primes took quite some time and did not result in printable/human readable characters. + +Talking to a colleague of mine, he came up with the idea to look up lists of precalculated prime numbers and I found a website which provides lists of the first 2 billion prime numbers as downloadable files. + +The site [http://www.primos.mat.br/2T_en.html](http://www.primos.mat.br/2T_en.html) provides individual compressed text files, with 10 million primes each file. For this challenge the prime numbers from 2 to 179424673 should suffice. + +After decompressing the file I had to convert the file from columns separated by tabs to a easier to read format for my Python programs. To remove the columns and only have one prime per line I used the program `tr`. + +``` bash +$ tr '\\t' '\\n' < 2T_part1.txt > primes.txt +``` + +I wrote a function to read this file to only return the palindrome primes as a list. The `str(_.rstrip()) == str(_.rstrip())[::-1]` part of the condition will check if the number is a palindrome, by comparing the number as string against it reversed counterpart. + +``` python +def load_primes(filename): + with open(filename, 'rt') as handle: + return \[int(_) for _ in handle.readlines() + if str(_.rstrip()) == str(_.rstrip())\[::-1\]\] +``` + +With this list of palindrome primes I wrote a short brute force solution to find the correct prime number to decode the third block, or to be more precise, where in this list of primes can I find it. + +As a constraint I iterated through all primes until the prime `p` from `primes` is greater than the number ('9916239') I am looking for. Then I know, that my prime had to be within the first 765 primes. + +``` python +>>\> primes = solver.load_primes('primes.txt') +>>\> for i, p in enumerate(primes): +... if p > 9916239: +... print(i) +... break +... +765 +``` + +At this point the 3 numbers I could not figure out until now, now made sense. These are the n-th number prime from a list of consecutive palindrome primes. The first block begins at the the 1st prime from my list of primes, the second block begins at the 99th prime number and the third block at the 765th prime number from my list. + +And now it also makes sense, why `program` becomes slower with each iteration. The code block (see the call graph above) calculates palindrome prime numbers, which becomes more and more of a problem regarding performance when it hits greater numbers. + +How does my final solution look like? I wrote a script called `solver.py`, put all numbers from all three blocks into a single list and wrote my decryption function. + +``` python +#! /usr/bin/env python +#\-\*\- coding: utf-8 -*- + +stack = \[101141058, 101060206, 101030055, 100998966, 100887990, + 100767085, 100707036, 100656111, 100404094, 100160922, + 100131019, 100111100, 100059926, 100049982, 100030045, + 9989997, 9981858, 9980815, 9978842, 9965794, 9957564, + 9938304, 9935427, 9932289, 9931494, 9927388, 9926376, + 9923213, 9921394, 9919154, 9918082, 9916239, # Block 3 + 98426, 97850, 97604, 97280, 96815, 96443, 96354, 95934, + 94865, 94952, 94669, 94440, 93969, 93766, # Block 2 + 17488, 16758, 16599, 16285, 16094, 15505, 15417, 14832, + 14450, 13893, 13926, 13437, 12833, 12741, 12533, 11504, + 11342, 10503, 10550, 10319, 975, 1007, 892, 893, 660, + 743, 267, 344, 264, 339, 208, 216, 242, 172, 74, 49, 119, + 113, 119, 106\] # Block 1 + + +def load_primes(filename): + with open(filename, 'rt') as handle: + return \[int(_) for _ in handle.readlines() + if str(_.rstrip()) == str(_.rstrip())\[::-1\]\] + + +if \_\_name\_\_ == '\_\_main\_\_': + palindromes = load_primes('primes.txt') + stack.reverse() + offset = 0 + for i, val in enumerate(stack): + if i == 40: + offset = 98 - 40 + if i == 54: + offset = 764 - 54 + c = val ^ palindromes\[i + offset\] + print(chr(c), end='') + print() +``` + +Running this script will produce the URL "`http://emoji-t0anaxnr3nacpt4na.web.ctfcompetition.com/humans_and_cauliflowers_network/`". Visiting this URL gives a choice for three sub pages of different people. The flag is stored in the personal page of Amber within a picture. The flag reads "`CTF{Peace_from_Cauli!}`". + +Lessons learned +--------------- + +Doing CTFs sometimes require you to think out of the box and/or ignore the first possible solutions which might seem to be the obvious ones, but might lead you nowhere or are just there to keep you side tracked. + +This challenge first got me thinking about modifying and changing the behavior of the provided files `program` and `vm.py`. While working through the challenge, which kept me busy for quite some time, I found a different solution. + +The previous tries to solve this challenge were not for nothing, especially the addition of my trace log addition, which finally helped me understanding the problem and getting my on the right track to the solution. diff --git a/content/posts/hack-back-during-cyberwar.md b/content/posts/hack-back-during-cyberwar.md new file mode 100644 index 0000000..5954167 --- /dev/null +++ b/content/posts/hack-back-during-cyberwar.md @@ -0,0 +1,18 @@ +--- +title: 'Hack back during #cyberwar' +url: 25.html +id: 25 +categories: + - cyber + - brain fart +date: 2019-02-05 18:45:08 +tags: +--- + +According this [article](https://www.golem.de/news/digitaler-gegenschlag-mehrheit-befuerwortet-hackbacks-im-cyberkrieg-1902-139338.html) people want us to hack back, and the government is like: + +![](https://dl.goatpr0n.events/$/4vfbw) + +The GIF is probably copyrighted material by the The Fine Brothers. Plz Don't sue me. I no make cyber moneyz with this blog + +KTHXBYE. diff --git a/content/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate.md b/content/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate.md new file mode 100644 index 0000000..c37f747 --- /dev/null +++ b/content/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate.md @@ -0,0 +1,41 @@ +--- +title: Initial flashing/debricking the Proxmark V3 EASY (w/ Bus Pirate) +tags: + - hacking + - hardware + - jtag +categories: + - cyber + - hardware + - reverse engineering +date: 2019-09-25 15:22:58 +--- + +TL;DR; Short the ERASE pin with VDDCORE, if ERASE == PIN\_55 && VDDCORE == PIN\_54 + +According to complains in the internet, users report bricking their Proxmark3 EASY, when they try to flash the latest firmware with the 'flasher' software tool. + +Sometimes flashing process of firmware can go wrong, but it can often be recovered with JTAG programmers, or similar programmers. + +I will not about setting up the environment to build, and flash the firmware, but I will tell you what you might be missing out and why it might be not working. + +If you do not know where to start with flashing your Proxmark3, than have a look [here](https://github.com/Proxmark/proxmark3/wiki/flashing), [here](https://github.com/Proxmark/proxmark3/wiki/Debricking-Proxmark3-with-buspirate), [here](https://github.com/Proxmark/proxmark3/wiki/De-Bricking-Segger) or [here](https://joanbono.github.io/PoC/Flashing_Proxmark3.html). The first link describes the standard way of upgrading your firmware, which can fail, if you are unlucky. The other three links describe ways to recover your Proxmark3. + +Why can upgrading the firmware fail? There are quite some reasons it can go wrong. + +* bad firmware image +* wrong parameters +* power loss +* chip security measurements + +With the Proxmark3 EASY it seems, that some devices have the _Security Bit_ of the AT91SAM7S512 processor set. The [datasheet](http://ww1.microchip.com/downloads/en/DeviceDoc/doc6175.pdf) (see page 113, paragraph 19.2.4.5) says: "The goal of the security bit is to prevent external access to the internal bus system. \[...\] JTAG, Fast Flash Programming and Flash Serial Test Interface features are disabled. Once set,this bit can be reset only by an external hardware ERASE request to the chip. \[...\]". + +To unlock the chip again we can find interesting information in [this document](http://www.equinox-tech.com/downloads/equinox/ApplicationNotes/AN122%20Atmel%20AT91SAM7%20ISP%20Programming_V1-13_250110.pdf) on page 20 in paragraph 2.5. Which describes the unlocking the chip by applying _Vcc_ to the _ERASE_ pin. Applying voltage to the pin will wipe the security bit, but also all contents of the flash! + +Unfortunately the ERASE pin, which is pin number 55 on the AT91SAM7S512, has no connection. The first idea was to solder a jumper wire to _Vcc_. On second guess and looking at the datasheets again, reveals pin 54 is _VDDCORE_, which applies 1.65V to 1.95V (1.8V typical) to the CPU for operation. + +To erase and reset the Proxmark, I shortened pin 54 and pin 55 with the tip of a multimeter, applied power via USB to the Proxmark3. After >300ms the flash and security bit is erased and the device can be powered off. + +The JTAG interface is now enabled again. Next I flashed the bootloader, and the fullimage using the Bus Pirate v4 using as described in one of the first links mentioned above. + +#hackinghackertools diff --git a/content/posts/reverse-engineering-of-a-flash-programmer-ezp2010.md b/content/posts/reverse-engineering-of-a-flash-programmer-ezp2010.md new file mode 100644 index 0000000..dc4706c --- /dev/null +++ b/content/posts/reverse-engineering-of-a-flash-programmer-ezp2010.md @@ -0,0 +1,338 @@ +--- +title: 'Reverse Engineering of a Flash Programmer :: EZP2010' +tags: + - flasher + - ghidra + - hacking + - hardware + - programmer + - reverse engineering + - rom +categories: + - hardware + - reverse engineering +date: 2019-11-28 12:01:53 +--- + +Preface +------- + +In today's adventure I like to take you with me on my journey of reverse engineering [another](https://goatpr0n.farm/?p=35) USB device. The EZP2010 is an USB programmer for flash memory as used by mainboard manufactures to store the BIOS, or embedded devices to store the firmware (or settings). When it comes to data recovery on hard drives, or similar storage devices, these flashers can also become handy. + +![](https://dl.goatpr0n.events/$/7KvdF) + +EZP2010 USB-Highspeed programmer + +This particular programmer can be bought on many Chinese store or Amazon. The prize range varies form $8 to $24. Unfortunately the software and drivers which come with this programmer are windows only. + +The micro controller unit (_MCU_) used is the [C8051F340](https://www.silabs.com/documents/public/data-sheets/C8051F34x.pdf). It was easily identified by opening the enclosure and looking at the markings of the _MCU_. + +Start of an adventure +--------------------- + +![](https://dl.goatpr0n.events/$/Ulrgo) + +Realistic representation of me, being outside and enjoining it. But without the running and the joy. I also have shoes and longer trousers. + +As already mentioned, this adventure will be about reversing the USB protocol of this programmer. + +To start with analyzing the programmer a virtual machine would be an easy solution. And here I came across another problem this programmer has. It is not necessarily the fault of the hardware, but of the drivers and software provided to use it. + +I worked on this project on different host machines and different versions of a virtual machine. The main difference was the architecture used. One VM was a 64bit Windows 10 and the other a 32bit Windows 10. Trying to run the software on a 32bit system failed, the software was unable to connect to the programmer, but I could not find any drawback in using a 64bit Windows. + +### Information Gathering + +![](https://dl.goatpr0n.events/$/4vfbw) + +Me looking for information. + +The most obvious things to do are `lsusb` and opening up the enclosure. `Lsusb` will output all connected USB devices connected on a Linux machine and get the description, as well as the vendor id and product id for device identification. + +The output of `lsusb` gives information on how to talk to the device. With the product and vendor id the verbose output of `lsusb` can be limited to display only the device of interest. USB devices have separate input and output "endpoints". On this particular device the endpoint to send our data to is `0x02 EP 2 OUT` and `0x81 EP 1 IN` where I can receive the responses and incoming data. + +``` bash +$ lsusb +\[...\] +Bus 003 Device 027: ID 10c4:f5a0 Cygnal Integrated Products, Inc. +\[...\] +$ lsusb -v -d 10c4:f5a0 + +Bus 003 Device 027: ID 10c4:f5a0 Cygnal Integrated Products, Inc. +Couldn't open device, some information will be missing +Device Descriptor: + bLength 18 + bDescriptorType 1 + bcdUSB 2.00 + bDeviceClass 0 + bDeviceSubClass 0 + bDeviceProtocol 0 + bMaxPacketSize0 64 + ** idVendor 0x10c4 Cygnal Integrated Products, Inc. + idProduct 0xf5a0** + bcdDevice 0.00 + iManufacturer 0 + iProduct 0 + iSerial 0 + **bNumConfigurations 1** + Configuration Descriptor: + bLength 9 + bDescriptorType 2 + wTotalLength 0x0020 + **bNumInterfaces 1** + bConfigurationValue 1 + **iConfiguration 0** + bmAttributes 0x80 + (Bus Powered) + MaxPower 480mA + Interface Descriptor: + bLength 9 + bDescriptorType 4 + **bInterfaceNumber 0** + bAlternateSetting 0 + **bNumEndpoints 2** + bInterfaceClass 0 + bInterfaceSubClass 0 + bInterfaceProtocol 0 + **iInterface 0** + Endpoint Descriptor: + bLength 7 + bDescriptorType 5 + **bEndpointAddress 0x81 EP 1 IN** + bmAttributes 2 + Transfer Type Bulk + Synch Type None + Usage Type Data + wMaxPacketSize 0x0040 1x 64 bytes + bInterval 5 + Endpoint Descriptor: + bLength 7 + bDescriptorType 5 + **bEndpointAddress 0x02 EP 2 OUT** + bmAttributes 2 + Transfer Type Bulk + Synch Type None + Usage Type Data + wMaxPacketSize 0x0040 1x 64 bytes + bInterval 5 +``` + +In the beginning of this post, I already mentioned the used MCU for this programmer. It will not be of much of significance for this project but information is always nice to have. So the _C8051F340_ by Silicon Labs can do different things, but the most important ones are Universal Serial Bus (USB) Controller and the Serial Peripheral Interface (SPI). The USB connection manages the communication between the host (PC) and the device. The SPI will manage the programming of the flash memory. + +### VM Setup + +As previously told, I have used a 64bit Windows 10 virtual machine. For capturing the USB traffic I used [Wireshark and USBPcap](https://wiki.wireshark.org/CaptureSetup/USB#Windows). The workflow is the same as it is with network packet capturing. Instead of selecting a network interface, a USB root hub is selected where the device of interest is connected. + +### Packet Capturing + +At first I setup the packet capturing with Wireshark and select the USB root hub I want to monitor - and where I connect the programmer. + +The next steps include a straight forward workflow, after Wireshark was configured and running. I started the programmer software. If Wireshark is configured correctly it reports the first packets captured during device initialization and opening the device by the software. + +As there are not special device specific commands transferred during device and software initialization, these steps won't be necessary to cover here. + +Now, if I press any button in the software to interact with the programmer, a corresponding reaction should be captured in Wireshark. To keep track which action resulted in which packets, Wireshark supports _comments_ for their _pcapng_ fileformat. When I press a button in the software, I comment the first packet captured and the last packet incoming. + +![](https://dl.goatpr0n.events/$/ijnRU) + +Firmware version read from programmer device. + +To keep it simple, I will illustrate this on the command to request the firmware version of the device. The button is labeled "Ver" in the toolbar. When clicked, two messages are transmitted between the host and the device which are captured by Wireshark. + +![](https://dl.goatpr0n.events/$/Pmke9) + +Request and response packet content. + +In the screen shot above, I commented the outgoing packet from the host to the programmer and labeled it "Request firmware". The answer - which came immediately after the outgoing message. I labeled the packet as "Request firmware: Answer". When I look into this dump a few days later, I will still be able to figure out what the cause of these packets were. + +The firmware version request command are two bytes (_Leftover Capture Data_ in the Wireshark window) `0x17 0x00`. The answer will be the version string `EZP2010 V3.0` and a few more bytes. + +This way I worked through every function provided by the software to capture all possible commands. The "Read" and "Prog" ROM commands will produce a few more packets depending on the size of the flash chip. The outgoing or incoming packets either be the contents read from the flash chip or the data going to be written to the flash chip. + +While capturing the packets should be almost enough, a look at the decompiled code of the program can help finding possible pitfalls. + +### Reversing the Programmer Windows Software + +This part was not really necessary, but helped in the process of packet analysis as well in matching the captured command packets with a function in the disassembled program. + +![](https://dl.goatpr0n.events/$/SeDcb) + +Functions interacting with the programmer. + +Each command supported by the programmer has a corresponding function. Matching all functions and command codes, I could see if I had found and captured all available commands the programmer hardware supports. + +Refactoring the code generated by [Ghidra](https://ghidra-sre.org/), the result of reversing engineering a function could look like this. I am going through the code to request the firmware version. + +![](https://dl.goatpr0n.events/$/pKHQO) + +Example of a reversed function to query the firmware version. + +The code in the screenshot above sends two bytes to the programmer and than tries to read 23 (0x17) bytes as answer. The while loop at the bottom copies the contents of the `bufferIn` variable into the output argument variable `version`. + +Just to clarify, the variables are pointers to a memory location at this point. the variable will store the address where the value (version string) is stored. + +### Writing a POC + +![](https://dl.goatpr0n.events/$/DQSgq) + +Actual video of me coding a POC. + +#### Python POC + +I often try to build my first proof of concept, or to validate my ideas, with a small Python program. + +The code is based on the tutorial example provided by [PyUSB](https://github.com/walac/pyusb/blob/master/docs/tutorial.rst). I just added the other endpoint to read the responses from the programmer. + +``` python +#!/usr/bin/env python +import usb.core +import usb.util + + +dev = usb.core.find(idVendor=0x10c4, idProduct=0xf5a0) +dev.set_configuration() + +cfg = dev.get\_active\_configuration() +intf = cfg\[(0, 0)\] + +epo = usb.util.find\_descriptor(intf, custom\_match=lambda e: + usb.util.endpoint_direction(e.bEndpointAddress) + == usb.util.ENDPOINT_OUT) +epi = usb.util.find\_descriptor(intf, custom\_match=lambda e: + usb.util.endpoint_direction(e.bEndpointAddress) + == usb.util.ENDPOINT_IN) + +epo.write(\[0x17, 0x00\]) +s_buf = ''.join(\[chr(c) for c in epi.read(256)\]) +print(s_buf) +``` + +Executing the test program will give something like "`EZP2010 V3.0`" and a few more additional bytes. Which should be expected, as the receiving buffer is defined with a size of 0x17 (23 bytes). + +At the moment I have not looked into the remaining bytes and their purpose. The original software does not display any more information, but the version string. + +#### C POC + +Doing it in C requires a bit more work. Below is the whole POC program source I have used to verify my work. The main part of the program is the USB device tree traversal to open and configure our target device. There is an easier to use function to do this with [libusb](https://libusb.info/). + +But the function [`libusb_open_device_with_vid_pid()`](http://libusb.sourceforge.net/api-1.0/group__libusb__dev.html#ga11ba48adb896b1492bbd3d0bf7e0f665) gave me a bit of a trouble, as I was not able to configure the device properly to write and read data. + +``` c + #include + #include + #include + + #include + + #define EZP2010_VID 0x10c4 + #define EZP2010_PID 0xf5a0 + + static libusb_device_handle *devh = NULL; + + libusb_device_handle *open_ezp2010() + { + ssize_t devc; + libusb_device **dev_list; + static libusb_device *dev = NULL; + struct libusb_device_descriptor dev_desc; + struct libusb_config_descriptor *dev_cfg = NULL; + const struct libusb_interface *intf = NULL; + const struct libusb_interface_descriptor *intf_desc = NULL; + + int r = 0; + + devc = libusb_get_device_list(NULL, &dev_list); + if (devc < 1) + return NULL; + + for (int i = 0; i < devc; i++) { + dev = dev_list[i]; + if (libusb_get_device_descriptor(dev, &dev_desc)) + continue; + + if ((dev_desc.idVendor != EZP2010_VID || dev_desc.idProduct != EZP2010_PID)) + continue; + + r = libusb_open(dev, &devh); + if (r < 0) { + perror("libusb_open"); + return NULL; + } + + for (int j = 0; j < dev_desc.bNumConfigurations; j++) { + if (libusb_get_config_descriptor(dev, j, &dev_cfg)) + continue; + + for (int k = 0; k < dev_cfg->bNumInterfaces; k++) { + intf = &dev_cfg->interface[k]; + for (int l = 0; l < intf->num_altsetting; l++) { + intf_desc = &intf->altsetting[l]; + if (libusb_kernel_driver_active(devh, intf_desc->bInterfaceNumber)) + libusb_detach_kernel_driver(devh, intf_desc->bInterfaceNumber); + + libusb_set_configuration(devh, dev_cfg->bConfigurationValue); + libusb_claim_interface(devh, intf_desc->bInterfaceNumber); + + int e = 0; + while (libusb_claim_interface(devh, intf_desc->bInterfaceNumber) \ + && (e < 10)) { + sleep(1); + e++; + } + } + } + + libusb_free_config_descriptor(dev_cfg); + } + return devh; + } + + devh = NULL; + return NULL; + } + + int main(int argc, char *argv[]) + { + int r = 0; + int transferred = 0; + unsigned char buf[256]; + + r = libusb_init(NULL); + if (r < 0) + return 1; + + open_ezp2010(); + + buf[0] = '\x17'; + buf[1] = '\x0'; + r = libusb_bulk_transfer(devh, 0x2, buf, 2, &transferred, 500); + if (r < 0) { + perror("libusb_claim_interface"); + fprintf(stderr, "Error: %s\n", libusb_strerror(r)); + } + printf("Bytes sent: %d\n", transferred); + + r = libusb_bulk_transfer(devh, 0x81, buf, 0x20, &transferred, 500); + if (r < 0) { + perror("libusb_claim_interface"); + fprintf(stderr, "Error: %s\n", libusb_strerror(r)); + } + printf("Bytes received: %d\n", transferred); + printf("Packet: %s\n", buf); + + libusb_release_interface(devh, 0); + libusb_reset_device(devh); + libusb_close(devh); + + libusb_exit(NULL); + + return 0; + } +``` + +### Future Work + +My idea is to integrate it into existing programmer software, or to implement a small standalone tool for this programmer. + +There is also still some research to do on the support for different flash chips. The original software provides a database with known and supported flash chips. + +Looking at the code and figuring out the database structure might be the next step in further reverse engineering and developing further support for this programmer. diff --git a/content/posts/reverse-engineering-of-the-skyrc-mc3000-battery-charger-usb-protocol.md b/content/posts/reverse-engineering-of-the-skyrc-mc3000-battery-charger-usb-protocol.md new file mode 100644 index 0000000..ed00322 --- /dev/null +++ b/content/posts/reverse-engineering-of-the-skyrc-mc3000-battery-charger-usb-protocol.md @@ -0,0 +1,414 @@ +--- +title: Reverse Engineering of the SkyRC MC3000 Battery Charger USB Protocol +categories: + - reverse engineering +date: 2019-03-18 16:49:39 +tags: + - hardware + - reverse engineering +--- + +Software Requirements +--------------------- + +Decompiler for .NET programs + +* [dotPeek](https://www.jetbrains.com/decompiler/) + +The implementation of the protocol is then written in _Python_. Let's hear what the curator has to say: + +Tell me about _Python_. + + > Wow. Much Snake. Easy programming! + > + > \- Doge + +Tell me about _dotPeek_. + + > Easy decompilation. Readable syntax. Very easy. + > + > \- Doge + +Analyzing MC3000_Monitor +------------------------ + +### Decompiling + +Start _dotPeek_ and use Drag'n'Drop to load the Application. Or uSe **CtRL+O** anD LoCATe tHe fILe uSiNg ThE bOrwsEr. I am not your mother! The file will show up in the _Assembly Explorer_. You can expand and collapse nodes within the tree. Familiarize yourself with the program structure. Try to find the entry point or other "important" functions, modules or resources. + +![](https://dl.goatpr0n.events/$/dQCmQ) + +If you right click the **MC3000_Monitor** node you can export the project with individual source files. This project is stored as _*.cs_ source files. + +You should now have either the project loaded into _dotPeek_ or - in addition - saved it as project and/or loaded it into _Visual Studio (VS)_ (Not covered here). I cannot afford _VS_. Still saving money to upgrade my IDA Pro license. + + Intermission: + This is the curator speaking, and I command you to stop whining, 'JPK'. + +As you can see, a lot of professionalism. + +### Exploring the code + +For me the easiest way to begin, is to find parts of code where user interaction is required. Run the program and look at the user interface. In this particular case we have four buttons next to a label each. + +Lets explore the code in _dotPeek_ and see if we can find some code that might look familiar. + +![](https://dl.goatpr0n.events/$/yWSxh) + +Pressing one of the buttons opens another window where you can configure the charger slot. By further reading through the different functions you might come across the function `InitializeComponents():void`. Each window element gets setup and function callbacks/events are registered. + +You eventually find something like this (see the picture below). + +![](https://dl.goatpr0n.events/$/lRBYC) + +Let's put on our smart looking spec ticals and read line 3468 and 3470. Line 3468 is the creation of the button text, which should look familiar. If not, search for hints on [this page](https://goatpr0n.farm). Line 3470 binds a function to the button press. With a **Ctrl+Left click** we jump to the function definition in _dotPeek_. + +The function `private void button1_Click_1(object sender, EventArgs e)` is pretty simple to read. When the button is clicked, get the button name (e.g. "button1" \[1\]) and check if there is either the number `1`, `2`, `3` or `4` in the name. + +![](https://dl.goatpr0n.events/$/Wul71) + +Can you see the problem here? There is no error handling if button number is smaller than one or greater four. As an array is indexed, the program will probably crash. At this point we don't care. We want to make our own library, to make it better or different. After the name checking to know which slot is addressed, it calls a function `public void Set_Battery_Type_Caps(ChargerData[]data, int index)`. The functions sets the parameters of each battery slot and saves the values to an array. + +This function sums up all parameters we need to know to setup a charger slot by or self. And we now know the default values. The below listing is the exception code, if anything goes wrong in the code above, but not when using an index outside bounds. + + // Battery.cs:1195 + + data[index].Type = 0; + data[index].Caps = 2000; + data[index].Mode = 0; + data[index].Cur = 1000; + data[index].dCur = 500; + data[index].End_Volt = 4200; + data[index].Cut_Volt = 3300; + data[index].End_Cur = 100; + data[index].End_dCur = 400; + data[index].Cycle_Mode = 0; + data[index].Cycle_Count = 1; + data[index].Cycle_Delay = 10; + data[index].Peak_Sense = 3; + data[index].Trickle = 50; + data[index].Hold_Volt = 4180; + data[index].CutTemp = 450; + data[index].CutTime = 180; + +The data structure `ChargerData` can be looked up as well, but the above listing is a little bit easier to read. + +What we haven't seen at this point were bytes transferred to or from the device. + +![](https://dl.goatpr0n.events/$/DVfA2) + +At this point, there are multiple ways to get a good starting point on finding the functions where data is transmitted or received. One option is to look at the Assembly Explorer again for functions names of possible interest. + +![](https://dl.goatpr0n.events/$/WJAOM) + +These convenient looking functions. Or should I say obvious function names are obvious, are used to handle the USB device communication. Try right clicking a function to find out where it is used. I have used `usbOnDataRecieved`. In the below window with search results you can find a reference located in the constructor \[2\] of the class `FormLoader`. + + // FormLoader.cs:352 + + this.usb = new UsbHidPort(); + this.usb.ProductId = 1; + this.usb.VendorId = 0; + this.usb.OnSpecifiedDeviceArrived += new EventHandler(this.usbOnSpecifiedDeviceArrived); + this.usb.OnSpecifiedDeviceRemoved += new EventHandler(this.usbOnSpecifiedDeviceRemoved); + this.usb.OnDeviceArrived += new EventHandler(this.usbOnDeviceArrived); + this.usb.OnDeviceRemoved += new EventHandler(this.usbOnDeviceRemoved); + this.usb.OnDataRecieved += new DataRecievedEventHandler(this.usbOnDataRecieved); + this.usb.OnDataSend += new EventHandler(this.usbOnDataSend); + +These lines above register event handlers with an instance of `UsbHidPort`. An event might be connecting or disconnecting the device (line: 355-358) or transferred data (line: 359-360). There is nothing special about the connect functions, except for `usbOnSpecifiedDevice...` ones. There is a call to stop and stop the `timer2` instance. We will look at this object in a second, but first we have a look at `usbOnDataSend` and `usbOnDataRecieved`. + + // FormLoader.cs:513 + + private void usbOnDataRecieved(object sender, DataRecievedEventArgs args) + { + if (this.InvokeRequired) + { + try + { + this.Invoke((Delegate) new DataRecievedEventHandler(this.usbOnDataRecieved), sender, (object) args); + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + } + } + else + { + ++this.packet_counter; + for (int index = 0; index < 65; ++index) + this.inPacket[index] = args.data[index]; + this.dataReceived = true; + } + } + + ... + + // FormLoader.cs:580 + + private void usbOnDataSend(object sender, EventArgs e) + { + this.Text = "ChargeMonitor V2 Connect"; + this.label_usb_status.Text = "USB ON"; + this.label_usb_status.ForeColor = Color.Green; + } + +The `usbOnDataSend` function is boring, and we can ignore it. There is no active sending of data to the usb device. `UsbOnDataReceived` on the other hand is actually doing something with an buffer of 64 bytes (line: 528-531). + +When data is received an internal `packet_counter` is increased. Each packet has a size of 64 bytes (line: 529). The packet is copied into the `inPacket` array, and the `dataReceived` variable is set to true. + +My guess is, that somewhere, something, somehow, might be, is waiting for a packet to arrive and waits until `dataReceived` is true. In _dotPeek_ we can use the magic function "Find Usages" again, to find out more. + +![](https://dl.goatpr0n.events/$/HdRfX) + +### Prototyping and understanding the program + +Remember the `timer2` instance mentioned before? No, try to find the hint on [this page](https://goatpr0n.farm). + + // Formload.cs:1219 + + private void timer2_Tick(object sender, EventArgs e) + { + byte num1 = 0; + if (!this.dataReceived) + return; + this.dataReceived = false; + if ((int) this.inPacket[1] == 240) + { + if (this.bwrite_chrager_data) + return; + int num2 = (int) MessageBox.Show("OK!"); + } + else if ((int) this.inPacket[1] == 95) + this.Get_Charge_Data((int) this.inPacket[2]); + else if ((int) this.inPacket[1] == 90) + { + this.Get_System_Data((int) this.inPacket[3]); + } + else + { + if ((int) this.inPacket[1] != 85) + return; + for (int index = 1; index < 64; ++index) + num1 += this.inPacket[index]; + if ((int) num1 != (int) this.inPacket[64]) + return; + + +The `timer2` will process incoming data send from the device to the connected computer. The code begins with comparing index 1 of the `inPacket` with a series of values. + +By looking at the code we might be able to assume we are looking at the first bytes necessary to communicate with the device. Here are some guesses: + + Value Description + + 240 (0xf0) Confirmation sent by charger. + 95 (0x5f) Get charger data by information provided in index 2, + which is an number \[4\]. + 90 (0x5a) Get system data by information provided in index 3, + which is a number. + 85 (0x55) Do not process the packet here. Otherwise calculate + the sum of all bytes in `num1` and compare it to the + information stored in index 64. + +If these checks do not result in an premature `return`, the values from `inPacket` are copied into variables. Some variable names are recognizable and help in our guessing game to find out what this function does. + +![](https://dl.goatpr0n.events/$/nRAoH) + +With the looks of it we are reading battery information. As an example on how the packet is decoded, we will have a look at the following code: + + this.Current[j] = (int) this.inPacket[11] * 256 + (int) this.inPacket[12]; + + +The contents of `inPacket` index 11 and 12 is assigned the the variable `Current` at index `j`. Which is irrelevant at this point. But we need to understand what is happing with this multiplication and addition. + +The multiplication by 256 is just a different way to express a left shift by 8. What happens, when we take the value 1 and multiply it by 256 or do a left shift by 8? In binary representation it will become very easy to understand. + + 1 => 0b1 + 256 => 0b100000000 + +So what if we take 256 times 1? + + 256 => 0b100000000 + +And if we take the value `0b1` and move the `1` exactly 8 positions to the left, like a left shift, _duh_? + + 1 << 0 = 0b1 + 1 << 1 = 0b10 + 1 << 2 = 0b100 + 1 << 3 = 0b1000 + 1 << 4 = 0b10000 + 1 << 5 = 0b100000 + 1 << 6 = 0b1000000 + 1 << 7 = 0b10000000 + 1 << 8 = 0b100000000 + +This is just a step by step illustration. Computer do fast. Computer do in single step. + +After the left shift, the second value is added to the variable. In other words, we are reading two bytes and concatenate it to have a word (2 bytes). + +The same applies to the other functions `Get_Charge_Data` and `Get_System_Data` where the `inPacket` is read. + +But how am I supposed to create my own library with this? + +![](https://dl.goatpr0n.events/$/ga4cq) + +This is the part, where you take your favorite language, or a language good for prototyping and begin coding. First challenge would be to connect to the USB device. I am using the `pyusb` module with _Python_. + +To connect an USB device we want to make sure we are using the right one. To do so, the USB devices can be identified by different properties, and one of them is the vendor and product id. The source of the program might give us enough information we need, as it needs to connect to the charger as well. + +The product and vendor id can be found in the function `private void usbSendConnectData()` and is defined as: + + Field Value + Vendor ID 0 + Product ID 1 + +#### Reading Data + +The people writing the firmware for the charger, did not care to give it some nice values, on the other hand 0 and 1 are nice. With these identifiers, it is possible to connect to our charger. + +``` python + import usb + usb.core.find(idVendor=0, idProduct=1) +``` + +This will return a list of devices, even when the list is empty or contains just one element. Set up the USB device further and start building your first packet to send. Before blindly sending commands to the charger, what would be the most destructive - errr - non destructive command: getting device information. + +Do some reads on the device without sending anything to it. Eventually you will receive a packet. + +In this scenario the packets have a common format for receiving and sending. You might notice a `0x0f` at the beginning of each packet. As _dotPeek_ is unable to tell you where it comes from and where it is designed, I am going to spoil it for you. + +In file `FormLoader.cs` in line 201 we find the following definition: + + public const byte UART_DATA_START = 15; + +The UART \[6\] we are basically telling the charger we are coming over USB. There is also a mobile application to send commands via Bluetooth, but I haven't done this one, yet. + +There is function called `Get_System_Data`. When we look at the definition of the function the code is very messy. + +![](https://dl.goatpr0n.events/$/JP7Lc) + +Alot \[5\]_ of constant values are assigned to variables, which are assigned to variables and then used as index. This looks confusing but the best way is to just begin prototyping it the same way. + + num1 = 0 + str1 = '' + num2 = 4 + # Do not kown this yet + inPacket = raw_packet # raw_packet is the contents read by pyusb. + index1 = num2 + num3 = 1 + num4 = index1 + num3 + num5 = int(inPacket[index1], 16) # Python 3: probably bytes as input. + ... + +And so on. After building your prototyped function you will see parts which can be optimized, but do not care about it too much in the beginning. Try to understand how packets are constructed and what they contain. But for example the `num2 = 4` could be removed and replaced with `index1 = 4`, as `num2` is not used after that point. + +By breaking the packet down, byte by byte (there are only 64 bytes), we then try to create data structures from it, like the one mentioned in the beginning. Each information gathered so far helps in decoding packets received and to later send packets. + +For decoding packets I personally use the `[Python struct](https://docs.python.org/3/library/struct.html)` module. By reading the definition of `Get_System_Data` we define a system class, and `machine_info` as `FormLoader.cs` calls it. + +With `struct` we define a data structure which can parse the 64 bytes each packet has and apply it to a named tuple in _Python_. After reading the original decompiled code, I came up with this definition: + + #: Machine response data + MACHINE_INFO_STRUCT = '>3xBBBBBBBBBBBBB6sBBhBBBBbB' + #: Tuple for device information + MachineInfo = namedtuple('machine_info', + ['Sys_Mem1', 'Sys_Mem2', 'Sys_Mem3', 'Sys_Mem4', + 'Sys_Advance', 'Sys_tUnit', 'Sys_Buzzer_Tone', + 'Sys_Life_Hide', 'Sys_LiHv_Hide', + 'Sys_Eneloop_Hide', 'Sys_NiZn_Hide', 'Sys_Lcd_time', + 'Sys_Min_Input', 'core_type', 'upgrade_type', + 'is_encrypted', 'customer_id', 'language_id', + 'software_version_hi', 'software_version_lo', + 'hardware_version', 'reserved', 'checksum', + 'software_version', 'machine_id']) + +The struct definition `MACHINE_INFO_STRUCT` describes how each byte of the packet should be interpreted. In words: + +* We decode it as big-endian. +* Ignore 3 bytes as these are protocol commands. +* Read 14 unsigned bytes (0..255), each into a separate variable. +* Read 6 characters or a string of length 6. +* Read 2 individual bytes. +* Read a short (2 bytes). +* Read 4 individual unsigned bytes. +* Read a signed byte (-128..127). +* Read a unsigned byte. + +The `MachineInfo` is a `[namedtuple](https://docs.python.org/3/library/collections.html#collections.namedtuple)`, to make it very easy to assign and access values. When we receive a packet and we have determined the type, we can do something like this: + + data = unpack(MACHINE_INFO_STRUCT, response[:32]) + machine = MachineInfo(\*data, 0, machine_id) + +#### Sending Data + +While reading data is one side, we also need send commands. When optimizing the code the `private bool Send_USB_CMD(int Solt, byte CMD)` function can be annoying, but refactoring the prototype code will very quickly tell you where to place your bytes. + +Whilst the original code is hiding the `CMD` parameter position behind some index calculations (which lies in nature of decompilation) we can translate the following code: + +![](https://dl.goatpr0n.events/$/JEIdW) + +To a single byte-string if we use the `Get_System_Data` CMD code 95: + + \x0f\x00\x5a\x00 + +One really annoying thing is the index counting. The program starts filling the `outPacket` at offset 1. Which is actually 0, which is always set to `0x0f`. It is protocol definition. + +Tricky thing is the real offset 1. It has to be set to a specific value. To find out which one, we have to further investigate the code. This changes depending on the operation you want to call. + +![](https://dl.goatpr0n.events/$/JYRNp) + +Going further through the code, we might find a location where it sets the offset 1 to a other value than 0. Eventually the offset becomes 4. The command so far is now: + + \x0f\x03\x5a\x00 + +Sending this to the device returns no result, therefore we are still missing something. Somewhere was a loop adding up all bytes of packet. This could be a checksum and/or the command is still incomplete. Let's look at the `Send_USB_CMD` again. When working through the code, it is help full to take notes. + +_I have removed a switch-case statement for your convenience._ + +![](https://dl.goatpr0n.events/$/tkE9j) + +After working through the code, taking notes. the resulting packet for `CMD=95, Solt=0` \[7\] should look like this: + + \x00\x0f\x03\x5a\x00\x00\x5d\xff\xff + +The two bytes of `\xff` (255) at the end define the end a packet. Every packet is produced after this schema. + + Byte Description + 1 It is always 0, you will learn soon enough why! _ARRGHGGHG_ + 2 Start of message (Always 0x0f (15)). + 3 Calculate the value based on the index. + 4 The command op code. + 5 It is 0. + 6 The slot index (0 to 3 (4 Slots)). + 7 The sum of the variable data (Byte 3 to 6) + 8 Is always 0xff (255) + 9 Is always 0xff (255) + +Sending this to the device is still not correct, why? To find out why, delving deeper into the nested classes we find an abomination. The decompiled code for SpecifiedOutputReport.cs in `class UsbLibrary.SpecifiedOutputReport`, there is this one function: + + public bool SendData(byte[] data) + { + byte[] buffer = this.Buffer; + for (int index = 1; index < buffer.Length; ++index) + buffer[index] = data[index]; + return true; + } + +The line 19 defines a loop starting at index 1… + +![](https://dl.goatpr0n.events/$/N97jA) + +With all this knowledge collected the final valid packet to send to your device is: + + \x0f\x03\x5a\x00\x00\x5d\xff\xff + +That's it. We have done it. + +KTHXBYE! + +1. BTW, giving descriptive names for your variables is totally over rated. +2. Bob, is it you? \[3\] +3. Stupidest joke so far. He is no constructor, he is a builder. +4. As you might have noticed. I am just reading and translating the code. +5. |alot| this was an intentional typo. +6. Universal Asynchronous Receiver/Transmitter +7. Solt _\[SIC\]_ diff --git a/content/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices.md b/content/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices.md new file mode 100644 index 0000000..3b1ef60 --- /dev/null +++ b/content/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices.md @@ -0,0 +1,37 @@ +--- +title: '[Teaser] How to reverse engineer communication protocols of embedded devices' +categories: + - cyber + - reverse engineering +date: 2019-02-16 01:25:34 +tags: +--- + +Sneak Preview +------------- + +![](https://dl.goatpr0n.events/$/aAdcT) + +These letters. Such announcement. Many words. + +In the next few days I will publish two - not one - but two articles on how to approach a problem on how to reverse engineer protocols. There have been to applications I looked into to code a library for my home uses. + +#1 - MC3000 Charger +------------------- + +[MC3000_Charger](https://www.skyrc.com/MC3000_Charger) provides an USB and Bluetooth (BT) interface (Spoiler: I am not covering the BT interface. Not yet). The USB interface is used to update the firmware and to program and interact with the charger during charging. + +The Windows software provided by SkyRC can program each slot individually to support different types of batteries with different charging capacities. + +As a result of my analysis, and this will be one of the upcoming articles, I reversed the application and wrote a Python library. To do so I dissected a .NET application. So no big magic here! + +#2 - LW12 WiFi LED Controller +----------------------------- + +This was a tricky one. It is a low budget Chinese WiFi LED controlled with a mobile app. The Android app I looked at was encrypted using a separate VM layer on-top of the Dalvik engine. (Spoiler: No need to reverse this, and I did not do it.) + +Sometimes there are simpler solutions. This is what the second article will be about. + +The controller itself comes by many names: [Foxnovo](https://www.amazon.de/Foxnovo-Wireless-Strip-Regler-Smartphone-Tabletten/dp/B00Q6FKPZI) and I remember buying it as a [Lagute](https://www.amazon.de/LAGUTE-Strips-Controller-Android-System/dp/B00G55329A). + +KTHXBYE. diff --git a/content/posts/there-is-not-enough-cyber-in-the-world.md b/content/posts/there-is-not-enough-cyber-in-the-world.md new file mode 100644 index 0000000..eec9df1 --- /dev/null +++ b/content/posts/there-is-not-enough-cyber-in-the-world.md @@ -0,0 +1,15 @@ +--- +title: There is not enough cyber in the world +categories: + - cyber + - Uncategorized +date: 2019-01-21 15:21:23 +tags: +--- + +My recent favuorite hash tags in social networks are: + + - cyberwar / cyberkrieg + - cold-cyberwar / kalter cyberkrieg + +KTHXBYE diff --git a/content/posts/welcome-to-the-farm.md b/content/posts/welcome-to-the-farm.md new file mode 100644 index 0000000..e6f6f5d --- /dev/null +++ b/content/posts/welcome-to-the-farm.md @@ -0,0 +1,9 @@ +--- +title: Welcome to the farm! +categories: + - Uncategorized +date: 2019-02-05 18:17:12 +tags: +--- + +This magnificent piece of blog is now available under [https://goatpr0n.farm/](https://goatpr0n.farm/). Marvelous! diff --git a/content/posts/what-if-the-cult-of-dd-is-right.md b/content/posts/what-if-the-cult-of-dd-is-right.md new file mode 100644 index 0000000..91309a9 --- /dev/null +++ b/content/posts/what-if-the-cult-of-dd-is-right.md @@ -0,0 +1,74 @@ +--- +title: What if the cult of dd is right? +categories: + - cyber + - Uncategorized +date: 2019-01-23 00:47:15 +tags: +--- + +Are you a believer? +------------------- + +There are articles out there talking about the useless usage of `dd` and why `cat` is better. `Cat` is faster because it automatically adjusts the blocksize and `dd` is slow because it internally only works with 512 byte blocks. [This](https://eklitzke.org/the-cult-of-dd) and [That](https://www.vidarholen.net/contents/blog/?p=479). + +I did some simple tests with `time`, `dd` and `cat`, added some obscure parameters to `dd`, because `cat` is better. + +### Testing `dd` with status and specific blocksize + + $ time dd if=/dev/sdd of=test.dd status=progress bs=8M + 15921577984 bytes (16 GB, 15 GiB) copied, 878 s, 18.1 MB/s + 1899+1 records in + 1899+1 records out + 15931539456 bytes (16 GB, 15 GiB) copied, 879.018 s, 18.1 MB/s + + 0.04s user 23.33s system 2% cpu 14:39.03 total + +### Testing `dd` + + $ dd if=/dev/sdd of=test.dd + 31116288+0 records in + 31116288+0 records out + 15931539456 bytes (16 GB, 15 GiB) copied, 869.783 s, 18.3 MB/s + 16.13s user 159.22s system 20% cpu 14:29.80 total + +### Testing`cat` with `pv` + + $ time cat /dev/sdd | pv > test.raw + 14.8GiB 0:14:43 [17.2MiB/s] [ <=> ] + 0.28s user 25.84s system 2% cpu 14:43.18 total + +### Testing `cat` + + $ time dd if=/dev/sdd of=test.dd status=progress bs=8M + 15921577984 bytes (16 GB, 15 GiB) copied, 878 s, 18.1 MB/s + 1899+1 records in + 1899+1 records out + 15931539456 bytes (16 GB, 15 GiB) copied, 879.018 s, 18.1 MB/s + + 0.04s user 23.33s system 2% cpu 14:39.03 total + +### Testing `dd` + + $ dd if=/dev/sdd of=test.dd + 31116288+0 records in + 31116288+0 records out + 15931539456 bytes (16 GB, 15 GiB) copied, 869.783 s, 18.3 MB/s + 16.13s user 159.22s system 20% cpu 14:29.80 total + +### Testing `cat`with `pv` + + $ time cat /dev/sdd | pv > test.raw + 14.8GiB 0:14:43 [17.2MiB/s] [ <=> ] + 0.28s user 25.84s system 2% cpu 14:43.18 total + +### Testing `cat` + + $ time cat /dev/sdd > test.raw + 0.18s user 21.21s system 2% cpu 14:42.25 total + +### Y U DO IT WRONG + +Somehow my `cat` is not as fast as `dd`. + +KTHBYE diff --git a/deploy b/deploy new file mode 100755 index 0000000..4d60254 --- /dev/null +++ b/deploy @@ -0,0 +1,10 @@ +#!/bin/sh + +USER=root +HOST=10.0.0.20 +DIR=/srv/http/blog + +# hugo && rsync -avz --delete -e "ssh -vv -i ssh_id_hexo" public/ ${USER}@${HOST}:{DIR} +hugo && rsync -avz --delete public/ ${USER}@${HOST}:${DIR} + +exit 0 diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..8d80054 --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,103 @@ + + + + + 404 Not Found + + + +
+00000000  88 f5 d3 f4 dc b3 64 16  10 99 86 79 b7 2c 3f 8e  |......d....y.,?.|
+00000010  f1 ad 59 8f 68 06 60 6f  39 db 52 b6 a3 ec f9 40  |..Y.h.`o9.R....@|
+00000020  58 c5 58 10 24 de a7 9a  b2 c8 e9 cf 9f 3b dc 48  |X.X.$........;.H|
+00000030  38 b3 07 50 41 47 45 20  4e 4f 54 20 46 4f 55 4e  |8..PAGE NOT FOUN|
+00000040  44 73 95 a7 37 a1 25 b6  d2 ea b8 fc 67 d4 47 03  |Ds..7.%.....g.G.|
+00000050  a3 00 90 7f 91 69 23 a3  b3 07 3b 70 4f ef b4 e9  |.....i#...;pO...|
+00000060  c0 52 bd 22 7d a3 fc 9e  6f f1 23 80 16 d4 aa 3b  |.R."}...o.#....;|
+00000070  95 94 39 b2 31 25 86 ea  05 68 46 bf 00 7b 70 9c  |..9.1%...hF..{p.|
+00000080  cf e4 a1 ac 32 06 5a 12  2e ad 95 21 e6 13 a8 20  |....2.Z....!... |
+00000090  8b b8 77 38 b1 77 7d 36  a3 77 31 6f 94 ed 96 30  |..w8.w}6.w1o...0|
+000000a0  de 9b 1d 8a 0f d7 8f 04  95 64 e7 aa 34 aa 6b b5  |.........d..4.k.|
+000000b0  e2 6c f1 12 17 34 a6 e3  84 1f f7 06 d3 06 fb fe  |.l...4..........|
+000000c0  df c4 52 3d fa 2f d0 78  66 0d 4f 5f b0 77 bd 65  |..R=./.xf.O_.w.e|
+000000d0  72 56 c0 e3 17 5e f4 54  b0 30 d1 18 3d 4e e9 07  |rV...^.T.0..=N..|
+000000e0  d5 dd d4 8c 8f 42 b9 0a  44 11 59 7d 88 52 0c 17  |.....B..D.Y}.R..|
+000000f0  3a 7b 3b 7b 89 52 ef c5  c3 6a 91 7c 1f c6 32 50  |:{;{.R...j.|..2P|
+00000100  84 0f 99 fa 90 de 11 ec  55 79 73 37 cc 16 a5 14  |........Uys7....|
+00000110  63 4a 37 4c 97 c2 00 e9  f2 d3 8d 15 50 e2 dc 4c  |cJ7L........P..L|
+00000120  d7 b3 fe c7 f6 f1 f3 89  27 2d 6e 48 54 54 50 20  |........'-nyHTTP|
+00000130  53 54 41 54 55 53 3a 20  34 30 34 0a 00 9e 51 b6  |STATUS: 404...Q.|
+00000140  cd 0b e5 94 fd 53 49 89  e8 88 43 40 c5 83 14 c7  |.....SI...C@....|
+00000150  40 8f c2 9e 3b 71 7e be  95 42 b7 48 a9 06 1e 94  |@...;q~..B.H....|
+00000160  c9 97 3d 5c 83 88 66 b9  bb b5 10 e9 70 84 05 ea  |..=\..f.....p...|
+00000170  37 bf 69 b2 91 83 59 73  a6 1f 2a cf 4c 8c e8 2b  |7.i...Ys..*.L..+|
+00000180  cc 66 b8 99 cc fa 1a b1  24 a2 34 39 00 de 83 d7  |.f......$.49....|
+00000190  00 13 17 a7 36 9b c4 73  f3 7b 0b 55 53 ba 58 4e  |....6..s.{.US.XN|
+000001a0  5d 73 ab 8c c5 59 bd 51  d6 c3 d6 71 98 72 51 e8  |]s...Y.Q...q.rQ.|
+000001b0  09 6d a0 05 25 00 e5 05  19 3b 7c c6 41 45 90 1c  |.m..%....;|.AE..|
+000001c0  80 f0 ac ac fd d9 ab 00  52 61 b2 36 0a 63 f5 e5  |........Ra.6.c..|
+000001d0  2f e0 ec dd 85 5b b6 9e  84 a2 eb ee 09 85 e4 72  |/....[.........r|
+000001e0  9f ef 92 53 7b d8 11 85  b7 7f 83 79 5b 14 fc e7  |...S{......y[...|
+000001f0  de d3 29 a3 8e 74 15 91  66 ee 0a 18 bb c3 b0 39  |..)..t..f......9|
+    
+ + diff --git a/public/25.html b/public/25.html new file mode 100644 index 0000000..859b2f3 --- /dev/null +++ b/public/25.html @@ -0,0 +1,99 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+ + + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..8d80054 --- /dev/null +++ b/public/404.html @@ -0,0 +1,103 @@ + + + + + 404 Not Found + + + +
+00000000  88 f5 d3 f4 dc b3 64 16  10 99 86 79 b7 2c 3f 8e  |......d....y.,?.|
+00000010  f1 ad 59 8f 68 06 60 6f  39 db 52 b6 a3 ec f9 40  |..Y.h.`o9.R....@|
+00000020  58 c5 58 10 24 de a7 9a  b2 c8 e9 cf 9f 3b dc 48  |X.X.$........;.H|
+00000030  38 b3 07 50 41 47 45 20  4e 4f 54 20 46 4f 55 4e  |8..PAGE NOT FOUN|
+00000040  44 73 95 a7 37 a1 25 b6  d2 ea b8 fc 67 d4 47 03  |Ds..7.%.....g.G.|
+00000050  a3 00 90 7f 91 69 23 a3  b3 07 3b 70 4f ef b4 e9  |.....i#...;pO...|
+00000060  c0 52 bd 22 7d a3 fc 9e  6f f1 23 80 16 d4 aa 3b  |.R."}...o.#....;|
+00000070  95 94 39 b2 31 25 86 ea  05 68 46 bf 00 7b 70 9c  |..9.1%...hF..{p.|
+00000080  cf e4 a1 ac 32 06 5a 12  2e ad 95 21 e6 13 a8 20  |....2.Z....!... |
+00000090  8b b8 77 38 b1 77 7d 36  a3 77 31 6f 94 ed 96 30  |..w8.w}6.w1o...0|
+000000a0  de 9b 1d 8a 0f d7 8f 04  95 64 e7 aa 34 aa 6b b5  |.........d..4.k.|
+000000b0  e2 6c f1 12 17 34 a6 e3  84 1f f7 06 d3 06 fb fe  |.l...4..........|
+000000c0  df c4 52 3d fa 2f d0 78  66 0d 4f 5f b0 77 bd 65  |..R=./.xf.O_.w.e|
+000000d0  72 56 c0 e3 17 5e f4 54  b0 30 d1 18 3d 4e e9 07  |rV...^.T.0..=N..|
+000000e0  d5 dd d4 8c 8f 42 b9 0a  44 11 59 7d 88 52 0c 17  |.....B..D.Y}.R..|
+000000f0  3a 7b 3b 7b 89 52 ef c5  c3 6a 91 7c 1f c6 32 50  |:{;{.R...j.|..2P|
+00000100  84 0f 99 fa 90 de 11 ec  55 79 73 37 cc 16 a5 14  |........Uys7....|
+00000110  63 4a 37 4c 97 c2 00 e9  f2 d3 8d 15 50 e2 dc 4c  |cJ7L........P..L|
+00000120  d7 b3 fe c7 f6 f1 f3 89  27 2d 6e 48 54 54 50 20  |........'-nyHTTP|
+00000130  53 54 41 54 55 53 3a 20  34 30 34 0a 00 9e 51 b6  |STATUS: 404...Q.|
+00000140  cd 0b e5 94 fd 53 49 89  e8 88 43 40 c5 83 14 c7  |.....SI...C@....|
+00000150  40 8f c2 9e 3b 71 7e be  95 42 b7 48 a9 06 1e 94  |@...;q~..B.H....|
+00000160  c9 97 3d 5c 83 88 66 b9  bb b5 10 e9 70 84 05 ea  |..=\..f.....p...|
+00000170  37 bf 69 b2 91 83 59 73  a6 1f 2a cf 4c 8c e8 2b  |7.i...Ys..*.L..+|
+00000180  cc 66 b8 99 cc fa 1a b1  24 a2 34 39 00 de 83 d7  |.f......$.49....|
+00000190  00 13 17 a7 36 9b c4 73  f3 7b 0b 55 53 ba 58 4e  |....6..s.{.US.XN|
+000001a0  5d 73 ab 8c c5 59 bd 51  d6 c3 d6 71 98 72 51 e8  |]s...Y.Q...q.rQ.|
+000001b0  09 6d a0 05 25 00 e5 05  19 3b 7c c6 41 45 90 1c  |.m..%....;|.AE..|
+000001c0  80 f0 ac ac fd d9 ab 00  52 61 b2 36 0a 63 f5 e5  |........Ra.6.c..|
+000001d0  2f e0 ec dd 85 5b b6 9e  84 a2 eb ee 09 85 e4 72  |/....[.........r|
+000001e0  9f ef 92 53 7b d8 11 85  b7 7f 83 79 5b 14 fc e7  |...S{......y[...|
+000001f0  de d3 29 a3 8e 74 15 91  66 ee 0a 18 bb c3 b0 39  |..)..t..f......9|
+    
+ + diff --git a/public/articles/index.html b/public/articles/index.html new file mode 100644 index 0000000..9a0fa20 --- /dev/null +++ b/public/articles/index.html @@ -0,0 +1 @@ +https://goatpr0n.farm/posts/ \ No newline at end of file diff --git a/public/blog/index.html b/public/blog/index.html new file mode 100644 index 0000000..9a0fa20 --- /dev/null +++ b/public/blog/index.html @@ -0,0 +1 @@ +https://goatpr0n.farm/posts/ \ No newline at end of file diff --git a/public/categories/brain-fart/index.html b/public/categories/brain-fart/index.html new file mode 100644 index 0000000..4ab1aa0 --- /dev/null +++ b/public/categories/brain-fart/index.html @@ -0,0 +1,104 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+ + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/categories/brain-fart/index.xml b/public/categories/brain-fart/index.xml new file mode 100644 index 0000000..afc3c52 --- /dev/null +++ b/public/categories/brain-fart/index.xml @@ -0,0 +1,37 @@ + + + + brain fart on GoatPr0n.farm + https://goatpr0n.farm/categories/brain-fart/ + Recent content in brain fart on GoatPr0n.farm + Hugo -- gohugo.io + en + Tue, 05 Feb 2019 18:45:08 +0000 + + + + + + Hack back during #cyberwar + https://goatpr0n.farm/25.html + Tue, 05 Feb 2019 18:45:08 +0000 + + https://goatpr0n.farm/25.html + According this article people want us to hack back, and the government is like: +The GIF is probably copyrighted material by the The Fine Brothers. Plz Don&rsquo;t sue me. I no make cyber moneyz with this blog +KTHXBYE. + + + + Can I haz ur dataz + https://goatpr0n.farm/posts/can-i-haz-ur-dataz/ + Fri, 01 Feb 2019 09:55:07 +0000 + + https://goatpr0n.farm/posts/can-i-haz-ur-dataz/ + Remote data acquisitions over ssh To get your data trough ssh to your local storage, you simply use pipes. It does not matter if you use cat, dd or any other command line tool which outputs the data on standard output (stdout). +Using cat When using cat the there is no need to add any additional parameters in your command chain. A simple cat &lt;input&gt; will suffice. +Cat does not have any progress information during read operations. + + + + \ No newline at end of file diff --git a/public/categories/ctf/index.html b/public/categories/ctf/index.html new file mode 100644 index 0000000..b5902f1 --- /dev/null +++ b/public/categories/ctf/index.html @@ -0,0 +1,100 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/categories/ctf/index.xml b/public/categories/ctf/index.xml new file mode 100644 index 0000000..5c1d68a --- /dev/null +++ b/public/categories/ctf/index.xml @@ -0,0 +1,27 @@ + + + + CTF on GoatPr0n.farm + https://goatpr0n.farm/categories/ctf/ + Recent content in CTF on GoatPr0n.farm + Hugo -- gohugo.io + en + Wed, 24 Jul 2019 12:19:47 +0000 + + + + + + Google CTF 2019 - FriendSpaceBookPlusAllAccessRedPremium.com + https://goatpr0n.farm/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com/ + Wed, 24 Jul 2019 12:19:47 +0000 + + https://goatpr0n.farm/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com/ + #MemeFreeEdition +The Challenge You are provided a zip file containing two files. + program vm.py The file program contains instructions encoded as emojis for a virtual machine called vm.py. At the bottom of vm.py I found a list, or lets call it a translation table, with emojis and their function name counter part. +OPERATIONS = { &#39;🍑&#39;: add, &#39;🀑&#39;: clone, &#39;πŸ“&#39;: divide, &#39;😲&#39;: if_zero, &#39;πŸ˜„&#39;: if_not_zero, &#39;πŸ€&#39;: jump_to, &#39;πŸš›&#39;: load, &#39;πŸ“¬&#39;: modulo, &#39;⭐&#39;: multiply, &#39;🍿&#39;: pop, &#39;πŸ“€&#39;: pop_out, &#39;🎀&#39;: print_top, &#39;πŸ“₯&#39;: push, &#39;πŸ”ͺ&#39;: sub, &#39;πŸŒ“&#39;: xor, &#39;β›°&#39;: jump_top, &#39;βŒ›&#39;: exit } To execute program with vm. + + + + \ No newline at end of file diff --git a/public/categories/cyber/index.html b/public/categories/cyber/index.html new file mode 100644 index 0000000..87147c2 --- /dev/null +++ b/public/categories/cyber/index.html @@ -0,0 +1,124 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/categories/cyber/index.xml b/public/categories/cyber/index.xml new file mode 100644 index 0000000..75571b3 --- /dev/null +++ b/public/categories/cyber/index.xml @@ -0,0 +1,93 @@ + + + + cyber on GoatPr0n.farm + https://goatpr0n.farm/categories/cyber/ + Recent content in cyber on GoatPr0n.farm + Hugo -- gohugo.io + en + Wed, 25 Sep 2019 15:22:58 +0000 + + + + + + Initial flashing/debricking the Proxmark V3 EASY (w/ Bus Pirate) + https://goatpr0n.farm/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate/ + Wed, 25 Sep 2019 15:22:58 +0000 + + https://goatpr0n.farm/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate/ + TL;DR; Short the ERASE pin with VDDCORE, if ERASE == PIN_55 &amp;&amp; VDDCORE == PIN_54 +According to complains in the internet, users report bricking their Proxmark3 EASY, when they try to flash the latest firmware with the &lsquo;flasher&rsquo; software tool. +Sometimes flashing process of firmware can go wrong, but it can often be recovered with JTAG programmers, or similar programmers. +I will not about setting up the environment to build, and flash the firmware, but I will tell you what you might be missing out and why it might be not working. + + + + Google CTF 2019 - FriendSpaceBookPlusAllAccessRedPremium.com + https://goatpr0n.farm/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com/ + Wed, 24 Jul 2019 12:19:47 +0000 + + https://goatpr0n.farm/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com/ + #MemeFreeEdition +The Challenge You are provided a zip file containing two files. + program vm.py The file program contains instructions encoded as emojis for a virtual machine called vm.py. At the bottom of vm.py I found a list, or lets call it a translation table, with emojis and their function name counter part. +OPERATIONS = { &#39;🍑&#39;: add, &#39;🀑&#39;: clone, &#39;πŸ“&#39;: divide, &#39;😲&#39;: if_zero, &#39;πŸ˜„&#39;: if_not_zero, &#39;πŸ€&#39;: jump_to, &#39;πŸš›&#39;: load, &#39;πŸ“¬&#39;: modulo, &#39;⭐&#39;: multiply, &#39;🍿&#39;: pop, &#39;πŸ“€&#39;: pop_out, &#39;🎀&#39;: print_top, &#39;πŸ“₯&#39;: push, &#39;πŸ”ͺ&#39;: sub, &#39;πŸŒ“&#39;: xor, &#39;β›°&#39;: jump_top, &#39;βŒ›&#39;: exit } To execute program with vm. + + + + [Teaser] How to reverse engineer communication protocols of embedded devices + https://goatpr0n.farm/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices/ + Sat, 16 Feb 2019 01:25:34 +0000 + + https://goatpr0n.farm/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices/ + Sneak Preview These letters. Such announcement. Many words. +In the next few days I will publish two - not one - but two articles on how to approach a problem on how to reverse engineer protocols. There have been to applications I looked into to code a library for my home uses. +#1 - MC3000 Charger MC3000_Charger provides an USB and Bluetooth (BT) interface (Spoiler: I am not covering the BT interface. + + + + Hack back during #cyberwar + https://goatpr0n.farm/25.html + Tue, 05 Feb 2019 18:45:08 +0000 + + https://goatpr0n.farm/25.html + According this article people want us to hack back, and the government is like: +The GIF is probably copyrighted material by the The Fine Brothers. Plz Don&rsquo;t sue me. I no make cyber moneyz with this blog +KTHXBYE. + + + + Can I haz ur dataz + https://goatpr0n.farm/posts/can-i-haz-ur-dataz/ + Fri, 01 Feb 2019 09:55:07 +0000 + + https://goatpr0n.farm/posts/can-i-haz-ur-dataz/ + Remote data acquisitions over ssh To get your data trough ssh to your local storage, you simply use pipes. It does not matter if you use cat, dd or any other command line tool which outputs the data on standard output (stdout). +Using cat When using cat the there is no need to add any additional parameters in your command chain. A simple cat &lt;input&gt; will suffice. +Cat does not have any progress information during read operations. + + + + What if the cult of dd is right? + https://goatpr0n.farm/posts/what-if-the-cult-of-dd-is-right/ + Wed, 23 Jan 2019 00:47:15 +0000 + + https://goatpr0n.farm/posts/what-if-the-cult-of-dd-is-right/ + Are you a believer? There are articles out there talking about the useless usage of dd and why cat is better. Cat is faster because it automatically adjusts the blocksize and dd is slow because it internally only works with 512 byte blocks. This and That. +I did some simple tests with time, dd and cat, added some obscure parameters to dd, because cat is better. +Testing dd with status and specific blocksize $ time dd if=/dev/sdd of=test. + + + + There is not enough cyber in the world + https://goatpr0n.farm/posts/there-is-not-enough-cyber-in-the-world/ + Mon, 21 Jan 2019 15:21:23 +0000 + + https://goatpr0n.farm/posts/there-is-not-enough-cyber-in-the-world/ + My recent favuorite hash tags in social networks are: +- cyberwar / cyberkrieg - cold-cyberwar / kalter cyberkrieg KTHXBYE + + + + \ No newline at end of file diff --git a/public/categories/hardware/index.html b/public/categories/hardware/index.html new file mode 100644 index 0000000..a1636e5 --- /dev/null +++ b/public/categories/hardware/index.html @@ -0,0 +1,104 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/categories/hardware/index.xml b/public/categories/hardware/index.xml new file mode 100644 index 0000000..ca7f252 --- /dev/null +++ b/public/categories/hardware/index.xml @@ -0,0 +1,38 @@ + + + + hardware on GoatPr0n.farm + https://goatpr0n.farm/categories/hardware/ + Recent content in hardware on GoatPr0n.farm + Hugo -- gohugo.io + en + Thu, 28 Nov 2019 12:01:53 +0000 + + + + + + Reverse Engineering of a Flash Programmer :: EZP2010 + https://goatpr0n.farm/posts/reverse-engineering-of-a-flash-programmer-ezp2010/ + Thu, 28 Nov 2019 12:01:53 +0000 + + https://goatpr0n.farm/posts/reverse-engineering-of-a-flash-programmer-ezp2010/ + Preface In today&rsquo;s adventure I like to take you with me on my journey of reverse engineering another USB device. The EZP2010 is an USB programmer for flash memory as used by mainboard manufactures to store the BIOS, or embedded devices to store the firmware (or settings). When it comes to data recovery on hard drives, or similar storage devices, these flashers can also become handy. +EZP2010 USB-Highspeed programmer +This particular programmer can be bought on many Chinese store or Amazon. + + + + Initial flashing/debricking the Proxmark V3 EASY (w/ Bus Pirate) + https://goatpr0n.farm/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate/ + Wed, 25 Sep 2019 15:22:58 +0000 + + https://goatpr0n.farm/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate/ + TL;DR; Short the ERASE pin with VDDCORE, if ERASE == PIN_55 &amp;&amp; VDDCORE == PIN_54 +According to complains in the internet, users report bricking their Proxmark3 EASY, when they try to flash the latest firmware with the &lsquo;flasher&rsquo; software tool. +Sometimes flashing process of firmware can go wrong, but it can often be recovered with JTAG programmers, or similar programmers. +I will not about setting up the environment to build, and flash the firmware, but I will tell you what you might be missing out and why it might be not working. + + + + \ No newline at end of file diff --git a/public/categories/index.html b/public/categories/index.html new file mode 100644 index 0000000..3dd2b83 --- /dev/null +++ b/public/categories/index.html @@ -0,0 +1,120 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+ + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..7ba1543 --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,69 @@ + + + + Categories on GoatPr0n.farm + https://goatpr0n.farm/categories/ + Recent content in Categories on GoatPr0n.farm + Hugo -- gohugo.io + en + Thu, 28 Nov 2019 12:01:53 +0000 + + + + + + hardware + https://goatpr0n.farm/categories/hardware/ + Thu, 28 Nov 2019 12:01:53 +0000 + + https://goatpr0n.farm/categories/hardware/ + + + + + reverse engineering + https://goatpr0n.farm/categories/reverse-engineering/ + Thu, 28 Nov 2019 12:01:53 +0000 + + https://goatpr0n.farm/categories/reverse-engineering/ + + + + + cyber + https://goatpr0n.farm/categories/cyber/ + Wed, 25 Sep 2019 15:22:58 +0000 + + https://goatpr0n.farm/categories/cyber/ + + + + + CTF + https://goatpr0n.farm/categories/ctf/ + Wed, 24 Jul 2019 12:19:47 +0000 + + https://goatpr0n.farm/categories/ctf/ + + + + + brain fart + https://goatpr0n.farm/categories/brain-fart/ + Tue, 05 Feb 2019 18:45:08 +0000 + + https://goatpr0n.farm/categories/brain-fart/ + + + + + Uncategorized + https://goatpr0n.farm/categories/uncategorized/ + Tue, 05 Feb 2019 18:17:12 +0000 + + https://goatpr0n.farm/categories/uncategorized/ + + + + + \ No newline at end of file diff --git a/public/categories/reverse-engineering/index.html b/public/categories/reverse-engineering/index.html new file mode 100644 index 0000000..44148ee --- /dev/null +++ b/public/categories/reverse-engineering/index.html @@ -0,0 +1,116 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/categories/reverse-engineering/index.xml b/public/categories/reverse-engineering/index.xml new file mode 100644 index 0000000..8f36c82 --- /dev/null +++ b/public/categories/reverse-engineering/index.xml @@ -0,0 +1,74 @@ + + + + reverse engineering on GoatPr0n.farm + https://goatpr0n.farm/categories/reverse-engineering/ + Recent content in reverse engineering on GoatPr0n.farm + Hugo -- gohugo.io + en + Thu, 28 Nov 2019 12:01:53 +0000 + + + + + + Reverse Engineering of a Flash Programmer :: EZP2010 + https://goatpr0n.farm/posts/reverse-engineering-of-a-flash-programmer-ezp2010/ + Thu, 28 Nov 2019 12:01:53 +0000 + + https://goatpr0n.farm/posts/reverse-engineering-of-a-flash-programmer-ezp2010/ + Preface In today&rsquo;s adventure I like to take you with me on my journey of reverse engineering another USB device. The EZP2010 is an USB programmer for flash memory as used by mainboard manufactures to store the BIOS, or embedded devices to store the firmware (or settings). When it comes to data recovery on hard drives, or similar storage devices, these flashers can also become handy. +EZP2010 USB-Highspeed programmer +This particular programmer can be bought on many Chinese store or Amazon. + + + + Initial flashing/debricking the Proxmark V3 EASY (w/ Bus Pirate) + https://goatpr0n.farm/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate/ + Wed, 25 Sep 2019 15:22:58 +0000 + + https://goatpr0n.farm/posts/initial-flashing-debricking-the-proxmark-v3-easy-w-bus-pirate/ + TL;DR; Short the ERASE pin with VDDCORE, if ERASE == PIN_55 &amp;&amp; VDDCORE == PIN_54 +According to complains in the internet, users report bricking their Proxmark3 EASY, when they try to flash the latest firmware with the &lsquo;flasher&rsquo; software tool. +Sometimes flashing process of firmware can go wrong, but it can often be recovered with JTAG programmers, or similar programmers. +I will not about setting up the environment to build, and flash the firmware, but I will tell you what you might be missing out and why it might be not working. + + + + Google CTF 2019 - FriendSpaceBookPlusAllAccessRedPremium.com + https://goatpr0n.farm/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com/ + Wed, 24 Jul 2019 12:19:47 +0000 + + https://goatpr0n.farm/posts/google-ctf-2019-friendspacebookplusallaccessredpremium-com/ + #MemeFreeEdition +The Challenge You are provided a zip file containing two files. + program vm.py The file program contains instructions encoded as emojis for a virtual machine called vm.py. At the bottom of vm.py I found a list, or lets call it a translation table, with emojis and their function name counter part. +OPERATIONS = { &#39;🍑&#39;: add, &#39;🀑&#39;: clone, &#39;πŸ“&#39;: divide, &#39;😲&#39;: if_zero, &#39;πŸ˜„&#39;: if_not_zero, &#39;πŸ€&#39;: jump_to, &#39;πŸš›&#39;: load, &#39;πŸ“¬&#39;: modulo, &#39;⭐&#39;: multiply, &#39;🍿&#39;: pop, &#39;πŸ“€&#39;: pop_out, &#39;🎀&#39;: print_top, &#39;πŸ“₯&#39;: push, &#39;πŸ”ͺ&#39;: sub, &#39;πŸŒ“&#39;: xor, &#39;β›°&#39;: jump_top, &#39;βŒ›&#39;: exit } To execute program with vm. + + + + Reverse Engineering of the SkyRC MC3000 Battery Charger USB Protocol + https://goatpr0n.farm/posts/reverse-engineering-of-the-skyrc-mc3000-battery-charger-usb-protocol/ + Mon, 18 Mar 2019 16:49:39 +0000 + + https://goatpr0n.farm/posts/reverse-engineering-of-the-skyrc-mc3000-battery-charger-usb-protocol/ + Software Requirements Decompiler for .NET programs + dotPeek The implementation of the protocol is then written in Python. Let&rsquo;s hear what the curator has to say: +Tell me about Python. +&gt; Wow. Much Snake. Easy programming! &gt; &gt; \- Doge Tell me about dotPeek. +&gt; Easy decompilation. Readable syntax. Very easy. &gt; &gt; \- Doge Analyzing MC3000_Monitor Decompiling Start dotPeek and use Drag&rsquo;n&rsquo;Drop to load the Application. Or uSe CtRL+O anD LoCATe tHe fILe uSiNg ThE bOrwsEr. + + + + [Teaser] How to reverse engineer communication protocols of embedded devices + https://goatpr0n.farm/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices/ + Sat, 16 Feb 2019 01:25:34 +0000 + + https://goatpr0n.farm/posts/teaser-how-to-reverse-engineer-communication-protocols-of-embedded-devices/ + Sneak Preview These letters. Such announcement. Many words. +In the next few days I will publish two - not one - but two articles on how to approach a problem on how to reverse engineer protocols. There have been to applications I looked into to code a library for my home uses. +#1 - MC3000 Charger MC3000_Charger provides an USB and Bluetooth (BT) interface (Spoiler: I am not covering the BT interface. + + + + \ No newline at end of file diff --git a/public/categories/uncategorized/index.html b/public/categories/uncategorized/index.html new file mode 100644 index 0000000..60ea545 --- /dev/null +++ b/public/categories/uncategorized/index.html @@ -0,0 +1,108 @@ + + + GoatPr0n.farm + + + + + + + + + + + +
+
+

+ © + + Julian Knauer + + 2020 + +

+

+ + + + + +

+
+ + + + + + + + + + + + + + + + + + diff --git a/public/categories/uncategorized/index.xml b/public/categories/uncategorized/index.xml new file mode 100644 index 0000000..13bfe50 --- /dev/null +++ b/public/categories/uncategorized/index.xml @@ -0,0 +1,45 @@ + + + + Uncategorized on GoatPr0n.farm + https://goatpr0n.farm/categories/uncategorized/ + Recent content in Uncategorized on GoatPr0n.farm + Hugo -- gohugo.io + en + Tue, 05 Feb 2019 18:17:12 +0000 + + + + + + Welcome to the farm! + https://goatpr0n.farm/posts/welcome-to-the-farm/ + Tue, 05 Feb 2019 18:17:12 +0000 + + https://goatpr0n.farm/posts/welcome-to-the-farm/ + This magnificent piece of blog is now available under https://goatpr0n.farm/. Marvelous! + + + + What if the cult of dd is right? + https://goatpr0n.farm/posts/what-if-the-cult-of-dd-is-right/ + Wed, 23 Jan 2019 00:47:15 +0000 + + https://goatpr0n.farm/posts/what-if-the-cult-of-dd-is-right/ + Are you a believer? There are articles out there talking about the useless usage of dd and why cat is better. Cat is faster because it automatically adjusts the blocksize and dd is slow because it internally only works with 512 byte blocks. This and That. +I did some simple tests with time, dd and cat, added some obscure parameters to dd, because cat is better. +Testing dd with status and specific blocksize $ time dd if=/dev/sdd of=test. + + + + There is not enough cyber in the world + https://goatpr0n.farm/posts/there-is-not-enough-cyber-in-the-world/ + Mon, 21 Jan 2019 15:21:23 +0000 + + https://goatpr0n.farm/posts/there-is-not-enough-cyber-in-the-world/ + My recent favuorite hash tags in social networks are: +- cyberwar / cyberkrieg - cold-cyberwar / kalter cyberkrieg KTHXBYE + + + + \ No newline at end of file diff --git a/public/css/bootstrap-responsive.css b/public/css/bootstrap-responsive.css new file mode 100644 index 0000000..7036764 --- /dev/null +++ b/public/css/bootstrap-responsive.css @@ -0,0 +1,1127 @@ +/*! + * Bootstrap Responsive v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +@-ms-viewport { + width: device-width; +} + +.hidden { + display: none; + visibility: hidden; +} + +.visible-phone { + display: none !important; +} + +.visible-tablet { + display: none !important; +} + +.hidden-desktop { + display: none !important; +} + +.visible-desktop { + display: inherit !important; +} + +@media (min-width: 768px) and (max-width: 979px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important ; + } + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } +} + +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } +} + +.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: inherit !important; + } + .hidden-print { + display: none !important; + } +} + +@media (min-width: 1200px) { + .row { + margin-left: -24px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1128px; + } + .span12 { + width: 1128px; + } + .span11 { + width: 1032px; + } + .span10 { + width: 936px; + } + .span9 { + width: 840px; + } + .span8 { + width: 744px; + } + .span7 { + width: 648px; + } + .span6 { + width: 552px; + } + .span5 { + width: 456px; + } + .span4 { + width: 360px; + } + .span3 { + width: 264px; + } + .span2 { + width: 168px; + } + .span1 { + width: 72px; + } + .offset12 { + margin-left: 1176px; + } + .offset11 { + margin-left: 1080px; + } + .offset10 { + margin-left: 984px; + } + .offset9 { + margin-left: 888px; + } + .offset8 { + margin-left: 792px; + } + .offset7 { + margin-left: 696px; + } + .offset6 { + margin-left: 600px; + } + .offset5 { + margin-left: 504px; + } + .offset4 { + margin-left: 408px; + } + .offset3 { + margin-left: 312px; + } + .offset2 { + margin-left: 216px; + } + .offset1 { + margin-left: 120px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 2.127659574468085%; + *margin-left: 2.07469347277317%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.127659574468085%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; + } + .row-fluid .span11 { + width: 91.48936170212765%; + *width: 91.43639560043273%; + } + .row-fluid .span10 { + width: 82.97872340425532%; + *width: 82.9257573025604%; + } + .row-fluid .span9 { + width: 74.46808510638297%; + *width: 74.41511900468805%; + } + .row-fluid .span8 { + width: 65.95744680851064%; + *width: 65.90448070681572%; + } + .row-fluid .span7 { + width: 57.44680851063829%; + *width: 57.39384240894338%; + } + .row-fluid .span6 { + width: 48.93617021276595%; + *width: 48.88320411107104%; + } + .row-fluid .span5 { + width: 40.42553191489362%; + *width: 40.372565813198705%; + } + .row-fluid .span4 { + width: 31.914893617021278%; + *width: 31.86192751532636%; + } + .row-fluid .span3 { + width: 23.404255319148934%; + *width: 23.351289217454017%; + } + .row-fluid .span2 { + width: 14.893617021276595%; + *width: 14.84065091958168%; + } + .row-fluid .span1 { + width: 6.382978723404255%; + *width: 6.33001262170934%; + } + .row-fluid .offset12 { + margin-left: 104.25531914893617%; + *margin-left: 104.14938694554633%; + } + .row-fluid .offset12:first-child { + margin-left: 102.12765957446808%; + *margin-left: 102.02172737107824%; + } + .row-fluid .offset11 { + margin-left: 95.74468085106382%; + *margin-left: 95.63874864767398%; + } + .row-fluid .offset11:first-child { + margin-left: 93.61702127659574%; + *margin-left: 93.5110890732059%; + } + .row-fluid .offset10 { + margin-left: 87.23404255319149%; + *margin-left: 87.12811034980164%; + } + .row-fluid .offset10:first-child { + margin-left: 85.1063829787234%; + *margin-left: 85.00045077533356%; + } + .row-fluid .offset9 { + margin-left: 78.72340425531914%; + *margin-left: 78.6174720519293%; + } + .row-fluid .offset9:first-child { + margin-left: 76.59574468085106%; + *margin-left: 76.48981247746121%; + } + .row-fluid .offset8 { + margin-left: 70.2127659574468%; + *margin-left: 70.10683375405696%; + } + .row-fluid .offset8:first-child { + margin-left: 68.08510638297872%; + *margin-left: 67.97917417958888%; + } + .row-fluid .offset7 { + margin-left: 61.70212765957446%; + *margin-left: 61.59619545618464%; + } + .row-fluid .offset7:first-child { + margin-left: 59.574468085106375%; + *margin-left: 59.46853588171655%; + } + .row-fluid .offset6 { + margin-left: 53.191489361702125%; + *margin-left: 53.08555715831229%; + } + .row-fluid .offset6:first-child { + margin-left: 51.063829787234035%; + *margin-left: 50.95789758384421%; + } + .row-fluid .offset5 { + margin-left: 44.68085106382979%; + *margin-left: 44.57491886043996%; + } + .row-fluid .offset5:first-child { + margin-left: 42.5531914893617%; + *margin-left: 42.447259285971874%; + } + .row-fluid .offset4 { + margin-left: 36.170212765957444%; + *margin-left: 36.06428056256762%; + } + .row-fluid .offset4:first-child { + margin-left: 34.04255319148936%; + *margin-left: 33.936620988099534%; + } + .row-fluid .offset3 { + margin-left: 27.659574468085104%; + *margin-left: 27.55364226469527%; + } + .row-fluid .offset3:first-child { + margin-left: 25.53191489361702%; + *margin-left: 25.425982690227183%; + } + .row-fluid .offset2 { + margin-left: 19.148936170212764%; + *margin-left: 19.043003966822933%; + } + .row-fluid .offset2:first-child { + margin-left: 17.02127659574468%; + *margin-left: 16.91534439235485%; + } + .row-fluid .offset1 { + margin-left: 10.638297872340425%; + *margin-left: 10.532365668950595%; + } + .row-fluid .offset1:first-child { + margin-left: 8.51063829787234%; + *margin-left: 8.40470609448251%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 24px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1114px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1018px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 922px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 826px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 730px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 634px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 538px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 442px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 346px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 250px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 154px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 58px; + } + .thumbnails { + margin-left: -24px; + } + .thumbnails > li { + margin-left: 24px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} + +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -16px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 656px; + } + .span12 { + width: 656px; + } + .span11 { + width: 600px; + } + .span10 { + width: 544px; + } + .span9 { + width: 488px; + } + .span8 { + width: 432px; + } + .span7 { + width: 376px; + } + .span6 { + width: 320px; + } + .span5 { + width: 264px; + } + .span4 { + width: 208px; + } + .span3 { + width: 152px; + } + .span2 { + width: 96px; + } + .span1 { + width: 40px; + } + .offset12 { + margin-left: 688px; + } + .offset11 { + margin-left: 632px; + } + .offset10 { + margin-left: 576px; + } + .offset9 { + margin-left: 520px; + } + .offset8 { + margin-left: 464px; + } + .offset7 { + margin-left: 408px; + } + .offset6 { + margin-left: 352px; + } + .offset5 { + margin-left: 296px; + } + .offset4 { + margin-left: 240px; + } + .offset3 { + margin-left: 184px; + } + .offset2 { + margin-left: 128px; + } + .offset1 { + margin-left: 72px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 2.4390243902439024%; + *margin-left: 2.386058288548987%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.4390243902439024%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; + } + .row-fluid .span11 { + width: 91.46341463414635%; + *width: 91.41044853245143%; + } + .row-fluid .span10 { + width: 82.92682926829268%; + *width: 82.87386316659776%; + } + .row-fluid .span9 { + width: 74.39024390243902%; + *width: 74.3372778007441%; + } + .row-fluid .span8 { + width: 65.85365853658537%; + *width: 65.80069243489045%; + } + .row-fluid .span7 { + width: 57.31707317073171%; + *width: 57.2641070690368%; + } + .row-fluid .span6 { + width: 48.78048780487805%; + *width: 48.727521703183136%; + } + .row-fluid .span5 { + width: 40.24390243902439%; + *width: 40.190936337329475%; + } + .row-fluid .span4 { + width: 31.70731707317073%; + *width: 31.654350971475814%; + } + .row-fluid .span3 { + width: 23.170731707317074%; + *width: 23.117765605622157%; + } + .row-fluid .span2 { + width: 14.634146341463415%; + *width: 14.5811802397685%; + } + .row-fluid .span1 { + width: 6.097560975609756%; + *width: 6.044594873914841%; + } + .row-fluid .offset12 { + margin-left: 104.8780487804878%; + *margin-left: 104.77211657709796%; + } + .row-fluid .offset12:first-child { + margin-left: 102.4390243902439%; + *margin-left: 102.33309218685406%; + } + .row-fluid .offset11 { + margin-left: 96.34146341463415%; + *margin-left: 96.23553121124431%; + } + .row-fluid .offset11:first-child { + margin-left: 93.90243902439025%; + *margin-left: 93.7965068210004%; + } + .row-fluid .offset10 { + margin-left: 87.80487804878048%; + *margin-left: 87.69894584539064%; + } + .row-fluid .offset10:first-child { + margin-left: 85.36585365853658%; + *margin-left: 85.25992145514674%; + } + .row-fluid .offset9 { + margin-left: 79.26829268292683%; + *margin-left: 79.16236047953699%; + } + .row-fluid .offset9:first-child { + margin-left: 76.82926829268293%; + *margin-left: 76.72333608929308%; + } + .row-fluid .offset8 { + margin-left: 70.73170731707317%; + *margin-left: 70.62577511368333%; + } + .row-fluid .offset8:first-child { + margin-left: 68.29268292682927%; + *margin-left: 68.18675072343943%; + } + .row-fluid .offset7 { + margin-left: 62.19512195121951%; + *margin-left: 62.089189747829685%; + } + .row-fluid .offset7:first-child { + margin-left: 59.75609756097561%; + *margin-left: 59.650165357585784%; + } + .row-fluid .offset6 { + margin-left: 53.65853658536585%; + *margin-left: 53.552604381976025%; + } + .row-fluid .offset6:first-child { + margin-left: 51.21951219512195%; + *margin-left: 51.113579991732124%; + } + .row-fluid .offset5 { + margin-left: 45.12195121951219%; + *margin-left: 45.016019016122364%; + } + .row-fluid .offset5:first-child { + margin-left: 42.68292682926829%; + *margin-left: 42.57699462587846%; + } + .row-fluid .offset4 { + margin-left: 36.58536585365854%; + *margin-left: 36.4794336502687%; + } + .row-fluid .offset4:first-child { + margin-left: 34.146341463414636%; + *margin-left: 34.0404092600248%; + } + .row-fluid .offset3 { + margin-left: 28.04878048780488%; + *margin-left: 27.942848284415046%; + } + .row-fluid .offset3:first-child { + margin-left: 25.609756097560975%; + *margin-left: 25.50382389417114%; + } + .row-fluid .offset2 { + margin-left: 19.51219512195122%; + *margin-left: 19.40626291856139%; + } + .row-fluid .offset2:first-child { + margin-left: 17.073170731707318%; + *margin-left: 16.967238528317484%; + } + .row-fluid .offset1 { + margin-left: 10.975609756097562%; + *margin-left: 10.86967755270773%; + } + .row-fluid .offset1:first-child { + margin-left: 8.536585365853659%; + *margin-left: 8.430653162463829%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 16px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 642px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 586px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 530px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 474px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 418px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 362px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 306px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 250px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 194px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 138px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 82px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 26px; + } +} + +@media (max-width: 767px) { + body { + padding-right: 18px; + padding-left: 18px; + } + .navbar-fixed-top, + .navbar-fixed-bottom, + .navbar-static-top { + margin-right: -10px; + margin-left: -10px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + width: auto; + clear: none; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + .thumbnails > li { + float: none; + margin-left: 0; + } + [class*="span"], + .uneditable-input[class*="span"], + .row-fluid [class*="span"] { + display: block; + float: none; + width: 100%; + margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .span12, + .row-fluid .span12 { + width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="offset"]:first-child { + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 0; + } + .modal { + position: fixed; + top: 20px; + right: 20px; + left: 20px; + width: auto; + margin: 0; + } + .modal.fade { + top: -100px; + } + .modal.fade.in { + top: 18px; + } +} + +@media (max-width: 480px) { + .nav-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 20px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-right: 10px; + padding-left: 10px; + } + .media .pull-left, + .media .pull-right { + display: block; + float: none; + margin-bottom: 20px; + } + .media-object { + margin-right: 0; + margin-left: 0; + } + .modal { + top: 9px; + right: 4px; + left: 4px; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} + +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 20px; + } + .navbar-fixed-bottom { + margin-top: 20px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 0; + } + .navbar .container { + width: auto; + padding: 0; + } + .navbar .brand { + padding: 10px 10px; + margin: 0; + } + .nav-collapse { + clear: both; + } + .nav-collapse .nav { + float: none; + margin: 0 0 10px; + } + .nav-collapse .nav > li { + float: none; + } + .nav-collapse .nav > li > a { + margin-bottom: 0; + } + .nav-collapse .nav > .divider-vertical { + display: none; + } + .nav-collapse .nav .nav-header { + color: #000000; + text-shadow: none; + } + .nav-collapse .nav > li > a, + .nav-collapse .dropdown-menu a { + padding: 0 10px; + color: #000000; + } + .nav-collapse .nav > li.active > a { + color: #bbbbbb; + } + .nav-collapse .btn { + padding: 10px 10px; + font-weight: normal; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + } + .nav-collapse .dropdown-menu li + li a { + margin-bottom: 0; + } + .nav-collapse .nav > li > a:hover, + .nav-collapse .nav > li > a:focus, + .nav-collapse .dropdown-menu a:hover, + .nav-collapse .dropdown-menu a:focus { + color: #bbbbbb; + background-color: #bbbbbb; + } + .navbar-inverse .nav-collapse .nav > li > a, + .navbar-inverse .nav-collapse .dropdown-menu a { + color: #000000; + } + .navbar-inverse .nav-collapse .nav > li > a:hover, + .navbar-inverse .nav-collapse .nav > li > a:focus, + .navbar-inverse .nav-collapse .dropdown-menu a:hover, + .navbar-inverse .nav-collapse .dropdown-menu a:focus { + color: #bbbbbb; + background-color: #000000; + } + .nav-collapse.in .btn-group { + padding: 0; + margin-top: 5px; + } + .nav-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + display: none; + float: none; + max-width: none; + padding: 0; + margin: 0; + background-color: transparent; + border: none; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .nav-collapse .open > .dropdown-menu { + display: block; + } + .nav-collapse .dropdown-menu:before, + .nav-collapse .dropdown-menu:after { + display: none; + } + .nav-collapse .dropdown-menu .divider { + display: none; + } + .nav-collapse .nav > li > .dropdown-menu:before, + .nav-collapse .nav > li > .dropdown-menu:after { + display: none; + } + .nav-collapse .navbar-form, + .nav-collapse .navbar-search { + float: none; + padding: 10px 10px; + margin: 10px 0; + border-top: 1px solid #bbbbbb; + border-bottom: 1px solid #bbbbbb; + } + .navbar-inverse .nav-collapse .navbar-form, + .navbar-inverse .nav-collapse .navbar-search { + border-top-color: #000000; + border-bottom-color: #000000; + } + .navbar .nav-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .nav-collapse, + .nav-collapse.collapse { + height: 0; + overflow: hidden; + } + .nav-collapse > ul.nav > li.active > a { + color: #bbbbbb; + } + .navbar .btn-navbar { + display: block; + color: #ffffff; + background: #555555; + -webkit-box-shadow: 0 0 0; + -moz-box-shadow: 0 0 0; + box-shadow: 0 0 0; + } + .navbar .btn-navbar:after { + content: ""; + } + .navbar .btn-navbar:before { + content: "β–Ό"; + } + .navbar .btn-navbar.active, + .navbar .btn-navbar:active { + margin-bottom: 20px; + color: #ffffff; + background: #000000; + outline: 0; + } + .navbar-static .navbar-inner { + padding-right: 10px; + padding-left: 10px; + } +} + +@media (min-width: 980px) { + .nav-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +} diff --git a/public/css/bootstrap.css b/public/css/bootstrap.css new file mode 100644 index 0000000..2a45ab8 --- /dev/null +++ b/public/css/bootstrap.css @@ -0,0 +1,5893 @@ +/*! + * Bootstrap v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +nav, +section { + display: block; +} + +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1; +} + +audio:not([controls]) { + display: none; +} + +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +a:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +a:hover, +a:active { + outline: 0; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + width: auto\9; + height: auto; + max-width: 100%; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; +} + +#map_canvas img, +.google-maps img { + max-width: none; +} + +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} + +button, +input { + *overflow: visible; + line-height: normal; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; +} + +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} + +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: none; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} + +@font-face { + font-family: 'DOS'; + font-style: normal; + font-weight: normal; + src: url('fonts/Fixedsys500c.eot'); + src: local('☺'), url('fonts/Fixedsys500c.woff') format('woff'), url('fonts/Fixedsys500c.ttf') format('truetype'), url('fonts/Fixedsys500c.svg') format('svg'); +} + +body { + margin: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + line-height: 20px; + color: #bbbbbb; + background-color: #000084; +} + +a { + color: #fefe54; + text-decoration: none; +} + +a:hover, +a:focus { + color: #fefe54; + background: #aa5500; +} + +.img-rounded { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.img-polaroid { + padding: 9px 4px 9px 4px; + background-color: #ffffff; + border: 2px solid #000000; +} + +.row { + margin-left: -16px; + *zoom: 1; +} + +.row:before, +.row:after { + display: table; + line-height: 0; + content: ""; +} + +.row:after { + clear: both; +} + +[class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; +} + +.container, +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 944px; +} + +.span12 { + width: 944px; +} + +.span11 { + width: 864px; +} + +.span10 { + width: 784px; +} + +.span9 { + width: 704px; +} + +.span8 { + width: 624px; +} + +.span7 { + width: 544px; +} + +.span6 { + width: 464px; +} + +.span5 { + width: 384px; +} + +.span4 { + width: 304px; +} + +.span3 { + width: 224px; +} + +.span2 { + width: 144px; +} + +.span1 { + width: 64px; +} + +.offset12 { + margin-left: 976px; +} + +.offset11 { + margin-left: 896px; +} + +.offset10 { + margin-left: 816px; +} + +.offset9 { + margin-left: 736px; +} + +.offset8 { + margin-left: 656px; +} + +.offset7 { + margin-left: 576px; +} + +.offset6 { + margin-left: 496px; +} + +.offset5 { + margin-left: 416px; +} + +.offset4 { + margin-left: 336px; +} + +.offset3 { + margin-left: 256px; +} + +.offset2 { + margin-left: 176px; +} + +.offset1 { + margin-left: 96px; +} + +.row-fluid { + width: 100%; + *zoom: 1; +} + +.row-fluid:before, +.row-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.row-fluid:after { + clear: both; +} + +.row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 1.694915254237288%; + *margin-left: 1.6419491525423728%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} + +.row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 1.694915254237288%; +} + +.row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; +} + +.row-fluid .span11 { + width: 91.52542372881356%; + *width: 91.47245762711864%; +} + +.row-fluid .span10 { + width: 83.0508474576271%; + *width: 82.99788135593218%; +} + +.row-fluid .span9 { + width: 74.57627118644066%; + *width: 74.52330508474574%; +} + +.row-fluid .span8 { + width: 66.10169491525423%; + *width: 66.04872881355931%; +} + +.row-fluid .span7 { + width: 57.6271186440678%; + *width: 57.574152542372886%; +} + +.row-fluid .span6 { + width: 49.152542372881356%; + *width: 49.09957627118644%; +} + +.row-fluid .span5 { + width: 40.677966101694906%; + *width: 40.62499999999999%; +} + +.row-fluid .span4 { + width: 32.20338983050847%; + *width: 32.15042372881356%; +} + +.row-fluid .span3 { + width: 23.728813559322035%; + *width: 23.675847457627118%; +} + +.row-fluid .span2 { + width: 15.254237288135592%; + *width: 15.201271186440676%; +} + +.row-fluid .span1 { + width: 6.779661016949152%; + *width: 6.726694915254237%; +} + +.row-fluid .offset12 { + margin-left: 103.38983050847457%; + *margin-left: 103.28389830508473%; +} + +.row-fluid .offset12:first-child { + margin-left: 101.69491525423729%; + *margin-left: 101.58898305084745%; +} + +.row-fluid .offset11 { + margin-left: 94.91525423728814%; + *margin-left: 94.8093220338983%; +} + +.row-fluid .offset11:first-child { + margin-left: 93.22033898305085%; + *margin-left: 93.11440677966101%; +} + +.row-fluid .offset10 { + margin-left: 86.44067796610167%; + *margin-left: 86.33474576271183%; +} + +.row-fluid .offset10:first-child { + margin-left: 84.74576271186439%; + *margin-left: 84.63983050847455%; +} + +.row-fluid .offset9 { + margin-left: 77.96610169491524%; + *margin-left: 77.8601694915254%; +} + +.row-fluid .offset9:first-child { + margin-left: 76.27118644067795%; + *margin-left: 76.16525423728811%; +} + +.row-fluid .offset8 { + margin-left: 69.4915254237288%; + *margin-left: 69.38559322033896%; +} + +.row-fluid .offset8:first-child { + margin-left: 67.79661016949152%; + *margin-left: 67.69067796610167%; +} + +.row-fluid .offset7 { + margin-left: 61.016949152542374%; + *margin-left: 60.91101694915255%; +} + +.row-fluid .offset7:first-child { + margin-left: 59.32203389830509%; + *margin-left: 59.21610169491526%; +} + +.row-fluid .offset6 { + margin-left: 52.54237288135593%; + *margin-left: 52.436440677966104%; +} + +.row-fluid .offset6:first-child { + margin-left: 50.847457627118644%; + *margin-left: 50.74152542372882%; +} + +.row-fluid .offset5 { + margin-left: 44.06779661016948%; + *margin-left: 43.961864406779654%; +} + +.row-fluid .offset5:first-child { + margin-left: 42.37288135593219%; + *margin-left: 42.26694915254237%; +} + +.row-fluid .offset4 { + margin-left: 35.593220338983045%; + *margin-left: 35.48728813559322%; +} + +.row-fluid .offset4:first-child { + margin-left: 33.89830508474576%; + *margin-left: 33.79237288135593%; +} + +.row-fluid .offset3 { + margin-left: 27.11864406779661%; + *margin-left: 27.01271186440678%; +} + +.row-fluid .offset3:first-child { + margin-left: 25.423728813559322%; + *margin-left: 25.317796610169488%; +} + +.row-fluid .offset2 { + margin-left: 18.644067796610166%; + *margin-left: 18.538135593220336%; +} + +.row-fluid .offset2:first-child { + margin-left: 16.94915254237288%; + *margin-left: 16.84322033898305%; +} + +.row-fluid .offset1 { + margin-left: 10.169491525423728%; + *margin-left: 10.063559322033898%; +} + +.row-fluid .offset1:first-child { + margin-left: 8.47457627118644%; + *margin-left: 8.36864406779661%; +} + +[class*="span"].hide, +.row-fluid [class*="span"].hide { + display: none; +} + +[class*="span"].pull-right, +.row-fluid [class*="span"].pull-right { + float: right; +} + +.container { + margin-left: 20px; + *zoom: 1; +} + +.container:before, +.container:after { + display: table; + line-height: 0; + content: ""; +} + +.container:after { + clear: both; +} + +.container-fluid { + padding-right: 16px; + padding-left: 16px; + *zoom: 1; +} + +.container-fluid:before, +.container-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.container-fluid:after { + clear: both; +} + +img { + -webkit-filter: contrast(800%); + -moz-filter: contrast(1000%); + -ms-filter: contrast(800%); + -o-filter: contrast(800%); + filter: contrast(1000%); +} + +p { + margin: 0 0 20px; +} + +.lead { + padding: 9px 14px 9px 14px; + margin: 9px 4px 9px 4px; + font-size: 18px; + color: #ffffff; + border: 2px solid #bbbbbb; +} + +small { + font-size: 100%; +} + +strong { + font-weight: normal; + color: #ffffff; +} + +em { + font-weight: normal; + color: #ffffff; +} + +cite { + font-style: normal; +} + +i, +cite, +em, +var, +address, +dfn { + font-style: normal; +} + +i:before, +cite:before, +em:before, +var:before, +address:before, +dfn:before, +i:after, +cite:after, +em:after, +var:after, +address:after, +dfn:after { + content: '/'; +} + +.muted { + display: none; + color: #bbbbbb; +} + +.text-warning { + color: #ffffff; +} + +a.text-warning:hover, +a.text-warning:focus { + color: #ffffff; +} + +.text-error { + color: #ffffff; +} + +a.text-error:hover, +a.text-error:focus { + color: #ffffff; +} + +.text-info { + color: #000000; +} + +a.text-info:hover, +a.text-info:focus { + color: #000000; +} + +.text-success { + color: #00aa00; +} + +a.text-success:hover, +a.text-success:focus { + color: #00aa00; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-center { + text-align: center; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + font-family: inherit; + font-weight: inherit; + line-height: 20px; + color: #ffffff; + text-rendering: optimizelegibility; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small { + font-weight: normal; + line-height: 1; + color: #bbbbbb; +} + +h1, +h2, +h3 { + line-height: 20px; +} + +h3:before { + content: ">>> "; +} + +h3:after { + content: " <<<"; +} + +h1 { + font-size: 18px; + text-transform: uppercase; +} + +h2 { + font-size: 18px; + text-align: center; + white-space: nowrap; +} + +h3 { + font-size: 18px; +} + +h4 { + font-size: 18px; + color: #fe54fe; +} + +h5 { + font-size: 18px; +} + +h6 { + font-size: 18px; +} + +h1 small { + font-size: 18px; +} + +h2 small { + font-size: 18px; +} + +h3 small { + font-size: 18px; +} + +h4 small { + font-size: 18px; +} + +.page-header { + padding: 20px 20px; + margin: 20px 0 20px; + background: #00aaaa; +} + +.page-header h1 { + color: #000000; +} + +ul, +ol { + padding: 0; + margin: 0 0 20px 20px; +} + +ul ul, +ul ol, +ol ol, +ol ul { + margin-bottom: 0; +} + +li { + padding-left: 0; + margin-left: 0; + line-height: 20px; + list-style: none; +} + +ul.unstyled, +ol.unstyled { + margin-left: 0; + list-style: none; +} + +ul.inline, +ol.inline { + margin-left: 0; + list-style: none; +} + +ul.inline > li, +ol.inline > li { + display: inline-block; + *display: inline; + padding-right: 9.5px; + padding-left: 10.7px; + *zoom: 1; +} + +dl { + margin-bottom: 20px; +} + +dt, +dd { + line-height: 20px; +} + +dt { + font-weight: normal; +} + +dd { + margin-left: 21px; +} + +.dl-horizontal { + *zoom: 1; +} + +.dl-horizontal:before, +.dl-horizontal:after { + display: table; + line-height: 0; + content: ""; +} + +.dl-horizontal:after { + clear: both; +} + +.dl-horizontal dt { + float: left; + width: 162px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} + +.dl-horizontal dd { + margin-left: 182px; +} + +hr { + margin: 6px 0 7px; + border: 0; + border-top: 0px solid #bbbbbb; + border-bottom: 2px solid #ffffff; +} + +abbr[title], +abbr[data-original-title] { + cursor: help; + border: 0; +} + +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #bbbbbb; +} + +blockquote p { + margin-bottom: 0; + font-size: 18px; + line-height: 20px; +} + +blockquote small { + display: block; + line-height: 20px; + color: #bbbbbb; +} + +blockquote small:before { + content: '\2014 \00A0'; +} + +blockquote.pull-right { + float: right; + padding-right: 1em; + padding-left: 0; + border-right: 5px solid #bbbbbb; + border-left: 0; +} + +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} + +blockquote.pull-right small:before { + content: ''; +} + +blockquote.pull-right small:after { + content: '\00A0 \2014'; +} + +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} + +address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 20px; +} + +code, +pre { + padding: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + color: #555555; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +code { + padding: 0; + color: #ffffff; + white-space: nowrap; + background-color: #000000; + border: 0; +} + +pre { + display: block; + padding: 0; + margin: 0 0 10px; + font-size: 18px; + font-weight: normal; + line-height: 20px; + word-break: break-all; + word-wrap: break-word; + white-space: pre; + white-space: pre-wrap; + background-color: #000000; + border: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +pre.prettyprint { + margin-bottom: 20px; +} + +pre code { + padding: 0; + color: inherit; + white-space: pre; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +form { + margin: 0 0 20px; +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 18px; + line-height: 40px; + color: #ffffff; + border: 0; +} + +legend small { + font-size: 20px; + color: #bbbbbb; +} + +legend:before { + content: "## "; +} + +legend:after { + content: " ##"; +} + +label, +input, +button, +select, +textarea { + font-size: 18px; + font-weight: normal; + line-height: 20px; +} + +input, +button, +select, +textarea { + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; +} + +label { + display: block; + margin-bottom: 5px; +} + +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 20px; + padding: 0 0; + margin: 10px 5px; + font-size: 18px; + line-height: 20px; + color: #000000; + vertical-align: middle; + background: #bbbbbb; + border: 2px solid #000000; +} + +input[type="text"]:before { + content: "["; +} + +input[type="text"]:after { + content: "]"; +} + +input, +textarea, +.uneditable-input { + width: 206px; +} + +textarea { + height: auto; +} + +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #bbbbbb; + border: 0; + border-bottom: 2px solid #000000; +} + +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + outline: 0; +} + +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + *margin-top: 0; + line-height: normal; +} + +input[type="file"], +input[type="image"], +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} + +select, +input[type="file"] { + height: 20px; + /* In IE7, the height of the select element cannot be changed by height, only font-size */ + + *margin-top: 4px; + /* For IE7, add top margin to align select with labels */ + + line-height: 20px; +} + +select { + width: 220px; + background-color: #ffffff; + border: 1px solid #cccccc; +} + +select[multiple], +select[size] { + height: auto; +} + +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.uneditable-input, +.uneditable-textarea { + color: #bbbbbb; + cursor: not-allowed; + background-color: #fcfcfc; + border-color: #cccccc; +} + +.uneditable-input { + overflow: hidden; + white-space: nowrap; +} + +.uneditable-textarea { + width: auto; + height: auto; +} + +input:-moz-placeholder, +textarea:-moz-placeholder { + color: #bbbbbb; +} + +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #bbbbbb; +} + +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #bbbbbb; +} + +.radio, +.checkbox { + min-height: 20px; + padding-left: 20px; +} + +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -20px; +} + +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} + +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} + +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} + +.input-mini { + width: 60px; +} + +.input-small { + width: 90px; +} + +.input-medium { + width: 150px; +} + +.input-large { + width: 210px; +} + +.input-xlarge { + width: 270px; +} + +.input-xxlarge { + width: 530px; +} + +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} + +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} + +input, +textarea, +.uneditable-input { + margin-left: 0; +} + +.controls-row [class*="span"] + [class*="span"] { + margin-left: 16px; +} + +input.span12, +textarea.span12, +.uneditable-input.span12 { + width: 930px; +} + +input.span11, +textarea.span11, +.uneditable-input.span11 { + width: 850px; +} + +input.span10, +textarea.span10, +.uneditable-input.span10 { + width: 770px; +} + +input.span9, +textarea.span9, +.uneditable-input.span9 { + width: 690px; +} + +input.span8, +textarea.span8, +.uneditable-input.span8 { + width: 610px; +} + +input.span7, +textarea.span7, +.uneditable-input.span7 { + width: 530px; +} + +input.span6, +textarea.span6, +.uneditable-input.span6 { + width: 450px; +} + +input.span5, +textarea.span5, +.uneditable-input.span5 { + width: 370px; +} + +input.span4, +textarea.span4, +.uneditable-input.span4 { + width: 290px; +} + +input.span3, +textarea.span3, +.uneditable-input.span3 { + width: 210px; +} + +input.span2, +textarea.span2, +.uneditable-input.span2 { + width: 130px; +} + +input.span1, +textarea.span1, +.uneditable-input.span1 { + width: 50px; +} + +.controls-row { + *zoom: 1; +} + +.controls-row:before, +.controls-row:after { + display: table; + line-height: 0; + content: ""; +} + +.controls-row:after { + clear: both; +} + +.controls-row [class*="span"], +.row-fluid .controls-row [class*="span"] { + float: left; +} + +.controls-row .checkbox[class*="span"], +.controls-row .radio[class*="span"] { + padding-top: 5px; +} + +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #bbbbbb; +} + +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} + +.control-group.warning .control-label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #ffffff; +} + +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #ffffff; +} + +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + border-color: #ffffff; +} + +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #ffffff; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #ffffff; + background-color: #00aaaa; + border-color: #ffffff; +} + +.control-group.error .control-label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #ffffff; +} + +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #ffffff; +} + +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + border-color: #ffffff; +} + +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #ffffff; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #ffffff; + background-color: #aa0000; + border-color: #ffffff; +} + +.control-group.success .control-label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #00aa00; +} + +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #00aa00; +} + +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + border-color: #00aa00; +} + +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #00aa00; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #00aa00; + background-color: #000000; + border-color: #00aa00; +} + +.control-group.info .control-label, +.control-group.info .help-block, +.control-group.info .help-inline { + color: #000000; +} + +.control-group.info .checkbox, +.control-group.info .radio, +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + color: #000000; +} + +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + border-color: #000000; +} + +.control-group.info input:focus, +.control-group.info select:focus, +.control-group.info textarea:focus { + border-color: #000000; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.info .input-prepend .add-on, +.control-group.info .input-append .add-on { + color: #000000; + background-color: #000000; + border-color: #000000; +} + +input:focus:invalid, +textarea:focus:invalid, +select:focus:invalid { + color: #b94a48; + border-color: #ee5f5b; +} + +input:focus:invalid:focus, +textarea:focus:invalid:focus, +select:focus:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} + +.form-actions { + padding: 19px 20px 20px; + margin-top: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} + +.form-actions:before, +.form-actions:after { + display: table; + line-height: 0; + content: ""; +} + +.form-actions:after { + clear: both; +} + +.help-block, +.help-inline { + color: #e1e1e1; +} + +.help-block { + display: block; + margin-bottom: 10px; +} + +.help-inline { + display: inline-block; + *display: inline; + padding-left: 5px; + vertical-align: middle; + *zoom: 1; +} + +.input-append, +.input-prepend { + display: inline-block; + margin-bottom: 10px; + font-size: 0; + white-space: nowrap; + vertical-align: middle; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input, +.input-append .dropdown-menu, +.input-prepend .dropdown-menu, +.input-append .popover, +.input-prepend .popover { + font-size: 18px; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + vertical-align: top; + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-append input:focus, +.input-prepend input:focus, +.input-append select:focus, +.input-prepend select:focus, +.input-append .uneditable-input:focus, +.input-prepend .uneditable-input:focus { + z-index: 2; +} + +.input-append .add-on, +.input-prepend .add-on { + display: inline-block; + width: auto; + height: 20px; + min-width: 16px; + padding: 4px 5px; + font-size: 18px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0; + background-color: #bbbbbb; + border: 0; +} + +.input-append .add-on, +.input-prepend .add-on, +.input-append .btn, +.input-prepend .btn, +.input-append .btn-group > .dropdown-toggle, +.input-prepend .btn-group > .dropdown-toggle { + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} + +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.input-append input + .btn-group .btn:last-child, +.input-append select + .btn-group .btn:last-child, +.input-append .uneditable-input + .btn-group .btn:last-child { + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-append .add-on, +.input-append .btn, +.input-append .btn-group { + margin-left: -1px; +} + +.input-append .add-on:last-child, +.input-append .btn:last-child, +.input-append .btn-group:last-child > .dropdown-toggle { + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend.input-append input + .btn-group .btn, +.input-prepend.input-append select + .btn-group .btn, +.input-prepend.input-append .uneditable-input + .btn-group .btn { + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-prepend.input-append .btn-group:first-child { + margin-left: 0; +} + +input.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + /* IE7-8 doesn't have border-radius, so don't indent the padding */ + + margin-bottom: 0; +} + +/* Allow for input prepend/append in search forms */ + +.form-search .input-append .search-query, +.form-search .input-prepend .search-query { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + margin-bottom: 0; + vertical-align: middle; + *zoom: 1; +} + +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} + +.form-search label, +.form-inline label, +.form-search .btn-group, +.form-inline .btn-group { + display: inline-block; +} + +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} + +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} + +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} + +.control-group { + margin-bottom: 10px; +} + +legend + .control-group { + margin-top: 20px; + -webkit-margin-top-collapse: separate; +} + +.form-horizontal .control-group { + margin-bottom: 20px; + *zoom: 1; +} + +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + line-height: 0; + content: ""; +} + +.form-horizontal .control-group:after { + clear: both; +} + +.form-horizontal .control-label { + float: left; + width: 162px; + padding-top: 5px; + text-align: right; +} + +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 182px; + *margin-left: 0; +} + +.form-horizontal .controls:first-child { + *padding-left: 182px; +} + +.form-horizontal .help-block { + margin-bottom: 0; +} + +.form-horizontal input + .help-block, +.form-horizontal select + .help-block, +.form-horizontal textarea + .help-block, +.form-horizontal .uneditable-input + .help-block, +.form-horizontal .input-prepend + .help-block, +.form-horizontal .input-append + .help-block { + margin-top: 10px; +} + +.form-horizontal .form-actions { + padding-left: 182px; +} + +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} + +.table { + width: 100%; + margin-bottom: 20px; +} + +.table th, +.table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 2px solid #dddddd; +} + +.table th { + font-weight: normal; +} + +.table thead th { + vertical-align: bottom; +} + +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table .table { + background-color: #000084; +} + +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} + +.table-bordered { + margin-left: 4px; + border: 2px solid #dddddd; + border-collapse: separate; + *border-collapse: collapse; + border-left: 0; +} + +.table-bordered th, +.table-bordered td { + padding: inherit 5.2px; + border-left: 2px solid #dddddd; +} + +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} + +.table-bordered thead:first-child tr:first-child > th:first-child, +.table-bordered tbody:first-child tr:first-child > td:first-child, +.table-bordered tbody:first-child tr:first-child > th:first-child { + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topleft: 0; +} + +.table-bordered thead:first-child tr:first-child > th:last-child, +.table-bordered tbody:first-child tr:first-child > td:last-child, +.table-bordered tbody:first-child tr:first-child > th:last-child { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-topright: 0; +} + +.table-bordered thead:last-child tr:last-child > th:first-child, +.table-bordered tbody:last-child tr:last-child > td:first-child, +.table-bordered tbody:last-child tr:last-child > th:first-child, +.table-bordered tfoot:last-child tr:last-child > td:first-child, +.table-bordered tfoot:last-child tr:last-child > th:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} + +.table-bordered thead:last-child tr:last-child > th:last-child, +.table-bordered tbody:last-child tr:last-child > td:last-child, +.table-bordered tbody:last-child tr:last-child > th:last-child, +.table-bordered tfoot:last-child tr:last-child > td:last-child, +.table-bordered tfoot:last-child tr:last-child > th:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} + +.table-bordered caption + thead tr:first-child th:first-child, +.table-bordered caption + tbody tr:first-child td:first-child, +.table-bordered colgroup + thead tr:first-child th:first-child, +.table-bordered colgroup + tbody tr:first-child td:first-child { + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topleft: 0; +} + +.table-bordered caption + thead tr:first-child th:last-child, +.table-bordered caption + tbody tr:first-child td:last-child, +.table-bordered colgroup + thead tr:first-child th:last-child, +.table-bordered colgroup + tbody tr:first-child td:last-child { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-topright: 0; +} + +.table-striped tbody > tr:nth-child(odd) > td, +.table-striped tbody > tr:nth-child(odd) > th { + background-color: transparent; +} + +.table-hover tbody tr:hover > td, +.table-hover tbody tr:hover > th { + background-color: #f5f5f5; +} + +table td[class*="span"], +table th[class*="span"], +.row-fluid table td[class*="span"], +.row-fluid table th[class*="span"] { + display: table-cell; + float: none; + margin-left: 0; +} + +.table td.span1, +.table th.span1 { + float: none; + width: 48px; + margin-left: 0; +} + +.table td.span2, +.table th.span2 { + float: none; + width: 128px; + margin-left: 0; +} + +.table td.span3, +.table th.span3 { + float: none; + width: 208px; + margin-left: 0; +} + +.table td.span4, +.table th.span4 { + float: none; + width: 288px; + margin-left: 0; +} + +.table td.span5, +.table th.span5 { + float: none; + width: 368px; + margin-left: 0; +} + +.table td.span6, +.table th.span6 { + float: none; + width: 448px; + margin-left: 0; +} + +.table td.span7, +.table th.span7 { + float: none; + width: 528px; + margin-left: 0; +} + +.table td.span8, +.table th.span8 { + float: none; + width: 608px; + margin-left: 0; +} + +.table td.span9, +.table th.span9 { + float: none; + width: 688px; + margin-left: 0; +} + +.table td.span10, +.table th.span10 { + float: none; + width: 768px; + margin-left: 0; +} + +.table td.span11, +.table th.span11 { + float: none; + width: 848px; + margin-left: 0; +} + +.table td.span12, +.table th.span12 { + float: none; + width: 928px; + margin-left: 0; +} + +.table tbody tr.success > td { + background-color: #000000; +} + +.table tbody tr.error > td { + background-color: #aa0000; +} + +.table tbody tr.warning > td { + background-color: #00aaaa; +} + +.table tbody tr.info > td { + background-color: #000000; +} + +.table-hover tbody tr.success:hover > td { + background-color: #000000; +} + +.table-hover tbody tr.error:hover > td { + background-color: #910000; +} + +.table-hover tbody tr.warning:hover > td { + background-color: #009091; +} + +.table-hover tbody tr.info:hover > td { + background-color: #000000; +} + +[class^="icon-"], +[class*=" icon-"] { + display: none; + width: 14px; + height: 14px; + margin-top: 1px; + *margin-right: .3em; + line-height: 20px; + vertical-align: text-top; + background-image: url("../img/glyphicons-halflings.png"); + background-position: 14px 14px; + background-repeat: no-repeat; +} + +/* White icons with optional class, or on hover/focus/active states of certain elements */ + +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:focus > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > li > a:focus > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:focus > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"], +.dropdown-submenu:focus > a > [class*=" icon-"] { + background-image: url("../img/glyphicons-halflings-white.png"); +} + +.icon-glass { + background-position: 0 0; +} + +.icon-music { + background-position: -24px 0; +} + +.icon-search { + background-position: -48px 0; +} + +.icon-envelope { + background-position: -72px 0; +} + +.icon-heart { + background-position: -96px 0; +} + +.icon-star { + background-position: -120px 0; +} + +.icon-star-empty { + background-position: -144px 0; +} + +.icon-user { + background-position: -168px 0; +} + +.icon-film { + background-position: -192px 0; +} + +.icon-th-large { + background-position: -216px 0; +} + +.icon-th { + background-position: -240px 0; +} + +.icon-th-list { + background-position: -264px 0; +} + +.icon-ok { + background-position: -288px 0; +} + +.icon-remove { + background-position: -312px 0; +} + +.icon-zoom-in { + background-position: -336px 0; +} + +.icon-zoom-out { + background-position: -360px 0; +} + +.icon-off { + background-position: -384px 0; +} + +.icon-signal { + background-position: -408px 0; +} + +.icon-cog { + background-position: -432px 0; +} + +.icon-trash { + background-position: -456px 0; +} + +.icon-home { + background-position: 0 -24px; +} + +.icon-file { + background-position: -24px -24px; +} + +.icon-time { + background-position: -48px -24px; +} + +.icon-road { + background-position: -72px -24px; +} + +.icon-download-alt { + background-position: -96px -24px; +} + +.icon-download { + background-position: -120px -24px; +} + +.icon-upload { + background-position: -144px -24px; +} + +.icon-inbox { + background-position: -168px -24px; +} + +.icon-play-circle { + background-position: -192px -24px; +} + +.icon-repeat { + background-position: -216px -24px; +} + +.icon-refresh { + background-position: -240px -24px; +} + +.icon-list-alt { + background-position: -264px -24px; +} + +.icon-lock { + background-position: -287px -24px; +} + +.icon-flag { + background-position: -312px -24px; +} + +.icon-headphones { + background-position: -336px -24px; +} + +.icon-volume-off { + background-position: -360px -24px; +} + +.icon-volume-down { + background-position: -384px -24px; +} + +.icon-volume-up { + background-position: -408px -24px; +} + +.icon-qrcode { + background-position: -432px -24px; +} + +.icon-barcode { + background-position: -456px -24px; +} + +.icon-tag { + background-position: 0 -48px; +} + +.icon-tags { + background-position: -25px -48px; +} + +.icon-book { + background-position: -48px -48px; +} + +.icon-bookmark { + background-position: -72px -48px; +} + +.icon-print { + background-position: -96px -48px; +} + +.icon-camera { + background-position: -120px -48px; +} + +.icon-font { + background-position: -144px -48px; +} + +.icon-bold { + background-position: -167px -48px; +} + +.icon-italic { + background-position: -192px -48px; +} + +.icon-text-height { + background-position: -216px -48px; +} + +.icon-text-width { + background-position: -240px -48px; +} + +.icon-align-left { + background-position: -264px -48px; +} + +.icon-align-center { + background-position: -288px -48px; +} + +.icon-align-right { + background-position: -312px -48px; +} + +.icon-align-justify { + background-position: -336px -48px; +} + +.icon-list { + background-position: -360px -48px; +} + +.icon-indent-left { + background-position: -384px -48px; +} + +.icon-indent-right { + background-position: -408px -48px; +} + +.icon-facetime-video { + background-position: -432px -48px; +} + +.icon-picture { + background-position: -456px -48px; +} + +.icon-pencil { + background-position: 0 -72px; +} + +.icon-map-marker { + background-position: -24px -72px; +} + +.icon-adjust { + background-position: -48px -72px; +} + +.icon-tint { + background-position: -72px -72px; +} + +.icon-edit { + background-position: -96px -72px; +} + +.icon-share { + background-position: -120px -72px; +} + +.icon-check { + background-position: -144px -72px; +} + +.icon-move { + background-position: -168px -72px; +} + +.icon-step-backward { + background-position: -192px -72px; +} + +.icon-fast-backward { + background-position: -216px -72px; +} + +.icon-backward { + background-position: -240px -72px; +} + +.icon-play { + background-position: -264px -72px; +} + +.icon-pause { + background-position: -288px -72px; +} + +.icon-stop { + background-position: -312px -72px; +} + +.icon-forward { + background-position: -336px -72px; +} + +.icon-fast-forward { + background-position: -360px -72px; +} + +.icon-step-forward { + background-position: -384px -72px; +} + +.icon-eject { + background-position: -408px -72px; +} + +.icon-chevron-left { + background-position: -432px -72px; +} + +.icon-chevron-right { + background-position: -456px -72px; +} + +.icon-plus-sign { + background-position: 0 -96px; +} + +.icon-minus-sign { + background-position: -24px -96px; +} + +.icon-remove-sign { + background-position: -48px -96px; +} + +.icon-ok-sign { + background-position: -72px -96px; +} + +.icon-question-sign { + background-position: -96px -96px; +} + +.icon-info-sign { + background-position: -120px -96px; +} + +.icon-screenshot { + background-position: -144px -96px; +} + +.icon-remove-circle { + background-position: -168px -96px; +} + +.icon-ok-circle { + background-position: -192px -96px; +} + +.icon-ban-circle { + background-position: -216px -96px; +} + +.icon-arrow-left { + background-position: -240px -96px; +} + +.icon-arrow-right { + background-position: -264px -96px; +} + +.icon-arrow-up { + background-position: -289px -96px; +} + +.icon-arrow-down { + background-position: -312px -96px; +} + +.icon-share-alt { + background-position: -336px -96px; +} + +.icon-resize-full { + background-position: -360px -96px; +} + +.icon-resize-small { + background-position: -384px -96px; +} + +.icon-plus { + background-position: -408px -96px; +} + +.icon-minus { + background-position: -433px -96px; +} + +.icon-asterisk { + background-position: -456px -96px; +} + +.icon-exclamation-sign { + background-position: 0 -120px; +} + +.icon-gift { + background-position: -24px -120px; +} + +.icon-leaf { + background-position: -48px -120px; +} + +.icon-fire { + background-position: -72px -120px; +} + +.icon-eye-open { + background-position: -96px -120px; +} + +.icon-eye-close { + background-position: -120px -120px; +} + +.icon-warning-sign { + background-position: -144px -120px; +} + +.icon-plane { + background-position: -168px -120px; +} + +.icon-calendar { + background-position: -192px -120px; +} + +.icon-random { + width: 16px; + background-position: -216px -120px; +} + +.icon-comment { + background-position: -240px -120px; +} + +.icon-magnet { + background-position: -264px -120px; +} + +.icon-chevron-up { + background-position: -288px -120px; +} + +.icon-chevron-down { + background-position: -313px -119px; +} + +.icon-retweet { + background-position: -336px -120px; +} + +.icon-shopping-cart { + background-position: -360px -120px; +} + +.icon-folder-close { + width: 16px; + background-position: -384px -120px; +} + +.icon-folder-open { + width: 16px; + background-position: -408px -120px; +} + +.icon-resize-vertical { + background-position: -432px -119px; +} + +.icon-resize-horizontal { + background-position: -456px -118px; +} + +.icon-hdd { + background-position: 0 -144px; +} + +.icon-bullhorn { + background-position: -24px -144px; +} + +.icon-bell { + background-position: -48px -144px; +} + +.icon-certificate { + background-position: -72px -144px; +} + +.icon-thumbs-up { + background-position: -96px -144px; +} + +.icon-thumbs-down { + background-position: -120px -144px; +} + +.icon-hand-right { + background-position: -144px -144px; +} + +.icon-hand-left { + background-position: -168px -144px; +} + +.icon-hand-up { + background-position: -192px -144px; +} + +.icon-hand-down { + background-position: -216px -144px; +} + +.icon-circle-arrow-right { + background-position: -240px -144px; +} + +.icon-circle-arrow-left { + background-position: -264px -144px; +} + +.icon-circle-arrow-up { + background-position: -288px -144px; +} + +.icon-circle-arrow-down { + background-position: -312px -144px; +} + +.icon-globe { + background-position: -336px -144px; +} + +.icon-wrench { + background-position: -360px -144px; +} + +.icon-tasks { + background-position: -384px -144px; +} + +.icon-filter { + background-position: -408px -144px; +} + +.icon-briefcase { + background-position: -432px -144px; +} + +.icon-fullscreen { + background-position: -456px -144px; +} + +.dropup, +.dropdown { + position: relative; +} + +.dropdown-toggle { + *margin-bottom: -3px; +} + +.dropdown-toggle:active, +.open .dropdown-toggle { + outline: 0; +} + +.caret { + display: inline-block; + width: 0; + height: 0; + vertical-align: top; + /* + border-top: 4px solid @black; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + */ + +} + +.caret:before { + content: "β–Ό"; +} + +.dropdown .caret { + margin-top: 8px; + margin-left: 2px; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 9px 4px 9px 4px; + margin: -15.5px 4px 8px 4px; + list-style: none; + background-color: #bbbbbb; + border: 1px solid #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: 0px 0px 0 5px #bbbbbb; + -moz-box-shadow: 0px 0px 0 5px #bbbbbb; + box-shadow: 0px 0px 0 5px #bbbbbb; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + *width: 100%; + height: 1px; + height: 0; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #000000; +} + +.dropdown-menu > li > a { + display: block; + padding: 0 10px; + clear: both; + font-weight: normal; + line-height: 20px; + color: #000000; + white-space: nowrap; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus, +.dropdown-submenu:hover > a, +.dropdown-submenu:focus > a { + color: #bbbbbb; + text-decoration: none; +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #bbbbbb; + text-decoration: none; + background-color: #fefe4a; + background-image: -moz-linear-gradient(top, #fefe54, #fefe3b); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefe54), to(#fefe3b)); + background-image: -webkit-linear-gradient(top, #fefe54, #fefe3b); + background-image: -o-linear-gradient(top, #fefe54, #fefe3b); + background-image: linear-gradient(to bottom, #fefe54, #fefe3b); + background-repeat: repeat-x; + outline: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefe54', endColorstr='#fffefe3b', GradientType=0); +} + +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #bbbbbb; +} + +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.open { + *z-index: 1000; +} + +.open > .dropdown-menu { + display: block; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 1px solid #000000; + content: ""; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +.dropdown-submenu { + position: relative; +} + +.dropdown-submenu > .dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.dropdown-submenu:hover > .dropdown-menu { + display: block; +} + +.dropup .dropdown-submenu > .dropdown-menu { + top: auto; + bottom: 0; + margin-top: 0; + margin-bottom: -2px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.dropdown-submenu > a:after { + display: block; + float: right; + width: 0; + height: 0; + margin-top: 5px; + margin-right: -10px; + border-color: transparent; + border-left-color: #cccccc; + border-style: solid; + border-width: 1px; + content: " "; +} + +.dropdown-submenu:hover > a:after { + border-left-color: #bbbbbb; +} + +.dropdown-submenu.pull-left { + float: none; +} + +.dropdown-submenu.pull-left > .dropdown-menu { + left: -100%; + margin-left: 10px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.dropdown .dropdown-menu .nav-header { + padding-right: 16px; + padding-left: 16px; +} + +.typeahead { + z-index: 1051; + margin-top: 2px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0); +} + +.well-large { + padding: 24px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.well-small { + padding: 9px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +.collapse.in { + height: auto; +} + +.close { + float: right; + font-size: 18px; + font-weight: normal; + line-height: 20px; + color: #000000; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.btn:hover:before, +.btn:hover:after { + color: #ffffff; +} + +.btn:before { + content: "< "; +} + +.btn:after { + content: " >"; +} + +.btn { + display: inline-block; + *display: inline; + padding: 0 10px; + margin-bottom: 20px; + *margin-left: .3em; + font-size: 18px; + line-height: 20px; + color: #000000; + text-align: center; + vertical-align: middle; + cursor: default; + background: #bbbbbb; + border: 0; + border-width: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 10px 10px 0 #000000; + -moz-box-shadow: 10px 10px 0 #000000; + box-shadow: 10px 10px 0 #000000; +} + +.btn:first-child { + *margin-left: 0; +} + +.btn:hover, +.btn:focus { + color: #ffffff; + text-decoration: none; + background: #555555; + outline: 0; +} + +.btn:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn.active, +.btn:active { + margin: 10px 0 10px 10px; + outline: 0; + -webkit-box-shadow: 0 0 0; + -moz-box-shadow: 0 0 0; + box-shadow: 0 0 0; +} + +.btn.disabled, +.btn[disabled] { + cursor: default; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-large { + padding: 10px 10px; + font-size: 18px; + color: #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { + margin-top: 4px; +} + +.btn-small { + padding: 0; + font-size: 18px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { + margin-top: 0; +} + +.btn-mini [class^="icon-"], +.btn-mini [class*=" icon-"] { + margin-top: -1px; +} + +.btn-mini { + padding: 0; + font-size: 18px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.btn-block + .btn-block { + margin-top: 5px; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.btn-primary { + color: #000000; + background: #bbbbbb; +} + +.btn-warning { + *background-color: #f47a00; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + color: #ffffff; +} + +.btn-danger { + *background-color: #ee5f5b; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + color: #ffffff; +} + +.btn-success { + *background-color: #62c462; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + color: #ffffff; +} + +.btn-info { + *background-color: #5bc0de; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + color: #ffffff; +} + +.btn-inverse { + *background-color: #555555; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-inverse:hover, +.btn-inverse:focus, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + color: #ffffff; +} + +button.btn, +input[type="submit"].btn { + *padding-top: 3px; + *padding-bottom: 3px; +} + +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} + +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} + +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 0; + *padding-bottom: 0; +} + +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 0; + *padding-bottom: 0; +} + +.btn-link, +.btn-link:active, +.btn-link[disabled] { + background-color: transparent; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-link { + color: #fefe54; + cursor: pointer; + border-color: transparent; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-link:hover, +.btn-link:focus { + color: #fefe54; + text-decoration: none; + background-color: #00aa00; +} + +.btn-link[disabled]:hover, +.btn-link[disabled]:focus { + color: #555555; + text-decoration: none; +} + +.btn-group { + position: relative; + display: inline-block; + *display: inline; + *margin-left: .3em; + font-size: 0; + white-space: nowrap; + vertical-align: middle; + *zoom: 1; +} + +.btn-group:first-child { + *margin-left: 0; +} + +.btn-group + .btn-group { + margin-left: 0; +} + +.btn-toolbar { + margin-top: 20px; + margin-bottom: 20px; + font-size: 0; +} + +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group { + margin-left: 5px; +} + +.btn-group > .btn { + position: relative; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group > .btn + .btn { + margin-left: -1px; +} + +.btn-group > .btn, +.btn-group > .dropdown-menu, +.btn-group > .popover { + font-size: 18px; +} + +.btn-group > .btn-mini { + font-size: 18px; +} + +.btn-group > .btn-small { + font-size: 18px; +} + +.btn-group > .btn-large { + font-size: 18px; +} + +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group > .btn + .dropdown-toggle { + *padding-top: 14px; + padding-right: 8px; + *padding-bottom: 14px; + padding-left: 8px; +} + +.btn-group > .btn-mini + .dropdown-toggle { + *padding-top: 2px; + padding-right: 5px; + *padding-bottom: 2px; + padding-left: 5px; +} + +.btn-group > .btn-small + .dropdown-toggle { + *padding-top: 5px; + *padding-bottom: 4px; +} + +.btn-group > .btn-large + .dropdown-toggle { + *padding-top: 7px; + padding-right: 12px; + *padding-bottom: 7px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + background-image: none; +} + +.btn-group.open .btn.dropdown-toggle { + background-color: #aa5500; +} + +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #fefe54; +} + +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #a85400; +} + +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} + +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} + +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} + +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #555555; +} + +.btn .caret { + margin-top: 0; + margin-left: 0; +} + +.btn-large .caret { + margin-top: 0; +} + +.btn-large .caret { + border-top-width: 5px; + border-right-width: 5px; + border-left-width: 5px; +} + +.btn-mini .caret, +.btn-small .caret { + margin-top: 0; +} + +.dropup .btn-large .caret { + border-bottom-width: 5px; +} + +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.btn-group-vertical { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} + +.btn-group-vertical > .btn { + display: block; + float: none; + max-width: 100%; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group-vertical > .btn + .btn { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:first-child { + -webkit-border-radius: 0 0px 0 0; + -moz-border-radius: 0 0px 0 0; + border-radius: 0 0px 0 0; +} + +.btn-group-vertical > .btn:last-child { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.btn-group-vertical > .btn-large:first-child { + -webkit-border-radius: 0 0px 0 0; + -moz-border-radius: 0 0px 0 0; + border-radius: 0 0px 0 0; +} + +.btn-group-vertical > .btn-large:last-child { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.alert { + padding: 8px 35px 8px 14px; + margin-bottom: 20px; + text-shadow: 0; + background-color: #00aaaa; + border: 1px solid #00aaaa; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.alert, +.alert h4 { + color: #ffffff; +} + +.alert h4 { + margin: 0; +} + +.alert .close { + position: relative; + top: -2px; + right: -21px; + line-height: 20px; +} + +.alert-success { + color: #00aa00; + background-color: #000000; + border-color: #000000; +} + +.alert-success h4 { + color: #00aa00; +} + +.alert-danger, +.alert-error { + color: #ffffff; + background-color: #aa0000; + border-color: #aa0000; +} + +.alert-danger h4, +.alert-error h4 { + color: #ffffff; +} + +.alert-info { + color: #000000; + background-color: #000000; + border-color: #000000; +} + +.alert-info h4 { + color: #000000; +} + +.alert-block { + padding-top: 14px; + padding-bottom: 14px; +} + +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} + +.alert-block p + p { + margin-top: 5px; +} + +.nav { + margin-bottom: 20px; + margin-left: 0; + list-style: none; + background: #bbbbbb; +} + +.nav > li > a { + display: block; +} + +.nav > li > a:hover, +.nav > li > a:focus { + color: #bbbbbb; + text-decoration: none; + background-color: #000000; +} + +.nav > li > a > img { + max-width: none; +} + +.nav > .pull-right { + float: right; +} + +.nav-header { + display: block; + font-weight: normal; + line-height: 20px; + color: #000000; + text-transform: uppercase; +} + +.nav li + .nav-header { + line-height: 20px; +} + +.nav-list { + display: block; + padding: 10px 15px; + margin: 10px 5px; + margin-left: -5px; + border: 2px solid #000000; + -webkit-box-shadow: 0 0 0 5px, 11px 13px 0 4px black; + -moz-box-shadow: 0 0 0 5px, 11px 13px 0 4px black; + box-shadow: 0 0 0 5px, 11px 13px 0 4px black; +} + +.nav-list > li > a, +.nav-list .nav-header { + margin-right: -10px; + margin-left: -10px; +} + +.nav-list > li > a { + padding: 0 8px; + color: #000000; +} + +.nav-list > .active > a, +.nav-list > .active > a:hover, +.nav-list > .active > a:focus { + color: #ffffff; + background-color: #00aaaa; +} + +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + margin-right: 0; +} + +.nav-list .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #000000; + border-bottom: 1px solid #000000; +} + +.nav-tabs, +.nav-pills { + *zoom: 1; +} + +.nav-tabs:before, +.nav-pills:before, +.nav-tabs:after, +.nav-pills:after { + display: table; + line-height: 0; + content: ""; +} + +.nav-tabs:after, +.nav-pills:after { + clear: both; +} + +.nav-tabs > li, +.nav-pills > li { + float: left; +} + +.nav-tabs > li > a, +.nav-pills > li > a { + padding-right: 8px; + padding-left: 8px; + margin-right: 0; + line-height: 20px; + color: #000000; +} + +.nav-tabs { + border-bottom: 0.5em solid #bbbbbb; +} + +.nav-tabs > li { + margin-bottom: -1px; +} + +.nav-tabs > li > a { + line-height: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-tabs > li > a:hover, +.nav-tabs > li > a:focus { + background: #000000; +} + +.nav-tabs > .active > a, +.nav-tabs > .active > a:hover, +.nav-tabs > .active > a:focus { + color: #bbbbbb; + cursor: default; + background-color: #000084; + border: 0; + border-bottom-color: transparent; +} + +.nav-pills > li > a { + padding-top: 0; + padding-bottom: 0; + margin-top: 0; + margin-bottom: 0; + line-height: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-pills > .active > a, +.nav-pills > .active > a:hover, +.nav-pills > .active > a:focus { + color: #bbbbbb; + background-color: #fefe54; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li > a { + margin-right: 0; +} + +.nav-tabs.nav-stacked { + border-bottom: 0; +} + +.nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-topleft: 0; +} + +.nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; +} + +.nav-tabs.nav-stacked > li > a:hover, +.nav-tabs.nav-stacked > li > a:focus { + z-index: 2; + border-color: #ddd; +} + +.nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} + +.nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} + +.nav-tabs .dropdown-menu { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-pills .dropdown-menu { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav .dropdown-toggle .caret { + margin-top: 6px; + border-top-color: #fefe54; + border-bottom-color: #fefe54; +} + +.nav .dropdown-toggle:hover .caret, +.nav .dropdown-toggle:focus .caret { + border-top-color: #fefe54; + border-bottom-color: #fefe54; +} + +/* move down carets for tabs */ + +.nav .active .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} + +.nav-tabs .active .dropdown-toggle .caret { + border-top-color: #bbbbbb; + border-bottom-color: #bbbbbb; +} + +.nav > .dropdown.active > a:hover, +.nav > .dropdown.active > a:focus { + cursor: pointer; +} + +.nav-tabs .open .dropdown-toggle, +.nav-pills .open .dropdown-toggle, +.nav > li.dropdown.open.active > a:hover, +.nav > li.dropdown.open.active > a:focus { + color: #ffffff; + background-color: #bbbbbb; + border-color: #bbbbbb; +} + +.nav li.dropdown.open .caret, +.nav li.dropdown.open.active .caret, +.nav li.dropdown.open a:hover .caret, +.nav li.dropdown.open a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 1; + filter: alpha(opacity=100); +} + +.tabs-stacked .open > a:hover, +.tabs-stacked .open > a:focus { + border-color: #bbbbbb; +} + +.tabbable { + *zoom: 1; +} + +.tabbable:before, +.tabbable:after { + display: table; + line-height: 0; + content: ""; +} + +.tabbable:after { + clear: both; +} + +.tab-content { + overflow: auto; +} + +.tabs-below > .nav-tabs, +.tabs-right > .nav-tabs, +.tabs-left > .nav-tabs { + border-bottom: 0; +} + +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} + +.tab-content > .active, +.pill-content > .active { + display: block; +} + +.tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} + +.tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} + +.tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tabs-below > .nav-tabs > li > a:hover, +.tabs-below > .nav-tabs > li > a:focus { + border-top-color: #ddd; + border-bottom-color: transparent; +} + +.tabs-below > .nav-tabs > .active > a, +.tabs-below > .nav-tabs > .active > a:hover, +.tabs-below > .nav-tabs > .active > a:focus { + border-color: transparent #ddd #ddd #ddd; +} + +.tabs-left > .nav-tabs > li, +.tabs-right > .nav-tabs > li { + float: none; +} + +.tabs-left > .nav-tabs > li > a, +.tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 0; +} + +.tabs-left > .nav-tabs { + float: left; + margin-right: 18px; + border-right: 1px solid #ddd; +} + +.tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tabs-left > .nav-tabs > li > a:hover, +.tabs-left > .nav-tabs > li > a:focus { + border-color: #bbbbbb #dddddd #bbbbbb #bbbbbb; +} + +.tabs-left > .nav-tabs .active > a, +.tabs-left > .nav-tabs .active > a:hover, +.tabs-left > .nav-tabs .active > a:focus { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #ffffff; +} + +.tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} + +.tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tabs-right > .nav-tabs > li > a:hover, +.tabs-right > .nav-tabs > li > a:focus { + border-color: #bbbbbb #bbbbbb #bbbbbb #dddddd; +} + +.tabs-right > .nav-tabs .active > a, +.tabs-right > .nav-tabs .active > a:hover, +.tabs-right > .nav-tabs .active > a:focus { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #ffffff; +} + +.nav > .disabled > a { + color: #bbbbbb; +} + +.nav > .disabled > a:hover, +.nav > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; +} + +.navbar { + *position: relative; + *z-index: 2; + margin-bottom: 20px; + overflow: visible; +} + +.navbar-inner { + min-height: 20px; + padding-right: 12.4px; + padding-left: 12.4px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.navbar-inner:before, +.navbar-inner:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-inner:after { + clear: both; +} + +.navbar .container { + width: auto; +} + +.nav-collapse.collapse { + height: auto; + overflow: visible; +} + +.navbar .brand { + display: block; + float: left; + padding: 0 10px; + margin-left: -10px; + font-size: 18px; + color: #000084; + text-shadow: 0; +} + +.navbar .brand:hover, +.navbar .brand:focus { + text-decoration: none; +} + +.navbar-text { + margin-bottom: 0; + line-height: 20px; + color: #000000; +} + +.navbar-link { + color: #000000; +} + +.navbar-link:hover, +.navbar-link:focus { + color: #555555; +} + +.navbar .divider-vertical { + height: 20px; + margin: 0 12.4px; + border-right: 1px solid #ffffff; + border-left: 1px solid #bbbbbb; +} + +.navbar .btn, +.navbar .btn-group { + margin-top: -5px; +} + +.navbar .btn-group .btn, +.navbar .input-prepend .btn, +.navbar .input-append .btn, +.navbar .input-prepend .btn-group, +.navbar .input-append .btn-group { + margin-top: 0; +} + +.navbar-form { + margin-bottom: 0; + *zoom: 1; +} + +.navbar-form:before, +.navbar-form:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-form:after { + clear: both; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: -5px; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .btn { + display: inline-block; + margin-bottom: 0; + -webkit-box-shadow: 0 0; + -moz-box-shadow: 0 0; + box-shadow: 0 0; +} + +.navbar-form input[type="image"], +.navbar-form input[type="checkbox"], +.navbar-form input[type="radio"] { + margin-top: 3px; +} + +.navbar-form .input-append, +.navbar-form .input-prepend { + margin-top: 5px; + white-space: nowrap; +} + +.navbar-form .input-append input, +.navbar-form .input-prepend input { + margin-top: 0; +} + +.navbar-search { + position: relative; + float: left; + margin-top: -5px; + margin-bottom: 0; +} + +.navbar-search .search-query { + padding: 4px 12.4px; + margin-bottom: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + font-weight: normal; + line-height: 1; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-static-top { + position: static; + margin-bottom: 0; +} + +.navbar-static-top .navbar-inner { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + border-width: 0; +} + +.navbar-fixed-bottom .navbar-inner { + border-width: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-fixed-bottom .navbar-inner { + padding-right: 0; + padding-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 944px; +} + +.navbar-fixed-top { + top: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.navbar-fixed-bottom { + bottom: 0; +} + +.navbar-fixed-bottom .navbar-inner { + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.navbar .nav { + position: relative; + left: 0; + display: block; + float: left; + margin: 0 20px 0 0; +} + +.navbar .nav.pull-right { + float: right; + margin-right: 0; +} + +.navbar .nav > li { + float: left; + padding-left: 0; +} + +.navbar .nav > li > a { + float: none; + padding: 0 10px; + color: #000000; + text-decoration: none; + text-shadow: 0; +} + +.navbar .nav .dropdown-toggle .caret { + margin-top: 0; +} + +.navbar .nav > li > a:focus, +.navbar .nav > li > a:hover { + color: #555555; + text-decoration: none; + background-color: transparent; +} + +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover, +.navbar .nav > .active > a:focus { + color: #bbbbbb; + text-decoration: none; + background-color: #bbbbbb; +} + +.navbar .btn-navbar { + display: none; + float: right; + padding: 0 12.4px; + margin-right: 12.4px; + margin-left: 12.4px; + *background-color: #aeaeae; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.navbar .btn-navbar:hover, +.navbar .btn-navbar:focus, +.navbar .btn-navbar:active, +.navbar .btn-navbar.active, +.navbar .btn-navbar.disabled, +.navbar .btn-navbar[disabled] { + color: #ffffff; +} + +.navbar .btn-navbar .icon-bar { + display: block; + width: 18px; + height: 2px; + background-color: #f5f5f5; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-navbar .icon-bar + .icon-bar { + margin-top: 3px; +} + +.navbar .nav > li > .dropdown-menu:before { + position: absolute; + top: -7px; + left: 9px; + display: inline-block; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-left: 7px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} + +.navbar .nav > li > .dropdown-menu:after { + position: absolute; + top: -6px; + left: 10px; + display: inline-block; + border-right: 6px solid transparent; + border-bottom: 6px solid #ffffff; + border-left: 6px solid transparent; + content: ''; +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:before { + top: auto; + bottom: -7px; + border-top: 7px solid #ccc; + border-bottom: 0; + border-top-color: rgba(0, 0, 0, 0.2); +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:after { + top: auto; + bottom: -6px; + border-top: 6px solid #ffffff; + border-bottom: 0; +} + +.navbar .nav li.dropdown > a:hover .caret, +.navbar .nav li.dropdown > a:focus .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle, +.navbar .nav li.dropdown.active > .dropdown-toggle, +.navbar .nav li.dropdown.open.active > .dropdown-toggle { + color: #bbbbbb; + background-color: #bbbbbb; +} + +.navbar .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #000000; + border-bottom-color: #000000; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #bbbbbb; + border-bottom-color: #bbbbbb; +} + +.navbar .pull-right > li > .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:before, +.navbar .nav > li > .dropdown-menu.pull-right:before { + right: 12px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:after, +.navbar .nav > li > .dropdown-menu.pull-right:after { + right: 13px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { + right: 100%; + left: auto; + margin-right: -1px; + margin-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-inverse .navbar-inner { + background: #bbbbbb; +} + +.navbar-inverse .brand, +.navbar-inverse .nav > li > a { + color: #000000; + text-shadow: 0; + background: #bbbbbb; +} + +.navbar-inverse .brand:hover, +.navbar-inverse .nav > li > a:hover, +.navbar-inverse .brand:focus, +.navbar-inverse .nav > li > a:focus { + color: #bbbbbb; + background: #000000; +} + +.navbar-inverse .brand { + color: #000084; +} + +.navbar-inverse .navbar-text { + color: #000000; +} + +.navbar-inverse .nav > li > a:focus, +.navbar-inverse .nav > li > a:hover { + color: #bbbbbb; + background: #000000; +} + +.navbar-inverse .nav .active > a, +.navbar-inverse .nav .active > a:hover, +.navbar-inverse .nav .active > a:focus { + color: #bbbbbb; + text-decoration: none; + background: #000000; +} + +.navbar-inverse .navbar-link { + color: #000000; +} + +.navbar-inverse .navbar-link:hover, +.navbar-inverse .navbar-link:focus { + color: #ffffff; +} + +.navbar-inverse .divider-vertical { + border-right-color: #000000; + border-left-color: #000000; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { + color: #ffffff; + background-color: #000000; +} + +.navbar-inverse .nav li.dropdown > a:hover .caret, +.navbar-inverse .nav li.dropdown > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #000000; + border-bottom-color: #000000; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .navbar-search .search-query { + color: #ffffff; + background-color: #404040; + border-color: #000000; + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; +} + +.navbar-inverse .navbar-search .search-query:-moz-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:focus, +.navbar-inverse .navbar-search .search-query.focused { + padding: 0 20px; + color: #555555; + text-shadow: 0; + background-color: #ffffff; + border: 0; + outline: 0; +} + +.navbar-inverse .btn-navbar { + *background-color: #000000; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.navbar-inverse .btn-navbar:hover, +.navbar-inverse .btn-navbar:focus, +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active, +.navbar-inverse .btn-navbar.disabled, +.navbar-inverse .btn-navbar[disabled] { + color: #ffffff; +} + +.breadcrumb:before { + content: ">>"; +} + +.breadcrumb { + padding: 0 20px; + margin: 0 0 20px; + list-style: none; + background-color: #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.breadcrumb > li { + display: inline-block; + *display: inline; + text-shadow: 0; + *zoom: 1; +} + +.breadcrumb > li > .divider { + padding: 0 10px; + color: #bbbbbb; +} + +.breadcrumb > .active { + color: #bbbbbb; +} + +.pagination { + margin: 20px 0; +} + +.pagination ul { + display: inline-block; + *display: inline; + margin-bottom: 0; + margin-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.pagination ul > li { + display: inline; +} + +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 20px 10px; + line-height: 20px; + text-decoration: none; + background-color: #00aa00; + border: 0; + border-left-width: 0; +} + +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} + +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #bbbbbb; + cursor: default; +} + +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { + color: #bbbbbb; + cursor: default; + background-color: transparent; +} + +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.pagination-centered { + text-align: center; +} + +.pagination-right { + text-align: right; +} + +.pagination-large ul > li > a, +.pagination-large ul > li > span { + padding: 18px; + font-size: 18px; +} + +.pagination-large ul > li:first-child > a, +.pagination-large ul > li:first-child > span { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.pagination-large ul > li:last-child > a, +.pagination-large ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.pagination-mini ul > li:first-child > a, +.pagination-small ul > li:first-child > a, +.pagination-mini ul > li:first-child > span, +.pagination-small ul > li:first-child > span { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.pagination-mini ul > li:last-child > a, +.pagination-small ul > li:last-child > a, +.pagination-mini ul > li:last-child > span, +.pagination-small ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.pagination-small ul > li > a, +.pagination-small ul > li > span { + padding: 0; + font-size: 18px; +} + +.pagination-mini ul > li > a, +.pagination-mini ul > li > span { + padding: 0; + font-size: 18px; +} + +.pager { + margin: 20px 0; + text-align: center; + list-style: none; + *zoom: 1; +} + +.pager:before, +.pager:after { + display: table; + line-height: 0; + content: ""; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager li > a, +.pager li > span { + display: inline-block; + padding: 0 20px; + background-color: #555555; +} + +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; +} + +.pager .next > a, +.pager .next > span { + float: right; +} + +.pager .previous > a, +.pager .previous > span { + float: left; +} + +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #bbbbbb; + cursor: default; + background-color: #555555; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop, +.modal-backdrop.fade.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.modal { + position: fixed; + top: 10%; + left: 50%; + z-index: 1050; + width: 560px; + margin-left: -280px; + background-color: #ffffff; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.3); + *border: 1px solid #999; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + outline: none; + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; +} + +.modal.fade { + top: -25%; +} + +.modal.fade.in { + top: 10%; +} + +.modal-header { + padding: 9px 15px; + border-bottom: 1px solid #eee; +} + +.modal-header .close { + margin-top: 2px; +} + +.modal-header h3 { + margin: 0; + line-height: 30px; +} + +.modal-body { + position: relative; + max-height: 400px; + padding: 15px; + overflow-y: auto; +} + +.modal-form { + margin-bottom: 0; +} + +.modal-footer { + padding: 14px 15px 15px; + margin-bottom: 0; + text-align: right; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + *zoom: 1; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + line-height: 0; + content: ""; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} + +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} + +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} + +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 18px; + line-height: 1; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.tooltip.top { + padding: 9px 0 9px; + margin-top: -3px; +} + +.tooltip.right { + padding: 0 4px 0 4px; + margin-left: 3px; +} + +.tooltip.bottom { + padding: 9px 0 9px; + margin-top: 3px; +} + +.tooltip.left { + padding: 0 4px 0 4px; + margin-left: -3px; +} + +.tooltip-inner { + max-width: 310px; + padding: 9px 4px 9px 4px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: #000000; + border-width: 5px 5px 5px 0; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: #000000; + border-width: 5px 0 5px 5px; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 496px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.popover.top { + margin-top: -10px; +} + +.popover.right { + margin-left: 10px; +} + +.popover.bottom { + margin-top: 10px; +} + +.popover.left { + margin-left: -10px; +} + +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #ffffff; + border-bottom: 1px solid #f2f2f2; +} + +.popover-title:empty { + display: none; +} + +.popover-content { + padding: 9px 14px; +} + +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.popover .arrow { + border-width: 11px; +} + +.popover .arrow:after { + border-width: 10px; + content: ""; +} + +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} + +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-top-color: #ffffff; + border-bottom-width: 0; +} + +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} + +.popover.right .arrow:after { + bottom: -10px; + left: 1px; + border-right-color: #ffffff; + border-left-width: 0; +} + +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; +} + +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-bottom-color: #ffffff; + border-top-width: 0; +} + +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25); + border-right-width: 0; +} + +.popover.left .arrow:after { + right: 1px; + bottom: -10px; + border-left-color: #ffffff; + border-right-width: 0; +} + +.thumbnails { + margin-left: -16px; + list-style: none; + *zoom: 1; +} + +.thumbnails:before, +.thumbnails:after { + display: table; + line-height: 0; + content: ""; +} + +.thumbnails:after { + clear: both; +} + +.row-fluid .thumbnails { + margin-left: 0; +} + +.thumbnails > li { + float: left; + margin-bottom: 20px; + margin-left: 16px; +} + +.thumbnail { + display: block; + padding: 3px 6px; + margin: 4px 3px; + line-height: 20px; + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #fefe54; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.thumbnail > img { + display: block; + max-width: 100%; + margin-right: auto; + margin-left: auto; +} + +.thumbnail .caption { + padding: 9px; + color: #bbbbbb; +} + +.media, +.media-body { + overflow: hidden; + *overflow: visible; + zoom: 1; +} + +.media, +.media .media { + margin-top: 15px; +} + +.media:first-child { + margin-top: 0; +} + +.media-object { + display: block; +} + +.media-heading { + margin: 0 0 5px; +} + +.media > .pull-left { + margin-right: 10px; +} + +.media > .pull-right { + margin-left: 10px; +} + +.media-list { + margin-left: 0; + list-style: none; +} + +.label, +.badge { + display: inline-block; + padding: 0 12.4px; + font-size: 18px; + line-height: 20px; + color: #ffffff; + white-space: nowrap; + vertical-align: baseline; + background-color: #555555; +} + +.badge { + padding-right: 12.4px; + padding-left: 12.4px; +} + +.label:empty, +.badge:empty { + display: none; +} + +a.label:hover, +a.label:focus, +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.label-important, +.badge-important { + background-color: #aa0000; +} + +.label-important[href], +.badge-important[href] { + background-color: #aa0000; +} + +.label-warning, +.badge-warning { + background-color: #a85400; +} + +.label-warning[href], +.badge-warning[href] { + background-color: #a85400; +} + +.label-success, +.badge-success { + background-color: #00aa00; +} + +.label-success[href], +.badge-success[href] { + background-color: #00aa00; +} + +.label-info, +.badge-info { + background-color: #000000; +} + +.label-info[href], +.badge-info[href] { + background-color: #000000; +} + +.label-inverse, +.badge-inverse { + background-color: #555555; +} + +.label-inverse[href], +.badge-inverse[href] { + background-color: #555555; +} + +.btn .label, +.btn .badge { + position: relative; + top: -1px; +} + +.btn-mini .label, +.btn-mini .badge { + top: 0; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-ms-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f7f7f7; + background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); + background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); + background-repeat: repeat-x; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); +} + +.progress .bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + color: #ffffff; + text-align: center; + text-shadow: 0; + background-color: #0e90d2; + background-image: -moz-linear-gradient(top, #149bdf, #0480be); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); + background-image: -webkit-linear-gradient(top, #149bdf, #0480be); + background-image: -o-linear-gradient(top, #149bdf, #0480be); + background-image: linear-gradient(to bottom, #149bdf, #0480be); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress-striped .bar { + background-color: #149bdf; + 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)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + -moz-background-size: 40px 40px; + -o-background-size: 40px 40px; + background-size: 40px 40px; +} + +.progress.active .bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} + +.progress-danger .bar, +.progress .bar-danger { + background-color: #dd514c; + background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); + background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); +} + +.progress-danger.progress-striped .bar, +.progress-striped .bar-danger { + background-color: #ee5f5b; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(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)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-success .bar, +.progress .bar-success { + background-color: #5eb95e; + background-image: -moz-linear-gradient(top, #62c462, #57a957); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); + background-image: -webkit-linear-gradient(top, #62c462, #57a957); + background-image: -o-linear-gradient(top, #62c462, #57a957); + background-image: linear-gradient(to bottom, #62c462, #57a957); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); +} + +.progress-success.progress-striped .bar, +.progress-striped .bar-success { + background-color: #62c462; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(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)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-info .bar, +.progress .bar-info { + background-color: #4bb1cf; + background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); + background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); + background-image: -o-linear-gradient(top, #5bc0de, #339bb9); + background-image: linear-gradient(to bottom, #5bc0de, #339bb9); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); +} + +.progress-info.progress-striped .bar, +.progress-striped .bar-info { + background-color: #5bc0de; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(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)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-warning .bar, +.progress .bar-warning { + background-color: #d66b00; + background-image: -moz-linear-gradient(top, #f47a00, #a85400); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f47a00), to(#a85400)); + background-image: -webkit-linear-gradient(top, #f47a00, #a85400); + background-image: -o-linear-gradient(top, #f47a00, #a85400); + background-image: linear-gradient(to bottom, #f47a00, #a85400); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff47a00', endColorstr='#ffa85400', GradientType=0); +} + +.progress-warning.progress-striped .bar, +.progress-striped .bar-warning { + background-color: #f47a00; + 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)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.accordion { + margin-bottom: 20px; +} + +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.accordion-heading { + border-bottom: 0; +} + +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; +} + +.accordion-toggle { + cursor: pointer; +} + +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} + +.carousel { + position: relative; + margin-bottom: 20px; + line-height: 1; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner > .item { + position: relative; + display: none; +} + +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + line-height: 1; +} + +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} + +.carousel-inner > .active { + left: 0; +} + +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} + +.carousel-inner > .next { + left: 100%; +} + +.carousel-inner > .prev { + left: -100%; +} + +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} + +.carousel-inner > .active.left { + left: -100%; +} + +.carousel-inner > .active.right { + left: 100%; +} + +.carousel-control { + position: absolute; + top: 40%; + left: 15px; + width: 40px; + height: 40px; + margin-top: -20px; + font-size: 60px; + font-weight: 100; + line-height: 30px; + color: #ffffff; + text-align: center; + background: #555555; + border: 3px solid #ffffff; + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.right { + right: 15px; + left: auto; +} + +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-indicators { + position: absolute; + top: 15px; + right: 15px; + z-index: 5; + margin: 0; + list-style: none; +} + +.carousel-indicators li { + display: block; + float: left; + width: 10px; + height: 10px; + margin-left: 5px; + text-indent: -999px; + background-color: #ccc; + background-color: rgba(255, 255, 255, 0.25); +} + +.carousel-indicators .active { + background-color: #fff; +} + +.carousel-caption { + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 15px; + background: #555555; + background: rgba(0, 0, 0, 0.75); +} + +.carousel-caption h4, +.carousel-caption p { + line-height: 20px; + color: #ffffff; +} + +.carousel-caption h4 { + margin: 0 0 5px; +} + +.carousel-caption p { + margin-bottom: 0; +} + +.hero-unit { + padding: 16px 20.8px; + margin-bottom: 20px; + font-size: 18px; + line-height: 20px; + color: #ffffff; + background-color: #00aaaa; + border: 4px double #ffffff; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + box-shadow: 0 0 0 4px #00aaaa; +} + +.hero-unit h1 { + margin-bottom: 20px; + font-size: 18px; + line-height: 1; + color: #ffffff; + text-align: center; + text-decoration: blink; +} + +.hero-unit li { + line-height: 20px; +} + +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.hide { + display: none; +} + +.show { + display: block; +} + +.invisible { + visibility: hidden; +} + +#wrap386 { + position: fixed; + right: 0; + bottom: 0; + z-index: 9999999; + width: 100%; + height: 100%; + background: #000084; +} + +#bar386 { + float: right; + width: 100%; + height: 20px; + margin-top: -20px; + font-weight: bold; + color: #ffffff; + background: #000084; +} + +#cursor386 { + position: fixed; + right: 0; + bottom: 0; + z-index: 9999999; + font-weight: bold; + color: #ffffff; +} diff --git a/public/css/docs.css b/public/css/docs.css new file mode 100644 index 0000000..4499116 --- /dev/null +++ b/public/css/docs.css @@ -0,0 +1 @@ +body { visibility: hidden } diff --git a/public/css/fonts/Fixedsys500c.eot b/public/css/fonts/Fixedsys500c.eot new file mode 100644 index 0000000000000000000000000000000000000000..843de04134e5d88e9cde8f66ca2bec63cdba0101 GIT binary patch literal 27396 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 Xt30z85ik9k#6iaJ%aufMTg(3g-MlBr literal 0 HcmV?d00001 diff --git a/public/css/fonts/Fixedsys500c.otf b/public/css/fonts/Fixedsys500c.otf new file mode 100644 index 0000000000000000000000000000000000000000..8b45fb920c8e9f3c06619d1c06a998df47292e23 GIT binary patch literal 55624 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 + + + +Created by FontForge 20090914 at Tue Jul 30 19:37:37 2013 + By www-data +GPL, see http://www.gnu.org/licenses/gpl.txt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/css/fonts/Fixedsys500c.ttf b/public/css/fonts/Fixedsys500c.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7d6946d64500f56550612c01d63b6d145a9dea0a GIT binary patch literal 27216 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 A=>Px# literal 0 HcmV?d00001 diff --git a/public/css/fonts/Fixedsys500c.woff b/public/css/fonts/Fixedsys500c.woff new file mode 100644 index 0000000000000000000000000000000000000000..35c91641c288af9b70691cbf08d5abcc702b6b2a GIT binary patch literal 13468 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