commit e97b19237b6b2a8d7bfe9ed15a11837ef381127c Author: thewhitetulip Date: Fri Nov 13 14:34:42 2015 +0530 initial commit diff --git a/db/db.go b/db/db.go new file mode 100644 index 0000000..faaac5a --- /dev/null +++ b/db/db.go @@ -0,0 +1,213 @@ +package db + +import ( + "database/sql" + "fmt" + _ "github.com/mattn/go-sqlite3" + "github.com/thewhitetulip/task/types" + "strings" +) + +var database *sql.DB +var err error +var tag string +var name string +var tags string + +func init() { + database, err = sql.Open("sqlite3", "./tasks.db") + if err != nil { + fmt.Println(err) + } +} + +func Close() { + database.Close() +} + +func GetTasks(deleted bool) []types.Task{ + var task []types.Task + var TaskId int + var TaskTitle string + var TaskContent string + var getTasksql string + if deleted == true{ + getTasksql = "select id, title, content from task where is_deleted!='Y' order by created_date asc" + } else { + getTasksql = "select id, title, content from task where is_deleted='Y' order by created_date asc" + } + + rows, err := database.Query(getTasksql) + if err!=nil{ + fmt.Println(err) + } + defer rows.Close() + for rows.Next(){ + err := rows.Scan(&TaskId, &TaskTitle, &TaskContent) + if err!=nil{ + fmt.Println(err) + } + a := types.Task{Id:TaskId, Title:TaskTitle, Content:TaskContent} + task = append(task, a) + } + + return task +} + +func GetTaskById(id int) types.Task{ + var task types.Task + var TaskId int + var TaskTitle string + var TaskContent string + getTasksql := "select id, title, content from task where id=?" + + rows, err := database.Query(getTasksql, id) + if err!=nil{ + fmt.Println(err) + } + defer rows.Close() + if rows.Next(){ + err := rows.Scan(&TaskId, &TaskTitle, &TaskContent) + if err!=nil{ + fmt.Println(err) + } + task = types.Task{Id:TaskId, Title:TaskTitle, Content:TaskContent} + } + return task +} + +func ArchiveTask(id int) error { + stmt, err := database.Prepare("update task set is_deleted='Y', finish_date=datetime(),last_modified_at=datetime() where id=?") + if err!=nil{ + fmt.Println(err) + } + tx, err := database.Begin() + if err!=nil{ + fmt.Println(err) + } + _, err = tx.Stmt(stmt).Exec(id) + if err!=nil{ + fmt.Println(err) + tx.Rollback() + } else { + tx.Commit() + } + return err +} + +func DeleteAll() error { + stmt, err := database.Prepare("delete from task where is_deleted='Y'") + if err!=nil{ + fmt.Println(err) + } + tx, err := database.Begin() + if err!=nil{ + fmt.Println(err) + } + _, err = tx.Stmt(stmt).Exec() + if err!=nil{ + fmt.Println("doing rollback") + tx.Rollback() + } else { + tx.Commit() + } + return err +} + +func RestoreTask(id int) error { + restoreSql, err := database.Prepare("update task set is_deleted='N',last_modified_at=datetime() where id=?") + if err!=nil{ + fmt.Println(err) + } + tx, err := database.Begin() + if err!=nil{ + fmt.Println(err) + } + _, err = tx.Stmt(restoreSql).Exec(id) + if err!=nil{ + fmt.Println("doing rollback") + tx.Rollback() + } else { + tx.Commit() + } + return err +} + +func DeleteTask(id int) error { + deleteSQL, err := database.Prepare("delete from task where id = ?") + if err!=nil{ + fmt.Println(err) + } + tx, err := database.Begin() + if err!=nil{ + fmt.Println(err) + } + _, err = tx.Stmt(deleteSQL).Exec(id) + if err!=nil{ + fmt.Println(err) + tx.Rollback() + } else { + tx.Commit() + } + return err +} + +func AddTask(title, content string) error { + restoreSql, err := database.Prepare("insert into task(title, content, created_date, last_modified_at) values(?,?,datetime(), datetime())") + if err!=nil{ + fmt.Println(err) + } + tx, err := database.Begin() + _, err = tx.Stmt(restoreSql).Exec(title, content) + if err!=nil{ + fmt.Println(err) + tx.Rollback() + } else { + tx.Commit() + } + return err +} + +func UpdateTask(id int, title string, content string) error{ + Sql, err := database.Prepare("update task set title=?, content=? where id=?") + if err!=nil{ + fmt.Println(err) + } + tx, err := database.Begin() + + if err!=nil{ + fmt.Println(err) + } + _, err = tx.Stmt(Sql).Exec(title, content, id) + if err!=nil{ + fmt.Println(err) + tx.Rollback() + } else { + fmt.Println(tx.Commit()) + } + return err +} + +func SearchTask(query string) []types.Task{ + stmt := "select id, title, content from task where title like '%"+query+"%' or content like '%"+query+"%'" + var task []types.Task + var TaskId int + var TaskTitle string + var TaskContent string + + rows, err := database.Query(stmt, query, query) + if err!=nil{ + fmt.Println(err) + } + for rows.Next(){ + err := rows.Scan(&TaskId, &TaskTitle, &TaskContent) + if err!=nil{ + fmt.Println(err) + } + TaskTitle = strings.Replace(TaskTitle, query, ""+query+"", -1) + TaskContent = strings.Replace(TaskContent, query, ""+query+"", -1) + a := types.Task{Id:TaskId, Title:TaskTitle, Content:TaskContent} + task = append(task, a) + } + return task +} diff --git a/main.go b/main.go new file mode 100644 index 0000000..19c84db --- /dev/null +++ b/main.go @@ -0,0 +1,140 @@ +package main + +/** + * This is the main file for the Task application + * License: MIT + **/ +import ( + "fmt" + "github.com/julienschmidt/httprouter" + "github.com/thewhitetulip/task/viewmodels" + "log" + "net/http" + "strconv" + "text/template" +) + +var homeTemplate *template.Template +var deletedTemplate *template.Template +var editTemplate *template.Template +var searchTemplate *template.Template +var err error + +func main() { + defer viewmodels.Close() + homeTemplate, err = template.ParseFiles("./templates/home.gtpl") + if err != nil { + fmt.Println(err) + } + deletedTemplate, err = template.ParseFiles("./templates/deleted.gtpl") + if err != nil { + fmt.Println(err) + } + + editTemplate, err = template.ParseFiles("./templates/edit.gtpl") + if err != nil { + fmt.Println(err) + } + searchTemplate, err = template.ParseFiles("./templates/search.gtpl") + if err != nil { + fmt.Println(err) + } + router := httprouter.New() + router.GET("/", ShowAllTasks) + router.GET("/archive/:id", ArchiveTask) + router.GET("/delete/:id", DeleteTask) + router.GET("/edit/:id", EditTask) + router.GET("/trash/", ShowTrashTask) + router.GET("/restore/:id", RestoreTask) + router.POST("/add/", AddTask) + router.POST("/update/", UpdateTask) + router.POST("/search/", SearchTask) + router.NotFound = http.FileServer(http.Dir("public")) + fmt.Println("running on 8080") + log.Fatal(http.ListenAndServe(":8080", router)) +} + +func ShowAllTasks(w http.ResponseWriter, r *http.Request, parm httprouter.Params) { + context := viewmodels.GetTasks(true) //true when you want non deleted notes + homeTemplate.Execute(w, context) +} + +func SearchTask(w http.ResponseWriter, r *http.Request, _ httprouter.Params){ + r.ParseForm() + query := r.Form.Get("query") + context := viewmodels.SearchTask(query) + searchTemplate.Execute(w, context) +} + +func AddTask(w http.ResponseWriter, r *http.Request, _ httprouter.Params) { + r.ParseForm() + title := r.Form.Get("title") + content := r.Form.Get("content") + truth := viewmodels.AddTask(title, content) + if truth == true { + http.Redirect(w, r, "/", http.StatusFound) + } +} + +func ShowTrashTask(w http.ResponseWriter, r *http.Request, parm httprouter.Params) { + context := viewmodels.GetTasks(false) //false when you want finished notes + deletedTemplate.Execute(w, context) +} + +func EditTask(w http.ResponseWriter, r *http.Request, param httprouter.Params) { + id, err := strconv.Atoi(param.ByName("id")) + if err!=nil{ + fmt.Println(err) + } else { + task := viewmodels.GetTaskById(id) + editTemplate.Execute(w, task) + } +} + +func ArchiveTask(w http.ResponseWriter, r *http.Request, param httprouter.Params) { + id, err := strconv.Atoi(param.ByName("id")) + if err != nil { + fmt.Println(err) + } else { + viewmodels.ArchiveTask(id) + http.Redirect(w, r, "/", http.StatusFound) + } +} + +func DeleteTask(w http.ResponseWriter, r *http.Request, param httprouter.Params) { + id := param.ByName("id") + if id == "all"{ + viewmodels.DeleteAll() + http.Redirect(w, r, "/", http.StatusFound) + } else { + id, err := strconv.Atoi(id) + if err != nil { + fmt.Println(err) + } else { + viewmodels.DeleteTask(id) + http.Redirect(w, r, "/trash/", http.StatusFound) + } + } +} + +func RestoreTask(w http.ResponseWriter, r *http.Request, param httprouter.Params) { + id, err := strconv.Atoi(param.ByName("id")) + if err != nil { + fmt.Println(err) + } else { + viewmodels.RestoreTask(id) + http.Redirect(w, r, "/trash/", http.StatusFound) + } +} + +func UpdateTask(w http.ResponseWriter, r *http.Request, param httprouter.Params) { + r.ParseForm() + id, err := strconv.Atoi(r.Form.Get("id")) + if err!=nil{ + fmt.Println(err) + } + title := r.Form.Get("title") + content := r.Form.Get("content") + viewmodels.UpdateTask(id, title, content) + http.Redirect(w, r, "/", http.StatusFound) +} diff --git a/public/static/css/bootstrap-glyphicons.css b/public/static/css/bootstrap-glyphicons.css new file mode 100644 index 0000000..34ba265 --- /dev/null +++ b/public/static/css/bootstrap-glyphicons.css @@ -0,0 +1,2 @@ +@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphiconshalflings-regular.eot');src:url('../fonts/glyphiconshalflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphiconshalflings-regular.woff') format('woff'),url('../fonts/glyphiconshalflings-regular.ttf') format('truetype'),url('../fonts/glyphiconshalflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon:before{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-plus:before{content:"\002b"}.glyphicon-minus:before{content:"\2212"}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse:before{content:"\e159"}.glyphicon-collapse-top:before{content:"\e160"} +/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */ diff --git a/public/static/css/bootstrap.css b/public/static/css/bootstrap.css new file mode 100644 index 0000000..95e4980 --- /dev/null +++ b/public/static/css/bootstrap.css @@ -0,0 +1,4675 @@ +/*! + * Bootstrap v3.0.0 + * + * Copyright 2013 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 by @mdo and @fat. + */ + +/*! normalize.css v2.1.0 | MIT License | git.io/normalize */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} + +audio, +canvas, +video { + display: inline-block; +} + +audio:not([controls]) { + display: none; + height: 0; +} + +[hidden] { + display: none; +} + +html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +body { + margin: 0; +} + +a:focus { + outline: thin dotted; +} + +a:active, +a:hover { + outline: 0; +} + +h1 { + margin: 0.67em 0; + font-size: 2em; +} + +abbr[title] { + border-bottom: 1px dotted; +} + +b, +strong { + font-weight: bold; +} + +dfn { + font-style: italic; +} + +hr { + height: 0; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + +mark { + color: #000; + background: #ff0; +} + +code, +kbd, +pre, +samp { + font-family: monospace, serif; + font-size: 1em; +} + +pre { + white-space: pre-wrap; +} + +q { + quotes: "\201C" "\201D" "\2018" "\2019"; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + border: 0; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 0; +} + +fieldset { + padding: 0.35em 0.625em 0.75em; + margin: 0 2px; + border: 1px solid #c0c0c0; +} + +legend { + padding: 0; + border: 0; +} + +button, +input, +select, +textarea { + margin: 0; + font-family: inherit; + font-size: 100%; +} + +button, +input { + line-height: normal; +} + +button, +select { + text-transform: none; +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +button[disabled], +html input[disabled] { + cursor: default; +} + +input[type="checkbox"], +input[type="radio"] { + padding: 0; + box-sizing: border-box; +} + +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-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 2cm .5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + .navbar { + display: none; + } + .table td, + .table th { + background-color: #fff !important; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} + +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +html { + font-size: 62.5%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: #ffffff; +} + +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +a { + color: #428bca; + text-decoration: none; +} + +a:hover, +a:focus { + color: #2a6496; + text-decoration: underline; +} + +a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +img { + vertical-align: middle; +} + +.img-responsive { + display: inline-block; + height: auto; + max-width: 100%; +} + +.img-rounded { + border-radius: 6px; +} + +.img-circle { + border-radius: 500px; +} + +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} + +p { + margin: 0 0 10px; +} + +.lead { + margin-bottom: 20px; + font-size: 16.099999999999998px; + font-weight: 200; + line-height: 1.4; +} + +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} + +small { + font-size: 85%; +} + +cite { + font-style: normal; +} + +.text-muted { + color: #999999; +} + +.text-primary { + color: #428bca; +} + +.text-warning { + color: #c09853; +} + +.text-danger { + color: #b94a48; +} + +.text-success { + color: #468847; +} + +.text-info { + color: #3a87ad; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-center { + text-align: center; +} + +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: 500; + line-height: 1.1; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small { + font-weight: normal; + line-height: 1; + color: #999999; +} + +h1, +h2, +h3 { + margin-top: 20px; + margin-bottom: 10px; +} + +h4, +h5, +h6 { + margin-top: 10px; + margin-bottom: 10px; +} + +h1, +.h1 { + font-size: 38px; +} + +h2, +.h2 { + font-size: 32px; +} + +h3, +.h3 { + font-size: 24px; +} + +h4, +.h4 { + font-size: 18px; +} + +h5, +.h5 { + font-size: 14px; +} + +h6, +.h6 { + font-size: 12px; +} + +h1 small, +.h1 small { + font-size: 24px; +} + +h2 small, +.h2 small { + font-size: 18px; +} + +h3 small, +.h3 small, +h4 small, +.h4 small { + font-size: 14px; +} + +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} + +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} + +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} + +dl { + margin-bottom: 20px; +} + +dt, +dd { + line-height: 1.428571429; +} + +dt { + font-weight: bold; +} + +dd { + margin-left: 0; +} + +.dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} + +.dl-horizontal dd { + margin-left: 180px; +} + +.dl-horizontal dd:before, +.dl-horizontal dd:after { + display: table; + content: " "; +} + +.dl-horizontal dd:after { + clear: both; +} + +.dl-horizontal dd:before, +.dl-horizontal dd:after { + display: table; + content: " "; +} + +.dl-horizontal dd:after { + clear: both; +} + +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #999999; +} + +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + border-left: 5px solid #eeeeee; +} + +blockquote p { + font-size: 17.5px; + font-weight: 300; + line-height: 1.25; +} + +blockquote p:last-child { + margin-bottom: 0; +} + +blockquote small { + display: block; + line-height: 1.428571429; + color: #999999; +} + +blockquote small:before { + content: '\2014 \00A0'; +} + +blockquote.pull-right { + float: right; + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + 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: 1.428571429; +} + +code, +pre { + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; +} + +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + white-space: nowrap; + background-color: #f9f2f4; + border-radius: 4px; +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + color: #333333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #cccccc; + border-radius: 4px; +} + +pre.prettyprint { + margin-bottom: 20px; +} + +pre code { + padding: 0; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + margin-right: auto; + margin-left: auto; +} + +.container:before, +.container:after { + display: table; + content: " "; +} + +.container:after { + clear: both; +} + +.container:before, +.container:after { + display: table; + content: " "; +} + +.container:after { + clear: both; +} + +.row:before, +.row:after { + display: table; + content: " "; +} + +.row:after { + clear: both; +} + +.row:before, +.row:after { + display: table; + content: " "; +} + +.row:after { + clear: both; +} + +@media (min-width: 768px) { + .row { + margin-right: -15px; + margin-left: -15px; + } +} + +.row .row { + margin-right: -15px; + margin-left: -15px; +} + +.col-1, +.col-2, +.col-3, +.col-4, +.col-5, +.col-6, +.col-7, +.col-8, +.col-9, +.col-10, +.col-11, +.col-12, +.col-sm-1, +.col-sm-2, +.col-sm-3, +.col-sm-4, +.col-sm-5, +.col-sm-6, +.col-sm-7, +.col-sm-8, +.col-sm-9, +.col-sm-10, +.col-sm-11, +.col-sm-12, +.col-lg-1, +.col-lg-2, +.col-lg-3, +.col-lg-4, +.col-lg-5, +.col-lg-6, +.col-lg-7, +.col-lg-8, +.col-lg-9, +.col-lg-10, +.col-lg-11, +.col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} + +.col-1, +.col-2, +.col-3, +.col-4, +.col-5, +.col-6, +.col-7, +.col-8, +.col-9, +.col-10, +.col-11, +.col-12 { + float: left; +} + +.col-1 { + width: 8.333333333333332%; +} + +.col-2 { + width: 16.666666666666664%; +} + +.col-3 { + width: 25%; +} + +.col-4 { + width: 33.33333333333333%; +} + +.col-5 { + width: 41.66666666666667%; +} + +.col-6 { + width: 50%; +} + +.col-7 { + width: 58.333333333333336%; +} + +.col-8 { + width: 66.66666666666666%; +} + +.col-9 { + width: 75%; +} + +.col-10 { + width: 83.33333333333334%; +} + +.col-11 { + width: 91.66666666666666%; +} + +.col-12 { + width: 100%; +} + +@media (min-width: 768px) { + .container { + max-width: 728px; + } + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11, + .col-sm-12 { + float: left; + } + .col-sm-1 { + width: 8.333333333333332%; + } + .col-sm-2 { + width: 16.666666666666664%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-4 { + width: 33.33333333333333%; + } + .col-sm-5 { + width: 41.66666666666667%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-7 { + width: 58.333333333333336%; + } + .col-sm-8 { + width: 66.66666666666666%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-10 { + width: 83.33333333333334%; + } + .col-sm-11 { + width: 91.66666666666666%; + } + .col-sm-12 { + width: 100%; + } + .col-push-1 { + left: 8.333333333333332%; + } + .col-push-2 { + left: 16.666666666666664%; + } + .col-push-3 { + left: 25%; + } + .col-push-4 { + left: 33.33333333333333%; + } + .col-push-5 { + left: 41.66666666666667%; + } + .col-push-6 { + left: 50%; + } + .col-push-7 { + left: 58.333333333333336%; + } + .col-push-8 { + left: 66.66666666666666%; + } + .col-push-9 { + left: 75%; + } + .col-push-10 { + left: 83.33333333333334%; + } + .col-push-11 { + left: 91.66666666666666%; + } + .col-pull-1 { + right: 8.333333333333332%; + } + .col-pull-2 { + right: 16.666666666666664%; + } + .col-pull-3 { + right: 25%; + } + .col-pull-4 { + right: 33.33333333333333%; + } + .col-pull-5 { + right: 41.66666666666667%; + } + .col-pull-6 { + right: 50%; + } + .col-pull-7 { + right: 58.333333333333336%; + } + .col-pull-8 { + right: 66.66666666666666%; + } + .col-pull-9 { + right: 75%; + } + .col-pull-10 { + right: 83.33333333333334%; + } + .col-pull-11 { + right: 91.66666666666666%; + } +} + +@media (min-width: 992px) { + .container { + max-width: 940px; + } + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11, + .col-lg-12 { + float: left; + } + .col-lg-1 { + width: 8.333333333333332%; + } + .col-lg-2 { + width: 16.666666666666664%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-4 { + width: 33.33333333333333%; + } + .col-lg-5 { + width: 41.66666666666667%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-7 { + width: 58.333333333333336%; + } + .col-lg-8 { + width: 66.66666666666666%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-10 { + width: 83.33333333333334%; + } + .col-lg-11 { + width: 91.66666666666666%; + } + .col-lg-12 { + width: 100%; + } + .col-offset-1 { + margin-left: 8.333333333333332%; + } + .col-offset-2 { + margin-left: 16.666666666666664%; + } + .col-offset-3 { + margin-left: 25%; + } + .col-offset-4 { + margin-left: 33.33333333333333%; + } + .col-offset-5 { + margin-left: 41.66666666666667%; + } + .col-offset-6 { + margin-left: 50%; + } + .col-offset-7 { + margin-left: 58.333333333333336%; + } + .col-offset-8 { + margin-left: 66.66666666666666%; + } + .col-offset-9 { + margin-left: 75%; + } + .col-offset-10 { + margin-left: 83.33333333333334%; + } + .col-offset-11 { + margin-left: 91.66666666666666%; + } +} + +@media (min-width: 1200px) { + .container { + max-width: 1170px; + } +} + +table { + max-width: 100%; + background-color: transparent; +} + +th { + text-align: left; +} + +.table { + width: 100%; + margin-bottom: 20px; +} + +.table thead > tr > th, +.table tbody > tr > th, +.table tfoot > tr > th, +.table thead > tr > td, +.table tbody > tr > td, +.table tfoot > tr > td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #dddddd; +} + +.table thead > tr > th { + vertical-align: bottom; +} + +.table caption + thead tr:first-child th, +.table colgroup + thead tr:first-child th, +.table thead:first-child tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table .table { + background-color: #ffffff; +} + +.table-condensed thead > tr > th, +.table-condensed tbody > tr > th, +.table-condensed tfoot > tr > th, +.table-condensed thead > tr > td, +.table-condensed tbody > tr > td, +.table-condensed tfoot > tr > td { + padding: 5px; +} + +.table-bordered { + border: 1px solid #dddddd; +} + +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #dddddd; +} + +.table-striped > tbody > tr:nth-child(odd) > td, +.table-striped > tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} + +.table-hover > tbody > tr:hover > td, +.table-hover > tbody > tr:hover > th { + background-color: #f5f5f5; +} + +table col[class^="col-"] { + display: table-column; + float: none; +} + +table td[class^="col-"], +table th[class^="col-"] { + display: table-cell; + float: none; +} + +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} + +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; + border-color: #eed3d7; +} + +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; + border-color: #fbeed5; +} + +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td { + background-color: #d0e9c6; + border-color: #c9e2b3; +} + +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td { + background-color: #ebcccc; + border-color: #e6c1c7; +} + +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td { + background-color: #faf2cc; + border-color: #f8e5be; +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} + +label { + display: inline-block; + margin-bottom: 5px; + font-weight: bold; +} + +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + /* IE8-9 */ + + line-height: normal; +} + +input[type="file"] { + display: block; +} + +select[multiple], +select[size] { + height: auto; +} + +select optgroup { + font-family: inherit; + font-size: inherit; + font-style: inherit; +} + +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +input[type="number"]::-webkit-outer-spin-button, +input[type="number"]::-webkit-inner-spin-button { + height: auto; +} + +.form-control:-moz-placeholder { + color: #999999; +} + +.form-control::-moz-placeholder { + color: #999999; +} + +.form-control:-ms-input-placeholder { + color: #999999; +} + +.form-control::-webkit-input-placeholder { + color: #999999; +} + +.form-control { + display: block; + width: 100%; + height: 38px; + padding: 8px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; + vertical-align: middle; + background-color: #ffffff; + border: 1px solid #cccccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; +} + +.form-control:focus { + border-color: rgba(82, 168, 236, 0.8); + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); +} + +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + cursor: not-allowed; + background-color: #eeeeee; +} + +textarea.form-control { + height: auto; +} + +.form-group { + margin-bottom: 15px; +} + +.radio, +.checkbox { + display: block; + min-height: 20px; + padding-left: 20px; + margin-top: 10px; + margin-bottom: 10px; + vertical-align: middle; +} + +.radio label, +.checkbox label { + display: inline; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} + +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + float: left; + margin-left: -20px; +} + +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} + +.radio-inline, +.checkbox-inline { + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} + +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} + +.form-control.input-large { + height: 56px; + padding: 14px 16px; + font-size: 18px; + border-radius: 6px; +} + +.form-control.input-small { + height: 30px; + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} + +select.input-large { + height: 56px; + line-height: 56px; +} + +select.input-small { + height: 30px; + line-height: 30px; +} + +.has-warning .help-block, +.has-warning .control-label { + color: #c09853; +} + +.has-warning .form-control { + padding-right: 32px; + border-color: #c09853; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-warning .form-control:focus { + border-color: #a47e3c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; +} + +.has-warning .input-group-addon { + color: #c09853; + background-color: #fcf8e3; + border-color: #c09853; +} + +.has-error .help-block, +.has-error .control-label { + color: #b94a48; +} + +.has-error .form-control { + padding-right: 32px; + border-color: #b94a48; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-error .form-control:focus { + border-color: #953b39; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; +} + +.has-error .input-group-addon { + color: #b94a48; + background-color: #f2dede; + border-color: #b94a48; +} + +.has-success .help-block, +.has-success .control-label { + color: #468847; +} + +.has-success .form-control { + padding-right: 32px; + border-color: #468847; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-success .form-control:focus { + border-color: #356635; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; +} + +.has-success .input-group-addon { + color: #468847; + background-color: #dff0d8; + border-color: #468847; +} + +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} + +.btn { + display: inline-block; + padding: 8px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: 500; + line-height: 1.428571429; + text-align: center; + white-space: nowrap; + vertical-align: middle; + cursor: pointer; + border: 1px solid transparent; + border-radius: 4px; +} + +.btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn:hover, +.btn:focus { + color: #ffffff; + text-decoration: none; +} + +.btn:active, +.btn.active { + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} + +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + pointer-events: none; + cursor: default; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-default { + color: #ffffff; + background-color: #474949; + border-color: #474949; +} + +.btn-default:hover, +.btn-default:focus, +.btn-default:active, +.btn-default.active { + background-color: #3a3c3c; + border-color: #2e2f2f; +} + +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #474949; + border-color: #474949; +} + +.btn-primary { + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active { + background-color: #357ebd; + border-color: #3071a9; +} + +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #428bca; + border-color: #428bca; +} + +.btn-warning { + color: #ffffff; + background-color: #f0ad4e; + border-color: #f0ad4e; +} + +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active { + background-color: #eea236; + border-color: #ec971f; +} + +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #f0ad4e; +} + +.btn-danger { + color: #ffffff; + background-color: #d9534f; + border-color: #d9534f; +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active { + background-color: #d43f3a; + border-color: #c9302c; +} + +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d9534f; +} + +.btn-success { + color: #ffffff; + background-color: #5cb85c; + border-color: #5cb85c; +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active { + background-color: #4cae4c; + border-color: #449d44; +} + +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #5cb85c; +} + +.btn-info { + color: #ffffff; + background-color: #5bc0de; + border-color: #5bc0de; +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active { + background-color: #46b8da; + border-color: #31b0d5; +} + +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #5bc0de; +} + +.btn-link { + font-weight: normal; + color: #428bca; + cursor: pointer; + border-radius: 0; +} + +.btn-link, +.btn-link:active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} + +.btn-link:hover, +.btn-link:focus { + color: #2a6496; + text-decoration: underline; + background-color: transparent; +} + +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #333333; + text-decoration: none; +} + +.btn-large { + padding: 14px 16px; + font-size: 18px; + border-radius: 6px; +} + +.btn-small { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; +} + +.btn-block + .btn-block { + margin-top: 5px; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + display: none; +} + +.collapse.in { + display: block; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +.input-group { + display: table; + border-collapse: separate; +} + +.input-group.col { + float: none; + padding-right: 0; + padding-left: 0; +} + +.input-group .form-control { + width: 100%; + margin-bottom: 0; +} + +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} + +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} + +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} + +.input-group-addon { + padding: 8px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1.428571429; + text-align: center; + background-color: #eeeeee; + border: 1px solid #cccccc; + border-radius: 4px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.input-group-addon.input-small { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} + +.input-group-addon.input-large { + padding: 14px 16px; + font-size: 18px; + border-radius: 6px; +} + +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} + +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group-addon:first-child { + border-right: 0; +} + +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.input-group-addon:last-child { + border-left: 0; +} + +.input-group-btn { + position: relative; + white-space: nowrap; +} + +.input-group-btn > .btn { + position: relative; +} + +.input-group-btn > .btn + .btn { + margin-left: -4px; +} + +.input-group-btn > .btn:hover, +.input-group-btn > .btn:active { + z-index: 2; +} + +.form-inline .form-control, +.form-inline .radio, +.form-inline .checkbox { + display: inline-block; +} + +.form-inline .radio, +.form-inline .checkbox { + margin-top: 0; + margin-bottom: 0; +} + +.form-horizontal .control-label { + padding-top: 9px; +} + +.form-horizontal .form-group:before, +.form-horizontal .form-group:after { + display: table; + content: " "; +} + +.form-horizontal .form-group:after { + clear: both; +} + +.form-horizontal .form-group:before, +.form-horizontal .form-group:after { + display: table; + content: " "; +} + +.form-horizontal .form-group:after { + clear: both; +} + +@media (min-width: 768px) { + .form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; + } +} + +.form-horizontal .form-group .row { + margin-right: -15px; + margin-left: -15px; +} + +@media (min-width: 768px) { + .form-horizontal .control-label { + text-align: right; + } +} + +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px solid #000000; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + content: ""; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} + +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + color: #ffffff; + text-decoration: none; + background-color: #357ebd; + background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd)); + background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%); + background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%); + background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + background-color: #357ebd; + background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd)); + background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%); + background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%); + background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); + background-repeat: repeat-x; + outline: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); +} + +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #999999; +} + +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.open > .dropdown-menu { + display: block; +} + +.open > a { + outline: 0; +} + +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #999999; +} + +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid #000000; + content: ""; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +.list-group { + padding-left: 0; + margin-bottom: 20px; + background-color: #ffffff; +} + +.list-group-item { + position: relative; + display: block; + padding: 10px 30px 10px 15px; + margin-bottom: -1px; + border: 1px solid #dddddd; +} + +.list-group-item:first-child { + border-top-right-radius: 4px; + border-top-left-radius: 4px; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} + +.list-group-item > .badge { + float: right; + margin-right: -15px; +} + +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} + +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} + +a.list-group-item .list-group-item-heading { + color: #333333; +} + +a.list-group-item .list-group-item-text { + color: #555555; +} + +a.list-group-item:hover, +a.list-group-item:focus { + text-decoration: none; + background-color: #f5f5f5; +} + +a.list-group-item.active { + z-index: 2; + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +a.list-group-item.active .list-group-item-heading { + color: inherit; +} + +a.list-group-item.active .list-group-item-text { + color: #e1edf7; +} + +.panel { + padding: 15px; + margin-bottom: 20px; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.panel-heading { + padding: 10px 15px; + margin: -15px -15px 15px; + background-color: #f5f5f5; + border-bottom: 1px solid #dddddd; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 17.5px; + font-weight: 500; +} + +.panel-footer { + padding: 10px 15px; + margin: 15px -15px -15px; + background-color: #f5f5f5; + border-top: 1px solid #dddddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} + +.panel-primary { + border-color: #428bca; +} + +.panel-primary .panel-heading { + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +.panel-success { + border-color: #d6e9c6; +} + +.panel-success .panel-heading { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.panel-warning { + border-color: #fbeed5; +} + +.panel-warning .panel-heading { + color: #c09853; + background-color: #fcf8e3; + border-color: #fbeed5; +} + +.panel-danger { + border-color: #eed3d7; +} + +.panel-danger .panel-heading { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} + +.panel-info { + border-color: #bce8f1; +} + +.panel-info .panel-heading { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.list-group-flush { + margin: 15px -15px -15px; +} + +.list-group-flush .list-group-item { + border-width: 1px 0; +} + +.list-group-flush .list-group-item:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.list-group-flush .list-group-item:last-child { + border-bottom: 0; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} + +.well-large { + padding: 24px; + border-radius: 6px; +} + +.well-small { + padding: 9px; + border-radius: 3px; +} + +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.5; + filter: alpha(opacity=50); +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav:before, +.nav:after { + display: table; + content: " "; +} + +.nav:after { + clear: both; +} + +.nav:before, +.nav:after { + display: table; + content: " "; +} + +.nav:after { + clear: both; +} + +.nav > li { + position: relative; + display: block; +} + +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} + +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} + +.nav > li.disabled > a { + color: #999999; +} + +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #999999; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} + +.nav.open > a, +.nav.open > a:hover, +.nav.open > a:focus { + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +.nav.open > a .caret, +.nav.open > a:hover .caret, +.nav.open > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.nav > .pull-right { + float: right; +} + +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} + +.nav-tabs { + border-bottom: 1px solid #dddddd; +} + +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} + +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} + +.nav-tabs > li > a:hover { + border-color: #eeeeee; +} + +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555555; + cursor: default; + background-color: #ffffff; + border: 1px solid #dddddd; + border-bottom-color: transparent; +} + +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} + +.nav-tabs.nav-justified > li { + display: table-cell; + float: none; + width: 1%; +} + +.nav-tabs.nav-justified > li > a { + text-align: center; +} + +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-bottom: 1px solid #dddddd; +} + +.nav-tabs.nav-justified > .active > a { + border-bottom-color: #ffffff; +} + +.nav-pills > li { + float: left; +} + +.nav-pills > li > a { + border-radius: 5px; +} + +.nav-pills > li + li { + margin-left: 2px; +} + +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #ffffff; + background-color: #428bca; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li + li > a { + margin-top: 2px; + margin-left: 0; +} + +.nav-justified { + width: 100%; +} + +.nav-justified > li { + display: table-cell; + float: none; + width: 1%; +} + +.nav-justified > li > a { + text-align: center; +} + +.nav-tabs-justified { + border-bottom: 0; +} + +.nav-tabs-justified > li > a { + margin-right: 0; + border-bottom: 1px solid #dddddd; +} + +.nav-tabs-justified > .active > a { + border-bottom-color: #ffffff; +} + +.tabbable:before, +.tabbable:after { + display: table; + content: " "; +} + +.tabbable:after { + clear: both; +} + +.tabbable:before, +.tabbable:after { + display: table; + content: " "; +} + +.tabbable:after { + clear: both; +} + +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} + +.tab-content > .active, +.pill-content > .active { + display: block; +} + +.nav .caret { + border-top-color: #428bca; + border-bottom-color: #428bca; +} + +.nav a:hover .caret { + border-top-color: #2a6496; + border-bottom-color: #2a6496; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.navbar { + position: relative; + min-height: 50px; + padding-right: 15px; + padding-left: 15px; + margin-bottom: 20px; + background-color: #eeeeee; + border-radius: 4px; +} + +.navbar:before, +.navbar:after { + display: table; + content: " "; +} + +.navbar:after { + clear: both; +} + +.navbar:before, +.navbar:after { + display: table; + content: " "; +} + +.navbar:after { + clear: both; +} + +.navbar-nav { + margin-top: 10px; + margin-bottom: 15px; +} + +.navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + line-height: 20px; + color: #777777; + border-radius: 4px; +} + +.navbar-nav > li > a:hover, +.navbar-nav > li > a:focus { + color: #333333; + background-color: transparent; +} + +.navbar-nav > .active > a, +.navbar-nav > .active > a:hover, +.navbar-nav > .active > a:focus { + color: #555555; + background-color: #d5d5d5; +} + +.navbar-nav > .disabled > a, +.navbar-nav > .disabled > a:hover, +.navbar-nav > .disabled > a:focus { + color: #cccccc; + background-color: transparent; +} + +.navbar-nav.pull-right { + width: 100%; +} + +.navbar-static-top { + border-radius: 0; +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + border-radius: 0; +} + +.navbar-fixed-top { + top: 0; +} + +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; +} + +.navbar-brand { + display: block; + max-width: 200px; + padding: 15px 15px; + margin-right: auto; + margin-left: auto; + font-size: 18px; + font-weight: 500; + line-height: 20px; + color: #777777; + text-align: center; +} + +.navbar-brand:hover, +.navbar-brand:focus { + color: #5e5e5e; + text-decoration: none; + background-color: transparent; +} + +.navbar-toggle { + position: absolute; + top: 9px; + right: 10px; + width: 48px; + height: 32px; + padding: 8px 12px; + background-color: transparent; + border: 1px solid #dddddd; + border-radius: 4px; +} + +.navbar-toggle:hover, +.navbar-toggle:focus { + background-color: #dddddd; +} + +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + background-color: #cccccc; + border-radius: 1px; +} + +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} + +.navbar-form { + margin-top: 6px; + margin-bottom: 6px; +} + +.navbar-form .form-control, +.navbar-form .radio, +.navbar-form .checkbox { + display: inline-block; +} + +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: 0; + margin-bottom: 0; +} + +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.navbar-nav > .dropdown > a:hover .caret, +.navbar-nav > .dropdown > a:focus .caret { + border-top-color: #333333; + border-bottom-color: #333333; +} + +.navbar-nav > .open > a, +.navbar-nav > .open > a:hover, +.navbar-nav > .open > a:focus { + color: #555555; + background-color: #d5d5d5; +} + +.navbar-nav > .open > a .caret, +.navbar-nav > .open > a:hover .caret, +.navbar-nav > .open > a:focus .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.navbar-nav > .dropdown > a .caret { + border-top-color: #777777; + border-bottom-color: #777777; +} + +.navbar-nav.pull-right > li > .dropdown-menu, +.navbar-nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar-inverse { + background-color: #222222; +} + +.navbar-inverse .navbar-brand { + color: #999999; +} + +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .navbar-text { + color: #999999; +} + +.navbar-inverse .navbar-nav > li > a { + color: #999999; +} + +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #080808; +} + +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444444; + background-color: transparent; +} + +.navbar-inverse .navbar-toggle { + border-color: #333333; +} + +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333333; +} + +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #ffffff; +} + +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + color: #ffffff; + background-color: #080808; +} + +.navbar-inverse .navbar-nav > .dropdown > a:hover .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .navbar-nav > .dropdown > a .caret { + border-top-color: #999999; + border-bottom-color: #999999; +} + +.navbar-inverse .navbar-nav > .open > a .caret, +.navbar-inverse .navbar-nav > .open > a:hover .caret, +.navbar-inverse .navbar-nav > .open > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +@media screen and (min-width: 768px) { + .navbar-brand { + float: left; + margin-right: 5px; + margin-left: -15px; + } + .navbar-nav { + float: left; + margin-top: 0; + margin-bottom: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + border-radius: 0; + } + .navbar-nav.pull-right { + float: right; + width: auto; + } + .navbar-toggle { + position: relative; + top: auto; + left: auto; + display: none; + } + .nav-collapse.collapse { + display: block !important; + height: auto !important; + overflow: visible !important; + } +} + +.navbar-btn { + margin-top: 6px; +} + +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} + +.navbar-link { + color: #777777; +} + +.navbar-link:hover { + color: #333333; +} + +.navbar-inverse .navbar-link { + color: #999999; +} + +.navbar-inverse .navbar-link:hover { + color: #ffffff; +} + +.btn .caret { + border-top-color: #ffffff; +} + +.dropup .btn .caret { + border-bottom-color: #ffffff; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active { + z-index: 2; +} + +.btn-group .btn + .btn { + margin-left: -1px; +} + +.btn-toolbar:before, +.btn-toolbar:after { + display: table; + content: " "; +} + +.btn-toolbar:after { + clear: both; +} + +.btn-toolbar:before, +.btn-toolbar:after { + display: table; + content: " "; +} + +.btn-toolbar:after { + clear: both; +} + +.btn-toolbar .btn-group { + float: left; +} + +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group, +.btn-toolbar > .btn-group + .btn-group { + margin-left: 5px; +} + +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} + +.btn-group > .btn:first-child { + margin-left: 0; +} + +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.btn-group > .btn-group { + float: left; +} + +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} + +.btn-group > .btn-group:first-child > .btn:last-child, +.btn-group > .btn-group:first-child > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn-group:last-child > .btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} + +.btn-group > .btn-large + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} + +.btn .caret { + margin-left: 0; +} + +.btn-large .caret { + border-width: 5px; +} + +.dropup .btn-large .caret { + border-bottom-width: 5px; +} + +.btn-group-vertical > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} + +.btn-group-vertical > .btn + .btn { + margin-top: -1px; +} + +.btn-group-vertical .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} + +.btn-group-vertical .btn:first-child { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical .btn:last-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.btn-group-justified { + display: table; + width: 100%; +} + +.btn-group-justified .btn { + display: table-cell; + float: none; + width: 1%; +} + +.btn-group[data-toggle="buttons"] > .btn > input[type="radio"], +.btn-group[data-toggle="buttons"] > .btn > input[type="checkbox"] { + display: none; +} + +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} + +.breadcrumb > li { + display: inline-block; +} + +.breadcrumb > li + li:before { + padding: 0 5px; + color: #cccccc; + content: "/\00a0"; +} + +.breadcrumb > .active { + color: #999999; +} + +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} + +.pagination > li { + display: inline; +} + +.pagination > li > a, +.pagination > li > span { + float: left; + padding: 4px 12px; + line-height: 1.428571429; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; + border-left-width: 0; +} + +.pagination > li:first-child > a, +.pagination > li:first-child > span { + border-left-width: 1px; + border-bottom-left-radius: 4px; + border-top-left-radius: 4px; +} + +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +.pagination > li > a:hover, +.pagination > li > a:focus, +.pagination > .active > a, +.pagination > .active > span { + background-color: #f5f5f5; +} + +.pagination > .active > a, +.pagination > .active > span { + color: #999999; + cursor: default; +} + +.pagination > .disabled > span, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #999999; + cursor: not-allowed; + background-color: #ffffff; +} + +.pagination-large > li > a, +.pagination-large > li > span { + padding: 14px 16px; + font-size: 18px; +} + +.pagination-large > li:first-child > a, +.pagination-large > li:first-child > span { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} + +.pagination-large > li:last-child > a, +.pagination-large > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.pagination-small > li > a, +.pagination-small > li > span { + padding: 5px 10px; + font-size: 12px; +} + +.pagination-small > li:first-child > a, +.pagination-small > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} + +.pagination-small > li:last-child > a, +.pagination-small > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} + +.pager:before, +.pager:after { + display: table; + content: " "; +} + +.pager:after { + clear: both; +} + +.pager:before, +.pager:after { + display: table; + content: " "; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 15px; +} + +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #f5f5f5; +} + +.pager .next > a, +.pager .next > span { + float: right; +} + +.pager .previous > a, +.pager .previous > span { + float: left; +} + +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #999999; + cursor: not-allowed; + background-color: #ffffff; +} + +.modal-open { + overflow: hidden; +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + display: none; + overflow: auto; + overflow-y: scroll; +} + +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; +} + +.modal.fade.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + transform: translate(0, 0); +} + +.modal-dialog { + z-index: 1050; + width: auto; + padding: 10px; + margin-right: auto; + margin-left: auto; +} + +.modal-content { + position: relative; + background-color: #ffffff; + border: 1px solid #999999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + outline: none; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; + filter: alpha(opacity=0); +} + +.modal-backdrop.fade.in { + opacity: 0.5; + filter: alpha(opacity=50); +} + +.modal-header { + min-height: 16.428571429px; + padding: 15px; + border-bottom: 1px solid #e5e5e5; +} + +.modal-header .close { + margin-top: -2px; +} + +.modal-title { + margin: 0; + line-height: 1.428571429; +} + +.modal-body { + position: relative; + padding: 20px; +} + +.modal-footer { + padding: 19px 20px 20px; + margin-top: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + 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; +} + +@media screen and (min-width: 768px) { + .modal-dialog { + right: auto; + left: 50%; + width: 600px; + padding-top: 30px; + padding-bottom: 30px; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } +} + +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 12px; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 1; + filter: alpha(opacity=100); +} + +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} + +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} + +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} + +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} + +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: rgba(0, 0, 0, 0.9); + border-radius: 4px; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: rgba(0, 0, 0, 0.9); + border-width: 5px 5px 0; +} + +.tooltip.top-left .tooltip-arrow { + bottom: 0; + left: 5px; + border-top-color: rgba(0, 0, 0, 0.9); + border-width: 5px 5px 0; +} + +.tooltip.top-right .tooltip-arrow { + right: 5px; + bottom: 0; + border-top-color: rgba(0, 0, 0, 0.9); + border-width: 5px 5px 0; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: rgba(0, 0, 0, 0.9); + border-width: 5px 5px 5px 0; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: rgba(0, 0, 0, 0.9); + border-width: 5px 0 5px 5px; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: rgba(0, 0, 0, 0.9); + border-width: 0 5px 5px; +} + +.tooltip.bottom-left .tooltip-arrow { + top: 0; + left: 5px; + border-bottom-color: rgba(0, 0, 0, 0.9); + border-width: 0 5px 5px; +} + +.tooltip.bottom-right .tooltip-arrow { + top: 0; + right: 5px; + border-bottom-color: rgba(0, 0, 0, 0.9); + border-width: 0 5px 5px; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + background-clip: padding-box; + -webkit-bg-clip: padding-box; + -moz-bg-clip: padding; +} + +.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: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} + +.popover-content { + padding: 9px 14px; +} + +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.popover .arrow { + border-width: 11px; +} + +.popover .arrow:after { + border-width: 10px; + content: ""; +} + +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + 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; + content: " "; +} + +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999999; + 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; + content: " "; +} + +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999999; + 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; + content: " "; +} + +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999999; + 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; + content: " "; +} + +.alert { + padding: 10px 35px 10px 15px; + margin-bottom: 20px; + color: #c09853; + background-color: #fcf8e3; + border: 1px solid #fbeed5; + border-radius: 4px; +} + +.alert h4 { + margin-top: 0; + color: inherit; +} + +.alert hr { + border-top-color: #f8e5be; +} + +.alert .alert-link { + font-weight: 500; + color: #a47e3c; +} + +.alert .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} + +.alert-success { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.alert-success hr { + border-top-color: #c9e2b3; +} + +.alert-success .alert-link { + color: #356635; +} + +.alert-danger { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} + +.alert-danger hr { + border-top-color: #e6c1c7; +} + +.alert-danger .alert-link { + color: #953b39; +} + +.alert-info { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.alert-info hr { + border-top-color: #a6e1ec; +} + +.alert-info .alert-link { + color: #2d6987; +} + +.alert-block { + padding-top: 15px; + padding-bottom: 15px; +} + +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} + +.alert-block p + p { + margin-top: 5px; +} + +.thumbnail, +.img-thumbnail { + padding: 4px; + line-height: 1.428571429; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +.thumbnail { + display: block; +} + +.thumbnail > img, +.img-thumbnail { + display: inline-block; + height: auto; + max-width: 100%; +} + +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #428bca; +} + +.thumbnail > img { + margin-right: auto; + margin-left: auto; +} + +.thumbnail .caption { + padding: 9px; + color: #333333; +} + +.media, +.media-body { + overflow: hidden; + 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 { + padding-left: 0; + list-style: none; +} + +.label { + display: inline; + padding: .25em .6em; + font-size: 75%; + font-weight: 500; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: middle; + background-color: #999999; + border-radius: .25em; +} + +.label[href]:hover, +.label[href]:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; + background-color: #808080; +} + +.label-danger { + background-color: #d9534f; +} + +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} + +.label-success { + background-color: #5cb85c; +} + +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} + +.label-warning { + background-color: #f0ad4e; +} + +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} + +.label-info { + background-color: #5bc0de; +} + +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} + +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: middle; + background-color: #999999; + border-radius: 10px; +} + +.badge:empty { + display: none; +} + +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.btn .badge { + position: relative; + top: -1px; +} + +a.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #428bca; + background-color: #ffffff; +} + +.nav-pills > li > a > .badge { + margin-left: 3px; +} + +@-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: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + color: #ffffff; + text-align: center; + background-color: #428bca; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress-striped .progress-bar { + background-color: #428bca; + 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: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; +} + +.progress.active .progress-bar { + -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-bar-danger { + background-color: #d9534f; +} + +.progress-striped .progress-bar-danger { + background-color: #d9534f; + 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: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-success { + background-color: #5cb85c; +} + +.progress-striped .progress-bar-success { + background-color: #5cb85c; + 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: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-warning { + background-color: #f0ad4e; +} + +.progress-striped .progress-bar-warning { + background-color: #f0ad4e; + 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: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-info { + background-color: #5bc0de; +} + +.progress-striped .progress-bar-info { + background-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: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.accordion { + margin-bottom: 20px; +} + +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + border-radius: 4px; +} + +.accordion-heading { + border-bottom: 0; +} + +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; + cursor: pointer; +} + +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} + +.carousel { + position: relative; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} + +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: inline-block; + height: auto; + max-width: 100%; + 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: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.left { + background-color: rgba(0, 0, 0, 0.0001); + background-color: transparent; + background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%)); + background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); +} + +.carousel-control.right { + right: 0; + left: auto; + background-color: rgba(0, 0, 0, 0.5); + background-color: transparent; + background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%)); + background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); +} + +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-control .glyphicon, +.carousel-control .icon-prev, +.carousel-control .icon-next { + position: absolute; + top: 50%; + left: 50%; + z-index: 5; + display: inline-block; + width: 20px; + height: 20px; + margin-top: -10px; + margin-left: -10px; + font-family: serif; +} + +.carousel-control .icon-prev:before { + content: '\2039'; +} + +.carousel-control .icon-next:before { + content: '\203a'; +} + +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 120px; + padding-left: 0; + margin-left: -60px; + text-align: center; + list-style: none; +} + +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + border: 1px solid #ffffff; + border-radius: 10px; +} + +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #ffffff; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} + +.carousel-caption .btn { + text-shadow: none; +} + +@media screen and (min-width: 768px) { + .carousel-control .glyphicon, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + margin-left: -15px; + font-size: 30px; + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} + +.jumbotron { + padding: 30px; + margin-bottom: 30px; + font-size: 21px; + font-weight: 200; + line-height: 2.1428571435; + color: inherit; + background-color: #eeeeee; +} + +.jumbotron h1 { + line-height: 1; + color: inherit; +} + +.jumbotron p { + line-height: 1.4; +} + +@media screen and (min-width: 768px) { + .jumbotron { + padding: 50px 60px; + border-radius: 6px; + } + .jumbotron h1 { + font-size: 63px; + } +} + +.clearfix:before, +.clearfix:after { + display: table; + content: " "; +} + +.clearfix:after { + clear: both; +} + +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.hide { + display: none !important; +} + +.show { + display: block !important; +} + +.invisible { + visibility: hidden; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.affix { + position: fixed; +} + +@-ms-viewport { + width: device-width; +} + +@media screen and (max-width: 400px) { + @-ms-viewport { + width: 320px; + } +} + +.hidden { + display: none !important; + visibility: hidden !important; +} + +.visible-sm { + display: block !important; +} + +tr.visible-sm { + display: table-row !important; +} + +th.visible-sm, +td.visible-sm { + display: table-cell !important; +} + +.visible-md { + display: none !important; +} + +tr.visible-md { + display: none !important; +} + +th.visible-md, +td.visible-md { + display: none !important; +} + +.visible-lg { + display: none !important; +} + +tr.visible-lg { + display: none !important; +} + +th.visible-lg, +td.visible-lg { + display: none !important; +} + +.hidden-sm { + display: none !important; +} + +tr.hidden-sm { + display: none !important; +} + +th.hidden-sm, +td.hidden-sm { + display: none !important; +} + +.hidden-md { + display: block !important; +} + +tr.hidden-md { + display: table-row !important; +} + +th.hidden-md, +td.hidden-md { + display: table-cell !important; +} + +.hidden-lg { + display: block !important; +} + +tr.hidden-lg { + display: table-row !important; +} + +th.hidden-lg, +td.hidden-lg { + display: table-cell !important; +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: none !important; + } + tr.visible-sm { + display: none !important; + } + th.visible-sm, + td.visible-sm { + display: none !important; + } + .visible-md { + display: block !important; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } + .visible-lg { + display: none !important; + } + tr.visible-lg { + display: none !important; + } + th.visible-lg, + td.visible-lg { + display: none !important; + } + .hidden-sm { + display: block !important; + } + tr.hidden-sm { + display: table-row !important; + } + th.hidden-sm, + td.hidden-sm { + display: table-cell !important; + } + .hidden-md { + display: none !important; + } + tr.hidden-md { + display: none !important; + } + th.hidden-md, + td.hidden-md { + display: none !important; + } + .hidden-lg { + display: block !important; + } + tr.hidden-lg { + display: table-row !important; + } + th.hidden-lg, + td.hidden-lg { + display: table-cell !important; + } +} + +@media (min-width: 992px) { + .visible-sm { + display: none !important; + } + tr.visible-sm { + display: none !important; + } + th.visible-sm, + td.visible-sm { + display: none !important; + } + .visible-md { + display: none !important; + } + tr.visible-md { + display: none !important; + } + th.visible-md, + td.visible-md { + display: none !important; + } + .visible-lg { + display: block !important; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } + .hidden-sm { + display: block !important; + } + tr.hidden-sm { + display: table-row !important; + } + th.hidden-sm, + td.hidden-sm { + display: table-cell !important; + } + .hidden-md { + display: block !important; + } + tr.hidden-md { + display: table-row !important; + } + th.hidden-md, + td.hidden-md { + display: table-cell !important; + } + .hidden-lg { + display: none !important; + } + tr.hidden-lg { + display: none !important; + } + th.hidden-lg, + td.hidden-lg { + display: none !important; + } +} + +.visible-print { + display: none !important; +} + +tr.visible-print { + display: none !important; +} + +th.visible-print, +td.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: block !important; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } + .hidden-print { + display: none !important; + } + tr.hidden-print { + display: none !important; + } + th.hidden-print, + td.hidden-print { + display: none !important; + } +} diff --git a/public/static/css/bootstrap.min.css b/public/static/css/bootstrap.min.css new file mode 100644 index 0000000..53b03d4 --- /dev/null +++ b/public/static/css/bootstrap.min.css @@ -0,0 +1,4281 @@ +/*! + * Bootstrap v3.0.0 + * + * Copyright 2013 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 by @mdo and @fat. + *//*! normalize.css v2.1.0 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{ + display:block +} + + +audio,canvas,video{ + display:inline-block +} + +audio:not([controls]){ + display:none; + height:0 +} + +[hidden]{ + display:none +} + +html{ + font-family:sans-serif; + -webkit-text-size-adjust:100%; + -ms-text-size-adjust:100% +} + +body{ + margin:0 +} + +a:focus{ + outline:thin dotted +} + +a:active,a:hover{ + outline:0 +} + +h1{ + margin:.67em 0; + font-size:2em +} + +abbr[title]{ + border-bottom:1px dotted +} + +b,strong{ + font-weight:bold +} + +dfn{ + font-style:italic +} + +hr{ + height:0; + -moz-box-sizing:content-box; + box-sizing:content-box +} + +mark{ + color:#000; + background:#ff0 +} + +code,kbd,pre,samp{ + font-family:monospace,serif; + font-size:1em +} + +pre{ + white-space:pre-wrap +} + +q{ + quotes:"\201C" "\201D" "\2018" "\2019" +} + +small{ + font-size:80% +} + +sub,sup{ + position:relative; + font-size:75%; + line-height:0; + vertical-align:baseline +} + +sup{ + top:-0.5em +} + +sub{ + bottom:-0.25em +} + +img{ + border:0 +} + +svg:not(:root){ + overflow:hidden +} + +figure{ + margin:0 +} + +fieldset{ + padding:.35em .625em .75em; + margin:0 2px; + border:1px solid #c0c0c0 +} + +legend{ + padding:0; + border:0 +} + +button,input,select,textarea{ + margin:0; + font-family:inherit; + font-size:100% +} + +button,input{ + line-height:normal +} + +button,select{ + text-transform:none +} + +button,html input[type="button"],input[type="reset"],input[type="submit"]{ + cursor:pointer; + -webkit-appearance:button +} + +button[disabled],html input[disabled]{ + cursor:default +} + +input[type="checkbox"],input[type="radio"]{ + padding:0; + box-sizing:border-box +} + +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-cancel-button,input[type="search"]::-webkit-search-decoration{ + -webkit-appearance:none +} + +button::-moz-focus-inner,input::-moz-focus-inner{ + padding:0; + border:0 +} + +textarea{ + overflow:auto; + vertical-align:top +} + +table{ + border-collapse:collapse; + border-spacing:0 +} + +@media print{ + *{ + color:#000!important; + text-shadow:none!important; + background:transparent!important; + box-shadow:none!important + } + + a,a:visited{ + text-decoration:underline + } + + a[href]:after{ + content:" (" attr(href) ")" + } + + abbr[title]:after{ + content:" (" attr(title) ")" + } + + .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{ + content:"" + } + + pre,blockquote{ + border:1px solid #999; + page-break-inside:avoid + } + + thead{ + display:table-header-group + } + + tr,img{ + page-break-inside:avoid + } + + img{ + max-width:100%!important + } + + @page{ + margin:2cm .5cm + } + + p,h2,h3{ + orphans:3; + widows:3 + } + + h2,h3{ + page-break-after:avoid + } + + .navbar{ + display:none + } + + .table td,.table th{ + background-color:#fff!important + } + + .btn>.caret,.dropup>.btn>.caret{ + border-top-color:#000!important + } + + .label{ + border:1px solid #000 + } + + .table{ + border-collapse:collapse!important + } + + .table-bordered th,.table-bordered td{ + border:1px solid #ddd!important + } + +} + +*{ + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box +} + +html{ + font-size:62.5%; + -webkit-tap-highlight-color:rgba(0,0,0,0) +} + +body{ + font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; + font-size:14px; + line-height:1.428571429; + color:#333; + background-color:#fff +} + +input,button,select,textarea{ + font-family:inherit; + font-size:inherit; + line-height:inherit +} + +a{ + color:#428bca; + text-decoration:none +} + +a:hover,a:focus{ + color:#2a6496; + text-decoration:underline +} + +a:focus{ + outline:thin dotted #333; + outline:5px auto -webkit-focus-ring-color; + outline-offset:-2px +} + +img{ + vertical-align:middle +} + +.img-responsive{ + display:inline-block; + height:auto; + max-width:100% +} + +.img-rounded{ + border-radius:6px +} + +.img-circle{ + border-radius:500px +} + +hr{ + margin-top:20px; + margin-bottom:20px; + border:0; + border-top:1px solid #eee +} + +p{ + margin:0 0 10px +} + +.lead{ + margin-bottom:20px; + font-size:16.099999999999998px; + font-weight:200; + line-height:1.4 +} + +@media(min-width:768px){ + .lead{ + font-size:21px + } + +} + +small{ + font-size:85% +} + +cite{ + font-style:normal +} + +.text-muted{ + color:#999 +} + +.text-primary{ + color:#428bca +} + +.text-warning{ + color:#c09853 +} + +.text-danger{ + color:#b94a48 +} + +.text-success{ + color:#468847 +} + +.text-info{ + color:#3a87ad +} + +.text-left{ + text-align:left +} + +.text-right{ + text-align:right +} + +.text-center{ + text-align:center +} + +h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{ + font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; + font-weight:500; + line-height:1.1 +} + +h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{ + font-weight:normal; + line-height:1; + color:#999 +} + +h1,h2,h3{ + margin-top:20px; + margin-bottom:10px +} + +h4,h5,h6{ + margin-top:10px; + margin-bottom:10px +} + +h1,.h1{ + font-size:38px +} + +h2,.h2{ + font-size:32px +} + +h3,.h3{ + font-size:24px +} + +h4,.h4{ + font-size:18px +} + +h5,.h5{ + font-size:14px +} + +h6,.h6{ + font-size:12px +} + +h1 small,.h1 small{ + font-size:24px +} + +h2 small,.h2 small{ + font-size:18px +} + +h3 small,.h3 small,h4 small,.h4 small{ + font-size:14px +} + +.page-header{ + padding-bottom:9px; + margin:40px 0 20px; + border-bottom:1px solid #eee +} + +ul,ol{ + margin-top:0; + margin-bottom:10px +} + +ul ul,ol ul,ul ol,ol ol{ + margin-bottom:0 +} + +.list-unstyled{ + padding-left:0; + list-style:none +} + +.list-inline{ + padding-left:0; + list-style:none +} + +.list-inline>li{ + display:inline-block; + padding-right:5px; + padding-left:5px +} + +dl{ + margin-bottom:20px +} + +dt,dd{ + line-height:1.428571429 +} + +dt{ + font-weight:bold +} + +dd{ + margin-left:0 +} + +.dl-horizontal dt{ + float:left; + width:160px; + overflow:hidden; + clear:left; + text-align:right; + text-overflow:ellipsis; + white-space:nowrap +} + +.dl-horizontal dd{ + margin-left:180px +} + +.dl-horizontal dd:before,.dl-horizontal dd:after{ + display:table; + content:" " +} + +.dl-horizontal dd:after{ + clear:both +} + +.dl-horizontal dd:before,.dl-horizontal dd:after{ + display:table; + content:" " +} + +.dl-horizontal dd:after{ + clear:both +} + +abbr[title],abbr[data-original-title]{ + cursor:help; + border-bottom:1px dotted #999 +} + +abbr.initialism{ + font-size:90%; + text-transform:uppercase +} + +blockquote{ + padding:10px 20px; + margin:0 0 20px; + border-left:5px solid #eee +} + +blockquote p{ + font-size:17.5px; + font-weight:300; + line-height:1.25 +} + +blockquote p:last-child{ + margin-bottom:0 +} + +blockquote small{ + display:block; + line-height:1.428571429; + color:#999 +} + +blockquote small:before{ + content:'\2014 \00A0' +} + +blockquote.pull-right{ + float:right; + padding-right:15px; + padding-left:0; + border-right:5px solid #eee; + border-left:0 +} + +blockquote.pull-right p,blockquote.pull-right small{ + text-align:right +} + +blockquote.pull-right small:before{ + content:'' +} + +blockquote.pull-right small:after{ + content:'\00A0 \2014' +} + +q:before,q:after,blockquote:before,blockquote:after{ + content:"" +} + +address{ + display:block; + margin-bottom:20px; + font-style:normal; + line-height:1.428571429 +} + +code,pre{ + font-family:Monaco,Menlo,Consolas,"Courier New",monospace +} + +code{ + padding:2px 4px; + font-size:90%; + color:#c7254e; + white-space:nowrap; + background-color:#f9f2f4; + border-radius:4px +} + +pre{ + display:block; + padding:9.5px; + margin:0 0 10px; + font-size:13px; + line-height:1.428571429; + color:#333; + word-break:break-all; + word-wrap:break-word; + background-color:#f5f5f5; + border:1px solid #ccc; + border-radius:4px +} + +pre.prettyprint{ + margin-bottom:20px +} + +pre code{ + padding:0; + color:inherit; + white-space:pre-wrap; + background-color:transparent; + border:0 +} + +.pre-scrollable{ + max-height:340px; + overflow-y:scroll +} + +.container{ + margin-right:auto; + margin-left:auto +} + +.container:before,.container:after{ + display:table; + content:" " +} + +.container:after{ + clear:both +} + +.container:before,.container:after{ + display:table; + content:" " +} + +.container:after{ + clear:both +} + +.row:before,.row:after{ + display:table; + content:" " +} + +.row:after{ + clear:both +} + +.row:before,.row:after{ + display:table; + content:" " +} + +.row:after{ + clear:both +} + +@media(min-width:768px){ + .row{ + margin-right:-15px; + margin-left:-15px + } + +} + +.row .row{ + margin-right:-15px; + margin-left:-15px +} + +.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{ + position:relative; + min-height:1px; + padding-right:15px; + padding-left:15px +} + +.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12{ + float:left +} + +.col-1{ + width:8.333333333333332% +} + +.col-2{ + width:16.666666666666664% +} + +.col-3{ + width:25% +} + +.col-4{ + width:33.33333333333333% +} + +.col-5{ + width:41.66666666666667% +} + +.col-6{ + width:50% +} + +.col-7{ + width:58.333333333333336% +} + +.col-8{ + width:66.66666666666666% +} + +.col-9{ + width:75% +} + +.col-10{ + width:83.33333333333334% +} + +.col-11{ + width:91.66666666666666% +} + +.col-12{ + width:100% +} + +@media(min-width:768px){ + .container{ + max-width:728px + } + + .col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{ + float:left + } + + .col-sm-1{ + width:8.333333333333332% + } + + .col-sm-2{ + width:16.666666666666664% + } + + .col-sm-3{ + width:25% + } + + .col-sm-4{ + width:33.33333333333333% + } + + .col-sm-5{ + width:41.66666666666667% + } + + .col-sm-6{ + width:50% + } + + .col-sm-7{ + width:58.333333333333336% + } + + .col-sm-8{ + width:66.66666666666666% + } + + .col-sm-9{ + width:75% + } + + .col-sm-10{ + width:83.33333333333334% + } + + .col-sm-11{ + width:91.66666666666666% + } + + .col-sm-12{ + width:100% + } + + .col-push-1{ + left:8.333333333333332% + } + + .col-push-2{ + left:16.666666666666664% + } + + .col-push-3{ + left:25% + } + + .col-push-4{ + left:33.33333333333333% + } + + .col-push-5{ + left:41.66666666666667% + } + + .col-push-6{ + left:50% + } + + .col-push-7{ + left:58.333333333333336% + } + + .col-push-8{ + left:66.66666666666666% + } + + .col-push-9{ + left:75% + } + + .col-push-10{ + left:83.33333333333334% + } + + .col-push-11{ + left:91.66666666666666% + } + + .col-pull-1{ + right:8.333333333333332% + } + + .col-pull-2{ + right:16.666666666666664% + } + + .col-pull-3{ + right:25% + } + + .col-pull-4{ + right:33.33333333333333% + } + + .col-pull-5{ + right:41.66666666666667% + } + + .col-pull-6{ + right:50% + } + + .col-pull-7{ + right:58.333333333333336% + } + + .col-pull-8{ + right:66.66666666666666% + } + + .col-pull-9{ + right:75% + } + + .col-pull-10{ + right:83.33333333333334% + } + + .col-pull-11{ + right:91.66666666666666% + } + +} + +@media(min-width:992px){ + .container{ + max-width:940px + } + + .col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{ + float:left + } + + .col-lg-1{ + width:8.333333333333332% + } + + .col-lg-2{ + width:16.666666666666664% + } + + .col-lg-3{ + width:25% + } + + .col-lg-4{ + width:33.33333333333333% + } + + .col-lg-5{ + width:41.66666666666667% + } + + .col-lg-6{ + width:50% + } + + .col-lg-7{ + width:58.333333333333336% + } + + .col-lg-8{ + width:66.66666666666666% + } + + .col-lg-9{ + width:75% + } + + .col-lg-10{ + width:83.33333333333334% + } + + .col-lg-11{ + width:91.66666666666666% + } + + .col-lg-12{ + width:100% + } + + .col-offset-1{ + margin-left:8.333333333333332% + } + + .col-offset-2{ + margin-left:16.666666666666664% + } + + .col-offset-3{ + margin-left:25% + } + + .col-offset-4{ + margin-left:33.33333333333333% + } + + .col-offset-5{ + margin-left:41.66666666666667% + } + + .col-offset-6{ + margin-left:50% + } + + .col-offset-7{ + margin-left:58.333333333333336% + } + + .col-offset-8{ + margin-left:66.66666666666666% + } + + .col-offset-9{ + margin-left:75% + } + + .col-offset-10{ + margin-left:83.33333333333334% + } + + .col-offset-11{ + margin-left:91.66666666666666% + } + +} + +@media(min-width:1200px){ + .container{ + max-width:1170px + } + +} + +table{ + max-width:100%; + background-color:transparent +} + +th{ + text-align:left +} + +.table{ + width:100%; + margin-bottom:20px +} + +.table thead>tr>th,.table tbody>tr>th,.table tfoot>tr>th,.table thead>tr>td,.table tbody>tr>td,.table tfoot>tr>td{ + padding:8px; + line-height:1.428571429; + vertical-align:top; + border-top:1px solid #ddd +} + +.table thead>tr>th{ + vertical-align:bottom +} + +.table caption+thead tr:first-child th,.table colgroup+thead tr:first-child th,.table thead:first-child tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child td{ + border-top:0 +} + +.table tbody+tbody{ + border-top:2px solid #ddd +} + +.table .table{ + background-color:#fff +} + +.table-condensed thead>tr>th,.table-condensed tbody>tr>th,.table-condensed tfoot>tr>th,.table-condensed thead>tr>td,.table-condensed tbody>tr>td,.table-condensed tfoot>tr>td{ + padding:5px +} + +.table-bordered{ + border:1px solid #ddd +} + +.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{ + border:1px solid #ddd +} + +.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{ + background-color:#f9f9f9 +} + +.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{ + background-color:#f5f5f5 +} + +table col[class^="col-"]{ + display:table-column; + float:none +} + +table td[class^="col-"],table th[class^="col-"]{ + display:table-cell; + float:none +} + +.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{ + background-color:#f5f5f5 +} + +.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{ + background-color:#dff0d8; + border-color:#d6e9c6 +} + +.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{ + background-color:#f2dede; + border-color:#eed3d7 +} + +.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{ + background-color:#fcf8e3; + border-color:#fbeed5 +} + +.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td{ + background-color:#d0e9c6; + border-color:#c9e2b3 +} + +.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td{ + background-color:#ebcccc; + border-color:#e6c1c7 +} + +.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td{ + background-color:#faf2cc; + border-color:#f8e5be +} + +fieldset{ + padding:0; + margin:0; + border:0 +} + +legend{ + display:block; + width:100%; + padding:0; + margin-bottom:20px; + font-size:21px; + line-height:inherit; + color:#333; + border:0; + border-bottom:1px solid #e5e5e5 +} + +label{ + display:inline-block; + margin-bottom:5px; + font-weight:bold +} + +input[type="search"]{ + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box +} + +input[type="radio"],input[type="checkbox"]{ + margin:4px 0 0; + margin-top:1px \9; + line-height:normal +} + +input[type="file"]{ + display:block +} + +select[multiple],select[size]{ + height:auto +} + +select optgroup{ + font-family:inherit; + font-size:inherit; + font-style:inherit +} + +input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{ + outline:thin dotted #333; + outline:5px auto -webkit-focus-ring-color; + outline-offset:-2px +} + +input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{ + height:auto +} + +.form-control:-moz-placeholder{ + color:#999 +} + +.form-control::-moz-placeholder{ + color:#999 +} + +.form-control:-ms-input-placeholder{ + color:#999 +} + +.form-control::-webkit-input-placeholder{ + color:#999 +} + +.form-control{ + display:block; + width:100%; + height:38px; + padding:8px 12px; + font-size:14px; + line-height:1.428571429; + color:#555; + vertical-align:middle; + background-color:#fff; + border:1px solid #ccc; + border-radius:4px; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); + -webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s; + transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s +} + +.form-control:focus{ + border-color:rgba(82,168,236,0.8); + outline:0; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6); + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6) +} + +.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{ + cursor:not-allowed; + background-color:#eee +} + +textarea.form-control{ + height:auto +} + +.form-group{ + margin-bottom:15px +} + +.radio,.checkbox{ + display:block; + min-height:20px; + padding-left:20px; + margin-top:10px; + margin-bottom:10px; + vertical-align:middle +} + +.radio label,.checkbox label{ + display:inline; + margin-bottom:0; + font-weight:normal; + cursor:pointer +} + +.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{ + float:left; + margin-left:-20px +} + +.radio+.radio,.checkbox+.checkbox{ + margin-top:-5px +} + +.radio-inline,.checkbox-inline{ + display:inline-block; + padding-left:20px; + margin-bottom:0; + font-weight:normal; + vertical-align:middle; + cursor:pointer +} + +.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{ + margin-top:0; + margin-left:10px +} + +.form-control.input-large{ + height:56px; + padding:14px 16px; + font-size:18px; + border-radius:6px +} + +.form-control.input-small{ + height:30px; + padding:5px 10px; + font-size:12px; + border-radius:3px +} + +select.input-large{ + height:56px; + line-height:56px +} + +select.input-small{ + height:30px; + line-height:30px +} + +.has-warning .help-block,.has-warning .control-label{ + color:#c09853 +} + +.has-warning .form-control{ + padding-right:32px; + border-color:#c09853; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075) +} + +.has-warning .form-control:focus{ + border-color:#a47e3c; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e; + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e +} + +.has-warning .input-group-addon{ + color:#c09853; + background-color:#fcf8e3; + border-color:#c09853 +} + +.has-error .help-block,.has-error .control-label{ + color:#b94a48 +} + +.has-error .form-control{ + padding-right:32px; + border-color:#b94a48; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075) +} + +.has-error .form-control:focus{ + border-color:#953b39; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392; + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392 +} + +.has-error .input-group-addon{ + color:#b94a48; + background-color:#f2dede; + border-color:#b94a48 +} + +.has-success .help-block,.has-success .control-label{ + color:#468847 +} + +.has-success .form-control{ + padding-right:32px; + border-color:#468847; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075) +} + +.has-success .form-control:focus{ + border-color:#356635; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b; + box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b +} + +.has-success .input-group-addon{ + color:#468847; + background-color:#dff0d8; + border-color:#468847 +} + +.help-block{ + display:block; + margin-top:5px; + margin-bottom:10px; + color:#737373 +} + +.btn{ + display:inline-block; + padding:8px 12px; + margin-bottom:0; + font-size:14px; + font-weight:500; + line-height:1.428571429; + text-align:center; + white-space:nowrap; + vertical-align:middle; + cursor:pointer; + border:1px solid transparent; + border-radius:4px +} + +.btn:focus{ + outline:thin dotted #333; + outline:5px auto -webkit-focus-ring-color; + outline-offset:-2px +} + +.btn:hover,.btn:focus{ + color:#fff; + text-decoration:none +} + +.btn:active,.btn.active{ + outline:0; + -webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125); + box-shadow:inset 0 3px 5px rgba(0,0,0,0.125) +} + +.btn.disabled,.btn[disabled],fieldset[disabled] .btn{ + pointer-events:none; + cursor:default; + opacity:.65; + filter:alpha(opacity=65); + -webkit-box-shadow:none; + box-shadow:none +} + +.btn-default{ + color:#fff; + background-color:#474949; + border-color:#474949 +} + +.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active{ + background-color:#3a3c3c; + border-color:#2e2f2f +} + +.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{ + background-color:#474949; + border-color:#474949 +} + +.btn-primary{ + color:#fff; + background-color:#428bca; + border-color:#428bca +} + +.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active{ + background-color:#357ebd; + border-color:#3071a9 +} + +.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{ + background-color:#428bca; + border-color:#428bca +} + +.btn-warning{ + color:#fff; + background-color:#f0ad4e; + border-color:#f0ad4e +} + +.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active{ + background-color:#eea236; + border-color:#ec971f +} + +.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{ + background-color:#f0ad4e; + border-color:#f0ad4e +} + +.btn-danger{ + color:#fff; + background-color:#d9534f; + border-color:#d9534f +} + +.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active{ + background-color:#d43f3a; + border-color:#c9302c +} + +.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{ + background-color:#d9534f; + border-color:#d9534f +} + +.btn-success{ + color:#fff; + background-color:#5cb85c; + border-color:#5cb85c +} + +.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active{ + background-color:#4cae4c; + border-color:#449d44 +} + +.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{ + background-color:#5cb85c; + border-color:#5cb85c +} + +.btn-info{ + color:#fff; + background-color:#5bc0de; + border-color:#5bc0de +} + +.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active{ + background-color:#46b8da; + border-color:#31b0d5 +} + +.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{ + background-color:#5bc0de; + border-color:#5bc0de +} + +.btn-link{ + font-weight:normal; + color:#428bca; + cursor:pointer; + border-radius:0 +} + +.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{ + background-color:transparent; + -webkit-box-shadow:none; + box-shadow:none +} + +.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{ + border-color:transparent +} + +.btn-link:hover,.btn-link:focus{ + color:#2a6496; + text-decoration:underline; + background-color:transparent +} + +.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{ + color:#333; + text-decoration:none +} + +.btn-large{ + padding:14px 16px; + font-size:18px; + border-radius:6px +} + +.btn-small{ + padding:5px 10px; + font-size:12px; + line-height:1.5; + border-radius:3px +} + +.btn-block{ + display:block; + width:100%; + padding-right:0; + padding-left:0 +} + +.btn-block+.btn-block{ + margin-top:5px +} + +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{ + width:100% +} + +.fade{ + opacity:0; + -webkit-transition:opacity .15s linear; + transition:opacity .15s linear +} + +.fade.in{ + opacity:1 +} + +.collapse{ + display:none +} + +.collapse.in{ + display:block +} + +.collapsing{ + position:relative; + height:0; + overflow:hidden; + -webkit-transition:height .35s ease; + transition:height .35s ease +} + +.input-group{ + display:table; + border-collapse:separate +} + +.input-group.col{ + float:none; + padding-right:0; + padding-left:0 +} + +.input-group .form-control{ + width:100%; + margin-bottom:0 +} + +.input-group-addon,.input-group-btn,.input-group .form-control{ + display:table-cell +} + +.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){ + border-radius:0 +} + +.input-group-addon,.input-group-btn{ + width:1%; + white-space:nowrap; + vertical-align:middle +} + +.input-group-addon{ + padding:8px 12px; + font-size:14px; + font-weight:normal; + line-height:1.428571429; + text-align:center; + background-color:#eee; + border:1px solid #ccc; + border-radius:4px; + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box +} + +.input-group-addon.input-small{ + padding:5px 10px; + font-size:12px; + border-radius:3px +} + +.input-group-addon.input-large{ + padding:14px 16px; + font-size:18px; + border-radius:6px +} + +.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{ + margin-top:0 +} + +.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){ + border-top-right-radius:0; + border-bottom-right-radius:0 +} + +.input-group-addon:first-child{ + border-right:0 +} + +.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){ + border-bottom-left-radius:0; + border-top-left-radius:0 +} + +.input-group-addon:last-child{ + border-left:0 +} + +.input-group-btn{ + position:relative; + white-space:nowrap +} + +.input-group-btn>.btn{ + position:relative +} + +.input-group-btn>.btn+.btn{ + margin-left:-4px +} + +.input-group-btn>.btn:hover,.input-group-btn>.btn:active{ + z-index:2 +} + +.form-inline .form-control,.form-inline .radio,.form-inline .checkbox{ + display:inline-block +} + +.form-inline .radio,.form-inline .checkbox{ + margin-top:0; + margin-bottom:0 +} + +.form-horizontal .control-label{ + padding-top:9px +} + +.form-horizontal .form-group:before,.form-horizontal .form-group:after{ + display:table; + content:" " +} + +.form-horizontal .form-group:after{ + clear:both +} + +.form-horizontal .form-group:before,.form-horizontal .form-group:after{ + display:table; + content:" " +} + +.form-horizontal .form-group:after{ + clear:both +} + +@media(min-width:768px){ + .form-horizontal .form-group{ + margin-right:-15px; + margin-left:-15px + } + +} + +.form-horizontal .form-group .row{ + margin-right:-15px; + margin-left:-15px +} + +@media(min-width:768px){ + .form-horizontal .control-label{ + text-align:right + } + +} + +.caret{ + display:inline-block; + width:0; + height:0; + margin-left:2px; + vertical-align:middle; + border-top:4px solid #000; + border-right:4px solid transparent; + border-left:4px solid transparent; + content:"" +} + +.dropdown-menu{ + position:absolute; + top:100%; + left:0; + z-index:1000; + display:none; + float:left; + min-width:160px; + padding:5px 0; + margin:2px 0 0; + list-style:none; + background-color:#fff; + border:1px solid #ccc; + border:1px solid rgba(0,0,0,0.15); + border-radius:4px; + -webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175); + box-shadow:0 6px 12px rgba(0,0,0,0.175); + background-clip:padding-box +} + +.dropdown-menu.pull-right{ + right:0; + left:auto +} + +.dropdown-menu .divider{ + height:1px; + margin:9px 0; + overflow:hidden; + background-color:#e5e5e5 +} + +.dropdown-menu>li>a{ + display:block; + padding:3px 20px; + clear:both; + font-weight:normal; + line-height:1.428571429; + color:#333; + white-space:nowrap +} + +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{ + color:#fff; + text-decoration:none; + background-color:#357ebd; + background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd)); + background-image:-webkit-linear-gradient(top,#428bca,0%,#357ebd,100%); + background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%); + background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%); + background-repeat:repeat-x; + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0) +} + +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{ + color:#fff; + text-decoration:none; + background-color:#357ebd; + background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd)); + background-image:-webkit-linear-gradient(top,#428bca,0%,#357ebd,100%); + background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%); + background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%); + background-repeat:repeat-x; + outline:0; + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0) +} + +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{ + color:#999 +} + +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{ + text-decoration:none; + cursor:not-allowed; + background-color:transparent; + background-image:none; + filter:progid:DXImageTransform.Microsoft.gradient(enabled=false) +} + +.open>.dropdown-menu{ + display:block +} + +.open>a{ + outline:0 +} + +.dropdown-header{ + display:block; + padding:3px 20px; + font-size:12px; + line-height:1.428571429; + color:#999 +} + +.dropdown-backdrop{ + position:fixed; + top:0; + right:0; + bottom:0; + left:0; + z-index:990 +} + +.pull-right>.dropdown-menu{ + right:0; + left:auto +} + +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{ + border-top:0; + border-bottom:4px solid #000; + content:"" +} + +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{ + top:auto; + bottom:100%; + margin-bottom:1px +} + +.list-group{ + padding-left:0; + margin-bottom:20px; + background-color:#fff +} + +.list-group-item{ + position:relative; + display:block; + padding:10px 30px 10px 15px; + margin-bottom:-1px; + border:1px solid #ddd +} + +.list-group-item:first-child{ + border-top-right-radius:4px; + border-top-left-radius:4px +} + +.list-group-item:last-child{ + margin-bottom:0; + border-bottom-right-radius:4px; + border-bottom-left-radius:4px +} + +.list-group-item>.badge{ + float:right; + margin-right:-15px +} + +.list-group-item-heading{ + margin-top:0; + margin-bottom:5px +} + +.list-group-item-text{ + margin-bottom:0; + line-height:1.3 +} + +a.list-group-item .list-group-item-heading{ + color:#333 +} + +a.list-group-item .list-group-item-text{ + color:#555 +} + +a.list-group-item:hover,a.list-group-item:focus{ + text-decoration:none; + background-color:#f5f5f5 +} + +a.list-group-item.active{ + z-index:2; + color:#fff; + background-color:#428bca; + border-color:#428bca +} + +a.list-group-item.active .list-group-item-heading{ + color:inherit +} + +a.list-group-item.active .list-group-item-text{ + color:#e1edf7 +} + +.panel{ + padding:15px; + margin-bottom:20px; + background-color:#fff; + border:1px solid #ddd; + border-radius:4px; + -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05); + box-shadow:0 1px 1px rgba(0,0,0,0.05) +} + +.panel-heading{ + padding:10px 15px; + margin:-15px -15px 15px; + background-color:#f5f5f5; + border-bottom:1px solid #ddd; + border-top-right-radius:3px; + border-top-left-radius:3px +} + +.panel-title{ + margin-top:0; + margin-bottom:0; + font-size:17.5px; + font-weight:500 +} + +.panel-footer{ + padding:10px 15px; + margin:15px -15px -15px; + background-color:#f5f5f5; + border-top:1px solid #ddd; + border-bottom-right-radius:3px; + border-bottom-left-radius:3px +} + +.panel-primary{ + border-color:#428bca +} + +.panel-primary .panel-heading{ + color:#fff; + background-color:#428bca; + border-color:#428bca +} + +.panel-success{ + border-color:#d6e9c6 +} + +.panel-success .panel-heading{ + color:#468847; + background-color:#dff0d8; + border-color:#d6e9c6 +} + +.panel-warning{ + border-color:#fbeed5 +} + +.panel-warning .panel-heading{ + color:#c09853; + background-color:#fcf8e3; + border-color:#fbeed5 +} + +.panel-danger{ + border-color:#eed3d7 +} + +.panel-danger .panel-heading{ + color:#b94a48; + background-color:#f2dede; + border-color:#eed3d7 +} + +.panel-info{ + border-color:#bce8f1 +} + +.panel-info .panel-heading{ + color:#3a87ad; + background-color:#d9edf7; + border-color:#bce8f1 +} + +.list-group-flush{ + margin:15px -15px -15px +} + +.list-group-flush .list-group-item{ + border-width:1px 0 +} + +.list-group-flush .list-group-item:first-child{ + border-top-right-radius:0; + border-top-left-radius:0 +} + +.list-group-flush .list-group-item:last-child{ + border-bottom:0 +} + +.well{ + min-height:20px; + padding:19px; + margin-bottom:20px; + background-color:#f5f5f5; + border:1px solid #e3e3e3; + border-radius:4px; + -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); + box-shadow:inset 0 1px 1px rgba(0,0,0,0.05) +} + +.well blockquote{ + border-color:#ddd; + border-color:rgba(0,0,0,0.15) +} + +.well-large{ + padding:24px; + border-radius:6px +} + +.well-small{ + padding:9px; + border-radius:3px +} + +.close{ + float:right; + font-size:21px; + font-weight:bold; + line-height:1; + color:#000; + text-shadow:0 1px 0 #fff; + opacity:.2; + filter:alpha(opacity=20) +} + +.close:hover,.close:focus{ + color:#000; + text-decoration:none; + cursor:pointer; + opacity:.5; + filter:alpha(opacity=50) +} + +button.close{ + padding:0; + cursor:pointer; + background:transparent; + border:0; + -webkit-appearance:none +} + +.nav{ + padding-left:0; + margin-bottom:0; + list-style:none +} + +.nav:before,.nav:after{ + display:table; + content:" " +} + +.nav:after{ + clear:both +} + +.nav:before,.nav:after{ + display:table; + content:" " +} + +.nav:after{ + clear:both +} + +.nav>li{ + position:relative; + display:block +} + +.nav>li>a{ + position:relative; + display:block; + padding:10px 15px +} + +.nav>li>a:hover,.nav>li>a:focus{ + text-decoration:none; + background-color:#eee +} + +.nav>li.disabled>a{ + color:#999 +} + +.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{ + color:#999; + text-decoration:none; + cursor:not-allowed; + background-color:transparent +} + +.nav.open>a,.nav.open>a:hover,.nav.open>a:focus{ + color:#fff; + background-color:#428bca; + border-color:#428bca +} + +.nav.open>a .caret,.nav.open>a:hover .caret,.nav.open>a:focus .caret{ + border-top-color:#fff; + border-bottom-color:#fff +} + +.nav>.pull-right{ + float:right +} + +.nav .nav-divider{ + height:1px; + margin:9px 0; + overflow:hidden; + background-color:#e5e5e5 +} + +.nav-tabs{ + border-bottom:1px solid #ddd +} + +.nav-tabs>li{ + float:left; + margin-bottom:-1px +} + +.nav-tabs>li>a{ + margin-right:2px; + line-height:1.428571429; + border:1px solid transparent; + border-radius:4px 4px 0 0 +} + +.nav-tabs>li>a:hover{ + border-color:#eee +} + +.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{ + color:#555; + cursor:default; + background-color:#fff; + border:1px solid #ddd; + border-bottom-color:transparent +} + +.nav-tabs.nav-justified{ + width:100%; + border-bottom:0 +} + +.nav-tabs.nav-justified>li{ + display:table-cell; + float:none; + width:1% +} + +.nav-tabs.nav-justified>li>a{ + text-align:center +} + +.nav-tabs.nav-justified>li>a{ + margin-right:0; + border-bottom:1px solid #ddd +} + +.nav-tabs.nav-justified>.active>a{ + border-bottom-color:#fff +} + +.nav-pills>li{ + float:left +} + +.nav-pills>li>a{ + border-radius:5px +} + +.nav-pills>li+li{ + margin-left:2px +} + +.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{ + color:#fff; + background-color:#428bca +} + +.nav-stacked>li{ + float:none +} + +.nav-stacked>li+li>a{ + margin-top:2px; + margin-left:0 +} + +.nav-justified{ + width:100% +} + +.nav-justified>li{ + display:table-cell; + float:none; + width:1% +} + +.nav-justified>li>a{ + text-align:center +} + +.nav-tabs-justified{ + border-bottom:0 +} + +.nav-tabs-justified>li>a{ + margin-right:0; + border-bottom:1px solid #ddd +} + +.nav-tabs-justified>.active>a{ + border-bottom-color:#fff +} + +.tabbable:before,.tabbable:after{ + display:table; + content:" " +} + +.tabbable:after{ + clear:both +} + +.tabbable:before,.tabbable:after{ + display:table; + content:" " +} + +.tabbable:after{ + clear:both +} + +.tab-content>.tab-pane,.pill-content>.pill-pane{ + display:none +} + +.tab-content>.active,.pill-content>.active{ + display:block +} + +.nav .caret{ + border-top-color:#428bca; + border-bottom-color:#428bca +} + +.nav a:hover .caret{ + border-top-color:#2a6496; + border-bottom-color:#2a6496 +} + +.nav-tabs .dropdown-menu{ + margin-top:-1px; + border-top-right-radius:0; + border-top-left-radius:0 +} + +.navbar{ + position:relative; + min-height:50px; + padding-right:15px; + padding-left:15px; + margin-bottom:20px; + background-color:#eee; + border-radius:4px +} + +.navbar:before,.navbar:after{ + display:table; + content:" " +} + +.navbar:after{ + clear:both +} + +.navbar:before,.navbar:after{ + display:table; + content:" " +} + +.navbar:after{ + clear:both +} + +.navbar-nav{ + margin-top:10px; + margin-bottom:15px +} + +.navbar-nav>li>a{ + padding-top:15px; + padding-bottom:15px; + line-height:20px; + color:#777; + border-radius:4px +} + +.navbar-nav>li>a:hover,.navbar-nav>li>a:focus{ + color:#333; + background-color:transparent +} + +.navbar-nav>.active>a,.navbar-nav>.active>a:hover,.navbar-nav>.active>a:focus{ + color:#555; + background-color:#d5d5d5 +} + +.navbar-nav>.disabled>a,.navbar-nav>.disabled>a:hover,.navbar-nav>.disabled>a:focus{ + color:#ccc; + background-color:transparent +} + +.navbar-nav.pull-right{ + width:100% +} + +.navbar-static-top{ + border-radius:0 +} + +.navbar-fixed-top,.navbar-fixed-bottom{ + position:fixed; + right:0; + left:0; + z-index:1030; + border-radius:0 +} + +.navbar-fixed-top{ + top:0 +} + +.navbar-fixed-bottom{ + bottom:0; + margin-bottom:0 +} + +.navbar-brand{ + display:block; + max-width:200px; + padding:15px 15px; + margin-right:auto; + margin-left:auto; + font-size:18px; + font-weight:500; + line-height:20px; + color:#777; + text-align:center +} + +.navbar-brand:hover,.navbar-brand:focus{ + color:#5e5e5e; + text-decoration:none; + background-color:transparent +} + +.navbar-toggle{ + position:absolute; + top:9px; + right:10px; + width:48px; + height:32px; + padding:8px 12px; + background-color:transparent; + border:1px solid #ddd; + border-radius:4px +} + +.navbar-toggle:hover,.navbar-toggle:focus{ + background-color:#ddd +} + +.navbar-toggle .icon-bar{ + display:block; + width:22px; + height:2px; + background-color:#ccc; + border-radius:1px +} + +.navbar-toggle .icon-bar+.icon-bar{ + margin-top:4px +} + +.navbar-form{ + margin-top:6px; + margin-bottom:6px +} + +.navbar-form .form-control,.navbar-form .radio,.navbar-form .checkbox{ + display:inline-block +} + +.navbar-form .radio,.navbar-form .checkbox{ + margin-top:0; + margin-bottom:0 +} + +.navbar-nav>li>.dropdown-menu{ + margin-top:0; + border-top-right-radius:0; + border-top-left-radius:0 +} + +.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{ + border-bottom-right-radius:0; + border-bottom-left-radius:0 +} + +.navbar-nav>.dropdown>a:hover .caret,.navbar-nav>.dropdown>a:focus .caret{ + border-top-color:#333; + border-bottom-color:#333 +} + +.navbar-nav>.open>a,.navbar-nav>.open>a:hover,.navbar-nav>.open>a:focus{ + color:#555; + background-color:#d5d5d5 +} + +.navbar-nav>.open>a .caret,.navbar-nav>.open>a:hover .caret,.navbar-nav>.open>a:focus .caret{ + border-top-color:#555; + border-bottom-color:#555 +} + +.navbar-nav>.dropdown>a .caret{ + border-top-color:#777; + border-bottom-color:#777 +} + +.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{ + right:0; + left:auto +} + +.navbar-inverse{ + background-color:#222 +} + +.navbar-inverse .navbar-brand{ + color:#999 +} + +.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{ + color:#fff; + background-color:transparent +} + +.navbar-inverse .navbar-text{ + color:#999 +} + +.navbar-inverse .navbar-nav>li>a{ + color:#999 +} + +.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{ + color:#fff; + background-color:transparent +} + +.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{ + color:#fff; + background-color:#080808 +} + +.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{ + color:#444; + background-color:transparent +} + +.navbar-inverse .navbar-toggle{ + border-color:#333 +} + +.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{ + background-color:#333 +} + +.navbar-inverse .navbar-toggle .icon-bar{ + background-color:#fff +} + +.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{ + color:#fff; + background-color:#080808 +} + +.navbar-inverse .navbar-nav>.dropdown>a:hover .caret{ + border-top-color:#fff; + border-bottom-color:#fff +} + +.navbar-inverse .navbar-nav>.dropdown>a .caret{ + border-top-color:#999; + border-bottom-color:#999 +} + +.navbar-inverse .navbar-nav>.open>a .caret,.navbar-inverse .navbar-nav>.open>a:hover .caret,.navbar-inverse .navbar-nav>.open>a:focus .caret{ + border-top-color:#fff; + border-bottom-color:#fff +} + +@media screen and (min-width:768px){ + .navbar-brand{ + float:left; + margin-right:5px; + margin-left:-15px + } + + .navbar-nav{ + float:left; + margin-top:0; + margin-bottom:0 + } + + .navbar-nav>li{ + float:left + } + + .navbar-nav>li>a{ + border-radius:0 + } + + .navbar-nav.pull-right{ + float:right; + width:auto + } + + .navbar-toggle{ + position:relative; + top:auto; + left:auto; + display:none + } + + .nav-collapse.collapse{ + display:block!important; + height:auto!important; + overflow:visible!important + } + +} + +.navbar-btn{ + margin-top:6px +} + +.navbar-text{ + margin-top:15px; + margin-bottom:15px +} + +.navbar-link{ + color:#777 +} + +.navbar-link:hover{ + color:#333 +} + +.navbar-inverse .navbar-link{ + color:#999 +} + +.navbar-inverse .navbar-link:hover{ + color:#fff +} + +.btn .caret{ + border-top-color:#fff +} + +.dropup .btn .caret{ + border-bottom-color:#fff +} + +.btn-group,.btn-group-vertical{ + position:relative; + display:inline-block; + vertical-align:middle +} + +.btn-group>.btn,.btn-group-vertical>.btn{ + position:relative; + float:left +} + +.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:active,.btn-group-vertical>.btn:active{ + z-index:2 +} + +.btn-group .btn+.btn{ + margin-left:-1px +} + +.btn-toolbar:before,.btn-toolbar:after{ + display:table; + content:" " +} + +.btn-toolbar:after{ + clear:both +} + +.btn-toolbar:before,.btn-toolbar:after{ + display:table; + content:" " +} + +.btn-toolbar:after{ + clear:both +} + +.btn-toolbar .btn-group{ + float:left +} + +.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{ + margin-left:5px +} + +.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){ + border-radius:0 +} + +.btn-group>.btn:first-child{ + margin-left:0 +} + +.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){ + border-top-right-radius:0; + border-bottom-right-radius:0 +} + +.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){ + border-bottom-left-radius:0; + border-top-left-radius:0 +} + +.btn-group>.btn-group{ + float:left +} + +.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{ + border-radius:0 +} + +.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{ + border-top-right-radius:0; + border-bottom-right-radius:0 +} + +.btn-group>.btn-group:last-child>.btn:first-child{ + border-bottom-left-radius:0; + border-top-left-radius:0 +} + +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{ + outline:0 +} + +.btn-group>.btn+.dropdown-toggle{ + padding-right:8px; + padding-left:8px +} + +.btn-group>.btn-large+.dropdown-toggle{ + padding-right:12px; + padding-left:12px +} + +.btn-group.open .dropdown-toggle{ + -webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125); + box-shadow:inset 0 3px 5px rgba(0,0,0,0.125) +} + +.btn .caret{ + margin-left:0 +} + +.btn-large .caret{ + border-width:5px +} + +.dropup .btn-large .caret{ + border-bottom-width:5px +} + +.btn-group-vertical>.btn{ + display:block; + float:none; + width:100%; + max-width:100% +} + +.btn-group-vertical>.btn+.btn{ + margin-top:-1px +} + +.btn-group-vertical .btn:not(:first-child):not(:last-child){ + border-radius:0 +} + +.btn-group-vertical .btn:first-child{ + border-bottom-right-radius:0; + border-bottom-left-radius:0 +} + +.btn-group-vertical .btn:last-child{ + border-top-right-radius:0; + border-top-left-radius:0 +} + +.btn-group-justified{ + display:table; + width:100% +} + +.btn-group-justified .btn{ + display:table-cell; + float:none; + width:1% +} + +.btn-group[data-toggle="buttons"]>.btn>input[type="radio"],.btn-group[data-toggle="buttons"]>.btn>input[type="checkbox"]{ + display:none +} + +.breadcrumb{ + padding:8px 15px; + margin-bottom:20px; + list-style:none; + background-color:#f5f5f5; + border-radius:4px +} + +.breadcrumb>li{ + display:inline-block +} + +.breadcrumb>li+li:before{ + padding:0 5px; + color:#ccc; + content:"/\00a0" +} + +.breadcrumb>.active{ + color:#999 +} + +.pagination{ + display:inline-block; + padding-left:0; + margin:20px 0; + border-radius:4px +} + +.pagination>li{ + display:inline +} + +.pagination>li>a,.pagination>li>span{ + float:left; + padding:4px 12px; + line-height:1.428571429; + text-decoration:none; + background-color:#fff; + border:1px solid #ddd; + border-left-width:0 +} + +.pagination>li:first-child>a,.pagination>li:first-child>span{ + border-left-width:1px; + border-bottom-left-radius:4px; + border-top-left-radius:4px +} + +.pagination>li:last-child>a,.pagination>li:last-child>span{ + border-top-right-radius:4px; + border-bottom-right-radius:4px +} + +.pagination>li>a:hover,.pagination>li>a:focus,.pagination>.active>a,.pagination>.active>span{ + background-color:#f5f5f5 +} + +.pagination>.active>a,.pagination>.active>span{ + color:#999; + cursor:default +} + +.pagination>.disabled>span,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{ + color:#999; + cursor:not-allowed; + background-color:#fff +} + +.pagination-large>li>a,.pagination-large>li>span{ + padding:14px 16px; + font-size:18px +} + +.pagination-large>li:first-child>a,.pagination-large>li:first-child>span{ + border-bottom-left-radius:6px; + border-top-left-radius:6px +} + +.pagination-large>li:last-child>a,.pagination-large>li:last-child>span{ + border-top-right-radius:6px; + border-bottom-right-radius:6px +} + +.pagination-small>li>a,.pagination-small>li>span{ + padding:5px 10px; + font-size:12px +} + +.pagination-small>li:first-child>a,.pagination-small>li:first-child>span{ + border-bottom-left-radius:3px; + border-top-left-radius:3px +} + +.pagination-small>li:last-child>a,.pagination-small>li:last-child>span{ + border-top-right-radius:3px; + border-bottom-right-radius:3px +} + +.pager{ + padding-left:0; + margin:20px 0; + text-align:center; + list-style:none +} + +.pager:before,.pager:after{ + display:table; + content:" " +} + +.pager:after{ + clear:both +} + +.pager:before,.pager:after{ + display:table; + content:" " +} + +.pager:after{ + clear:both +} + +.pager li{ + display:inline +} + +.pager li>a,.pager li>span{ + display:inline-block; + padding:5px 14px; + background-color:#fff; + border:1px solid #ddd; + border-radius:15px +} + +.pager li>a:hover,.pager li>a:focus{ + text-decoration:none; + background-color:#f5f5f5 +} + +.pager .next>a,.pager .next>span{ + float:right +} + +.pager .previous>a,.pager .previous>span{ + float:left +} + +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{ + color:#999; + cursor:not-allowed; + background-color:#fff +} + +.modal-open{ + overflow:hidden +} + +.modal{ + position:fixed; + top:0; + right:0; + bottom:0; + left:0; + z-index:1040; + display:none; + overflow:auto; + overflow-y:scroll +} + +.modal.fade .modal-dialog{ + -webkit-transform:translate(0,-25%); + -ms-transform:translate(0,-25%); + transform:translate(0,-25%); + -webkit-transition:-webkit-transform .3s ease-out; + -moz-transition:-moz-transform .3s ease-out; + -o-transition:-o-transform .3s ease-out; + transition:transform .3s ease-out +} + +.modal.fade.in .modal-dialog{ + -webkit-transform:translate(0,0); + -ms-transform:translate(0,0); + transform:translate(0,0) +} + +.modal-dialog{ + z-index:1050; + width:auto; + padding:10px; + margin-right:auto; + margin-left:auto +} + +.modal-content{ + position:relative; + background-color:#fff; + border:1px solid #999; + border:1px solid rgba(0,0,0,0.2); + border-radius:6px; + outline:0; + -webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5); + box-shadow:0 3px 9px rgba(0,0,0,0.5); + background-clip:padding-box +} + +.modal-backdrop{ + position:fixed; + top:0; + right:0; + bottom:0; + left:0; + z-index:1030; + background-color:#000 +} + +.modal-backdrop.fade{ + opacity:0; + filter:alpha(opacity=0) +} + +.modal-backdrop.fade.in{ + opacity:.5; + filter:alpha(opacity=50) +} + +.modal-header{ + min-height:16.428571429px; + padding:15px; + border-bottom:1px solid #e5e5e5 +} + +.modal-header .close{ + margin-top:-2px +} + +.modal-title{ + margin:0; + line-height:1.428571429 +} + +.modal-body{ + position:relative; + padding:20px +} + +.modal-footer{ + padding:19px 20px 20px; + margin-top:15px; + text-align:right; + border-top:1px solid #e5e5e5 +} + +.modal-footer:before,.modal-footer:after{ + display:table; + content:" " +} + +.modal-footer:after{ + clear:both +} + +.modal-footer:before,.modal-footer:after{ + display:table; + 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 +} + +@media screen and (min-width:768px){ + .modal-dialog{ + right:auto; + left:50%; + width:600px; + padding-top:30px; + padding-bottom:30px + } + + .modal-content{ + -webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5); + box-shadow:0 5px 15px rgba(0,0,0,0.5) + } + +} + +.tooltip{ + position:absolute; + z-index:1030; + display:block; + font-size:12px; + line-height:1.4; + opacity:0; + filter:alpha(opacity=0); + visibility:visible +} + +.tooltip.in{ + opacity:1; + filter:alpha(opacity=100) +} + +.tooltip.top{ + padding:5px 0; + margin-top:-3px +} + +.tooltip.right{ + padding:0 5px; + margin-left:3px +} + +.tooltip.bottom{ + padding:5px 0; + margin-top:3px +} + +.tooltip.left{ + padding:0 5px; + margin-left:-3px +} + +.tooltip-inner{ + max-width:200px; + padding:3px 8px; + color:#fff; + text-align:center; + text-decoration:none; + background-color:rgba(0,0,0,0.9); + border-radius:4px +} + +.tooltip-arrow{ + position:absolute; + width:0; + height:0; + border-color:transparent; + border-style:solid +} + +.tooltip.top .tooltip-arrow{ + bottom:0; + left:50%; + margin-left:-5px; + border-top-color:rgba(0,0,0,0.9); + border-width:5px 5px 0 +} + +.tooltip.top-left .tooltip-arrow{ + bottom:0; + left:5px; + border-top-color:rgba(0,0,0,0.9); + border-width:5px 5px 0 +} + +.tooltip.top-right .tooltip-arrow{ + right:5px; + bottom:0; + border-top-color:rgba(0,0,0,0.9); + border-width:5px 5px 0 +} + +.tooltip.right .tooltip-arrow{ + top:50%; + left:0; + margin-top:-5px; + border-right-color:rgba(0,0,0,0.9); + border-width:5px 5px 5px 0 +} + +.tooltip.left .tooltip-arrow{ + top:50%; + right:0; + margin-top:-5px; + border-left-color:rgba(0,0,0,0.9); + border-width:5px 0 5px 5px +} + +.tooltip.bottom .tooltip-arrow{ + top:0; + left:50%; + margin-left:-5px; + border-bottom-color:rgba(0,0,0,0.9); + border-width:0 5px 5px +} + +.tooltip.bottom-left .tooltip-arrow{ + top:0; + left:5px; + border-bottom-color:rgba(0,0,0,0.9); + border-width:0 5px 5px +} + +.tooltip.bottom-right .tooltip-arrow{ + top:0; + right:5px; + border-bottom-color:rgba(0,0,0,0.9); + border-width:0 5px 5px +} + +.popover{ + position:absolute; + top:0; + left:0; + z-index:1010; + display:none; + max-width:276px; + padding:1px; + text-align:left; + white-space:normal; + background-color:#fff; + border:1px solid #ccc; + border:1px solid rgba(0,0,0,0.2); + border-radius:6px; + -webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2); + box-shadow:0 5px 10px rgba(0,0,0,0.2); + background-clip:padding-box; + -webkit-bg-clip:padding-box; + -moz-bg-clip:padding +} + +.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:#f7f7f7; + border-bottom:1px solid #ebebeb; + border-radius:5px 5px 0 0 +} + +.popover-content{ + padding:9px 14px +} + +.popover .arrow,.popover .arrow:after{ + position:absolute; + display:block; + width:0; + height:0; + border-color:transparent; + border-style:solid +} + +.popover .arrow{ + border-width:11px +} + +.popover .arrow:after{ + border-width:10px; + content:"" +} + +.popover.top .arrow{ + 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:#fff; + border-bottom-width:0; + content:" " +} + +.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:#fff; + border-left-width:0; + content:" " +} + +.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:#fff; + border-top-width:0; + content:" " +} + +.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:#fff; + border-right-width:0; + content:" " +} + +.alert{ + padding:10px 35px 10px 15px; + margin-bottom:20px; + color:#c09853; + background-color:#fcf8e3; + border:1px solid #fbeed5; + border-radius:4px +} + +.alert h4{ + margin-top:0; + color:inherit +} + +.alert hr{ + border-top-color:#f8e5be +} + +.alert .alert-link{ + font-weight:500; + color:#a47e3c +} + +.alert .close{ + position:relative; + top:-2px; + right:-21px; + color:inherit +} + +.alert-success{ + color:#468847; + background-color:#dff0d8; + border-color:#d6e9c6 +} + +.alert-success hr{ + border-top-color:#c9e2b3 +} + +.alert-success .alert-link{ + color:#356635 +} + +.alert-danger{ + color:#b94a48; + background-color:#f2dede; + border-color:#eed3d7 +} + +.alert-danger hr{ + border-top-color:#e6c1c7 +} + +.alert-danger .alert-link{ + color:#953b39 +} + +.alert-info{ + color:#3a87ad; + background-color:#d9edf7; + border-color:#bce8f1 +} + +.alert-info hr{ + border-top-color:#a6e1ec +} + +.alert-info .alert-link{ + color:#2d6987 +} + +.alert-block{ + padding-top:15px; + padding-bottom:15px +} + +.alert-block>p,.alert-block>ul{ + margin-bottom:0 +} + +.alert-block p+p{ + margin-top:5px +} + +.thumbnail,.img-thumbnail{ + padding:4px; + line-height:1.428571429; + background-color:#fff; + border:1px solid #ddd; + border-radius:4px; + -webkit-transition:all .2s ease-in-out; + transition:all .2s ease-in-out +} + +.thumbnail{ + display:block +} + +.thumbnail>img,.img-thumbnail{ + display:inline-block; + height:auto; + max-width:100% +} + +a.thumbnail:hover,a.thumbnail:focus{ + border-color:#428bca +} + +.thumbnail>img{ + margin-right:auto; + margin-left:auto +} + +.thumbnail .caption{ + padding:9px; + color:#333 +} + +.media,.media-body{ + overflow:hidden; + 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{ + padding-left:0; + list-style:none +} + +.label{ + display:inline; + padding:.25em .6em; + font-size:75%; + font-weight:500; + line-height:1; + color:#fff; + text-align:center; + white-space:nowrap; + vertical-align:middle; + background-color:#999; + border-radius:.25em +} + +.label[href]:hover,.label[href]:focus{ + color:#fff; + text-decoration:none; + cursor:pointer; + background-color:#808080 +} + +.label-danger{ + background-color:#d9534f +} + +.label-danger[href]:hover,.label-danger[href]:focus{ + background-color:#c9302c +} + +.label-success{ + background-color:#5cb85c +} + +.label-success[href]:hover,.label-success[href]:focus{ + background-color:#449d44 +} + +.label-warning{ + background-color:#f0ad4e +} + +.label-warning[href]:hover,.label-warning[href]:focus{ + background-color:#ec971f +} + +.label-info{ + background-color:#5bc0de +} + +.label-info[href]:hover,.label-info[href]:focus{ + background-color:#31b0d5 +} + +.badge{ + display:inline-block; + min-width:10px; + padding:3px 7px; + font-size:12px; + font-weight:bold; + line-height:1; + color:#fff; + text-align:center; + white-space:nowrap; + vertical-align:middle; + background-color:#999; + border-radius:10px +} + +.badge:empty{ + display:none +} + +a.badge:hover,a.badge:focus{ + color:#fff; + text-decoration:none; + cursor:pointer +} + +.btn .badge{ + position:relative; + top:-1px +} + +a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{ + color:#428bca; + background-color:#fff +} + +.nav-pills>li>a>.badge{ + margin-left:3px +} + +@-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:#f5f5f5; + border-radius:4px; + -webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1); + box-shadow:inset 0 1px 2px rgba(0,0,0,0.1) +} + +.progress-bar{ + float:left; + width:0; + height:100%; + font-size:12px; + color:#fff; + text-align:center; + background-color:#428bca; + -webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15); + box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15); + -webkit-transition:width .6s ease; + transition:width .6s ease +} + +.progress-striped .progress-bar{ + background-color:#428bca; + 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:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent); + background-size:40px 40px +} + +.progress.active .progress-bar{ + -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-bar-danger{ + background-color:#d9534f +} + +.progress-striped .progress-bar-danger{ + background-color:#d9534f; + 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:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) +} + +.progress-bar-success{ + background-color:#5cb85c +} + +.progress-striped .progress-bar-success{ + background-color:#5cb85c; + 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:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) +} + +.progress-bar-warning{ + background-color:#f0ad4e +} + +.progress-striped .progress-bar-warning{ + background-color:#f0ad4e; + 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:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) +} + +.progress-bar-info{ + background-color:#5bc0de +} + +.progress-striped .progress-bar-info{ + background-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:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) +} + +.accordion{ + margin-bottom:20px +} + +.accordion-group{ + margin-bottom:2px; + border:1px solid #e5e5e5; + border-radius:4px +} + +.accordion-heading{ + border-bottom:0 +} + +.accordion-heading .accordion-toggle{ + display:block; + padding:8px 15px; + cursor:pointer +} + +.accordion-inner{ + padding:9px 15px; + border-top:1px solid #e5e5e5 +} + +.carousel{ + position:relative +} + +.carousel-inner{ + position:relative; + width:100%; + overflow:hidden +} + +.carousel-inner>.item{ + position:relative; + display:none; + -webkit-transition:.6s ease-in-out left; + transition:.6s ease-in-out left +} + +.carousel-inner>.item>img,.carousel-inner>.item>a>img{ + display:inline-block; + height:auto; + max-width:100%; + 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:0; + bottom:0; + left:0; + width:15%; + font-size:20px; + color:#fff; + text-align:center; + text-shadow:0 1px 2px rgba(0,0,0,0.6); + opacity:.5; + filter:alpha(opacity=50) +} + +.carousel-control.left{ + background-color:rgba(0,0,0,0.0001); + background-color:transparent; + background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001))); + background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%)); + background-image:-moz-linear-gradient(left,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%); + background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%); + background-repeat:repeat-x; + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1) +} + +.carousel-control.right{ + right:0; + left:auto; + background-color:rgba(0,0,0,0.5); + background-color:transparent; + background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5))); + background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%)); + background-image:-moz-linear-gradient(left,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%); + background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%); + background-repeat:repeat-x; + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1) +} + +.carousel-control:hover,.carousel-control:focus{ + color:#fff; + text-decoration:none; + opacity:.9; + filter:alpha(opacity=90) +} + +.carousel-control .glyphicon,.carousel-control .icon-prev,.carousel-control .icon-next{ + position:absolute; + top:50%; + left:50%; + z-index:5; + display:inline-block; + width:20px; + height:20px; + margin-top:-10px; + margin-left:-10px; + font-family:serif +} + +.carousel-control .icon-prev:before{ + content:'\2039' +} + +.carousel-control .icon-next:before{ + content:'\203a' +} + +.carousel-indicators{ + position:absolute; + bottom:10px; + left:50%; + z-index:15; + width:120px; + padding-left:0; + margin-left:-60px; + text-align:center; + list-style:none +} + +.carousel-indicators li{ + display:inline-block; + width:10px; + height:10px; + margin:1px; + text-indent:-999px; + cursor:pointer; + border:1px solid #fff; + border-radius:10px +} + +.carousel-indicators .active{ + width:12px; + height:12px; + margin:0; + background-color:#fff +} + +.carousel-caption{ + position:absolute; + right:15%; + bottom:20px; + left:15%; + z-index:10; + padding-top:20px; + padding-bottom:20px; + color:#fff; + text-align:center; + text-shadow:0 1px 2px rgba(0,0,0,0.6) +} + +.carousel-caption .btn{ + text-shadow:none +} + +@media screen and (min-width:768px){ + .carousel-control .glyphicon,.carousel-control .icon-prev,.carousel-control .icon-next{ + width:30px; + height:30px; + margin-top:-15px; + margin-left:-15px; + font-size:30px + } + + .carousel-caption{ + right:20%; + left:20%; + padding-bottom:30px + } + + .carousel-indicators{ + bottom:20px + } + +} + +.jumbotron{ + padding:30px; + margin-bottom:30px; + font-size:21px; + font-weight:200; + line-height:2.1428571435; + color:inherit; + background-color:#eee +} + +.jumbotron h1{ + line-height:1; + color:inherit +} + +.jumbotron p{ + line-height:1.4 +} + +@media screen and (min-width:768px){ + .jumbotron{ + padding:50px 60px; + border-radius:6px + } + + .jumbotron h1{ + font-size:63px + } + +} + +.clearfix:before,.clearfix:after{ + display:table; + content:" " +} + +.clearfix:after{ + clear:both +} + +.pull-right{ + float:right +} + +.pull-left{ + float:left +} + +.hide{ + display:none!important +} + +.show{ + display:block!important +} + +.invisible{ + visibility:hidden +} + +.text-hide{ + font:0/0 a; + color:transparent; + text-shadow:none; + background-color:transparent; + border:0 +} + +.affix{ + position:fixed +} + +@-ms-viewport{ + width:device-width +} + +@media screen and (max-width:400px){ + @-ms-viewport{ + width:320px + } + +} + +.hidden{ + display:none!important; + visibility:hidden!important +} + +.visible-sm{ + display:block!important +} + +tr.visible-sm{ + display:table-row!important +} + +th.visible-sm,td.visible-sm{ + display:table-cell!important +} + +.visible-md{ + display:none!important +} + +tr.visible-md{ + display:none!important +} + +th.visible-md,td.visible-md{ + display:none!important +} + +.visible-lg{ + display:none!important +} + +tr.visible-lg{ + display:none!important +} + +th.visible-lg,td.visible-lg{ + display:none!important +} + +.hidden-sm{ + display:none!important +} + +tr.hidden-sm{ + display:none!important +} + +th.hidden-sm,td.hidden-sm{ + display:none!important +} + +.hidden-md{ + display:block!important +} + +tr.hidden-md{ + display:table-row!important +} + +th.hidden-md,td.hidden-md{ + display:table-cell!important +} + +.hidden-lg{ + display:block!important +} + +tr.hidden-lg{ + display:table-row!important +} + +th.hidden-lg,td.hidden-lg{ + display:table-cell!important +} + +@media(min-width:768px) and (max-width:991px){ + .visible-sm{ + display:none!important + } + + tr.visible-sm{ + display:none!important + } + + th.visible-sm,td.visible-sm{ + display:none!important + } + + .visible-md{ + display:block!important + } + + tr.visible-md{ + display:table-row!important + } + + th.visible-md,td.visible-md{ + display:table-cell!important + } + + .visible-lg{ + display:none!important + } + + tr.visible-lg{ + display:none!important + } + + th.visible-lg,td.visible-lg{ + display:none!important + } + + .hidden-sm{ + display:block!important + } + + tr.hidden-sm{ + display:table-row!important + } + + th.hidden-sm,td.hidden-sm{ + display:table-cell!important + } + + .hidden-md{ + display:none!important + } + + tr.hidden-md{ + display:none!important + } + + th.hidden-md,td.hidden-md{ + display:none!important + } + + .hidden-lg{ + display:block!important + } + + tr.hidden-lg{ + display:table-row!important + } + + th.hidden-lg,td.hidden-lg{ + display:table-cell!important + } + +} + +@media(min-width:992px){ + .visible-sm{ + display:none!important + } + + tr.visible-sm{ + display:none!important + } + + th.visible-sm,td.visible-sm{ + display:none!important + } + + .visible-md{ + display:none!important + } + + tr.visible-md{ + display:none!important + } + + th.visible-md,td.visible-md{ + display:none!important + } + + .visible-lg{ + display:block!important + } + + tr.visible-lg{ + display:table-row!important + } + + th.visible-lg,td.visible-lg{ + display:table-cell!important + } + + .hidden-sm{ + display:block!important + } + + tr.hidden-sm{ + display:table-row!important + } + + th.hidden-sm,td.hidden-sm{ + display:table-cell!important + } + + .hidden-md{ + display:block!important + } + + tr.hidden-md{ + display:table-row!important + } + + th.hidden-md,td.hidden-md{ + display:table-cell!important + } + + .hidden-lg{ + display:none!important + } + + tr.hidden-lg{ + display:none!important + } + + th.hidden-lg,td.hidden-lg{ + display:none!important + } + +} + +.visible-print{ + display:none!important +} + +tr.visible-print{ + display:none!important +} + +th.visible-print,td.visible-print{ + display:none!important +} + +@media print{ + .visible-print{ + display:block!important + } + + tr.visible-print{ + display:table-row!important + } + + th.visible-print,td.visible-print{ + display:table-cell!important + } + + .hidden-print{ + display:none!important + } + + tr.hidden-print{ + display:none!important + } + + th.hidden-print,td.hidden-print{ + display:none!important + } + +} diff --git a/public/static/css/font-awesome.min.css b/public/static/css/font-awesome.min.css new file mode 100644 index 0000000..2c5357c --- /dev/null +++ b/public/static/css/font-awesome.min.css @@ -0,0 +1,2104 @@ +/*! + * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{ + font-family:'FontAwesome'; + src:url('../fonts/fontawesome-webfont.eot?v=4.2.0'); + src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg'); + font-weight:normal; + font-style:normal +} + +.fa{ + display:inline-block; + font:normal normal normal 14px/1 FontAwesome; + font-size:inherit; + text-rendering:auto; + -webkit-font-smoothing:antialiased; + -moz-osx-font-smoothing:grayscale +} + +.fa-lg{ + font-size:1.33333333em; + line-height:.75em; + vertical-align:-15% +} + +.fa-2x{ + font-size:2em +} + +.fa-3x{ + font-size:3em +} + +.fa-4x{ + font-size:4em +} + +.fa-5x{ + font-size:5em +} + +.fa-fw{ + width:1.28571429em; + text-align:center +} + +.fa-ul{ + padding-left:0; + margin-left:2.14285714em; + list-style-type:none +} + +.fa-ul>li{ + position:relative +} + +.fa-li{ + position:absolute; + left:-2.14285714em; + width:2.14285714em; + top:.14285714em; + text-align:center +} + +.fa-li.fa-lg{ + left:-1.85714286em +} + +.fa-border{ + padding:.2em .25em .15em; + border:solid .08em #eee; + border-radius:.1em +} + +.pull-right{ + float:right +} + +.pull-left{ + float:left +} + +.fa.pull-left{ + margin-right:.3em +} + +.fa.pull-right{ + margin-left:.3em +} + +.fa-spin{ + -webkit-animation:fa-spin 2s infinite linear; + animation:fa-spin 2s infinite linear +} + +@-webkit-keyframes fa-spin{ + 0%{ + -webkit-transform:rotate(0deg); + transform:rotate(0deg) + } + + 100%{ + -webkit-transform:rotate(359deg); + transform:rotate(359deg) + } + +} + +@keyframes fa-spin{ + 0%{ + -webkit-transform:rotate(0deg); + transform:rotate(0deg) + } + + 100%{ + -webkit-transform:rotate(359deg); + transform:rotate(359deg) + } + +} + +.fa-rotate-90{ + filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg) +} + +.fa-rotate-180{ + filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg) +} + +.fa-rotate-270{ + filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform:rotate(270deg); + -ms-transform:rotate(270deg); + transform:rotate(270deg) +} + +.fa-flip-horizontal{ + filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform:scale(-1, 1); + -ms-transform:scale(-1, 1); + transform:scale(-1, 1) +} + +.fa-flip-vertical{ + filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform:scale(1, -1); + -ms-transform:scale(1, -1); + transform:scale(1, -1) +} + +:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{ + filter:none +} + +.fa-stack{ + position:relative; + display:inline-block; + width:2em; + height:2em; + line-height:2em; + vertical-align:middle +} + +.fa-stack-1x,.fa-stack-2x{ + position:absolute; + left:0; + width:100%; + text-align:center +} + +.fa-stack-1x{ + line-height:inherit +} + +.fa-stack-2x{ + font-size:2em +} + +.fa-inverse{ + color:#fff +} + +.fa-glass:before{ + content:"\f000" +} + +.fa-music:before{ + content:"\f001" +} + +.fa-search:before{ + content:"\f002" +} + +.fa-envelope-o:before{ + content:"\f003" +} + +.fa-heart:before{ + content:"\f004" +} + +.fa-star:before{ + content:"\f005" +} + +.fa-star-o:before{ + content:"\f006" +} + +.fa-user:before{ + content:"\f007" +} + +.fa-film:before{ + content:"\f008" +} + +.fa-th-large:before{ + content:"\f009" +} + +.fa-th:before{ + content:"\f00a" +} + +.fa-th-list:before{ + content:"\f00b" +} + +.fa-check:before{ + content:"\f00c" +} + +.fa-remove:before,.fa-close:before,.fa-times:before{ + content:"\f00d" +} + +.fa-search-plus:before{ + content:"\f00e" +} + +.fa-search-minus:before{ + content:"\f010" +} + +.fa-power-off:before{ + content:"\f011" +} + +.fa-signal:before{ + content:"\f012" +} + +.fa-gear:before,.fa-cog:before{ + content:"\f013" +} + +.fa-trash-o:before{ + content:"\f014" +} + +.fa-home:before{ + content:"\f015" +} + +.fa-file-o:before{ + content:"\f016" +} + +.fa-clock-o:before{ + content:"\f017" +} + +.fa-road:before{ + content:"\f018" +} + +.fa-download:before{ + content:"\f019" +} + +.fa-arrow-circle-o-down:before{ + content:"\f01a" +} + +.fa-arrow-circle-o-up:before{ + content:"\f01b" +} + +.fa-inbox:before{ + content:"\f01c" +} + +.fa-play-circle-o:before{ + content:"\f01d" +} + +.fa-rotate-right:before,.fa-repeat:before{ + content:"\f01e" +} + +.fa-refresh:before{ + content:"\f021" +} + +.fa-list-alt:before{ + content:"\f022" +} + +.fa-lock:before{ + content:"\f023" +} + +.fa-flag:before{ + content:"\f024" +} + +.fa-headphones:before{ + content:"\f025" +} + +.fa-volume-off:before{ + content:"\f026" +} + +.fa-volume-down:before{ + content:"\f027" +} + +.fa-volume-up:before{ + content:"\f028" +} + +.fa-qrcode:before{ + content:"\f029" +} + +.fa-barcode:before{ + content:"\f02a" +} + +.fa-tag:before{ + content:"\f02b" +} + +.fa-tags:before{ + content:"\f02c" +} + +.fa-book:before{ + content:"\f02d" +} + +.fa-bookmark:before{ + content:"\f02e" +} + +.fa-print:before{ + content:"\f02f" +} + +.fa-camera:before{ + content:"\f030" +} + +.fa-font:before{ + content:"\f031" +} + +.fa-bold:before{ + content:"\f032" +} + +.fa-italic:before{ + content:"\f033" +} + +.fa-text-height:before{ + content:"\f034" +} + +.fa-text-width:before{ + content:"\f035" +} + +.fa-align-left:before{ + content:"\f036" +} + +.fa-align-center:before{ + content:"\f037" +} + +.fa-align-right:before{ + content:"\f038" +} + +.fa-align-justify:before{ + content:"\f039" +} + +.fa-list:before{ + content:"\f03a" +} + +.fa-dedent:before,.fa-outdent:before{ + content:"\f03b" +} + +.fa-indent:before{ + content:"\f03c" +} + +.fa-video-camera:before{ + content:"\f03d" +} + +.fa-photo:before,.fa-image:before,.fa-picture-o:before{ + content:"\f03e" +} + +.fa-pencil:before{ + content:"\f040" +} + +.fa-map-marker:before{ + content:"\f041" +} + +.fa-adjust:before{ + content:"\f042" +} + +.fa-tint:before{ + content:"\f043" +} + +.fa-edit:before,.fa-pencil-square-o:before{ + content:"\f044" +} + +.fa-share-square-o:before{ + content:"\f045" +} + +.fa-check-square-o:before{ + content:"\f046" +} + +.fa-arrows:before{ + content:"\f047" +} + +.fa-step-backward:before{ + content:"\f048" +} + +.fa-fast-backward:before{ + content:"\f049" +} + +.fa-backward:before{ + content:"\f04a" +} + +.fa-play:before{ + content:"\f04b" +} + +.fa-pause:before{ + content:"\f04c" +} + +.fa-stop:before{ + content:"\f04d" +} + +.fa-forward:before{ + content:"\f04e" +} + +.fa-fast-forward:before{ + content:"\f050" +} + +.fa-step-forward:before{ + content:"\f051" +} + +.fa-eject:before{ + content:"\f052" +} + +.fa-chevron-left:before{ + content:"\f053" +} + +.fa-chevron-right:before{ + content:"\f054" +} + +.fa-plus-circle:before{ + content:"\f055" +} + +.fa-minus-circle:before{ + content:"\f056" +} + +.fa-times-circle:before{ + content:"\f057" +} + +.fa-check-circle:before{ + content:"\f058" +} + +.fa-question-circle:before{ + content:"\f059" +} + +.fa-info-circle:before{ + content:"\f05a" +} + +.fa-crosshairs:before{ + content:"\f05b" +} + +.fa-times-circle-o:before{ + content:"\f05c" +} + +.fa-check-circle-o:before{ + content:"\f05d" +} + +.fa-ban:before{ + content:"\f05e" +} + +.fa-arrow-left:before{ + content:"\f060" +} + +.fa-arrow-right:before{ + content:"\f061" +} + +.fa-arrow-up:before{ + content:"\f062" +} + +.fa-arrow-down:before{ + content:"\f063" +} + +.fa-mail-forward:before,.fa-share:before{ + content:"\f064" +} + +.fa-expand:before{ + content:"\f065" +} + +.fa-compress:before{ + content:"\f066" +} + +.fa-plus:before{ + content:"\f067" +} + +.fa-minus:before{ + content:"\f068" +} + +.fa-asterisk:before{ + content:"\f069" +} + +.fa-exclamation-circle:before{ + content:"\f06a" +} + +.fa-gift:before{ + content:"\f06b" +} + +.fa-leaf:before{ + content:"\f06c" +} + +.fa-fire:before{ + content:"\f06d" +} + +.fa-eye:before{ + content:"\f06e" +} + +.fa-eye-slash:before{ + content:"\f070" +} + +.fa-warning:before,.fa-exclamation-triangle:before{ + content:"\f071" +} + +.fa-plane:before{ + content:"\f072" +} + +.fa-calendar:before{ + content:"\f073" +} + +.fa-random:before{ + content:"\f074" +} + +.fa-comment:before{ + content:"\f075" +} + +.fa-magnet:before{ + content:"\f076" +} + +.fa-chevron-up:before{ + content:"\f077" +} + +.fa-chevron-down:before{ + content:"\f078" +} + +.fa-retweet:before{ + content:"\f079" +} + +.fa-shopping-cart:before{ + content:"\f07a" +} + +.fa-folder:before{ + content:"\f07b" +} + +.fa-folder-open:before{ + content:"\f07c" +} + +.fa-arrows-v:before{ + content:"\f07d" +} + +.fa-arrows-h:before{ + content:"\f07e" +} + +.fa-bar-chart-o:before,.fa-bar-chart:before{ + content:"\f080" +} + +.fa-twitter-square:before{ + content:"\f081" +} + +.fa-facebook-square:before{ + content:"\f082" +} + +.fa-camera-retro:before{ + content:"\f083" +} + +.fa-key:before{ + content:"\f084" +} + +.fa-gears:before,.fa-cogs:before{ + content:"\f085" +} + +.fa-comments:before{ + content:"\f086" +} + +.fa-thumbs-o-up:before{ + content:"\f087" +} + +.fa-thumbs-o-down:before{ + content:"\f088" +} + +.fa-star-half:before{ + content:"\f089" +} + +.fa-heart-o:before{ + content:"\f08a" +} + +.fa-sign-out:before{ + content:"\f08b" +} + +.fa-linkedin-square:before{ + content:"\f08c" +} + +.fa-thumb-tack:before{ + content:"\f08d" +} + +.fa-external-link:before{ + content:"\f08e" +} + +.fa-sign-in:before{ + content:"\f090" +} + +.fa-trophy:before{ + content:"\f091" +} + +.fa-github-square:before{ + content:"\f092" +} + +.fa-upload:before{ + content:"\f093" +} + +.fa-lemon-o:before{ + content:"\f094" +} + +.fa-phone:before{ + content:"\f095" +} + +.fa-square-o:before{ + content:"\f096" +} + +.fa-bookmark-o:before{ + content:"\f097" +} + +.fa-phone-square:before{ + content:"\f098" +} + +.fa-twitter:before{ + content:"\f099" +} + +.fa-facebook:before{ + content:"\f09a" +} + +.fa-github:before{ + content:"\f09b" +} + +.fa-unlock:before{ + content:"\f09c" +} + +.fa-credit-card:before{ + content:"\f09d" +} + +.fa-rss:before{ + content:"\f09e" +} + +.fa-hdd-o:before{ + content:"\f0a0" +} + +.fa-bullhorn:before{ + content:"\f0a1" +} + +.fa-bell:before{ + content:"\f0f3" +} + +.fa-certificate:before{ + content:"\f0a3" +} + +.fa-hand-o-right:before{ + content:"\f0a4" +} + +.fa-hand-o-left:before{ + content:"\f0a5" +} + +.fa-hand-o-up:before{ + content:"\f0a6" +} + +.fa-hand-o-down:before{ + content:"\f0a7" +} + +.fa-arrow-circle-left:before{ + content:"\f0a8" +} + +.fa-arrow-circle-right:before{ + content:"\f0a9" +} + +.fa-arrow-circle-up:before{ + content:"\f0aa" +} + +.fa-arrow-circle-down:before{ + content:"\f0ab" +} + +.fa-globe:before{ + content:"\f0ac" +} + +.fa-wrench:before{ + content:"\f0ad" +} + +.fa-tasks:before{ + content:"\f0ae" +} + +.fa-filter:before{ + content:"\f0b0" +} + +.fa-briefcase:before{ + content:"\f0b1" +} + +.fa-arrows-alt:before{ + content:"\f0b2" +} + +.fa-group:before,.fa-users:before{ + content:"\f0c0" +} + +.fa-chain:before,.fa-link:before{ + content:"\f0c1" +} + +.fa-cloud:before{ + content:"\f0c2" +} + +.fa-flask:before{ + content:"\f0c3" +} + +.fa-cut:before,.fa-scissors:before{ + content:"\f0c4" +} + +.fa-copy:before,.fa-files-o:before{ + content:"\f0c5" +} + +.fa-paperclip:before{ + content:"\f0c6" +} + +.fa-save:before,.fa-floppy-o:before{ + content:"\f0c7" +} + +.fa-square:before{ + content:"\f0c8" +} + +.fa-navicon:before,.fa-reorder:before,.fa-bars:before{ + content:"\f0c9" +} + +.fa-list-ul:before{ + content:"\f0ca" +} + +.fa-list-ol:before{ + content:"\f0cb" +} + +.fa-strikethrough:before{ + content:"\f0cc" +} + +.fa-underline:before{ + content:"\f0cd" +} + +.fa-table:before{ + content:"\f0ce" +} + +.fa-magic:before{ + content:"\f0d0" +} + +.fa-truck:before{ + content:"\f0d1" +} + +.fa-pinterest:before{ + content:"\f0d2" +} + +.fa-pinterest-square:before{ + content:"\f0d3" +} + +.fa-google-plus-square:before{ + content:"\f0d4" +} + +.fa-google-plus:before{ + content:"\f0d5" +} + +.fa-money:before{ + content:"\f0d6" +} + +.fa-caret-down:before{ + content:"\f0d7" +} + +.fa-caret-up:before{ + content:"\f0d8" +} + +.fa-caret-left:before{ + content:"\f0d9" +} + +.fa-caret-right:before{ + content:"\f0da" +} + +.fa-columns:before{ + content:"\f0db" +} + +.fa-unsorted:before,.fa-sort:before{ + content:"\f0dc" +} + +.fa-sort-down:before,.fa-sort-desc:before{ + content:"\f0dd" +} + +.fa-sort-up:before,.fa-sort-asc:before{ + content:"\f0de" +} + +.fa-envelope:before{ + content:"\f0e0" +} + +.fa-linkedin:before{ + content:"\f0e1" +} + +.fa-rotate-left:before,.fa-undo:before{ + content:"\f0e2" +} + +.fa-legal:before,.fa-gavel:before{ + content:"\f0e3" +} + +.fa-dashboard:before,.fa-tachometer:before{ + content:"\f0e4" +} + +.fa-comment-o:before{ + content:"\f0e5" +} + +.fa-comments-o:before{ + content:"\f0e6" +} + +.fa-flash:before,.fa-bolt:before{ + content:"\f0e7" +} + +.fa-sitemap:before{ + content:"\f0e8" +} + +.fa-umbrella:before{ + content:"\f0e9" +} + +.fa-paste:before,.fa-clipboard:before{ + content:"\f0ea" +} + +.fa-lightbulb-o:before{ + content:"\f0eb" +} + +.fa-exchange:before{ + content:"\f0ec" +} + +.fa-cloud-download:before{ + content:"\f0ed" +} + +.fa-cloud-upload:before{ + content:"\f0ee" +} + +.fa-user-md:before{ + content:"\f0f0" +} + +.fa-stethoscope:before{ + content:"\f0f1" +} + +.fa-suitcase:before{ + content:"\f0f2" +} + +.fa-bell-o:before{ + content:"\f0a2" +} + +.fa-coffee:before{ + content:"\f0f4" +} + +.fa-cutlery:before{ + content:"\f0f5" +} + +.fa-file-text-o:before{ + content:"\f0f6" +} + +.fa-building-o:before{ + content:"\f0f7" +} + +.fa-hospital-o:before{ + content:"\f0f8" +} + +.fa-ambulance:before{ + content:"\f0f9" +} + +.fa-medkit:before{ + content:"\f0fa" +} + +.fa-fighter-jet:before{ + content:"\f0fb" +} + +.fa-beer:before{ + content:"\f0fc" +} + +.fa-h-square:before{ + content:"\f0fd" +} + +.fa-plus-square:before{ + content:"\f0fe" +} + +.fa-angle-double-left:before{ + content:"\f100" +} + +.fa-angle-double-right:before{ + content:"\f101" +} + +.fa-angle-double-up:before{ + content:"\f102" +} + +.fa-angle-double-down:before{ + content:"\f103" +} + +.fa-angle-left:before{ + content:"\f104" +} + +.fa-angle-right:before{ + content:"\f105" +} + +.fa-angle-up:before{ + content:"\f106" +} + +.fa-angle-down:before{ + content:"\f107" +} + +.fa-desktop:before{ + content:"\f108" +} + +.fa-laptop:before{ + content:"\f109" +} + +.fa-tablet:before{ + content:"\f10a" +} + +.fa-mobile-phone:before,.fa-mobile:before{ + content:"\f10b" +} + +.fa-circle-o:before{ + content:"\f10c" +} + +.fa-quote-left:before{ + content:"\f10d" +} + +.fa-quote-right:before{ + content:"\f10e" +} + +.fa-spinner:before{ + content:"\f110" +} + +.fa-circle:before{ + content:"\f111" +} + +.fa-mail-reply:before,.fa-reply:before{ + content:"\f112" +} + +.fa-github-alt:before{ + content:"\f113" +} + +.fa-folder-o:before{ + content:"\f114" +} + +.fa-folder-open-o:before{ + content:"\f115" +} + +.fa-smile-o:before{ + content:"\f118" +} + +.fa-frown-o:before{ + content:"\f119" +} + +.fa-meh-o:before{ + content:"\f11a" +} + +.fa-gamepad:before{ + content:"\f11b" +} + +.fa-keyboard-o:before{ + content:"\f11c" +} + +.fa-flag-o:before{ + content:"\f11d" +} + +.fa-flag-checkered:before{ + content:"\f11e" +} + +.fa-terminal:before{ + content:"\f120" +} + +.fa-code:before{ + content:"\f121" +} + +.fa-mail-reply-all:before,.fa-reply-all:before{ + content:"\f122" +} + +.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{ + content:"\f123" +} + +.fa-location-arrow:before{ + content:"\f124" +} + +.fa-crop:before{ + content:"\f125" +} + +.fa-code-fork:before{ + content:"\f126" +} + +.fa-unlink:before,.fa-chain-broken:before{ + content:"\f127" +} + +.fa-question:before{ + content:"\f128" +} + +.fa-info:before{ + content:"\f129" +} + +.fa-exclamation:before{ + content:"\f12a" +} + +.fa-superscript:before{ + content:"\f12b" +} + +.fa-subscript:before{ + content:"\f12c" +} + +.fa-eraser:before{ + content:"\f12d" +} + +.fa-puzzle-piece:before{ + content:"\f12e" +} + +.fa-microphone:before{ + content:"\f130" +} + +.fa-microphone-slash:before{ + content:"\f131" +} + +.fa-shield:before{ + content:"\f132" +} + +.fa-calendar-o:before{ + content:"\f133" +} + +.fa-fire-extinguisher:before{ + content:"\f134" +} + +.fa-rocket:before{ + content:"\f135" +} + +.fa-maxcdn:before{ + content:"\f136" +} + +.fa-chevron-circle-left:before{ + content:"\f137" +} + +.fa-chevron-circle-right:before{ + content:"\f138" +} + +.fa-chevron-circle-up:before{ + content:"\f139" +} + +.fa-chevron-circle-down:before{ + content:"\f13a" +} + +.fa-html5:before{ + content:"\f13b" +} + +.fa-css3:before{ + content:"\f13c" +} + +.fa-anchor:before{ + content:"\f13d" +} + +.fa-unlock-alt:before{ + content:"\f13e" +} + +.fa-bullseye:before{ + content:"\f140" +} + +.fa-ellipsis-h:before{ + content:"\f141" +} + +.fa-ellipsis-v:before{ + content:"\f142" +} + +.fa-rss-square:before{ + content:"\f143" +} + +.fa-play-circle:before{ + content:"\f144" +} + +.fa-ticket:before{ + content:"\f145" +} + +.fa-minus-square:before{ + content:"\f146" +} + +.fa-minus-square-o:before{ + content:"\f147" +} + +.fa-level-up:before{ + content:"\f148" +} + +.fa-level-down:before{ + content:"\f149" +} + +.fa-check-square:before{ + content:"\f14a" +} + +.fa-pencil-square:before{ + content:"\f14b" +} + +.fa-external-link-square:before{ + content:"\f14c" +} + +.fa-share-square:before{ + content:"\f14d" +} + +.fa-compass:before{ + content:"\f14e" +} + +.fa-toggle-down:before,.fa-caret-square-o-down:before{ + content:"\f150" +} + +.fa-toggle-up:before,.fa-caret-square-o-up:before{ + content:"\f151" +} + +.fa-toggle-right:before,.fa-caret-square-o-right:before{ + content:"\f152" +} + +.fa-euro:before,.fa-eur:before{ + content:"\f153" +} + +.fa-gbp:before{ + content:"\f154" +} + +.fa-dollar:before,.fa-usd:before{ + content:"\f155" +} + +.fa-rupee:before,.fa-inr:before{ + content:"\f156" +} + +.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{ + content:"\f157" +} + +.fa-ruble:before,.fa-rouble:before,.fa-rub:before{ + content:"\f158" +} + +.fa-won:before,.fa-krw:before{ + content:"\f159" +} + +.fa-bitcoin:before,.fa-btc:before{ + content:"\f15a" +} + +.fa-file:before{ + content:"\f15b" +} + +.fa-file-text:before{ + content:"\f15c" +} + +.fa-sort-alpha-asc:before{ + content:"\f15d" +} + +.fa-sort-alpha-desc:before{ + content:"\f15e" +} + +.fa-sort-amount-asc:before{ + content:"\f160" +} + +.fa-sort-amount-desc:before{ + content:"\f161" +} + +.fa-sort-numeric-asc:before{ + content:"\f162" +} + +.fa-sort-numeric-desc:before{ + content:"\f163" +} + +.fa-thumbs-up:before{ + content:"\f164" +} + +.fa-thumbs-down:before{ + content:"\f165" +} + +.fa-youtube-square:before{ + content:"\f166" +} + +.fa-youtube:before{ + content:"\f167" +} + +.fa-xing:before{ + content:"\f168" +} + +.fa-xing-square:before{ + content:"\f169" +} + +.fa-youtube-play:before{ + content:"\f16a" +} + +.fa-dropbox:before{ + content:"\f16b" +} + +.fa-stack-overflow:before{ + content:"\f16c" +} + +.fa-instagram:before{ + content:"\f16d" +} + +.fa-flickr:before{ + content:"\f16e" +} + +.fa-adn:before{ + content:"\f170" +} + +.fa-bitbucket:before{ + content:"\f171" +} + +.fa-bitbucket-square:before{ + content:"\f172" +} + +.fa-tumblr:before{ + content:"\f173" +} + +.fa-tumblr-square:before{ + content:"\f174" +} + +.fa-long-arrow-down:before{ + content:"\f175" +} + +.fa-long-arrow-up:before{ + content:"\f176" +} + +.fa-long-arrow-left:before{ + content:"\f177" +} + +.fa-long-arrow-right:before{ + content:"\f178" +} + +.fa-apple:before{ + content:"\f179" +} + +.fa-windows:before{ + content:"\f17a" +} + +.fa-android:before{ + content:"\f17b" +} + +.fa-linux:before{ + content:"\f17c" +} + +.fa-dribbble:before{ + content:"\f17d" +} + +.fa-skype:before{ + content:"\f17e" +} + +.fa-foursquare:before{ + content:"\f180" +} + +.fa-trello:before{ + content:"\f181" +} + +.fa-female:before{ + content:"\f182" +} + +.fa-male:before{ + content:"\f183" +} + +.fa-gittip:before{ + content:"\f184" +} + +.fa-sun-o:before{ + content:"\f185" +} + +.fa-moon-o:before{ + content:"\f186" +} + +.fa-archive:before{ + content:"\f187" +} + +.fa-bug:before{ + content:"\f188" +} + +.fa-vk:before{ + content:"\f189" +} + +.fa-weibo:before{ + content:"\f18a" +} + +.fa-renren:before{ + content:"\f18b" +} + +.fa-pagelines:before{ + content:"\f18c" +} + +.fa-stack-exchange:before{ + content:"\f18d" +} + +.fa-arrow-circle-o-right:before{ + content:"\f18e" +} + +.fa-arrow-circle-o-left:before{ + content:"\f190" +} + +.fa-toggle-left:before,.fa-caret-square-o-left:before{ + content:"\f191" +} + +.fa-dot-circle-o:before{ + content:"\f192" +} + +.fa-wheelchair:before{ + content:"\f193" +} + +.fa-vimeo-square:before{ + content:"\f194" +} + +.fa-turkish-lira:before,.fa-try:before{ + content:"\f195" +} + +.fa-plus-square-o:before{ + content:"\f196" +} + +.fa-space-shuttle:before{ + content:"\f197" +} + +.fa-slack:before{ + content:"\f198" +} + +.fa-envelope-square:before{ + content:"\f199" +} + +.fa-wordpress:before{ + content:"\f19a" +} + +.fa-openid:before{ + content:"\f19b" +} + +.fa-institution:before,.fa-bank:before,.fa-university:before{ + content:"\f19c" +} + +.fa-mortar-board:before,.fa-graduation-cap:before{ + content:"\f19d" +} + +.fa-yahoo:before{ + content:"\f19e" +} + +.fa-google:before{ + content:"\f1a0" +} + +.fa-reddit:before{ + content:"\f1a1" +} + +.fa-reddit-square:before{ + content:"\f1a2" +} + +.fa-stumbleupon-circle:before{ + content:"\f1a3" +} + +.fa-stumbleupon:before{ + content:"\f1a4" +} + +.fa-delicious:before{ + content:"\f1a5" +} + +.fa-digg:before{ + content:"\f1a6" +} + +.fa-pied-piper:before{ + content:"\f1a7" +} + +.fa-pied-piper-alt:before{ + content:"\f1a8" +} + +.fa-drupal:before{ + content:"\f1a9" +} + +.fa-joomla:before{ + content:"\f1aa" +} + +.fa-language:before{ + content:"\f1ab" +} + +.fa-fax:before{ + content:"\f1ac" +} + +.fa-building:before{ + content:"\f1ad" +} + +.fa-child:before{ + content:"\f1ae" +} + +.fa-paw:before{ + content:"\f1b0" +} + +.fa-spoon:before{ + content:"\f1b1" +} + +.fa-cube:before{ + content:"\f1b2" +} + +.fa-cubes:before{ + content:"\f1b3" +} + +.fa-behance:before{ + content:"\f1b4" +} + +.fa-behance-square:before{ + content:"\f1b5" +} + +.fa-steam:before{ + content:"\f1b6" +} + +.fa-steam-square:before{ + content:"\f1b7" +} + +.fa-recycle:before{ + content:"\f1b8" +} + +.fa-automobile:before,.fa-car:before{ + content:"\f1b9" +} + +.fa-cab:before,.fa-taxi:before{ + content:"\f1ba" +} + +.fa-tree:before{ + content:"\f1bb" +} + +.fa-spotify:before{ + content:"\f1bc" +} + +.fa-deviantart:before{ + content:"\f1bd" +} + +.fa-soundcloud:before{ + content:"\f1be" +} + +.fa-database:before{ + content:"\f1c0" +} + +.fa-file-pdf-o:before{ + content:"\f1c1" +} + +.fa-file-word-o:before{ + content:"\f1c2" +} + +.fa-file-excel-o:before{ + content:"\f1c3" +} + +.fa-file-powerpoint-o:before{ + content:"\f1c4" +} + +.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{ + content:"\f1c5" +} + +.fa-file-zip-o:before,.fa-file-archive-o:before{ + content:"\f1c6" +} + +.fa-file-sound-o:before,.fa-file-audio-o:before{ + content:"\f1c7" +} + +.fa-file-movie-o:before,.fa-file-video-o:before{ + content:"\f1c8" +} + +.fa-file-code-o:before{ + content:"\f1c9" +} + +.fa-vine:before{ + content:"\f1ca" +} + +.fa-codepen:before{ + content:"\f1cb" +} + +.fa-jsfiddle:before{ + content:"\f1cc" +} + +.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{ + content:"\f1cd" +} + +.fa-circle-o-notch:before{ + content:"\f1ce" +} + +.fa-ra:before,.fa-rebel:before{ + content:"\f1d0" +} + +.fa-ge:before,.fa-empire:before{ + content:"\f1d1" +} + +.fa-git-square:before{ + content:"\f1d2" +} + +.fa-git:before{ + content:"\f1d3" +} + +.fa-hacker-news:before{ + content:"\f1d4" +} + +.fa-tencent-weibo:before{ + content:"\f1d5" +} + +.fa-qq:before{ + content:"\f1d6" +} + +.fa-wechat:before,.fa-weixin:before{ + content:"\f1d7" +} + +.fa-send:before,.fa-paper-plane:before{ + content:"\f1d8" +} + +.fa-send-o:before,.fa-paper-plane-o:before{ + content:"\f1d9" +} + +.fa-history:before{ + content:"\f1da" +} + +.fa-circle-thin:before{ + content:"\f1db" +} + +.fa-header:before{ + content:"\f1dc" +} + +.fa-paragraph:before{ + content:"\f1dd" +} + +.fa-sliders:before{ + content:"\f1de" +} + +.fa-share-alt:before{ + content:"\f1e0" +} + +.fa-share-alt-square:before{ + content:"\f1e1" +} + +.fa-bomb:before{ + content:"\f1e2" +} + +.fa-soccer-ball-o:before,.fa-futbol-o:before{ + content:"\f1e3" +} + +.fa-tty:before{ + content:"\f1e4" +} + +.fa-binoculars:before{ + content:"\f1e5" +} + +.fa-plug:before{ + content:"\f1e6" +} + +.fa-slideshare:before{ + content:"\f1e7" +} + +.fa-twitch:before{ + content:"\f1e8" +} + +.fa-yelp:before{ + content:"\f1e9" +} + +.fa-newspaper-o:before{ + content:"\f1ea" +} + +.fa-wifi:before{ + content:"\f1eb" +} + +.fa-calculator:before{ + content:"\f1ec" +} + +.fa-paypal:before{ + content:"\f1ed" +} + +.fa-google-wallet:before{ + content:"\f1ee" +} + +.fa-cc-visa:before{ + content:"\f1f0" +} + +.fa-cc-mastercard:before{ + content:"\f1f1" +} + +.fa-cc-discover:before{ + content:"\f1f2" +} + +.fa-cc-amex:before{ + content:"\f1f3" +} + +.fa-cc-paypal:before{ + content:"\f1f4" +} + +.fa-cc-stripe:before{ + content:"\f1f5" +} + +.fa-bell-slash:before{ + content:"\f1f6" +} + +.fa-bell-slash-o:before{ + content:"\f1f7" +} + +.fa-trash:before{ + content:"\f1f8" +} + +.fa-copyright:before{ + content:"\f1f9" +} + +.fa-at:before{ + content:"\f1fa" +} + +.fa-eyedropper:before{ + content:"\f1fb" +} + +.fa-paint-brush:before{ + content:"\f1fc" +} + +.fa-birthday-cake:before{ + content:"\f1fd" +} + +.fa-area-chart:before{ + content:"\f1fe" +} + +.fa-pie-chart:before{ + content:"\f200" +} + +.fa-line-chart:before{ + content:"\f201" +} + +.fa-lastfm:before{ + content:"\f202" +} + +.fa-lastfm-square:before{ + content:"\f203" +} + +.fa-toggle-off:before{ + content:"\f204" +} + +.fa-toggle-on:before{ + content:"\f205" +} + +.fa-bicycle:before{ + content:"\f206" +} + +.fa-bus:before{ + content:"\f207" +} + +.fa-ioxhost:before{ + content:"\f208" +} + +.fa-angellist:before{ + content:"\f209" +} + +.fa-cc:before{ + content:"\f20a" +} + +.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{ + content:"\f20b" +} + +.fa-meanpath:before{ + content:"\f20c" +} diff --git a/public/static/css/sidebar-bootstrap.css b/public/static/css/sidebar-bootstrap.css new file mode 100644 index 0000000..0c0338b --- /dev/null +++ b/public/static/css/sidebar-bootstrap.css @@ -0,0 +1,52 @@ +.navbar-fixed-top + .sidebar-trigger .sidebar-toggle, +.navbar-fixed-bottom + .sidebar-trigger .sidebar-toggle, +.navbar-fixed-top + .sidebar-trigger + .sidebar-trigger .sidebar-toggle, +.navbar-fixed-bottom + .sidebar-trigger + .sidebar-trigger .sidebar-toggle { + position: fixed; + z-index: 1032; +} +.navbar-fixed-top + .sidebar-trigger .sidebar-wrapper, +.navbar-fixed-bottom + .sidebar-trigger .sidebar-wrapper, +.navbar-fixed-top + .sidebar-trigger + .sidebar-trigger .sidebar-wrapper, +.navbar-fixed-bottom + .sidebar-trigger + .sidebar-trigger .sidebar-wrapper { + z-index: 1033; +} +.navbar-fixed-bottom + .sidebar-trigger .sidebar-toggle, +.navbar-fixed-bottom + .sidebar-trigger + .sidebar-trigger .sidebar-toggle { + top: inherit; + bottom: 0; +} +.navbar-fixed-top + .container, +.navbar-fixed-top + .container-fluid, +.navbar-fixed-top + .sidebar-trigger + .container, +.navbar-fixed-top + .sidebar-trigger + .container-fluid, +.navbar-fixed-top + .sidebar-trigger + .sidebar-trigger + .container, +.navbar-fixed-top + .sidebar-trigger + .sidebar-trigger + .container-fluid { + margin-top: 70px; +} +.navbar-fixed-bottom + .container, +.navbar-fixed-bottom + .container-fluid, +.navbar-fixed-bottom + .sidebar-trigger + .container, +.navbar-fixed-bottom + .sidebar-trigger + .container-fluid, +.navbar-fixed-bottom + .sidebar-trigger + .sidebar-trigger + .container, +.navbar-fixed-bottom + .sidebar-trigger + .sidebar-trigger + .container-fluid { + margin-bottom: 70px; +} +@media (min-width: 992px) { + .sidebar-force-open:not(.sidebar-right) + .container, + .sidebar-force-open:not(.sidebar-right) + .sidebar-trigger + .container { + padding-left: 225px; + } + .sidebar-force-open:not(.sidebar-right) + .container-fluid, + .sidebar-force-open:not(.sidebar-right) + .sidebar-trigger + .container-fluid { + margin-left: 210px; + } + .sidebar-force-open.sidebar-right + .container, + .sidebar-force-open.sidebar-right + .sidebar-trigger + .container { + padding-right: 225px; + } + .sidebar-force-open.sidebar-right + .container-fluid, + .sidebar-force-open.sidebar-right + .sidebar-trigger + .container-fluid { + margin-right: 210px; + } +} diff --git a/public/static/css/sidebar.css b/public/static/css/sidebar.css new file mode 100644 index 0000000..14cd972 --- /dev/null +++ b/public/static/css/sidebar.css @@ -0,0 +1,336 @@ +.sidebar-toggle { + position: absolute; + top: 0; + left: 0; + height: 51px; + cursor: pointer; + margin: 0; + padding: 17px 20px 17px 0; +} +.sidebar-toggle .glyphicon{ + color:white; +} +.sidebar-toggle > i { + font-size: 18px; + margin: 0 0 0 -5px; + -webkit-transition: all 0.1s ease-in-out; + transition: all 0.1s ease-in-out; +} +.sidebar-toggle > .fa-sidebar-toggle:before { + content: "\f0c9"; +} +.sidebar-toggle:hover > i, +.sidebar-toggle.sidebar-toggle-opened > i { + margin-left: -9px; +} +.sidebar-toggle + .navbar-brand > img { + margin-left: 10px; +} +.sidebar-togglable .sidebar-toggle { + display: block; +} +.sidebar-wrapper { + position: fixed; + top: 0; + overflow: hidden; + bottom: 0; + width: 210px; + cursor: default; + -moz-user-select: -moz-none; + user-select: none; + -webkit-transform: translate3d(-210px, 0px, 0px); + transform: translate3d(-210px, 0px, 0px); +} +.sidebar-wrapper.sidebar-ready { + -webkit-transition: -webkit-transform 0.2s; + transition: transform 0.2s; +} +.sidebar-wrapper.sidebar-open { + -webkit-transform: translate3d(0px, 0px, 0px); + transform: translate3d(0px, 0px, 0px); +} +.sidebar-wrapper .sidebar-scroller { + position: absolute; + overflow-x: hidden; + overflow-y: scroll; + left: 0; + right: -18px; + height: 100%; +} +.sidebar-wrapper .sidebar-menu { + margin: 0; + padding: 0; + overflow-x: hidden; + list-style: none; + text-align: left; + font-size: 14px; +} +.sidebar-wrapper .sidebar-menu ul { + padding: 0; + margin: 0; +} +.sidebar-wrapper .sidebar-menu li { + display: block; +} +.sidebar-wrapper .sidebar-group > span, +.sidebar-wrapper .sidebar-item > a { + display: block; + height: 100%; + padding: 12px 15px; + text-decoration: none; +} +.sidebar-wrapper .sidebar-item > a.active { + border-left: 5px solid; + padding: 12px 15px 12px 10px; +} +.sidebar-wrapper .sidebar-item.sidebar-item-mini { + font-size: 0.7em; +} +.sidebar-wrapper .sidebar-item.sidebar-item-mini > a { + padding-top: 7px; + padding-bottom: 7px; +} +.sidebar-wrapper .sidebar-group { + margin-top: 20px; +} +.sidebar-wrapper .sidebar-group:first-child { + margin-top: 0; +} +.sidebar-wrapper .sidebar-group > span { + font-family: inherit; + font-size: 24px; + border-bottom: 1px solid transparent; +} +.sidebar-wrapper .sidebar-group.sticky-header { + position: absolute; + height: auto; + top: 0; + left: 0; + right: 0; + z-index: 1; + margin-top: 0; +} +.sidebar-wrapper .sidebar-group + .sidebar-item { + margin-top: 32px; + border-top: 1px solid transparent; +} +.sidebar-wrapper .sidebar-item > a { + cursor: pointer; +} +.sidebar-swipe { + position: fixed; + z-index: 1001; + width: 20px; + left: 0; + top: 0; + bottom: 0; + -moz-user-select: -moz-none; + user-select: none; +} +.sidebar-open + .sidebar-swipe, +.sidebar-force-open .sidebar-swipe { + left: 210px; +} +.sidebar-trigger .sidebar-toggle { + z-index: 1002; +} +.sidebar-trigger .sidebar-wrapper { + z-index: 1003; +} +.sidebar-wrapper.sidebar-default { + color: #222222; + background-color: #ffffff; +} +.sidebar-wrapper.sidebar-default.sidebar-open, +.sidebar-wrapper.sidebar-default.sidebar-dragging { + -webkit-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.18); + box-shadow: 3px 0 4px rgba(0, 0, 0, 0.18); +} +.sidebar-wrapper.sidebar-default .sidebar-group > span { + color: #dbdbdb; + border-bottom-color: #eeeeee; +} +.sidebar-wrapper.sidebar-default .sidebar-group.sticky-header > span { + background-color: #ffffff; +} +.sidebar-wrapper.sidebar-default .sidebar-group + .sidebar-item { + border-top-color: #eeeeee; +} +.sidebar-wrapper.sidebar-default .sidebar-item > a { + color: #222222; + background-color: #ffffff; +} +.sidebar-wrapper.sidebar-default .sidebar-item > a:hover, +.sidebar-wrapper.sidebar-default .sidebar-item > a:focus { + color: #333333; + background-color: #eeeeee; +} +.sidebar-wrapper.sidebar-default .sidebar-item > a.active { + color: #337ab7; + background-color: #ffffff; +} +.sidebar-wrapper.sidebar-default .sidebar-item.sidebar-item-mini > a { + color: #747474; +} +.sidebar-wrapper.sidebar-default .hammer-scrollbar { + background-color: #555555; +} +.sidebar-wrapper.sidebar-inverse { + color: #9d9d9d; + background-color: #2a3542; +} +.sidebar-wrapper.sidebar-inverse.sidebar-open, +.sidebar-wrapper.sidebar-inverse.sidebar-dragging { + -webkit-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.32); + box-shadow: 3px 0 4px rgba(0, 0, 0, 0.32); +} +.sidebar-wrapper.sidebar-inverse .sidebar-group > span { + color: #46586e; + border-bottom-color: #344252; +} +.sidebar-wrapper.sidebar-inverse .sidebar-group.sticky-header > span { + background-color: #2a3542; +} +.sidebar-wrapper.sidebar-inverse .sidebar-group + .sidebar-item { + border-top-color: #344252; +} +.sidebar-wrapper.sidebar-inverse .sidebar-item > a { + color: #9d9d9d; + background-color: #2a3542; +} +.sidebar-wrapper.sidebar-inverse .sidebar-item > a:hover, +.sidebar-wrapper.sidebar-inverse .sidebar-item > a:focus { + color: #ffffff; + background-color: #344252; +} +.sidebar-wrapper.sidebar-inverse .sidebar-item > a.active { + color: #dfecf6; + background-color: #2a3542; +} +.sidebar-wrapper.sidebar-inverse .sidebar-item.sidebar-item-mini > a { + color: #6d85a2; +} +.sidebar-wrapper.sidebar-inverse .hammer-scrollbar { + background-color: #e4e8ed; +} +.navbar-default + .sidebar-trigger .sidebar-toggle > i, +.navbar-default + .sidebar-trigger + .sidebar-trigger .sidebar-toggle > i { + color: #888888; +} +.navbar-default + .sidebar-trigger .sidebar-toggle:hover > i, +.navbar-default + .sidebar-trigger + .sidebar-trigger .sidebar-toggle:hover > i { + color: #333333; +} +.navbar-inverse + .sidebar-trigger .sidebar-toggle > i, +.navbar-inverse + .sidebar-trigger + .sidebar-trigger .sidebar-toggle > i { + color: #ffffff; +} +.navbar-inverse + .sidebar-trigger .sidebar-toggle:hover > i, +.navbar-inverse + .sidebar-trigger + .sidebar-trigger .sidebar-toggle:hover > i { + color: #ffffff; +} +.sidebar-right .sidebar-toggle { + left: auto; + right: 0; + padding-left: 20px; + padding-right: 0; +} +.sidebar-right .sidebar-toggle > i { + margin-left: 0; + margin-right: -5px; +} +.sidebar-right .sidebar-toggle:hover > i, +.sidebar-right .sidebar-toggle.sidebar-toggle-opened > i { + margin-right: -9px; +} +.sidebar-right .sidebar-wrapper { + right: 0; + -webkit-transform: translate3d(210px, 0px, 0px); + transform: translate3d(210px, 0px, 0px); +} +.sidebar-right .sidebar-wrapper.sidebar-open { + -webkit-transform: translate3d(0px, 0px, 0px); + transform: translate3d(0px, 0px, 0px); +} +.sidebar-right .sidebar-wrapper.sidebar-default.sidebar-open, +.sidebar-right .sidebar-wrapper.sidebar-default.sidebar-dragging { + -webkit-box-shadow: -3px 0 4px rgba(0, 0, 0, 0.18); + box-shadow: -3px 0 4px rgba(0, 0, 0, 0.18); +} +.sidebar-right .sidebar-wrapper.sidebar-inverse.sidebar-open, +.sidebar-right .sidebar-wrapper.sidebar-inverse.sidebar-dragging { + -webkit-box-shadow: -3px 0 4px rgba(0, 0, 0, 0.32); + box-shadow: -3px 0 4px rgba(0, 0, 0, 0.32); +} +.sidebar-right .sidebar-wrapper .sidebar-item > a.active { + border-left: inherit; + border-right: 5px solid; + padding: 12px 10px 12px 15px; +} +.sidebar-right .sidebar-swipe { + left: auto; + right: 0; +} +.sidebar-right .sidebar-open + .sidebar-swipe, +.sidebar-right .sidebar-force-open .sidebar-swipe { + right: 210px; +} +@media (max-width: 767px) { + .sidebar-wrapper { + width: 80%; + -webkit-transform: translate3d(-100%, 0px, 0px); + transform: translate3d(-100%, 0px, 0px); + } + .sidebar-open + .sidebar-swipe, + .sidebar-force-open .sidebar-open + .sidebar-swipe { + left: 80%; + } + .sidebar-force-open .sidebar-swipe { + left: 0; + } + .sidebar-right .sidebar-toggle { + padding-left: 7px; + } + .sidebar-right .sidebar-wrapper { + -webkit-transform: translate3d(100%, 0px, 0px); + transform: translate3d(100%, 0px, 0px); + } + .sidebar-right .sidebar-open + .sidebar-swipe { + left: auto; + right: 80%; + } + .sidebar-right .sidebar-force-open .sidebar-swipe { + left: auto; + right: 0; + } +} +@media (max-width: 991px) { + .sidebar-force-open .sidebar-wrapper:not(.sidebar-open) + .sidebar-swipe { + left: 0; + } +} +@media (min-width: 992px) { + .sidebar-trigger.sidebar-locked .sidebar-toggle { + display: none; + } + .sidebar-trigger.sidebar-locked .sidebar-wrapper { + margin-top: 51px; + } + .sidebar-wrapper.sidebar-open-init { + -webkit-transform: translate3d(0px, 0px, 0px); + transform: translate3d(0px, 0px, 0px); + } + .sidebar-force-open .sidebar-wrapper.sidebar-open, + .sidebar-force-open.sidebar-right .sidebar-wrapper.sidebar-open, + .sidebar-force-open .sidebar-wrapper.sidebar-dragging, + .sidebar-force-open.sidebar-right .sidebar-wrapper.sidebar-dragging { + -webkit-box-shadow: none; + box-shadow: none; + } +} +.sidebar-wrapper { + -ms-touch-action: none; +} +.sidebar-swipe { + -ms-touch-action: none; +} diff --git a/public/static/css/styles.css b/public/static/css/styles.css new file mode 100644 index 0000000..8d769bf --- /dev/null +++ b/public/static/css/styles.css @@ -0,0 +1,334 @@ +/* + +omninotesweb main stylesheet +============= + +Author: Suraj Patil +Updated: January 13, 2014 +Notes: omninotesweb + +*/ + + +/*-------------------------------------- +Layout +-------------------------------------- */ + + +.center{ + text-align:center; +} + +.navbar-brand:hover{ + color:white; +} + +.footer{ + height:30px; + width:auto; + text-align:center; + +} +textarea { + resize: vertical; +} + +.floating-action-icon{ + position: fixed; + bottom:40px; + right:30px; + z-index:101; + width: 56px; + height: 56px; + font-size: 20px; + border-radius: 35px; + box-shadow:0 0 4px #111; + padding-top:10px !important; + + +} + +/*-------------------------------------- +Navbar +-------------------------------------- */ + +.mainHeader{ + background-color: #3f51b5; + border-radius:0px; + +} + +.navbar-brand{ + margin-left: 25px; + font-size:1.5em; + color:white; + +} + +.btn-action{ + background-color: #3f51b5; +} + +#icons{ + text-align:right; + height: 50%; + margin-top: 10px; +} + +nav .glyphicon{ + color:white; +} + +nav .glyphicon:hover{ + color:black; +} + +.sr-only{ + display:block; + width:20px; + height:3px; + background-color: white; + margin-bottom: 4px; +} + +.hidden{ + display:none; +} + +/*-------------------------------------- +NotesFeed +-------------------------------------- */ +.noteHeading { + font-weight:700; + font-size:15px; + color:#666666; + margin-bottom:0px; + padding-bottom:5px; +} +hr{ + margin: 0; + padding: 0; + +} + +.noteHeading a { + font-weight:400; + font-size:11px; +} + +.noteContent { + padding-top: 7px; + font-size: 0.9em; +} + +.notefooter{ + color:#aaa; + height: 20px; +} + +/* These are the classes that are going to be applied: */ +.column { + float: left; +} + +.note{ + display: block; + margin: 4px; + margin-bottom: 6px; + padding: 15px; + background-color: white; + box-shadow:1px 1px 2px 1px #7D7470; + border-radius:4px 4px 4px 4px; + height: auto; + +} + +.note:hover{ + border-bottom: 2px solid black; +} +.menu a { + text-decoration: none; +} +.menu li{ + margin-top: -10px; + list-style: none; + float: right; + padding: 5px; + height: 15px; +} + +/*-------------------------------------- +Navigation drawer +-------------------------------------- */ + +.list-group-item{ + border:none; +} + +.sidebar-item h5{ + margin-left:15px; + display: block; +} + +.sidebar-item .glyphicon:hover{ + color:black; +} + + +.col-sm-2 a.list-group-item:hover,a.list-group-item:focus{ + text-decoration:none; + background-color: transparent; + +} + +body{ + background-color: #f5f5f5; + overflow-x:hidden; + overflow-y:auto; + margin-top:70px; +} + +.nav-item{ + padding-left: 10px; +} + +.col-sm-2{ + background-color: white; +} + +.badge{ + background-color: #7D8EF0; + margin-right:10px; + float:right; +} + +/* -------------------------------------- +Global Styles +-------------------------------------- */ +body{ + width:100%; +} + +.main-content{ + color:black; +} + +.highlight{ + background-color: #72CBFF; +} +/* -------------------------------------- +Media Queries +-------------------------------------- */ + +/* Portrait & landscape phone */ +@media (max-width: 480px) { + body{ + margin-top:105px; + } + +.timeline { + overflow: hidden; + width: 100%; +} + + #icons{ + text-align:center; + padding:0; + } + + .mainHeader h3{ + padding:0px; + text-align:center; + } + + + .note-sm{ + height:150px; + } + + .floating-action-icon{ + position: fixed; + bottom:35px; + right:20px; + z-index:101; + width: 50px; + height: 50px; + padding: 10px 10px; + font-size: 24px; + border-radius: 25px; + text-align:center; + } + + .modal-dialog{ + width:240px; + } +} + + +/* Landscape phone to portrait tablet */ +@media (max-width: 768px) and (min-width:481px) { + #icons{ + text-align:center; + padding:0; + } + + body{ + margin-top:105px; + } +.timeline { + overflow: hidden; + width: 100%; +} + + + .mainHeader h3{ + padding:0px; + text-align:center; + } + + .note-lg{ + height:360px; + /*change later*/ + } + .modal-dialog{ + width:250px; + } + +} + + +/* Large desktop */ +@media (max-width: 1400px) and (min-width:769px) { + .timeline { + overflow: hidden; + width: 55%; + margin-left:20%; +} + +} + +/*-------------------------------------- +Sidebar +-------------------------------------- */ +.sidebar-toggle{ + left:10px !important; +} +.sidebar-wrapper.sidebar-default.sidebar-open, .sidebar-wrapper.sidebar-default.sidebar-dragging{ + width:260px; +} + +/*Modal dialog*/ + +.modal-footer { + padding: 10px 15px 15px; + margin:0; + border:none; +} + +.modal-body{ + padding: 20px 20px 10px 20px; # reduces the default paddings +} + +.modal{ + overflow: hidden; +} diff --git a/public/static/fonts/glyphiconshalflings-regular.eot b/public/static/fonts/glyphiconshalflings-regular.eot new file mode 100644 index 0000000..bd59ccd Binary files /dev/null and b/public/static/fonts/glyphiconshalflings-regular.eot differ diff --git a/public/static/fonts/glyphiconshalflings-regular.otf b/public/static/fonts/glyphiconshalflings-regular.otf new file mode 100644 index 0000000..b058f1c Binary files /dev/null and b/public/static/fonts/glyphiconshalflings-regular.otf differ diff --git a/public/static/fonts/glyphiconshalflings-regular.svg b/public/static/fonts/glyphiconshalflings-regular.svg new file mode 100644 index 0000000..0fb4587 --- /dev/null +++ b/public/static/fonts/glyphiconshalflings-regular.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/static/fonts/glyphiconshalflings-regular.ttf b/public/static/fonts/glyphiconshalflings-regular.ttf new file mode 100644 index 0000000..c63c068 Binary files /dev/null and b/public/static/fonts/glyphiconshalflings-regular.ttf differ diff --git a/public/static/fonts/glyphiconshalflings-regular.woff b/public/static/fonts/glyphiconshalflings-regular.woff new file mode 100644 index 0000000..4c778ff Binary files /dev/null and b/public/static/fonts/glyphiconshalflings-regular.woff differ diff --git a/public/static/js/.DS_Store b/public/static/js/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/public/static/js/.DS_Store differ diff --git a/public/static/js/bootstrap.js b/public/static/js/bootstrap.js new file mode 100644 index 0000000..14943ed --- /dev/null +++ b/public/static/js/bootstrap.js @@ -0,0 +1,1964 @@ +/** +* bootstrap.js v3.0.0 by @fat and @mdo +* Copyright 2013 Twitter Inc. +* http://www.apache.org/licenses/LICENSE-2.0 +*/ +if (!jQuery) { throw new Error("Bootstrap requires jQuery") } + +/* ======================================================================== + * Bootstrap: transition.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#transitions + * ======================================================================== + * Copyright 2013 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) + // ============================================================ + + function transitionEnd() { + var el = document.createElement('bootstrap') + + var transEndEventNames = { + 'WebkitTransition' : 'webkitTransitionEnd' + , 'MozTransition' : 'transitionend' + , 'OTransition' : 'oTransitionEnd otransitionend' + , 'transition' : 'transitionend' + } + + for (var name in transEndEventNames) { + if (el.style[name] !== undefined) { + return { end: transEndEventNames[name] } + } + } + } + + // http://blog.alexmaccaw.com/css-transitions + $.fn.emulateTransitionEnd = function (duration) { + var called = false, $el = this + $(this).one('webkitTransitionEnd', function () { called = true }) + var callback = function () { if (!called) $($el).trigger('webkitTransitionEnd') } + setTimeout(callback, duration) + return this + } + + $(function () { + $.support.transition = transitionEnd() + }) + +}(window.jQuery); + +/* ======================================================================== + * Bootstrap: alert.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#alerts + * ======================================================================== + * Copyright 2013 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // ALERT CLASS DEFINITION + // ====================== + + var dismiss = '[data-dismiss="alert"]' + var Alert = function (el) { + $(el).on('click', dismiss, this.close) + } + + Alert.prototype.close = function (e) { + var $this = $(this) + var selector = $this.attr('data-target') + + if (!selector) { + selector = $this.attr('href') + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 + } + + var $parent = $(selector) + + if (e) e.preventDefault() + + if (!$parent.length) { + $parent = $this.hasClass('alert') ? $this : $this.parent() + } + + $parent.trigger(e = $.Event('close.bs.alert')) + + if (e.isDefaultPrevented()) return + + $parent.removeClass('in') + + function removeElement() { + $parent.trigger('closed.bs.alert').remove() + } + + $.support.transition && $parent.hasClass('fade') ? + $parent + .one($.support.transition.end, removeElement) + .emulateTransitionEnd(150) : + removeElement() + } + + + // ALERT PLUGIN DEFINITION + // ======================= + + var old = $.fn.alert + + $.fn.alert = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.alert') + + if (!data) $this.data('bs.alert', (data = new Alert(this))) + if (typeof option == 'string') data[option].call($this) + }) + } + + $.fn.alert.Constructor = Alert + + + // ALERT NO CONFLICT + // ================= + + $.fn.alert.noConflict = function () { + $.fn.alert = old + return this + } + + + // ALERT DATA-API + // ============== + + $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) + +}(window.jQuery); + +/* ======================================================================== + * Bootstrap: button.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#buttons + * ======================================================================== + * Copyright 2013 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // BUTTON PUBLIC CLASS DEFINITION + // ============================== + + var Button = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, Button.DEFAULTS, options) + } + + Button.DEFAULTS = { + loadingText: 'loading...' + } + + Button.prototype.setState = function (state) { + var d = 'disabled' + var $el = this.$element + var val = $el.is('input') ? 'val' : 'html' + var data = $el.data() + + state = state + 'Text' + + if (!data.resetText) $el.data('resetText', $el[val]()) + + $el[val](data[state] || this.options[state]) + + // push to event loop to allow forms to submit + setTimeout(function () { + state == 'loadingText' ? + $el.addClass(d).attr(d, d) : + $el.removeClass(d).removeAttr(d); + }, 0) + } + + Button.prototype.toggle = function () { + var $parent = this.$element.closest('[data-toggle="buttons"]') + + if ($parent.length) { + var $input = this.$element.find('input').prop('checked', !this.$element.hasClass('active')) + if ($input.prop('type') === 'radio') $parent.find('.active').removeClass('active') + } + + this.$element.toggleClass('active') + } + + + // BUTTON PLUGIN DEFINITION + // ======================== + + var old = $.fn.button + + $.fn.button = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('button') + var options = typeof option == 'object' && option + + if (!data) $this.data('bs.button', (data = new Button(this, options))) + + if (option == 'toggle') data.toggle() + else if (option) data.setState(option) + }) + } + + $.fn.button.Constructor = Button + + + // BUTTON NO CONFLICT + // ================== + + $.fn.button.noConflict = function () { + $.fn.button = old + return this + } + + + // BUTTON DATA-API + // =============== + + $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) { + var $btn = $(e.target) + if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') + $btn.button('toggle') + e.preventDefault() + }) + +}(window.jQuery); + +/* ======================================================================== + * Bootstrap: carousel.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#carousel + * ======================================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // CAROUSEL CLASS DEFINITION + // ========================= + + var Carousel = function (element, options) { + this.$element = $(element) + this.$indicators = this.$element.find('.carousel-indicators') + this.options = options + this.paused = + this.sliding = + this.interval = + this.$active = + this.$items = null + + this.options.pause == 'hover' && this.$element + .on('mouseenter', $.proxy(this.pause, this)) + .on('mouseleave', $.proxy(this.cycle, this)) + } + + Carousel.DEFAULTS = { + interval: 5000 + , pause: 'hover' + } + + Carousel.prototype.cycle = function (e) { + e || (this.paused = false) + + this.interval && clearInterval(this.interval) + + this.options.interval + && !this.paused + && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) + + return this + } + + Carousel.prototype.getActiveIndex = function () { + this.$active = this.$element.find('.item.active') + this.$items = this.$active.parent().children() + + return this.$items.index(this.$active) + } + + Carousel.prototype.to = function (pos) { + var that = this + var activeIndex = this.getActiveIndex() + + if (pos > (this.$items.length - 1) || pos < 0) return + + if (this.sliding) return this.$element.one('slid', function () { that.to(pos) }) + if (activeIndex == pos) return this.pause().cycle() + + return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos])) + } + + Carousel.prototype.pause = function (e) { + e || (this.paused = true) + + if (this.$element.find('.next, .prev').length && $.support.transition.end) { + this.$element.trigger($.support.transition.end) + this.cycle(true) + } + + this.interval = clearInterval(this.interval) + + return this + } + + Carousel.prototype.next = function () { + if (this.sliding) return + return this.slide('next') + } + + Carousel.prototype.prev = function () { + if (this.sliding) return + return this.slide('prev') + } + + Carousel.prototype.slide = function (type, next) { + var $active = this.$element.find('.item.active') + var $next = next || $active[type]() + var isCycling = this.interval + var direction = type == 'next' ? 'left' : 'right' + var fallback = type == 'next' ? 'first' : 'last' + var that = this + + this.sliding = true + + isCycling && this.pause() + + $next = $next.length ? $next : this.$element.find('.item')[fallback]() + + var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction }) + + if ($next.hasClass('active')) return + + if (this.$indicators.length) { + this.$indicators.find('.active').removeClass('active') + this.$element.one('slid', function () { + var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()]) + $nextIndicator && $nextIndicator.addClass('active') + }) + } + + if ($.support.transition && this.$element.hasClass('slide')) { + this.$element.trigger(e) + if (e.isDefaultPrevented()) return + $next.addClass(type) + $next[0].offsetWidth // force reflow + $active.addClass(direction) + $next.addClass(direction) + $active + .one($.support.transition.end, function () { + $next.removeClass([type, direction].join(' ')).addClass('active') + $active.removeClass(['active', direction].join(' ')) + that.sliding = false + setTimeout(function () { that.$element.trigger('slid') }, 0) + }) + .emulateTransitionEnd(600) + } else { + this.$element.trigger(e) + if (e.isDefaultPrevented()) return + $active.removeClass('active') + $next.addClass('active') + this.sliding = false + this.$element.trigger('slid') + } + + isCycling && this.cycle() + + return this + } + + + // CAROUSEL PLUGIN DEFINITION + // ========================== + + var old = $.fn.carousel + + $.fn.carousel = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.carousel') + var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) + var action = typeof option == 'string' ? option : options.slide + + if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) + if (typeof option == 'number') data.to(option) + else if (action) data[action]() + else if (options.interval) data.pause().cycle() + }) + } + + $.fn.carousel.Constructor = Carousel + + + // CAROUSEL NO CONFLICT + // ==================== + + $.fn.carousel.noConflict = function () { + $.fn.carousel = old + return this + } + + + // CAROUSEL DATA-API + // ================= + + $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { + var $this = $(this), href + var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 + var options = $.extend({}, $target.data(), $this.data()) + var slideIndex = $this.attr('data-slide-to') + if (slideIndex) options.interval = false + + $target.carousel(options) + + if (slideIndex = $this.attr('data-slide-to')) { + $target.data('bs.carousel').to(slideIndex) + } + + e.preventDefault() + }) + + $(window).on('load', function () { + $('[data-ride="carousel"]').each(function () { + var $carousel = $(this) + $carousel.carousel($carousel.data()) + }) + }) + +}(window.jQuery); + +/* ======================================================================== + * Bootstrap: collapse.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#collapse + * ======================================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // COLLAPSE PUBLIC CLASS DEFINITION + // ================================ + + var Collapse = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, Collapse.DEFAULTS, options) + this.transitioning = null + + if (this.options.parent) this.$parent = $(this.options.parent) + if (this.options.toggle) this.toggle() + } + + Collapse.DEFAULTS = { + toggle: true + } + + Collapse.prototype.dimension = function () { + var hasWidth = this.$element.hasClass('width') + return hasWidth ? 'width' : 'height' + } + + Collapse.prototype.show = function () { + if (this.transitioning || this.$element.hasClass('in')) return + + var startEvent = $.Event('show.bs.collapse') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + var actives = this.$parent && this.$parent.find('> .accordion-group > .in') + + if (actives && actives.length) { + var hasData = actives.data('bs.collapse') + if (hasData && hasData.transitioning) return + actives.collapse('hide') + hasData || actives.data('bs.collapse', null) + } + + var dimension = this.dimension() + + this.$element + .removeClass('collapse') + .addClass('collapsing') + [dimension](0) + + this.transitioning = 1 + + var complete = function () { + this.$element + .removeClass('collapsing') + .addClass('in') + [dimension]('auto') + this.transitioning = 0 + this.$element.trigger('shown.bs.collapse') + } + + if (!$.support.transition) return complete.call(this) + + var scrollSize = $.camelCase(['scroll', dimension].join('-')) + + this.$element + .one($.support.transition.end, $.proxy(complete, this)) + .emulateTransitionEnd(350) + [dimension](this.$element[0][scrollSize]) + } + + Collapse.prototype.hide = function () { + if (this.transitioning || !this.$element.hasClass('in')) return + + var startEvent = $.Event('hide.bs.collapse') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + var dimension = this.dimension() + + this.$element + [dimension](this.$element[dimension]()) + [0].offsetHeight + + this.$element + .addClass('collapsing') + .removeClass('collapse') + .removeClass('in') + + this.transitioning = 1 + + var complete = function () { + this.transitioning = 0 + this.$element + .trigger('hidden.bs.collapse') + .removeClass('collapsing') + .addClass('collapse') + } + + if (!$.support.transition) return complete.call(this) + + this.$element + [dimension](0) + .one($.support.transition.end, $.proxy(complete, this)) + .emulateTransitionEnd(350) + } + + Collapse.prototype.toggle = function () { + this[this.$element.hasClass('in') ? 'hide' : 'show']() + } + + + // COLLAPSE PLUGIN DEFINITION + // ========================== + + var old = $.fn.collapse + + $.fn.collapse = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.collapse') + var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) + + if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.collapse.Constructor = Collapse + + + // COLLAPSE NO CONFLICT + // ==================== + + $.fn.collapse.noConflict = function () { + $.fn.collapse = old + return this + } + + + // COLLAPSE DATA-API + // ================= + + $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) { + var $this = $(this), href + var target = $this.attr('data-target') + || e.preventDefault() + || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 + var $target = $(target) + var data = $target.data('bs.collapse') + var option = data ? 'toggle' : $this.data() + var parent = $this.attr('data-parent') + var $parent = parent && $(parent) + + if (!data || !data.transitioning) { + if ($parent) $parent.find('[data-toggle=collapse][data-parent=' + parent + ']').not($this).addClass('collapsed') + $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed') + } + + $target.collapse(option) + }) + +}(window.jQuery); + +/* ======================================================================== + * Bootstrap: dropdown.js v3.0.0 + * http://twbs.github.com/bootstrap/javascript.html#dropdowns + * ======================================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + + ++function ($) { "use strict"; + + // DROPDOWN CLASS DEFINITION + // ========================= + + var backdrop = '.dropdown-backdrop' + var toggle = '[data-toggle=dropdown]' + var Dropdown = function (element) { + var $el = $(element).on('click.bs.dropdown', this.toggle) + } + + Dropdown.prototype.toggle = function (e) { + var $this = $(this) + + if ($this.is('.disabled, :disabled')) return + + var $parent = getParent($this) + var isActive = $parent.hasClass('open') + + clearMenus() + + if (!isActive) { + if ('ontouchstart' in document.documentElement) { + // if mobile we we use a backdrop because click events don't delegate + $('