Bladeren bron

from yesterday... initially most of the UI is designed

bmallred 10 jaren geleden
bovenliggende
commit
9a56652686

+ 49 - 0
app/controllers/app.go

@ -0,0 +1,49 @@
1
package controllers
2
3
import "github.com/revel/revel"
4
5
type App struct {
6
	*revel.Controller
7
}
8
9
func (c App) Index() revel.Result {
10
	return c.Render()
11
}
12
13
func (c App) About() revel.Result {
14
    return c.Render()
15
}
16
17
func (c App) Me() revel.Result {
18
    return c.Render()
19
}
20
21
func (c App) Stats() revel.Result {
22
    return c.Render()
23
}
24
25
func (c App) Add(id int, product string, calories int) revel.Result {
26
    c.Validation.Required(id).Message("You must be logged on to add more calories.")
27
    c.Validation.Required(product).Message("You must include a product.")
28
    c.Validation.Required(calories).Message("You must provide the amount of calories")
29
30
    if c.Validation.HasErrors() {
31
        c.Validation.Keep()
32
        c.FlashParams()
33
        return c.Redirect(App.Index)
34
    }
35
36
    return c.Render()
37
}
38
39
func (c App) Goal() revel.Result {
40
    return c.Render()
41
}
42
43
func (c App) SetGoal() revel.Result {
44
    return c.Render()
45
}
46
47
func (c App) Streak() revel.Result {
48
    return c.Render()
49
}

+ 38 - 0
app/init.go

@ -0,0 +1,38 @@
1
package app
2
3
import "github.com/revel/revel"
4
5
func init() {
6
	// Filters is the default set of global filters.
7
	revel.Filters = []revel.Filter{
8
		revel.PanicFilter,             // Recover from panics and display an error page instead.
9
		revel.RouterFilter,            // Use the routing table to select the right Action
10
		revel.FilterConfiguringFilter, // A hook for adding or removing per-Action filters.
11
		revel.ParamsFilter,            // Parse parameters into Controller.Params.
12
		revel.SessionFilter,           // Restore and write the session cookie.
13
		revel.FlashFilter,             // Restore and write the flash cookie.
14
		revel.ValidationFilter,        // Restore kept validation errors and save new ones from cookie.
15
		revel.I18nFilter,              // Resolve the requested language
16
		HeaderFilter,                  // Add some security based headers
17
		revel.InterceptorFilter,       // Run interceptors around the action.
18
		revel.CompressFilter,          // Compress the result.
19
		revel.ActionInvoker,           // Invoke the action.
20
	}
21
22
	// register startup functions with OnAppStart
23
	// ( order dependent )
24
	// revel.OnAppStart(InitDB())
25
	// revel.OnAppStart(FillCache())
26
}
27
28
// TODO turn this into revel.HeaderFilter
29
// should probably also have a filter for CSRF
30
// not sure if it can go in the same filter or not
31
var HeaderFilter = func(c *revel.Controller, fc []revel.Filter) {
32
	// Add some common security headers
33
	c.Response.Out.Header().Add("X-Frame-Options", "SAMEORIGIN")
34
	c.Response.Out.Header().Add("X-XSS-Protection", "1; mode=block")
35
	c.Response.Out.Header().Add("X-Content-Type-Options", "nosniff")
36
37
	fc[0](c, fc[1:]) // Execute the next filter stage.
38
}

+ 132 - 0
app/routes/routes.go

@ -0,0 +1,132 @@
1
// GENERATED CODE - DO NOT EDIT
2
package routes
3
4
import "github.com/revel/revel"
5
6
7
type tApp struct {}
8
var App tApp
9
10
11
func (_ tApp) Index(
12
		) string {
13
	args := make(map[string]string)
14
	
15
	return revel.MainRouter.Reverse("App.Index", args).Url
16
}
17
18
func (_ tApp) About(
19
		) string {
20
	args := make(map[string]string)
21
	
22
	return revel.MainRouter.Reverse("App.About", args).Url
23
}
24
25
func (_ tApp) Me(
26
		) string {
27
	args := make(map[string]string)
28
	
29
	return revel.MainRouter.Reverse("App.Me", args).Url
30
}
31
32
func (_ tApp) Stats(
33
		) string {
34
	args := make(map[string]string)
35
	
36
	return revel.MainRouter.Reverse("App.Stats", args).Url
37
}
38
39
func (_ tApp) Add(
40
		id int,
41
		product string,
42
		calories int,
43
		) string {
44
	args := make(map[string]string)
45
	
46
	revel.Unbind(args, "id", id)
47
	revel.Unbind(args, "product", product)
48
	revel.Unbind(args, "calories", calories)
49
	return revel.MainRouter.Reverse("App.Add", args).Url
50
}
51
52
func (_ tApp) Goal(
53
		) string {
54
	args := make(map[string]string)
55
	
56
	return revel.MainRouter.Reverse("App.Goal", args).Url
57
}
58
59
func (_ tApp) SetGoal(
60
		) string {
61
	args := make(map[string]string)
62
	
63
	return revel.MainRouter.Reverse("App.SetGoal", args).Url
64
}
65
66
func (_ tApp) Streak(
67
		) string {
68
	args := make(map[string]string)
69
	
70
	return revel.MainRouter.Reverse("App.Streak", args).Url
71
}
72
73
74
type tStatic struct {}
75
var Static tStatic
76
77
78
func (_ tStatic) Serve(
79
		prefix string,
80
		filepath string,
81
		) string {
82
	args := make(map[string]string)
83
	
84
	revel.Unbind(args, "prefix", prefix)
85
	revel.Unbind(args, "filepath", filepath)
86
	return revel.MainRouter.Reverse("Static.Serve", args).Url
87
}
88
89
func (_ tStatic) ServeModule(
90
		moduleName string,
91
		prefix string,
92
		filepath string,
93
		) string {
94
	args := make(map[string]string)
95
	
96
	revel.Unbind(args, "moduleName", moduleName)
97
	revel.Unbind(args, "prefix", prefix)
98
	revel.Unbind(args, "filepath", filepath)
99
	return revel.MainRouter.Reverse("Static.ServeModule", args).Url
100
}
101
102
103
type tTestRunner struct {}
104
var TestRunner tTestRunner
105
106
107
func (_ tTestRunner) Index(
108
		) string {
109
	args := make(map[string]string)
110
	
111
	return revel.MainRouter.Reverse("TestRunner.Index", args).Url
112
}
113
114
func (_ tTestRunner) Run(
115
		suite string,
116
		test string,
117
		) string {
118
	args := make(map[string]string)
119
	
120
	revel.Unbind(args, "suite", suite)
121
	revel.Unbind(args, "test", test)
122
	return revel.MainRouter.Reverse("TestRunner.Run", args).Url
123
}
124
125
func (_ tTestRunner) List(
126
		) string {
127
	args := make(map[string]string)
128
	
129
	return revel.MainRouter.Reverse("TestRunner.List", args).Url
130
}
131
132

+ 181 - 0
app/tmp/main.go

@ -0,0 +1,181 @@
1
// GENERATED CODE - DO NOT EDIT
2
package main
3
4
import (
5
	"flag"
6
	"reflect"
7
	"github.com/revel/revel"
8
	controllers0 "github.com/revel/revel/modules/static/app/controllers"
9
	_ "github.com/revel/revel/modules/testrunner/app"
10
	controllers1 "github.com/revel/revel/modules/testrunner/app/controllers"
11
	_ "grassfed/app"
12
	controllers "grassfed/app/controllers"
13
	tests "grassfed/tests"
14
)
15
16
var (
17
	runMode    *string = flag.String("runMode", "", "Run mode.")
18
	port       *int    = flag.Int("port", 0, "By default, read from app.conf")
19
	importPath *string = flag.String("importPath", "", "Go Import Path for the app.")
20
	srcPath    *string = flag.String("srcPath", "", "Path to the source root.")
21
22
	// So compiler won't complain if the generated code doesn't reference reflect package...
23
	_ = reflect.Invalid
24
)
25
26
func main() {
27
	flag.Parse()
28
	revel.Init(*runMode, *importPath, *srcPath)
29
	revel.INFO.Println("Running revel server")
30
	
31
	revel.RegisterController((*controllers.App)(nil),
32
		[]*revel.MethodType{
33
			&revel.MethodType{
34
				Name: "Index",
35
				Args: []*revel.MethodArg{ 
36
				},
37
				RenderArgNames: map[int][]string{ 
38
					10: []string{ 
39
					},
40
				},
41
			},
42
			&revel.MethodType{
43
				Name: "About",
44
				Args: []*revel.MethodArg{ 
45
				},
46
				RenderArgNames: map[int][]string{ 
47
					14: []string{ 
48
					},
49
				},
50
			},
51
			&revel.MethodType{
52
				Name: "Me",
53
				Args: []*revel.MethodArg{ 
54
				},
55
				RenderArgNames: map[int][]string{ 
56
					18: []string{ 
57
					},
58
				},
59
			},
60
			&revel.MethodType{
61
				Name: "Stats",
62
				Args: []*revel.MethodArg{ 
63
				},
64
				RenderArgNames: map[int][]string{ 
65
					22: []string{ 
66
					},
67
				},
68
			},
69
			&revel.MethodType{
70
				Name: "Add",
71
				Args: []*revel.MethodArg{ 
72
					&revel.MethodArg{Name: "id", Type: reflect.TypeOf((*int)(nil)) },
73
					&revel.MethodArg{Name: "product", Type: reflect.TypeOf((*string)(nil)) },
74
					&revel.MethodArg{Name: "calories", Type: reflect.TypeOf((*int)(nil)) },
75
				},
76
				RenderArgNames: map[int][]string{ 
77
					36: []string{ 
78
					},
79
				},
80
			},
81
			&revel.MethodType{
82
				Name: "Goal",
83
				Args: []*revel.MethodArg{ 
84
				},
85
				RenderArgNames: map[int][]string{ 
86
					40: []string{ 
87
					},
88
				},
89
			},
90
			&revel.MethodType{
91
				Name: "SetGoal",
92
				Args: []*revel.MethodArg{ 
93
				},
94
				RenderArgNames: map[int][]string{ 
95
					44: []string{ 
96
					},
97
				},
98
			},
99
			&revel.MethodType{
100
				Name: "Streak",
101
				Args: []*revel.MethodArg{ 
102
				},
103
				RenderArgNames: map[int][]string{ 
104
					48: []string{ 
105
					},
106
				},
107
			},
108
			
109
		})
110
	
111
	revel.RegisterController((*controllers0.Static)(nil),
112
		[]*revel.MethodType{
113
			&revel.MethodType{
114
				Name: "Serve",
115
				Args: []*revel.MethodArg{ 
116
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
117
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
118
				},
119
				RenderArgNames: map[int][]string{ 
120
				},
121
			},
122
			&revel.MethodType{
123
				Name: "ServeModule",
124
				Args: []*revel.MethodArg{ 
125
					&revel.MethodArg{Name: "moduleName", Type: reflect.TypeOf((*string)(nil)) },
126
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
127
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
128
				},
129
				RenderArgNames: map[int][]string{ 
130
				},
131
			},
132
			
133
		})
134
	
135
	revel.RegisterController((*controllers1.TestRunner)(nil),
136
		[]*revel.MethodType{
137
			&revel.MethodType{
138
				Name: "Index",
139
				Args: []*revel.MethodArg{ 
140
				},
141
				RenderArgNames: map[int][]string{ 
142
					46: []string{ 
143
						"testSuites",
144
					},
145
				},
146
			},
147
			&revel.MethodType{
148
				Name: "Run",
149
				Args: []*revel.MethodArg{ 
150
					&revel.MethodArg{Name: "suite", Type: reflect.TypeOf((*string)(nil)) },
151
					&revel.MethodArg{Name: "test", Type: reflect.TypeOf((*string)(nil)) },
152
				},
153
				RenderArgNames: map[int][]string{ 
154
					69: []string{ 
155
						"error",
156
					},
157
				},
158
			},
159
			&revel.MethodType{
160
				Name: "List",
161
				Args: []*revel.MethodArg{ 
162
				},
163
				RenderArgNames: map[int][]string{ 
164
				},
165
			},
166
			
167
		})
168
	
169
	revel.DefaultValidationKeys = map[string]map[int]string{ 
170
		"grassfed/app/controllers.App.Add": { 
171
			26: "id",
172
			27: "product",
173
			28: "calories",
174
		},
175
	}
176
	revel.TestSuites = []interface{}{ 
177
		(*tests.AppTest)(nil),
178
	}
179
180
	revel.Run(*port)
181
}

+ 6 - 0
app/views/App/About.html

@ -0,0 +1,6 @@
1
{{set . "title" "About Grassfed"}}
2
{{template "header.html" .}}
3
4
<div class="row"></div>
5
6
{{template "footer.html" .}}

+ 33 - 0
app/views/App/Index.html

@ -0,0 +1,33 @@
1
{{set . "title" "Home"}}
2
{{template "header.html" .}}
3
4
<div class="jumbotron">
5
    <h1></h1>
6
    
7
    <div class="row">
8
        <div class="col-md-4 text-center">
9
            <h3>0</h3>
10
            <h3>Users</h3>
11
        </div>
12
        <div class="col-md-4 text-center">
13
            <h3>0</h3>
14
            <h3>Something else</h3>
15
        </div>
16
        <div class="col-md-4 text-center">
17
            <h3>0</h3>
18
            <h3>And then...</h3>
19
        </div>
20
    </div>
21
</div>
22
<!--<span id="signinButton">
23
    <span
24
        class="g-signin"
25
        data-callback="onAuthentication"
26
        data-clientid="903785837828-lfsps917vkth7c88em9ieq0l0d0p35kb.apps.googleusercontent.com"
27
        data-cookiepolicy="single_host_origin"
28
        data-requestvisibleactions=""
29
        data-scope="profile">
30
    </span>
31
</span>-->
32
33
{{template "footer.html" .}}

+ 8 - 0
app/views/App/Me.html

@ -0,0 +1,8 @@
1
{{set . "title" "My Profile"}}
2
{{template "header.html" .}}
3
4
{{template "authentication.html" .}}
5
{{template "signup.html" .}}
6
{{template "profile.html" .}}
7
8
{{template "footer.html" .}}

+ 20 - 0
app/views/authentication.html

@ -0,0 +1,20 @@
1
<div id="authentication" class="row" style="padding: 40px 15px;">
2
    <div class="col-md-offset-4 col-md-4">
3
        <h1></h1>
4
5
        <img src="/public/img/signup.png" />
6
7
        <p>
8
            <!--<span id="signinButton">
9
                <span
10
                    class="g-signin"
11
                    data-callback="onAuthentication"
12
                    data-clientid="903785837828-lfsps917vkth7c88em9ieq0l0d0p35kb.apps.googleusercontent.com"
13
                    data-cookiepolicy="single_host_origin"
14
                    data-requestvisibleactions=""
15
                    data-scope="profile">
16
                </span>
17
            </span>-->
18
        </p>
19
    </div>
20
</div>

+ 64 - 0
app/views/debug.html

@ -0,0 +1,64 @@
1
<style type="text/css">
2
	#sidebar {
3
		position: absolute;
4
		right: 0px;
5
		top:69px;
6
		max-width: 75%;
7
		z-index: 1000;
8
		background-color: #fee;
9
		border: thin solid grey;
10
		padding: 10px;
11
	}
12
	#toggleSidebar {
13
		position: absolute;
14
		right: 0px;
15
		top: 50px;
16
		background-color: #fee;
17
	}
18
19
</style>
20
<div id="sidebar" style="display:none;">
21
	<h4>Available pipelines</h4>
22
	<dl>
23
	{{ range $index, $value := .}}
24
		<dt>{{$index}}</dt>
25
		<dd>{{$value}}</dd>
26
	{{end}}
27
	</dl>
28
	<h4>Flash</h4>
29
	<dl>
30
	{{ range $index, $value := .flash}}
31
		<dt>{{$index}}</dt>
32
		<dd>{{$value}}</dd>
33
	{{end}}
34
	</dl>
35
36
	<h4>Errors</h4>
37
	<dl>
38
	{{ range $index, $value := .errors}}
39
		<dt>{{$index}}</dt>
40
		<dd>{{$value}}</dd>
41
	{{end}}
42
	</dl>
43
</div>
44
<a id="toggleSidebar" href="#" class="toggles"><i class="icon-chevron-left"></i></a>
45
46
<script>
47
	$sidebar = 0;
48
	$('#toggleSidebar').click(function() {
49
		if ($sidebar === 1) {
50
			$('#sidebar').hide();
51
			$('#toggleSidebar i').addClass('icon-chevron-left');
52
			$('#toggleSidebar i').removeClass('icon-chevron-right');
53
			$sidebar = 0;
54
		}
55
		else {
56
			$('#sidebar').show();
57
			$('#toggleSidebar i').addClass('icon-chevron-right');
58
			$('#toggleSidebar i').removeClass('icon-chevron-left');
59
			$sidebar = 1;
60
		}
61
62
    return false;
63
	});
64
</script>

+ 20 - 0
app/views/errors/404.html

@ -0,0 +1,20 @@
1
<!DOCTYPE html>
2
<html lang="en">
3
	<head>
4
		<title>Not found</title>
5
	</head>
6
	<body>
7
{{if eq .RunMode "dev"}}
8
{{template "errors/404-dev.html" .}}
9
{{else}}
10
	{{with .Error}}
11
	<h1>
12
		{{.Title}}
13
	</h1>
14
	<p>
15
		{{.Description}}
16
	</p>
17
	{{end}}
18
{{end}}
19
	</body>
20
</html>

+ 16 - 0
app/views/errors/500.html

@ -0,0 +1,16 @@
1
<!DOCTYPE html>
2
<html>
3
	<head>
4
		<title>Application error</title>
5
	</head>
6
	<body>
7
		{{if eq .RunMode "dev"}}
8
		{{template "errors/500-dev.html" .}}
9
		{{else}}
10
		<h1>Oops, an error occured</h1>
11
		<p>
12
			This exception has been logged.
13
		</p>
14
		{{end}}
15
	</body>
16
</html>

+ 18 - 0
app/views/flash.html

@ -0,0 +1,18 @@
1
{{if .flash.success}}
2
<div class="alert alert-success">
3
	{{.flash.success}}
4
</div>
5
{{end}}
6
7
{{if or .errors .flash.error}}
8
<div class="alert alert-error">
9
	{{if .flash.error}}
10
		{{.flash.error}}
11
	{{end}}
12
	<ul style="margin-top:10px;">
13
		{{range .errors}}
14
			<li>{{.}}</li>
15
		{{end}}
16
	</ul>
17
</div>
18
{{end}}

+ 16 - 0
app/views/footer.html

@ -0,0 +1,16 @@
1
    </div>
2
3
    <script type="text/javascript" charset="utf-8" src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
4
    {{range .moreScripts}}
5
        <script type="text/javascript" charset="utf-8" src="/public/{{.}}"></script>
6
    {{end}}
7
    <script type="text/javascript" charset="utf-8" src="https://plus.google.com/js/client:plusone.js"></script>
8
    <script type="text/javascript" charset="utf-8" src="/public/js/Chart.min.js"></script>
9
    <script type="text/javascript" charset="utf-8" src="/public/js/googleplus.js"></script>
10
    <script type="text/javascript" charset="utf-8" src="/public/js/grassfed.js"></script>
11
  
12
    {{if eq .RunMode "dev"}}
13
        {{template "debug.html" .}}
14
    {{end}}
15
</body>
16
</html>

+ 44 - 0
app/views/header.html

@ -0,0 +1,44 @@
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
    <meta charset="utf-8">
5
    <meta http-equiv="X-UC-Compatible" content="IE=edge">
6
    <meta name="viewport" content="width=device-width, initial-scale=1">
7
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
8
9
    <title>{{.title}}</title>
10
11
    <link rel="shortcut icon" type="image/png" href="/public/img/favicon.png">
12
    <link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
13
    <link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
14
    {{range .moreStyles}}
15
        <link rel="stylesheet" type="text/css" href="/public/{{.}}">
16
    {{end}}
17
18
    <script type="text/javascript" charset="utf-8" src="/public/js/jquery-2.1.1.min.js"></script>
19
</head>
20
<body>
21
    <div class="navbar navbar-default navbar-fixed-top" role="navigation">
22
        <div class="container">
23
            <div class="navbar-header">
24
                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
25
                    <span class="sr-only">Toggle navigation</span>
26
                    <span class="icon-bar"></span>
27
                    <span class="icon-bar"></span>
28
                    <span class="icon-bar"></span>
29
                </button>
30
                <a class="navbar-brand" href="/">Grassfed</a>
31
            </div>
32
            <div class="navbar-collapse collapse">
33
                <ul class="nav navbar-nav">
34
                    <li class="active"><a href="/">Overview</a></li>
35
                    <li><a href="/about">About</a></li>
36
                    <li><a href="//github.com/revolvingcow/grassfed">Get The Code!</a></li>
37
                </ul>
38
                <ul class="nav navbar-nav navbar-right">
39
                    <li><a href="/me">My Profile</a></li>
40
                </ul>
41
            </div><!--/.nav-collapse -->
42
        </div>
43
    </div>
44
    <div class="container">

+ 45 - 0
app/views/profile.html

@ -0,0 +1,45 @@
1
<div id="profile" class="row" style="padding: 40px 15px;">
2
    <div class="col-md-8">
3
        <form action="/me/add" method="post" role="form" class="form-horizontal">
4
            <input name="id" type="hidden" value="" />
5
6
            <div class="form-group">
7
                <label for="product" class="col-sm-2 control-label">Consumed</label>
8
                <div class="col-sm-8">
9
                    <input name="product" type="text" value="" placeholder="What went down your pie hole?" class="form-control" />
10
                </div>
11
            </div>
12
            <div class="form-group">
13
                <label for="calories" class="col-sm-2 control-label">Calories</label>
14
                <div class="col-sm-3">
15
                    <input name="calories" type="number" value="0" class="form-control text-center" min="0" max="10000" step="100" />
16
                </div>
17
            </div>
18
            <div class="form-group">
19
                <div class="col-sm-offset-2 col-sm-4">
20
                    <input type="submit" value="Add" class="btn btn-primary" />
21
                </div>
22
            </div>
23
        </form>
24
    </div>
25
    <div class="col-md-4">
26
        <h3>Daily Goal</h3>
27
28
        <div class="text-center">
29
            <canvas id="goalChart" width="250" height="250"></canvas>
30
        </div>
31
32
        <form action="/me/goal" method="post" role="form" class="form-horizontal">
33
            <div class="form-group">
34
                <div class="col-sm-12 text-center">
35
                    <input name="calories" type="range" min="1000" max="3000" step="100" value="" class="form-control" />
36
                    <p style="padding-top: 0.35em;"><label for="calories">Daily:</label>&nbsp;<span class="goal">2000</span></p>
37
                </div>
38
            </div>
39
        </form>
40
41
        <h3>Streak</h3>
42
        <p class="text-center">0 days</p>
43
44
    </div>
45
</div>

+ 42 - 0
app/views/signup.html

@ -0,0 +1,42 @@
1
<div id="signup" class="jumbotron" style="display: none;">
2
    <h1>Let's get you started...</h1>
3
4
    <div class="row">
5
        <div class="col-md-12 text-center">
6
            <img src="/public/img/signup.png" />
7
        </div>
8
    </div>
9
10
    <form action="/goal" method="post" role="form" class="form-horizontal">
11
        <input name="id" type="hidden" value="" />
12
13
        <div class="row">
14
            <div class="col-md-4 text-center">
15
                <h3>Step 1: Sign In</h3>
16
17
                <p>
18
                    Done and done ;) 
19
                </p>
20
            </div>
21
            <div class="col-md-4 text-center">
22
                <h3>Step 2: Set A Goal</h3>
23
            
24
                <p>
25
                    <div class="form-group col-md-12">
26
                        <input name="calories" type="range" min="1000" max="3000" step="100" value="" class="form-control" />
27
                        <p style="padding-top: 0.35em;"><label for="calories">Daily:</label>&nbsp;<span class="goal">2000</span></p>
28
                    </div>
29
                </p>
30
            </div>
31
            <div class="col-md-4 text-center">
32
                <h3>Step 3: Have Fun!</h3>
33
34
                <p>
35
                    <div class="col-md-offset-2 col-md-8">
36
                        <input name="set" type="submit" value="Get Started" class="form-control btn btn-primary" />
37
                    </div>
38
                </p>
39
            </div>
40
        </div>
41
    </form>
42
</div>

+ 47 - 0
conf/app.conf

@ -0,0 +1,47 @@
1
app.name=grassfed
2
app.secret=LKfEwFXUpTy6uedNSLesni6xh7nV18sVwVWvbSJWGjUusrOvB8RHxrxPap0w4QPE
3
http.addr=
4
http.port=9000
5
http.ssl=false
6
http.sslcert=
7
http.sslkey=
8
cookie.httponly=false
9
cookie.prefix=REVEL
10
cookie.secure=false
11
format.date=01/02/2006
12
format.datetime=01/02/2006 15:04
13
results.chunked=false
14
15
log.trace.prefix = "TRACE "
16
log.info.prefix  = "INFO  "
17
log.warn.prefix  = "WARN  "
18
log.error.prefix = "ERROR "
19
20
# The default language of this application.
21
i18n.default_language=en
22
23
module.static=github.com/revel/revel/modules/static
24
25
[dev]
26
mode.dev=true
27
results.pretty=true
28
watch=true
29
30
module.testrunner = github.com/revel/revel/modules/testrunner
31
32
log.trace.output = off
33
log.info.output  = stderr
34
log.warn.output  = stderr
35
log.error.output = stderr
36
37
[prod]
38
mode.dev=false
39
results.pretty=false
40
watch=false
41
42
module.testrunner =
43
44
log.trace.output = off
45
log.info.output  = off
46
log.warn.output  = %(app.name)s.log
47
log.error.output = %(app.name)s.log

+ 23 - 0
conf/routes

@ -0,0 +1,23 @@
1
# Routes
2
# This file defines all application routes (Higher priority routes first)
3
# ~~~~
4
5
module:testrunner
6
7
GET     /                                       App.Index
8
GET     /about                                  App.About
9
GET     /me                                     App.Me
10
GET     /me/stats                               App.Stats
11
POST    /me/add                                 App.Add
12
GET     /me/goal                                App.Goal
13
POST    /me/goal                                App.SetGoal
14
GET     /me/streak                              App.Streak
15
16
# Ignore favicon requests
17
GET     /favicon.ico                            404
18
19
# Map static resources from the /app/public folder to the /public path
20
GET     /public/*filepath                       Static.Serve("public")
21
22
# Catch all
23
*       /:controller/:action                    :controller.:action

+ 7 - 0
messages/sample.en

@ -0,0 +1,7 @@
1
# Sample messages file for the English language (en)
2
# Message file extensions should be ISO 639-1 codes (http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)
3
# Sections within each message file can optionally override the defaults using ISO 3166-1 alpha-2 codes (http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
4
# See also:
5
# - http://www.rfc-editor.org/rfc/bcp/bcp47.txt
6
# - http://www.w3.org/International/questions/qa-accept-lang-locales
7

+ 5774 - 0
public/css/bootstrap.css

@ -0,0 +1,5774 @@
1
/*!
2
 * Bootstrap v2.1.1
3
 *
4
 * Copyright 2012 Twitter, Inc
5
 * Licensed under the Apache License v2.0
6
 * http://www.apache.org/licenses/LICENSE-2.0
7
 *
8
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
 */
10
11
article,
12
aside,
13
details,
14
figcaption,
15
figure,
16
footer,
17
header,
18
hgroup,
19
nav,
20
section {
21
  display: block;
22
}
23
24
audio,
25
canvas,
26
video {
27
  display: inline-block;
28
  *display: inline;
29
  *zoom: 1;
30
}
31
32
audio:not([controls]) {
33
  display: none;
34
}
35
36
html {
37
  font-size: 100%;
38
  -webkit-text-size-adjust: 100%;
39
      -ms-text-size-adjust: 100%;
40
}
41
42
a:focus {
43
  outline: thin dotted #333;
44
  outline: 5px auto -webkit-focus-ring-color;
45
  outline-offset: -2px;
46
}
47
48
a:hover,
49
a:active {
50
  outline: 0;
51
}
52
53
sub,
54
sup {
55
  position: relative;
56
  font-size: 75%;
57
  line-height: 0;
58
  vertical-align: baseline;
59
}
60
61
sup {
62
  top: -0.5em;
63
}
64
65
sub {
66
  bottom: -0.25em;
67
}
68
69
img {
70
  width: auto\9;
71
  height: auto;
72
  max-width: 100%;
73
  vertical-align: middle;
74
  border: 0;
75
  -ms-interpolation-mode: bicubic;
76
}
77
78
#map_canvas img {
79
  max-width: none;
80
}
81
82
button,
83
input,
84
select,
85
textarea {
86
  margin: 0;
87
  font-size: 100%;
88
  vertical-align: middle;
89
}
90
91
button,
92
input {
93
  *overflow: visible;
94
  line-height: normal;
95
}
96
97
button::-moz-focus-inner,
98
input::-moz-focus-inner {
99
  padding: 0;
100
  border: 0;
101
}
102
103
button,
104
input[type="button"],
105
input[type="reset"],
106
input[type="submit"] {
107
  cursor: pointer;
108
  -webkit-appearance: button;
109
}
110
111
input[type="search"] {
112
  -webkit-box-sizing: content-box;
113
     -moz-box-sizing: content-box;
114
          box-sizing: content-box;
115
  -webkit-appearance: textfield;
116
}
117
118
input[type="search"]::-webkit-search-decoration,
119
input[type="search"]::-webkit-search-cancel-button {
120
  -webkit-appearance: none;
121
}
122
123
textarea {
124
  overflow: auto;
125
  vertical-align: top;
126
}
127
128
.clearfix {
129
  *zoom: 1;
130
}
131
132
.clearfix:before,
133
.clearfix:after {
134
  display: table;
135
  line-height: 0;
136
  content: "";
137
}
138
139
.clearfix:after {
140
  clear: both;
141
}
142
143
.hide-text {
144
  font: 0/0 a;
145
  color: transparent;
146
  text-shadow: none;
147
  background-color: transparent;
148
  border: 0;
149
}
150
151
.input-block-level {
152
  display: block;
153
  width: 100%;
154
  min-height: 30px;
155
  -webkit-box-sizing: border-box;
156
     -moz-box-sizing: border-box;
157
          box-sizing: border-box;
158
}
159
160
body {
161
  margin: 0;
162
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
163
  font-size: 14px;
164
  line-height: 20px;
165
  color: #333333;
166
  background-color: #ffffff;
167
}
168
169
a {
170
  color: #0088cc;
171
  text-decoration: none;
172
}
173
174
a:hover {
175
  color: #005580;
176
  text-decoration: underline;
177
}
178
179
.img-rounded {
180
  -webkit-border-radius: 6px;
181
     -moz-border-radius: 6px;
182
          border-radius: 6px;
183
}
184
185
.img-polaroid {
186
  padding: 4px;
187
  background-color: #fff;
188
  border: 1px solid #ccc;
189
  border: 1px solid rgba(0, 0, 0, 0.2);
190
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
191
     -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
192
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
193
}
194
195
.img-circle {
196
  -webkit-border-radius: 500px;
197
     -moz-border-radius: 500px;
198
          border-radius: 500px;
199
}
200
201
.row {
202
  margin-left: -20px;
203
  *zoom: 1;
204
}
205
206
.row:before,
207
.row:after {
208
  display: table;
209
  line-height: 0;
210
  content: "";
211
}
212
213
.row:after {
214
  clear: both;
215
}
216
217
[class*="span"] {
218
  float: left;
219
  min-height: 1px;
220
  margin-left: 20px;
221
}
222
223
.container,
224
.navbar-static-top .container,
225
.navbar-fixed-top .container,
226
.navbar-fixed-bottom .container {
227
  width: 940px;
228
}
229
230
.span12 {
231
  width: 940px;
232
}
233
234
.span11 {
235
  width: 860px;
236
}
237
238
.span10 {
239
  width: 780px;
240
}
241
242
.span9 {
243
  width: 700px;
244
}
245
246
.span8 {
247
  width: 620px;
248
}
249
250
.span7 {
251
  width: 540px;
252
}
253
254
.span6 {
255
  width: 460px;
256
}
257
258
.span5 {
259
  width: 380px;
260
}
261
262
.span4 {
263
  width: 300px;
264
}
265
266
.span3 {
267
  width: 220px;
268
}
269
270
.span2 {
271
  width: 140px;
272
}
273
274
.span1 {
275
  width: 60px;
276
}
277
278
.offset12 {
279
  margin-left: 980px;
280
}
281
282
.offset11 {
283
  margin-left: 900px;
284
}
285
286
.offset10 {
287
  margin-left: 820px;
288
}
289
290
.offset9 {
291
  margin-left: 740px;
292
}
293
294
.offset8 {
295
  margin-left: 660px;
296
}
297
298
.offset7 {
299
  margin-left: 580px;
300
}
301
302
.offset6 {
303
  margin-left: 500px;
304
}
305
306
.offset5 {
307
  margin-left: 420px;
308
}
309
310
.offset4 {
311
  margin-left: 340px;
312
}
313
314
.offset3 {
315
  margin-left: 260px;
316
}
317
318
.offset2 {
319
  margin-left: 180px;
320
}
321
322
.offset1 {
323
  margin-left: 100px;
324
}
325
326
.row-fluid {
327
  width: 100%;
328
  *zoom: 1;
329
}
330
331
.row-fluid:before,
332
.row-fluid:after {
333
  display: table;
334
  line-height: 0;
335
  content: "";
336
}
337
338
.row-fluid:after {
339
  clear: both;
340
}
341
342
.row-fluid [class*="span"] {
343
  display: block;
344
  float: left;
345
  width: 100%;
346
  min-height: 30px;
347
  margin-left: 2.127659574468085%;
348
  *margin-left: 2.074468085106383%;
349
  -webkit-box-sizing: border-box;
350
     -moz-box-sizing: border-box;
351
          box-sizing: border-box;
352
}
353
354
.row-fluid [class*="span"]:first-child {
355
  margin-left: 0;
356
}
357
358
.row-fluid .span12 {
359
  width: 100%;
360
  *width: 99.94680851063829%;
361
}
362
363
.row-fluid .span11 {
364
  width: 91.48936170212765%;
365
  *width: 91.43617021276594%;
366
}
367
368
.row-fluid .span10 {
369
  width: 82.97872340425532%;
370
  *width: 82.92553191489361%;
371
}
372
373
.row-fluid .span9 {
374
  width: 74.46808510638297%;
375
  *width: 74.41489361702126%;
376
}
377
378
.row-fluid .span8 {
379
  width: 65.95744680851064%;
380
  *width: 65.90425531914893%;
381
}
382
383
.row-fluid .span7 {
384
  width: 57.44680851063829%;
385
  *width: 57.39361702127659%;
386
}
387
388
.row-fluid .span6 {
389
  width: 48.93617021276595%;
390
  *width: 48.88297872340425%;
391
}
392
393
.row-fluid .span5 {
394
  width: 40.42553191489362%;
395
  *width: 40.37234042553192%;
396
}
397
398
.row-fluid .span4 {
399
  width: 31.914893617021278%;
400
  *width: 31.861702127659576%;
401
}
402
403
.row-fluid .span3 {
404
  width: 23.404255319148934%;
405
  *width: 23.351063829787233%;
406
}
407
408
.row-fluid .span2 {
409
  width: 14.893617021276595%;
410
  *width: 14.840425531914894%;
411
}
412
413
.row-fluid .span1 {
414
  width: 6.382978723404255%;
415
  *width: 6.329787234042553%;
416
}
417
418
.row-fluid .offset12 {
419
  margin-left: 104.25531914893617%;
420
  *margin-left: 104.14893617021275%;
421
}
422
423
.row-fluid .offset12:first-child {
424
  margin-left: 102.12765957446808%;
425
  *margin-left: 102.02127659574467%;
426
}
427
428
.row-fluid .offset11 {
429
  margin-left: 95.74468085106382%;
430
  *margin-left: 95.6382978723404%;
431
}
432
433
.row-fluid .offset11:first-child {
434
  margin-left: 93.61702127659574%;
435
  *margin-left: 93.51063829787232%;
436
}
437
438
.row-fluid .offset10 {
439
  margin-left: 87.23404255319149%;
440
  *margin-left: 87.12765957446807%;
441
}
442
443
.row-fluid .offset10:first-child {
444
  margin-left: 85.1063829787234%;
445
  *margin-left: 84.99999999999999%;
446
}
447
448
.row-fluid .offset9 {
449
  margin-left: 78.72340425531914%;
450
  *margin-left: 78.61702127659572%;
451
}
452
453
.row-fluid .offset9:first-child {
454
  margin-left: 76.59574468085106%;
455
  *margin-left: 76.48936170212764%;
456
}
457
458
.row-fluid .offset8 {
459
  margin-left: 70.2127659574468%;
460
  *margin-left: 70.10638297872339%;
461
}
462
463
.row-fluid .offset8:first-child {
464
  margin-left: 68.08510638297872%;
465
  *margin-left: 67.9787234042553%;
466
}
467
468
.row-fluid .offset7 {
469
  margin-left: 61.70212765957446%;
470
  *margin-left: 61.59574468085106%;
471
}
472
473
.row-fluid .offset7:first-child {
474
  margin-left: 59.574468085106375%;
475
  *margin-left: 59.46808510638297%;
476
}
477
478
.row-fluid .offset6 {
479
  margin-left: 53.191489361702125%;
480
  *margin-left: 53.085106382978715%;
481
}
482
483
.row-fluid .offset6:first-child {
484
  margin-left: 51.063829787234035%;
485
  *margin-left: 50.95744680851063%;
486
}
487
488
.row-fluid .offset5 {
489
  margin-left: 44.68085106382979%;
490
  *margin-left: 44.57446808510638%;
491
}
492
493
.row-fluid .offset5:first-child {
494
  margin-left: 42.5531914893617%;
495
  *margin-left: 42.4468085106383%;
496
}
497
498
.row-fluid .offset4 {
499
  margin-left: 36.170212765957444%;
500
  *margin-left: 36.06382978723405%;
501
}
502
503
.row-fluid .offset4:first-child {
504
  margin-left: 34.04255319148936%;
505
  *margin-left: 33.93617021276596%;
506
}
507
508
.row-fluid .offset3 {
509
  margin-left: 27.659574468085104%;
510
  *margin-left: 27.5531914893617%;
511
}
512
513
.row-fluid .offset3:first-child {
514
  margin-left: 25.53191489361702%;
515
  *margin-left: 25.425531914893618%;
516
}
517
518
.row-fluid .offset2 {
519
  margin-left: 19.148936170212764%;
520
  *margin-left: 19.04255319148936%;
521
}
522
523
.row-fluid .offset2:first-child {
524
  margin-left: 17.02127659574468%;
525
  *margin-left: 16.914893617021278%;
526
}
527
528
.row-fluid .offset1 {
529
  margin-left: 10.638297872340425%;
530
  *margin-left: 10.53191489361702%;
531
}
532
533
.row-fluid .offset1:first-child {
534
  margin-left: 8.51063829787234%;
535
  *margin-left: 8.404255319148938%;
536
}
537
538
[class*="span"].hide,
539
.row-fluid [class*="span"].hide {
540
  display: none;
541
}
542
543
[class*="span"].pull-right,
544
.row-fluid [class*="span"].pull-right {
545
  float: right;
546
}
547
548
.container {
549
  margin-right: auto;
550
  margin-left: auto;
551
  *zoom: 1;
552
}
553
554
.container:before,
555
.container:after {
556
  display: table;
557
  line-height: 0;
558
  content: "";
559
}
560
561
.container:after {
562
  clear: both;
563
}
564
565
.container-fluid {
566
  padding-right: 20px;
567
  padding-left: 20px;
568
  *zoom: 1;
569
}
570
571
.container-fluid:before,
572
.container-fluid:after {
573
  display: table;
574
  line-height: 0;
575
  content: "";
576
}
577
578
.container-fluid:after {
579
  clear: both;
580
}
581
582
p {
583
  margin: 0 0 10px;
584
}
585
586
.lead {
587
  margin-bottom: 20px;
588
  font-size: 21px;
589
  font-weight: 200;
590
  line-height: 30px;
591
}
592
593
small {
594
  font-size: 85%;
595
}
596
597
strong {
598
  font-weight: bold;
599
}
600
601
em {
602
  font-style: italic;
603
}
604
605
cite {
606
  font-style: normal;
607
}
608
609
.muted {
610
  color: #999999;
611
}
612
613
.text-warning {
614
  color: #c09853;
615
}
616
617
.text-error {
618
  color: #b94a48;
619
}
620
621
.text-info {
622
  color: #3a87ad;
623
}
624
625
.text-success {
626
  color: #468847;
627
}
628
629
h1,
630
h2,
631
h3,
632
h4,
633
h5,
634
h6 {
635
  margin: 10px 0;
636
  font-family: inherit;
637
  font-weight: bold;
638
  line-height: 1;
639
  color: inherit;
640
  text-rendering: optimizelegibility;
641
}
642
643
h1 small,
644
h2 small,
645
h3 small,
646
h4 small,
647
h5 small,
648
h6 small {
649
  font-weight: normal;
650
  line-height: 1;
651
  color: #999999;
652
}
653
654
h1 {
655
  font-size: 36px;
656
  line-height: 40px;
657
}
658
659
h2 {
660
  font-size: 30px;
661
  line-height: 40px;
662
}
663
664
h3 {
665
  font-size: 24px;
666
  line-height: 40px;
667
}
668
669
h4 {
670
  font-size: 18px;
671
  line-height: 20px;
672
}
673
674
h5 {
675
  font-size: 14px;
676
  line-height: 20px;
677
}
678
679
h6 {
680
  font-size: 12px;
681
  line-height: 20px;
682
}
683
684
h1 small {
685
  font-size: 24px;
686
}
687
688
h2 small {
689
  font-size: 18px;
690
}
691
692
h3 small {
693
  font-size: 14px;
694
}
695
696
h4 small {
697
  font-size: 14px;
698
}
699
700
.page-header {
701
  padding-bottom: 9px;
702
  margin: 20px 0 30px;
703
  border-bottom: 1px solid #eeeeee;
704
}
705
706
ul,
707
ol {
708
  padding: 0;
709
  margin: 0 0 10px 25px;
710
}
711
712
ul ul,
713
ul ol,
714
ol ol,
715
ol ul {
716
  margin-bottom: 0;
717
}
718
719
li {
720
  line-height: 20px;
721
}
722
723
ul.unstyled,
724
ol.unstyled {
725
  margin-left: 0;
726
  list-style: none;
727
}
728
729
dl {
730
  margin-bottom: 20px;
731
}
732
733
dt,
734
dd {
735
  line-height: 20px;
736
}
737
738
dt {
739
  font-weight: bold;
740
}
741
742
dd {
743
  margin-left: 10px;
744
}
745
746
.dl-horizontal {
747
  *zoom: 1;
748
}
749
750
.dl-horizontal:before,
751
.dl-horizontal:after {
752
  display: table;
753
  line-height: 0;
754
  content: "";
755
}
756
757
.dl-horizontal:after {
758
  clear: both;
759
}
760
761
.dl-horizontal dt {
762
  float: left;
763
  width: 160px;
764
  overflow: hidden;
765
  clear: left;
766
  text-align: right;
767
  text-overflow: ellipsis;
768
  white-space: nowrap;
769
}
770
771
.dl-horizontal dd {
772
  margin-left: 180px;
773
}
774
775
hr {
776
  margin: 20px 0;
777
  border: 0;
778
  border-top: 1px solid #eeeeee;
779
  border-bottom: 1px solid #ffffff;
780
}
781
782
abbr[title] {
783
  cursor: help;
784
  border-bottom: 1px dotted #999999;
785
}
786
787
abbr.initialism {
788
  font-size: 90%;
789
  text-transform: uppercase;
790
}
791
792
blockquote {
793
  padding: 0 0 0 15px;
794
  margin: 0 0 20px;
795
  border-left: 5px solid #eeeeee;
796
}
797
798
blockquote p {
799
  margin-bottom: 0;
800
  font-size: 16px;
801
  font-weight: 300;
802
  line-height: 25px;
803
}
804
805
blockquote small {
806
  display: block;
807
  line-height: 20px;
808
  color: #999999;
809
}
810
811
blockquote small:before {
812
  content: '\2014 \00A0';
813
}
814
815
blockquote.pull-right {
816
  float: right;
817
  padding-right: 15px;
818
  padding-left: 0;
819
  border-right: 5px solid #eeeeee;
820
  border-left: 0;
821
}
822
823
blockquote.pull-right p,
824
blockquote.pull-right small {
825
  text-align: right;
826
}
827
828
blockquote.pull-right small:before {
829
  content: '';
830
}
831
832
blockquote.pull-right small:after {
833
  content: '\00A0 \2014';
834
}
835
836
q:before,
837
q:after,
838
blockquote:before,
839
blockquote:after {
840
  content: "";
841
}
842
843
address {
844
  display: block;
845
  margin-bottom: 20px;
846
  font-style: normal;
847
  line-height: 20px;
848
}
849
850
code,
851
pre {
852
  padding: 0 3px 2px;
853
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
854
  font-size: 12px;
855
  color: #333333;
856
  -webkit-border-radius: 3px;
857
     -moz-border-radius: 3px;
858
          border-radius: 3px;
859
}
860
861
code {
862
  padding: 2px 4px;
863
  color: #d14;
864
  background-color: #f7f7f9;
865
  border: 1px solid #e1e1e8;
866
}
867
868
pre {
869
  display: block;
870
  padding: 9.5px;
871
  margin: 0 0 10px;
872
  font-size: 13px;
873
  line-height: 20px;
874
  word-break: break-all;
875
  word-wrap: break-word;
876
  white-space: pre;
877
  white-space: pre-wrap;
878
  background-color: #f5f5f5;
879
  border: 1px solid #ccc;
880
  border: 1px solid rgba(0, 0, 0, 0.15);
881
  -webkit-border-radius: 4px;
882
     -moz-border-radius: 4px;
883
          border-radius: 4px;
884
}
885
886
pre.prettyprint {
887
  margin-bottom: 20px;
888
}
889
890
pre code {
891
  padding: 0;
892
  color: inherit;
893
  background-color: transparent;
894
  border: 0;
895
}
896
897
.pre-scrollable {
898
  max-height: 340px;
899
  overflow-y: scroll;
900
}
901
902
form {
903
  margin: 0 0 20px;
904
}
905
906
fieldset {
907
  padding: 0;
908
  margin: 0;
909
  border: 0;
910
}
911
912
legend {
913
  display: block;
914
  width: 100%;
915
  padding: 0;
916
  margin-bottom: 20px;
917
  font-size: 21px;
918
  line-height: 40px;
919
  color: #333333;
920
  border: 0;
921
  border-bottom: 1px solid #e5e5e5;
922
}
923
924
legend small {
925
  font-size: 15px;
926
  color: #999999;
927
}
928
929
label,
930
input,
931
button,
932
select,
933
textarea {
934
  font-size: 14px;
935
  font-weight: normal;
936
  line-height: 20px;
937
}
938
939
input,
940
button,
941
select,
942
textarea {
943
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
944
}
945
946
label {
947
  display: block;
948
  margin-bottom: 5px;
949
}
950
951
select,
952
textarea,
953
input[type="text"],
954
input[type="password"],
955
input[type="datetime"],
956
input[type="datetime-local"],
957
input[type="date"],
958
input[type="month"],
959
input[type="time"],
960
input[type="week"],
961
input[type="number"],
962
input[type="email"],
963
input[type="url"],
964
input[type="search"],
965
input[type="tel"],
966
input[type="color"],
967
.uneditable-input {
968
  display: inline-block;
969
  height: 20px;
970
  padding: 4px 6px;
971
  margin-bottom: 9px;
972
  font-size: 14px;
973
  line-height: 20px;
974
  color: #555555;
975
  -webkit-border-radius: 3px;
976
     -moz-border-radius: 3px;
977
          border-radius: 3px;
978
}
979
980
input,
981
textarea,
982
.uneditable-input {
983
  width: 206px;
984
}
985
986
textarea {
987
  height: auto;
988
}
989
990
textarea,
991
input[type="text"],
992
input[type="password"],
993
input[type="datetime"],
994
input[type="datetime-local"],
995
input[type="date"],
996
input[type="month"],
997
input[type="time"],
998
input[type="week"],
999
input[type="number"],
1000
input[type="email"],
1001
input[type="url"],
1002
input[type="search"],
1003
input[type="tel"],
1004
input[type="color"],
1005
.uneditable-input {
1006
  background-color: #ffffff;
1007
  border: 1px solid #cccccc;
1008
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1009
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1010
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1011
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
1012
     -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
1013
       -o-transition: border linear 0.2s, box-shadow linear 0.2s;
1014
          transition: border linear 0.2s, box-shadow linear 0.2s;
1015
}
1016
1017
textarea:focus,
1018
input[type="text"]:focus,
1019
input[type="password"]:focus,
1020
input[type="datetime"]:focus,
1021
input[type="datetime-local"]:focus,
1022
input[type="date"]:focus,
1023
input[type="month"]:focus,
1024
input[type="time"]:focus,
1025
input[type="week"]:focus,
1026
input[type="number"]:focus,
1027
input[type="email"]:focus,
1028
input[type="url"]:focus,
1029
input[type="search"]:focus,
1030
input[type="tel"]:focus,
1031
input[type="color"]:focus,
1032
.uneditable-input:focus {
1033
  border-color: rgba(82, 168, 236, 0.8);
1034
  outline: 0;
1035
  outline: thin dotted \9;
1036
  /* IE6-9 */
1037
1038
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1039
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1040
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1041
}
1042
1043
input[type="radio"],
1044
input[type="checkbox"] {
1045
  margin: 4px 0 0;
1046
  margin-top: 1px \9;
1047
  *margin-top: 0;
1048
  line-height: normal;
1049
  cursor: pointer;
1050
}
1051
1052
input[type="file"],
1053
input[type="image"],
1054
input[type="submit"],
1055
input[type="reset"],
1056
input[type="button"],
1057
input[type="radio"],
1058
input[type="checkbox"] {
1059
  width: auto;
1060
}
1061
1062
select,
1063
input[type="file"] {
1064
  height: 30px;
1065
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
1066
1067
  *margin-top: 4px;
1068
  /* For IE7, add top margin to align select with labels */
1069
1070
  line-height: 30px;
1071
}
1072
1073
select {
1074
  width: 220px;
1075
  background-color: #ffffff;
1076
  border: 1px solid #cccccc;
1077
}
1078
1079
select[multiple],
1080
select[size] {
1081
  height: auto;
1082
}
1083
1084
select:focus,
1085
input[type="file"]:focus,
1086
input[type="radio"]:focus,
1087
input[type="checkbox"]:focus {
1088
  outline: thin dotted #333;
1089
  outline: 5px auto -webkit-focus-ring-color;
1090
  outline-offset: -2px;
1091
}
1092
1093
.uneditable-input,
1094
.uneditable-textarea {
1095
  color: #999999;
1096
  cursor: not-allowed;
1097
  background-color: #fcfcfc;
1098
  border-color: #cccccc;
1099
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1100
     -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1101
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1102
}
1103
1104
.uneditable-input {
1105
  overflow: hidden;
1106
  white-space: nowrap;
1107
}
1108
1109
.uneditable-textarea {
1110
  width: auto;
1111
  height: auto;
1112
}
1113
1114
input:-moz-placeholder,
1115
textarea:-moz-placeholder {
1116
  color: #999999;
1117
}
1118
1119
input:-ms-input-placeholder,
1120
textarea:-ms-input-placeholder {
1121
  color: #999999;
1122
}
1123
1124
input::-webkit-input-placeholder,
1125
textarea::-webkit-input-placeholder {
1126
  color: #999999;
1127
}
1128
1129
.radio,
1130
.checkbox {
1131
  min-height: 18px;
1132
  padding-left: 18px;
1133
}
1134
1135
.radio input[type="radio"],
1136
.checkbox input[type="checkbox"] {
1137
  float: left;
1138
  margin-left: -18px;
1139
}
1140
1141
.controls > .radio:first-child,
1142
.controls > .checkbox:first-child {
1143
  padding-top: 5px;
1144
}
1145
1146
.radio.inline,
1147
.checkbox.inline {
1148
  display: inline-block;
1149
  padding-top: 5px;
1150
  margin-bottom: 0;
1151
  vertical-align: middle;
1152
}
1153
1154
.radio.inline + .radio.inline,
1155
.checkbox.inline + .checkbox.inline {
1156
  margin-left: 10px;
1157
}
1158
1159
.input-mini {
1160
  width: 60px;
1161
}
1162
1163
.input-small {
1164
  width: 90px;
1165
}
1166
1167
.input-medium {
1168
  width: 150px;
1169
}
1170
1171
.input-large {
1172
  width: 210px;
1173
}
1174
1175
.input-xlarge {
1176
  width: 270px;
1177
}
1178
1179
.input-xxlarge {
1180
  width: 530px;
1181
}
1182
1183
input[class*="span"],
1184
select[class*="span"],
1185
textarea[class*="span"],
1186
.uneditable-input[class*="span"],
1187
.row-fluid input[class*="span"],
1188
.row-fluid select[class*="span"],
1189
.row-fluid textarea[class*="span"],
1190
.row-fluid .uneditable-input[class*="span"] {
1191
  float: none;
1192
  margin-left: 0;
1193
}
1194
1195
.input-append input[class*="span"],
1196
.input-append .uneditable-input[class*="span"],
1197
.input-prepend input[class*="span"],
1198
.input-prepend .uneditable-input[class*="span"],
1199
.row-fluid input[class*="span"],
1200
.row-fluid select[class*="span"],
1201
.row-fluid textarea[class*="span"],
1202
.row-fluid .uneditable-input[class*="span"],
1203
.row-fluid .input-prepend [class*="span"],
1204
.row-fluid .input-append [class*="span"] {
1205
  display: inline-block;
1206
}
1207
1208
input,
1209
textarea,
1210
.uneditable-input {
1211
  margin-left: 0;
1212
}
1213
1214
.controls-row [class*="span"] + [class*="span"] {
1215
  margin-left: 20px;
1216
}
1217
1218
input.span12,
1219
textarea.span12,
1220
.uneditable-input.span12 {
1221
  width: 926px;
1222
}
1223
1224
input.span11,
1225
textarea.span11,
1226
.uneditable-input.span11 {
1227
  width: 846px;
1228
}
1229
1230
input.span10,
1231
textarea.span10,
1232
.uneditable-input.span10 {
1233
  width: 766px;
1234
}
1235
1236
input.span9,
1237
textarea.span9,
1238
.uneditable-input.span9 {
1239
  width: 686px;
1240
}
1241
1242
input.span8,
1243
textarea.span8,
1244
.uneditable-input.span8 {
1245
  width: 606px;
1246
}
1247
1248
input.span7,
1249
textarea.span7,
1250
.uneditable-input.span7 {
1251
  width: 526px;
1252
}
1253
1254
input.span6,
1255
textarea.span6,
1256
.uneditable-input.span6 {
1257
  width: 446px;
1258
}
1259
1260
input.span5,
1261
textarea.span5,
1262
.uneditable-input.span5 {
1263
  width: 366px;
1264
}
1265
1266
input.span4,
1267
textarea.span4,
1268
.uneditable-input.span4 {
1269
  width: 286px;
1270
}
1271
1272
input.span3,
1273
textarea.span3,
1274
.uneditable-input.span3 {
1275
  width: 206px;
1276
}
1277
1278
input.span2,
1279
textarea.span2,
1280
.uneditable-input.span2 {
1281
  width: 126px;
1282
}
1283
1284
input.span1,
1285
textarea.span1,
1286
.uneditable-input.span1 {
1287
  width: 46px;
1288
}
1289
1290
.controls-row {
1291
  *zoom: 1;
1292
}
1293
1294
.controls-row:before,
1295
.controls-row:after {
1296
  display: table;
1297
  line-height: 0;
1298
  content: "";
1299
}
1300
1301
.controls-row:after {
1302
  clear: both;
1303
}
1304
1305
.controls-row [class*="span"] {
1306
  float: left;
1307
}
1308
1309
input[disabled],
1310
select[disabled],
1311
textarea[disabled],
1312
input[readonly],
1313
select[readonly],
1314
textarea[readonly] {
1315
  cursor: not-allowed;
1316
  background-color: #eeeeee;
1317
}
1318
1319
input[type="radio"][disabled],
1320
input[type="checkbox"][disabled],
1321
input[type="radio"][readonly],
1322
input[type="checkbox"][readonly] {
1323
  background-color: transparent;
1324
}
1325
1326
.control-group.warning > label,
1327
.control-group.warning .help-block,
1328
.control-group.warning .help-inline {
1329
  color: #c09853;
1330
}
1331
1332
.control-group.warning .checkbox,
1333
.control-group.warning .radio,
1334
.control-group.warning input,
1335
.control-group.warning select,
1336
.control-group.warning textarea {
1337
  color: #c09853;
1338
}
1339
1340
.control-group.warning input,
1341
.control-group.warning select,
1342
.control-group.warning textarea {
1343
  border-color: #c09853;
1344
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1345
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1346
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1347
}
1348
1349
.control-group.warning input:focus,
1350
.control-group.warning select:focus,
1351
.control-group.warning textarea:focus {
1352
  border-color: #a47e3c;
1353
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1354
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1355
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1356
}
1357
1358
.control-group.warning .input-prepend .add-on,
1359
.control-group.warning .input-append .add-on {
1360
  color: #c09853;
1361
  background-color: #fcf8e3;
1362
  border-color: #c09853;
1363
}
1364
1365
.control-group.error > label,
1366
.control-group.error .help-block,
1367
.control-group.error .help-inline {
1368
  color: #b94a48;
1369
}
1370
1371
.control-group.error .checkbox,
1372
.control-group.error .radio,
1373
.control-group.error input,
1374
.control-group.error select,
1375
.control-group.error textarea {
1376
  color: #b94a48;
1377
}
1378
1379
.control-group.error input,
1380
.control-group.error select,
1381
.control-group.error textarea {
1382
  border-color: #b94a48;
1383
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1384
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1385
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1386
}
1387
1388
.control-group.error input:focus,
1389
.control-group.error select:focus,
1390
.control-group.error textarea:focus {
1391
  border-color: #953b39;
1392
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1393
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1394
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1395
}
1396
1397
.control-group.error .input-prepend .add-on,
1398
.control-group.error .input-append .add-on {
1399
  color: #b94a48;
1400
  background-color: #f2dede;
1401
  border-color: #b94a48;
1402
}
1403
1404
.control-group.success > label,
1405
.control-group.success .help-block,
1406
.control-group.success .help-inline {
1407
  color: #468847;
1408
}
1409
1410
.control-group.success .checkbox,
1411
.control-group.success .radio,
1412
.control-group.success input,
1413
.control-group.success select,
1414
.control-group.success textarea {
1415
  color: #468847;
1416
}
1417
1418
.control-group.success input,
1419
.control-group.success select,
1420
.control-group.success textarea {
1421
  border-color: #468847;
1422
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1423
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1424
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1425
}
1426
1427
.control-group.success input:focus,
1428
.control-group.success select:focus,
1429
.control-group.success textarea:focus {
1430
  border-color: #356635;
1431
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1432
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1433
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1434
}
1435
1436
.control-group.success .input-prepend .add-on,
1437
.control-group.success .input-append .add-on {
1438
  color: #468847;
1439
  background-color: #dff0d8;
1440
  border-color: #468847;
1441
}
1442
1443
.control-group.info > label,
1444
.control-group.info .help-block,
1445
.control-group.info .help-inline {
1446
  color: #3a87ad;
1447
}
1448
1449
.control-group.info .checkbox,
1450
.control-group.info .radio,
1451
.control-group.info input,
1452
.control-group.info select,
1453
.control-group.info textarea {
1454
  color: #3a87ad;
1455
}
1456
1457
.control-group.info input,
1458
.control-group.info select,
1459
.control-group.info textarea {
1460
  border-color: #3a87ad;
1461
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1462
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1463
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1464
}
1465
1466
.control-group.info input:focus,
1467
.control-group.info select:focus,
1468
.control-group.info textarea:focus {
1469
  border-color: #2d6987;
1470
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1471
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1472
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1473
}
1474
1475
.control-group.info .input-prepend .add-on,
1476
.control-group.info .input-append .add-on {
1477
  color: #3a87ad;
1478
  background-color: #d9edf7;
1479
  border-color: #3a87ad;
1480
}
1481
1482
input:focus:required:invalid,
1483
textarea:focus:required:invalid,
1484
select:focus:required:invalid {
1485
  color: #b94a48;
1486
  border-color: #ee5f5b;
1487
}
1488
1489
input:focus:required:invalid:focus,
1490
textarea:focus:required:invalid:focus,
1491
select:focus:required:invalid:focus {
1492
  border-color: #e9322d;
1493
  -webkit-box-shadow: 0 0 6px #f8b9b7;
1494
     -moz-box-shadow: 0 0 6px #f8b9b7;
1495
          box-shadow: 0 0 6px #f8b9b7;
1496
}
1497
1498
.form-actions {
1499
  padding: 19px 20px 20px;
1500
  margin-top: 20px;
1501
  margin-bottom: 20px;
1502
  background-color: #f5f5f5;
1503
  border-top: 1px solid #e5e5e5;
1504
  *zoom: 1;
1505
}
1506
1507
.form-actions:before,
1508
.form-actions:after {
1509
  display: table;
1510
  line-height: 0;
1511
  content: "";
1512
}
1513
1514
.form-actions:after {
1515
  clear: both;
1516
}
1517
1518
.help-block,
1519
.help-inline {
1520
  color: #595959;
1521
}
1522
1523
.help-block {
1524
  display: block;
1525
  margin-bottom: 10px;
1526
}
1527
1528
.help-inline {
1529
  display: inline-block;
1530
  *display: inline;
1531
  padding-left: 5px;
1532
  vertical-align: middle;
1533
  *zoom: 1;
1534
}
1535
1536
.input-append,
1537
.input-prepend {
1538
  margin-bottom: 5px;
1539
  font-size: 0;
1540
  white-space: nowrap;
1541
}
1542
1543
.input-append input,
1544
.input-prepend input,
1545
.input-append select,
1546
.input-prepend select,
1547
.input-append .uneditable-input,
1548
.input-prepend .uneditable-input {
1549
  position: relative;
1550
  margin-bottom: 0;
1551
  *margin-left: 0;
1552
  font-size: 14px;
1553
  vertical-align: top;
1554
  -webkit-border-radius: 0 3px 3px 0;
1555
     -moz-border-radius: 0 3px 3px 0;
1556
          border-radius: 0 3px 3px 0;
1557
}
1558
1559
.input-append input:focus,
1560
.input-prepend input:focus,
1561
.input-append select:focus,
1562
.input-prepend select:focus,
1563
.input-append .uneditable-input:focus,
1564
.input-prepend .uneditable-input:focus {
1565
  z-index: 2;
1566
}
1567
1568
.input-append .add-on,
1569
.input-prepend .add-on {
1570
  display: inline-block;
1571
  width: auto;
1572
  height: 20px;
1573
  min-width: 16px;
1574
  padding: 4px 5px;
1575
  font-size: 14px;
1576
  font-weight: normal;
1577
  line-height: 20px;
1578
  text-align: center;
1579
  text-shadow: 0 1px 0 #ffffff;
1580
  background-color: #eeeeee;
1581
  border: 1px solid #ccc;
1582
}
1583
1584
.input-append .add-on,
1585
.input-prepend .add-on,
1586
.input-append .btn,
1587
.input-prepend .btn {
1588
  vertical-align: top;
1589
  -webkit-border-radius: 0;
1590
     -moz-border-radius: 0;
1591
          border-radius: 0;
1592
}
1593
1594
.input-append .active,
1595
.input-prepend .active {
1596
  background-color: #a9dba9;
1597
  border-color: #46a546;
1598
}
1599
1600
.input-prepend .add-on,
1601
.input-prepend .btn {
1602
  margin-right: -1px;
1603
}
1604
1605
.input-prepend .add-on:first-child,
1606
.input-prepend .btn:first-child {
1607
  -webkit-border-radius: 3px 0 0 3px;
1608
     -moz-border-radius: 3px 0 0 3px;
1609
          border-radius: 3px 0 0 3px;
1610
}
1611
1612
.input-append input,
1613
.input-append select,
1614
.input-append .uneditable-input {
1615
  -webkit-border-radius: 3px 0 0 3px;
1616
     -moz-border-radius: 3px 0 0 3px;
1617
          border-radius: 3px 0 0 3px;
1618
}
1619
1620
.input-append .add-on,
1621
.input-append .btn {
1622
  margin-left: -1px;
1623
}
1624
1625
.input-append .add-on:last-child,
1626
.input-append .btn:last-child {
1627
  -webkit-border-radius: 0 3px 3px 0;
1628
     -moz-border-radius: 0 3px 3px 0;
1629
          border-radius: 0 3px 3px 0;
1630
}
1631
1632
.input-prepend.input-append input,
1633
.input-prepend.input-append select,
1634
.input-prepend.input-append .uneditable-input {
1635
  -webkit-border-radius: 0;
1636
     -moz-border-radius: 0;
1637
          border-radius: 0;
1638
}
1639
1640
.input-prepend.input-append .add-on:first-child,
1641
.input-prepend.input-append .btn:first-child {
1642
  margin-right: -1px;
1643
  -webkit-border-radius: 3px 0 0 3px;
1644
     -moz-border-radius: 3px 0 0 3px;
1645
          border-radius: 3px 0 0 3px;
1646
}
1647
1648
.input-prepend.input-append .add-on:last-child,
1649
.input-prepend.input-append .btn:last-child {
1650
  margin-left: -1px;
1651
  -webkit-border-radius: 0 3px 3px 0;
1652
     -moz-border-radius: 0 3px 3px 0;
1653
          border-radius: 0 3px 3px 0;
1654
}
1655
1656
input.search-query {
1657
  padding-right: 14px;
1658
  padding-right: 4px \9;
1659
  padding-left: 14px;
1660
  padding-left: 4px \9;
1661
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
1662
1663
  margin-bottom: 0;
1664
  -webkit-border-radius: 15px;
1665
     -moz-border-radius: 15px;
1666
          border-radius: 15px;
1667
}
1668
1669
/* Allow for input prepend/append in search forms */
1670
1671
.form-search .input-append .search-query,
1672
.form-search .input-prepend .search-query {
1673
  -webkit-border-radius: 0;
1674
     -moz-border-radius: 0;
1675
          border-radius: 0;
1676
}
1677
1678
.form-search .input-append .search-query {
1679
  -webkit-border-radius: 14px 0 0 14px;
1680
     -moz-border-radius: 14px 0 0 14px;
1681
          border-radius: 14px 0 0 14px;
1682
}
1683
1684
.form-search .input-append .btn {
1685
  -webkit-border-radius: 0 14px 14px 0;
1686
     -moz-border-radius: 0 14px 14px 0;
1687
          border-radius: 0 14px 14px 0;
1688
}
1689
1690
.form-search .input-prepend .search-query {
1691
  -webkit-border-radius: 0 14px 14px 0;
1692
     -moz-border-radius: 0 14px 14px 0;
1693
          border-radius: 0 14px 14px 0;
1694
}
1695
1696
.form-search .input-prepend .btn {
1697
  -webkit-border-radius: 14px 0 0 14px;
1698
     -moz-border-radius: 14px 0 0 14px;
1699
          border-radius: 14px 0 0 14px;
1700
}
1701
1702
.form-search input,
1703
.form-inline input,
1704
.form-horizontal input,
1705
.form-search textarea,
1706
.form-inline textarea,
1707
.form-horizontal textarea,
1708
.form-search select,
1709
.form-inline select,
1710
.form-horizontal select,
1711
.form-search .help-inline,
1712
.form-inline .help-inline,
1713
.form-horizontal .help-inline,
1714
.form-search .uneditable-input,
1715
.form-inline .uneditable-input,
1716
.form-horizontal .uneditable-input,
1717
.form-search .input-prepend,
1718
.form-inline .input-prepend,
1719
.form-horizontal .input-prepend,
1720
.form-search .input-append,
1721
.form-inline .input-append,
1722
.form-horizontal .input-append {
1723
  display: inline-block;
1724
  *display: inline;
1725
  margin-bottom: 0;
1726
  vertical-align: middle;
1727
  *zoom: 1;
1728
}
1729
1730
.form-search .hide,
1731
.form-inline .hide,
1732
.form-horizontal .hide {
1733
  display: none;
1734
}
1735
1736
.form-search label,
1737
.form-inline label,
1738
.form-search .btn-group,
1739
.form-inline .btn-group {
1740
  display: inline-block;
1741
}
1742
1743
.form-search .input-append,
1744
.form-inline .input-append,
1745
.form-search .input-prepend,
1746
.form-inline .input-prepend {
1747
  margin-bottom: 0;
1748
}
1749
1750
.form-search .radio,
1751
.form-search .checkbox,
1752
.form-inline .radio,
1753
.form-inline .checkbox {
1754
  padding-left: 0;
1755
  margin-bottom: 0;
1756
  vertical-align: middle;
1757
}
1758
1759
.form-search .radio input[type="radio"],
1760
.form-search .checkbox input[type="checkbox"],
1761
.form-inline .radio input[type="radio"],
1762
.form-inline .checkbox input[type="checkbox"] {
1763
  float: left;
1764
  margin-right: 3px;
1765
  margin-left: 0;
1766
}
1767
1768
.control-group {
1769
  margin-bottom: 10px;
1770
}
1771
1772
legend + .control-group {
1773
  margin-top: 20px;
1774
  -webkit-margin-top-collapse: separate;
1775
}
1776
1777
.form-horizontal .control-group {
1778
  margin-bottom: 20px;
1779
  *zoom: 1;
1780
}
1781
1782
.form-horizontal .control-group:before,
1783
.form-horizontal .control-group:after {
1784
  display: table;
1785
  line-height: 0;
1786
  content: "";
1787
}
1788
1789
.form-horizontal .control-group:after {
1790
  clear: both;
1791
}
1792
1793
.form-horizontal .control-label {
1794
  float: left;
1795
  width: 160px;
1796
  padding-top: 5px;
1797
  text-align: right;
1798
}
1799
1800
.form-horizontal .controls {
1801
  *display: inline-block;
1802
  *padding-left: 20px;
1803
  margin-left: 180px;
1804
  *margin-left: 0;
1805
}
1806
1807
.form-horizontal .controls:first-child {
1808
  *padding-left: 180px;
1809
}
1810
1811
.form-horizontal .help-block {
1812
  margin-bottom: 0;
1813
}
1814
1815
.form-horizontal input + .help-block,
1816
.form-horizontal select + .help-block,
1817
.form-horizontal textarea + .help-block {
1818
  margin-top: 10px;
1819
}
1820
1821
.form-horizontal .form-actions {
1822
  padding-left: 180px;
1823
}
1824
1825
table {
1826
  max-width: 100%;
1827
  background-color: transparent;
1828
  border-collapse: collapse;
1829
  border-spacing: 0;
1830
}
1831
1832
.table {
1833
  width: 100%;
1834
  margin-bottom: 20px;
1835
}
1836
1837
.table th,
1838
.table td {
1839
  padding: 8px;
1840
  line-height: 20px;
1841
  text-align: left;
1842
  vertical-align: top;
1843
  border-top: 1px solid #dddddd;
1844
}
1845
1846
.table th {
1847
  font-weight: bold;
1848
}
1849
1850
.table thead th {
1851
  vertical-align: bottom;
1852
}
1853
1854
.table caption + thead tr:first-child th,
1855
.table caption + thead tr:first-child td,
1856
.table colgroup + thead tr:first-child th,
1857
.table colgroup + thead tr:first-child td,
1858
.table thead:first-child tr:first-child th,
1859
.table thead:first-child tr:first-child td {
1860
  border-top: 0;
1861
}
1862
1863
.table tbody + tbody {
1864
  border-top: 2px solid #dddddd;
1865
}
1866
1867
.table-condensed th,
1868
.table-condensed td {
1869
  padding: 4px 5px;
1870
}
1871
1872
.table-bordered {
1873
  border: 1px solid #dddddd;
1874
  border-collapse: separate;
1875
  *border-collapse: collapse;
1876
  border-left: 0;
1877
  -webkit-border-radius: 4px;
1878
     -moz-border-radius: 4px;
1879
          border-radius: 4px;
1880
}
1881
1882
.table-bordered th,
1883
.table-bordered td {
1884
  border-left: 1px solid #dddddd;
1885
}
1886
1887
.table-bordered caption + thead tr:first-child th,
1888
.table-bordered caption + tbody tr:first-child th,
1889
.table-bordered caption + tbody tr:first-child td,
1890
.table-bordered colgroup + thead tr:first-child th,
1891
.table-bordered colgroup + tbody tr:first-child th,
1892
.table-bordered colgroup + tbody tr:first-child td,
1893
.table-bordered thead:first-child tr:first-child th,
1894
.table-bordered tbody:first-child tr:first-child th,
1895
.table-bordered tbody:first-child tr:first-child td {
1896
  border-top: 0;
1897
}
1898
1899
.table-bordered thead:first-child tr:first-child th:first-child,
1900
.table-bordered tbody:first-child tr:first-child td:first-child {
1901
  -webkit-border-top-left-radius: 4px;
1902
          border-top-left-radius: 4px;
1903
  -moz-border-radius-topleft: 4px;
1904
}
1905
1906
.table-bordered thead:first-child tr:first-child th:last-child,
1907
.table-bordered tbody:first-child tr:first-child td:last-child {
1908
  -webkit-border-top-right-radius: 4px;
1909
          border-top-right-radius: 4px;
1910
  -moz-border-radius-topright: 4px;
1911
}
1912
1913
.table-bordered thead:last-child tr:last-child th:first-child,
1914
.table-bordered tbody:last-child tr:last-child td:first-child,
1915
.table-bordered tfoot:last-child tr:last-child td:first-child {
1916
  -webkit-border-radius: 0 0 0 4px;
1917
     -moz-border-radius: 0 0 0 4px;
1918
          border-radius: 0 0 0 4px;
1919
  -webkit-border-bottom-left-radius: 4px;
1920
          border-bottom-left-radius: 4px;
1921
  -moz-border-radius-bottomleft: 4px;
1922
}
1923
1924
.table-bordered thead:last-child tr:last-child th:last-child,
1925
.table-bordered tbody:last-child tr:last-child td:last-child,
1926
.table-bordered tfoot:last-child tr:last-child td:last-child {
1927
  -webkit-border-bottom-right-radius: 4px;
1928
          border-bottom-right-radius: 4px;
1929
  -moz-border-radius-bottomright: 4px;
1930
}
1931
1932
.table-bordered caption + thead tr:first-child th:first-child,
1933
.table-bordered caption + tbody tr:first-child td:first-child,
1934
.table-bordered colgroup + thead tr:first-child th:first-child,
1935
.table-bordered colgroup + tbody tr:first-child td:first-child {
1936
  -webkit-border-top-left-radius: 4px;
1937
          border-top-left-radius: 4px;
1938
  -moz-border-radius-topleft: 4px;
1939
}
1940
1941
.table-bordered caption + thead tr:first-child th:last-child,
1942
.table-bordered caption + tbody tr:first-child td:last-child,
1943
.table-bordered colgroup + thead tr:first-child th:last-child,
1944
.table-bordered colgroup + tbody tr:first-child td:last-child {
1945
  -webkit-border-top-right-radius: 4px;
1946
          border-top-right-radius: 4px;
1947
  -moz-border-radius-topleft: 4px;
1948
}
1949
1950
.table-striped tbody tr:nth-child(odd) td,
1951
.table-striped tbody tr:nth-child(odd) th {
1952
  background-color: #f9f9f9;
1953
}
1954
1955
.table-hover tbody tr:hover td,
1956
.table-hover tbody tr:hover th {
1957
  background-color: #f5f5f5;
1958
}
1959
1960
table [class*=span],
1961
.row-fluid table [class*=span] {
1962
  display: table-cell;
1963
  float: none;
1964
  margin-left: 0;
1965
}
1966
1967
.table .span1 {
1968
  float: none;
1969
  width: 44px;
1970
  margin-left: 0;
1971
}
1972
1973
.table .span2 {
1974
  float: none;
1975
  width: 124px;
1976
  margin-left: 0;
1977
}
1978
1979
.table .span3 {
1980
  float: none;
1981
  width: 204px;
1982
  margin-left: 0;
1983
}
1984
1985
.table .span4 {
1986
  float: none;
1987
  width: 284px;
1988
  margin-left: 0;
1989
}
1990
1991
.table .span5 {
1992
  float: none;
1993
  width: 364px;
1994
  margin-left: 0;
1995
}
1996
1997
.table .span6 {
1998
  float: none;
1999
  width: 444px;
2000
  margin-left: 0;
2001
}
2002
2003
.table .span7 {
2004
  float: none;
2005
  width: 524px;
2006
  margin-left: 0;
2007
}
2008
2009
.table .span8 {
2010
  float: none;
2011
  width: 604px;
2012
  margin-left: 0;
2013
}
2014
2015
.table .span9 {
2016
  float: none;
2017
  width: 684px;
2018
  margin-left: 0;
2019
}
2020
2021
.table .span10 {
2022
  float: none;
2023
  width: 764px;
2024
  margin-left: 0;
2025
}
2026
2027
.table .span11 {
2028
  float: none;
2029
  width: 844px;
2030
  margin-left: 0;
2031
}
2032
2033
.table .span12 {
2034
  float: none;
2035
  width: 924px;
2036
  margin-left: 0;
2037
}
2038
2039
.table .span13 {
2040
  float: none;
2041
  width: 1004px;
2042
  margin-left: 0;
2043
}
2044
2045
.table .span14 {
2046
  float: none;
2047
  width: 1084px;
2048
  margin-left: 0;
2049
}
2050
2051
.table .span15 {
2052
  float: none;
2053
  width: 1164px;
2054
  margin-left: 0;
2055
}
2056
2057
.table .span16 {
2058
  float: none;
2059
  width: 1244px;
2060
  margin-left: 0;
2061
}
2062
2063
.table .span17 {
2064
  float: none;
2065
  width: 1324px;
2066
  margin-left: 0;
2067
}
2068
2069
.table .span18 {
2070
  float: none;
2071
  width: 1404px;
2072
  margin-left: 0;
2073
}
2074
2075
.table .span19 {
2076
  float: none;
2077
  width: 1484px;
2078
  margin-left: 0;
2079
}
2080
2081
.table .span20 {
2082
  float: none;
2083
  width: 1564px;
2084
  margin-left: 0;
2085
}
2086
2087
.table .span21 {
2088
  float: none;
2089
  width: 1644px;
2090
  margin-left: 0;
2091
}
2092
2093
.table .span22 {
2094
  float: none;
2095
  width: 1724px;
2096
  margin-left: 0;
2097
}
2098
2099
.table .span23 {
2100
  float: none;
2101
  width: 1804px;
2102
  margin-left: 0;
2103
}
2104
2105
.table .span24 {
2106
  float: none;
2107
  width: 1884px;
2108
  margin-left: 0;
2109
}
2110
2111
.table tbody tr.success td {
2112
  background-color: #dff0d8;
2113
}
2114
2115
.table tbody tr.error td {
2116
  background-color: #f2dede;
2117
}
2118
2119
.table tbody tr.warning td {
2120
  background-color: #fcf8e3;
2121
}
2122
2123
.table tbody tr.info td {
2124
  background-color: #d9edf7;
2125
}
2126
2127
.table-hover tbody tr.success:hover td {
2128
  background-color: #d0e9c6;
2129
}
2130
2131
.table-hover tbody tr.error:hover td {
2132
  background-color: #ebcccc;
2133
}
2134
2135
.table-hover tbody tr.warning:hover td {
2136
  background-color: #faf2cc;
2137
}
2138
2139
.table-hover tbody tr.info:hover td {
2140
  background-color: #c4e3f3;
2141
}
2142
2143
[class^="icon-"],
2144
[class*=" icon-"] {
2145
  display: inline-block;
2146
  width: 14px;
2147
  height: 14px;
2148
  margin-top: 1px;
2149
  *margin-right: .3em;
2150
  line-height: 14px;
2151
  vertical-align: text-top;
2152
  background-image: url("../img/glyphicons-halflings.png");
2153
  background-position: 14px 14px;
2154
  background-repeat: no-repeat;
2155
}
2156
2157
/* White icons with optional class, or on hover/active states of certain elements */
2158
2159
.icon-white,
2160
.nav-tabs > .active > a > [class^="icon-"],
2161
.nav-tabs > .active > a > [class*=" icon-"],
2162
.nav-pills > .active > a > [class^="icon-"],
2163
.nav-pills > .active > a > [class*=" icon-"],
2164
.nav-list > .active > a > [class^="icon-"],
2165
.nav-list > .active > a > [class*=" icon-"],
2166
.navbar-inverse .nav > .active > a > [class^="icon-"],
2167
.navbar-inverse .nav > .active > a > [class*=" icon-"],
2168
.dropdown-menu > li > a:hover > [class^="icon-"],
2169
.dropdown-menu > li > a:hover > [class*=" icon-"],
2170
.dropdown-menu > .active > a > [class^="icon-"],
2171
.dropdown-menu > .active > a > [class*=" icon-"] {
2172
  background-image: url("../img/glyphicons-halflings-white.png");
2173
}
2174
2175
.icon-glass {
2176
  background-position: 0      0;
2177
}
2178
2179
.icon-music {
2180
  background-position: -24px 0;
2181
}
2182
2183
.icon-search {
2184
  background-position: -48px 0;
2185
}
2186
2187
.icon-envelope {
2188
  background-position: -72px 0;
2189
}
2190
2191
.icon-heart {
2192
  background-position: -96px 0;
2193
}
2194
2195
.icon-star {
2196
  background-position: -120px 0;
2197
}
2198
2199
.icon-star-empty {
2200
  background-position: -144px 0;
2201
}
2202
2203
.icon-user {
2204
  background-position: -168px 0;
2205
}
2206
2207
.icon-film {
2208
  background-position: -192px 0;
2209
}
2210
2211
.icon-th-large {
2212
  background-position: -216px 0;
2213
}
2214
2215
.icon-th {
2216
  background-position: -240px 0;
2217
}
2218
2219
.icon-th-list {
2220
  background-position: -264px 0;
2221
}
2222
2223
.icon-ok {
2224
  background-position: -288px 0;
2225
}
2226
2227
.icon-remove {
2228
  background-position: -312px 0;
2229
}
2230
2231
.icon-zoom-in {
2232
  background-position: -336px 0;
2233
}
2234
2235
.icon-zoom-out {
2236
  background-position: -360px 0;
2237
}
2238
2239
.icon-off {
2240
  background-position: -384px 0;
2241
}
2242
2243
.icon-signal {
2244
  background-position: -408px 0;
2245
}
2246
2247
.icon-cog {
2248
  background-position: -432px 0;
2249
}
2250
2251
.icon-trash {
2252
  background-position: -456px 0;
2253
}
2254
2255
.icon-home {
2256
  background-position: 0 -24px;
2257
}
2258
2259
.icon-file {
2260
  background-position: -24px -24px;
2261
}
2262
2263
.icon-time {
2264
  background-position: -48px -24px;
2265
}
2266
2267
.icon-road {
2268
  background-position: -72px -24px;
2269
}
2270
2271
.icon-download-alt {
2272
  background-position: -96px -24px;
2273
}
2274
2275
.icon-download {
2276
  background-position: -120px -24px;
2277
}
2278
2279
.icon-upload {
2280
  background-position: -144px -24px;
2281
}
2282
2283
.icon-inbox {
2284
  background-position: -168px -24px;
2285
}
2286
2287
.icon-play-circle {
2288
  background-position: -192px -24px;
2289
}
2290
2291
.icon-repeat {
2292
  background-position: -216px -24px;
2293
}
2294
2295
.icon-refresh {
2296
  background-position: -240px -24px;
2297
}
2298
2299
.icon-list-alt {
2300
  background-position: -264px -24px;
2301
}
2302
2303
.icon-lock {
2304
  background-position: -287px -24px;
2305
}
2306
2307
.icon-flag {
2308
  background-position: -312px -24px;
2309
}
2310
2311
.icon-headphones {
2312
  background-position: -336px -24px;
2313
}
2314
2315
.icon-volume-off {
2316
  background-position: -360px -24px;
2317
}
2318
2319
.icon-volume-down {
2320
  background-position: -384px -24px;
2321
}
2322
2323
.icon-volume-up {
2324
  background-position: -408px -24px;
2325
}
2326
2327
.icon-qrcode {
2328
  background-position: -432px -24px;
2329
}
2330
2331
.icon-barcode {
2332
  background-position: -456px -24px;
2333
}
2334
2335
.icon-tag {
2336
  background-position: 0 -48px;
2337
}
2338
2339
.icon-tags {
2340
  background-position: -25px -48px;
2341
}
2342
2343
.icon-book {
2344
  background-position: -48px -48px;
2345
}
2346
2347
.icon-bookmark {
2348
  background-position: -72px -48px;
2349
}
2350
2351
.icon-print {
2352
  background-position: -96px -48px;
2353
}
2354
2355
.icon-camera {
2356
  background-position: -120px -48px;
2357
}
2358
2359
.icon-font {
2360
  background-position: -144px -48px;
2361
}
2362
2363
.icon-bold {
2364
  background-position: -167px -48px;
2365
}
2366
2367
.icon-italic {
2368
  background-position: -192px -48px;
2369
}
2370
2371
.icon-text-height {
2372
  background-position: -216px -48px;
2373
}
2374
2375
.icon-text-width {
2376
  background-position: -240px -48px;
2377
}
2378
2379
.icon-align-left {
2380
  background-position: -264px -48px;
2381
}
2382
2383
.icon-align-center {
2384
  background-position: -288px -48px;
2385
}
2386
2387
.icon-align-right {
2388
  background-position: -312px -48px;
2389
}
2390
2391
.icon-align-justify {
2392
  background-position: -336px -48px;
2393
}
2394
2395
.icon-list {
2396
  background-position: -360px -48px;
2397
}
2398
2399
.icon-indent-left {
2400
  background-position: -384px -48px;
2401
}
2402
2403
.icon-indent-right {
2404
  background-position: -408px -48px;
2405
}
2406
2407
.icon-facetime-video {
2408
  background-position: -432px -48px;
2409
}
2410
2411
.icon-picture {
2412
  background-position: -456px -48px;
2413
}
2414
2415
.icon-pencil {
2416
  background-position: 0 -72px;
2417
}
2418
2419
.icon-map-marker {
2420
  background-position: -24px -72px;
2421
}
2422
2423
.icon-adjust {
2424
  background-position: -48px -72px;
2425
}
2426
2427
.icon-tint {
2428
  background-position: -72px -72px;
2429
}
2430
2431
.icon-edit {
2432
  background-position: -96px -72px;
2433
}
2434
2435
.icon-share {
2436
  background-position: -120px -72px;
2437
}
2438
2439
.icon-check {
2440
  background-position: -144px -72px;
2441
}
2442
2443
.icon-move {
2444
  background-position: -168px -72px;
2445
}
2446
2447
.icon-step-backward {
2448
  background-position: -192px -72px;
2449
}
2450
2451
.icon-fast-backward {
2452
  background-position: -216px -72px;
2453
}
2454
2455
.icon-backward {
2456
  background-position: -240px -72px;
2457
}
2458
2459
.icon-play {
2460
  background-position: -264px -72px;
2461
}
2462
2463
.icon-pause {
2464
  background-position: -288px -72px;
2465
}
2466
2467
.icon-stop {
2468
  background-position: -312px -72px;
2469
}
2470
2471
.icon-forward {
2472
  background-position: -336px -72px;
2473
}
2474
2475
.icon-fast-forward {
2476
  background-position: -360px -72px;
2477
}
2478
2479
.icon-step-forward {
2480
  background-position: -384px -72px;
2481
}
2482
2483
.icon-eject {
2484
  background-position: -408px -72px;
2485
}
2486
2487
.icon-chevron-left {
2488
  background-position: -432px -72px;
2489
}
2490
2491
.icon-chevron-right {
2492
  background-position: -456px -72px;
2493
}
2494
2495
.icon-plus-sign {
2496
  background-position: 0 -96px;
2497
}
2498
2499
.icon-minus-sign {
2500
  background-position: -24px -96px;
2501
}
2502
2503
.icon-remove-sign {
2504
  background-position: -48px -96px;
2505
}
2506
2507
.icon-ok-sign {
2508
  background-position: -72px -96px;
2509
}
2510
2511
.icon-question-sign {
2512
  background-position: -96px -96px;
2513
}
2514
2515
.icon-info-sign {
2516
  background-position: -120px -96px;
2517
}
2518
2519
.icon-screenshot {
2520
  background-position: -144px -96px;
2521
}
2522
2523
.icon-remove-circle {
2524
  background-position: -168px -96px;
2525
}
2526
2527
.icon-ok-circle {
2528
  background-position: -192px -96px;
2529
}
2530
2531
.icon-ban-circle {
2532
  background-position: -216px -96px;
2533
}
2534
2535
.icon-arrow-left {
2536
  background-position: -240px -96px;
2537
}
2538
2539
.icon-arrow-right {
2540
  background-position: -264px -96px;
2541
}
2542
2543
.icon-arrow-up {
2544
  background-position: -289px -96px;
2545
}
2546
2547
.icon-arrow-down {
2548
  background-position: -312px -96px;
2549
}
2550
2551
.icon-share-alt {
2552
  background-position: -336px -96px;
2553
}
2554
2555
.icon-resize-full {
2556
  background-position: -360px -96px;
2557
}
2558
2559
.icon-resize-small {
2560
  background-position: -384px -96px;
2561
}
2562
2563
.icon-plus {
2564
  background-position: -408px -96px;
2565
}
2566
2567
.icon-minus {
2568
  background-position: -433px -96px;
2569
}
2570
2571
.icon-asterisk {
2572
  background-position: -456px -96px;
2573
}
2574
2575
.icon-exclamation-sign {
2576
  background-position: 0 -120px;
2577
}
2578
2579
.icon-gift {
2580
  background-position: -24px -120px;
2581
}
2582
2583
.icon-leaf {
2584
  background-position: -48px -120px;
2585
}
2586
2587
.icon-fire {
2588
  background-position: -72px -120px;
2589
}
2590
2591
.icon-eye-open {
2592
  background-position: -96px -120px;
2593
}
2594
2595
.icon-eye-close {
2596
  background-position: -120px -120px;
2597
}
2598
2599
.icon-warning-sign {
2600
  background-position: -144px -120px;
2601
}
2602
2603
.icon-plane {
2604
  background-position: -168px -120px;
2605
}
2606
2607
.icon-calendar {
2608
  background-position: -192px -120px;
2609
}
2610
2611
.icon-random {
2612
  width: 16px;
2613
  background-position: -216px -120px;
2614
}
2615
2616
.icon-comment {
2617
  background-position: -240px -120px;
2618
}
2619
2620
.icon-magnet {
2621
  background-position: -264px -120px;
2622
}
2623
2624
.icon-chevron-up {
2625
  background-position: -288px -120px;
2626
}
2627
2628
.icon-chevron-down {
2629
  background-position: -313px -119px;
2630
}
2631
2632
.icon-retweet {
2633
  background-position: -336px -120px;
2634
}
2635
2636
.icon-shopping-cart {
2637
  background-position: -360px -120px;
2638
}
2639
2640
.icon-folder-close {
2641
  background-position: -384px -120px;
2642
}
2643
2644
.icon-folder-open {
2645
  width: 16px;
2646
  background-position: -408px -120px;
2647
}
2648
2649
.icon-resize-vertical {
2650
  background-position: -432px -119px;
2651
}
2652
2653
.icon-resize-horizontal {
2654
  background-position: -456px -118px;
2655
}
2656
2657
.icon-hdd {
2658
  background-position: 0 -144px;
2659
}
2660
2661
.icon-bullhorn {
2662
  background-position: -24px -144px;
2663
}
2664
2665
.icon-bell {
2666
  background-position: -48px -144px;
2667
}
2668
2669
.icon-certificate {
2670
  background-position: -72px -144px;
2671
}
2672
2673
.icon-thumbs-up {
2674
  background-position: -96px -144px;
2675
}
2676
2677
.icon-thumbs-down {
2678
  background-position: -120px -144px;
2679
}
2680
2681
.icon-hand-right {
2682
  background-position: -144px -144px;
2683
}
2684
2685
.icon-hand-left {
2686
  background-position: -168px -144px;
2687
}
2688
2689
.icon-hand-up {
2690
  background-position: -192px -144px;
2691
}
2692
2693
.icon-hand-down {
2694
  background-position: -216px -144px;
2695
}
2696
2697
.icon-circle-arrow-right {
2698
  background-position: -240px -144px;
2699
}
2700
2701
.icon-circle-arrow-left {
2702
  background-position: -264px -144px;
2703
}
2704
2705
.icon-circle-arrow-up {
2706
  background-position: -288px -144px;
2707
}
2708
2709
.icon-circle-arrow-down {
2710
  background-position: -312px -144px;
2711
}
2712
2713
.icon-globe {
2714
  background-position: -336px -144px;
2715
}
2716
2717
.icon-wrench {
2718
  background-position: -360px -144px;
2719
}
2720
2721
.icon-tasks {
2722
  background-position: -384px -144px;
2723
}
2724
2725
.icon-filter {
2726
  background-position: -408px -144px;
2727
}
2728
2729
.icon-briefcase {
2730
  background-position: -432px -144px;
2731
}
2732
2733
.icon-fullscreen {
2734
  background-position: -456px -144px;
2735
}
2736
2737
.dropup,
2738
.dropdown {
2739
  position: relative;
2740
}
2741
2742
.dropdown-toggle {
2743
  *margin-bottom: -3px;
2744
}
2745
2746
.dropdown-toggle:active,
2747
.open .dropdown-toggle {
2748
  outline: 0;
2749
}
2750
2751
.caret {
2752
  display: inline-block;
2753
  width: 0;
2754
  height: 0;
2755
  vertical-align: top;
2756
  border-top: 4px solid #000000;
2757
  border-right: 4px solid transparent;
2758
  border-left: 4px solid transparent;
2759
  content: "";
2760
}
2761
2762
.dropdown .caret {
2763
  margin-top: 8px;
2764
  margin-left: 2px;
2765
}
2766
2767
.dropdown-menu {
2768
  position: absolute;
2769
  top: 100%;
2770
  left: 0;
2771
  z-index: 1000;
2772
  display: none;
2773
  float: left;
2774
  min-width: 160px;
2775
  padding: 5px 0;
2776
  margin: 2px 0 0;
2777
  list-style: none;
2778
  background-color: #ffffff;
2779
  border: 1px solid #ccc;
2780
  border: 1px solid rgba(0, 0, 0, 0.2);
2781
  *border-right-width: 2px;
2782
  *border-bottom-width: 2px;
2783
  -webkit-border-radius: 6px;
2784
     -moz-border-radius: 6px;
2785
          border-radius: 6px;
2786
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2787
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2788
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2789
  -webkit-background-clip: padding-box;
2790
     -moz-background-clip: padding;
2791
          background-clip: padding-box;
2792
}
2793
2794
.dropdown-menu.pull-right {
2795
  right: 0;
2796
  left: auto;
2797
}
2798
2799
.dropdown-menu .divider {
2800
  *width: 100%;
2801
  height: 1px;
2802
  margin: 9px 1px;
2803
  *margin: -5px 0 5px;
2804
  overflow: hidden;
2805
  background-color: #e5e5e5;
2806
  border-bottom: 1px solid #ffffff;
2807
}
2808
2809
.dropdown-menu a {
2810
  display: block;
2811
  padding: 3px 20px;
2812
  clear: both;
2813
  font-weight: normal;
2814
  line-height: 20px;
2815
  color: #333333;
2816
  white-space: nowrap;
2817
}
2818
2819
.dropdown-menu li > a:hover,
2820
.dropdown-menu li > a:focus,
2821
.dropdown-submenu:hover > a {
2822
  color: #ffffff;
2823
  text-decoration: none;
2824
  background-color: #0088cc;
2825
  background-color: #0081c2;
2826
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2827
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2828
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2829
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2830
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2831
  background-repeat: repeat-x;
2832
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2833
}
2834
2835
.dropdown-menu .active > a,
2836
.dropdown-menu .active > a:hover {
2837
  color: #ffffff;
2838
  text-decoration: none;
2839
  background-color: #0088cc;
2840
  background-color: #0081c2;
2841
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2842
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2843
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2844
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2845
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2846
  background-repeat: repeat-x;
2847
  outline: 0;
2848
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2849
}
2850
2851
.dropdown-menu .disabled > a,
2852
.dropdown-menu .disabled > a:hover {
2853
  color: #999999;
2854
}
2855
2856
.dropdown-menu .disabled > a:hover {
2857
  text-decoration: none;
2858
  cursor: default;
2859
  background-color: transparent;
2860
}
2861
2862
.open {
2863
  *z-index: 1000;
2864
}
2865
2866
.open > .dropdown-menu {
2867
  display: block;
2868
}
2869
2870
.pull-right > .dropdown-menu {
2871
  right: 0;
2872
  left: auto;
2873
}
2874
2875
.dropup .caret,
2876
.navbar-fixed-bottom .dropdown .caret {
2877
  border-top: 0;
2878
  border-bottom: 4px solid #000000;
2879
  content: "";
2880
}
2881
2882
.dropup .dropdown-menu,
2883
.navbar-fixed-bottom .dropdown .dropdown-menu {
2884
  top: auto;
2885
  bottom: 100%;
2886
  margin-bottom: 1px;
2887
}
2888
2889
.dropdown-submenu {
2890
  position: relative;
2891
}
2892
2893
.dropdown-submenu > .dropdown-menu {
2894
  top: 0;
2895
  left: 100%;
2896
  margin-top: -6px;
2897
  margin-left: -1px;
2898
  -webkit-border-radius: 0 6px 6px 6px;
2899
     -moz-border-radius: 0 6px 6px 6px;
2900
          border-radius: 0 6px 6px 6px;
2901
}
2902
2903
.dropdown-submenu:hover > .dropdown-menu {
2904
  display: block;
2905
}
2906
2907
.dropdown-submenu > a:after {
2908
  display: block;
2909
  float: right;
2910
  width: 0;
2911
  height: 0;
2912
  margin-top: 5px;
2913
  margin-right: -10px;
2914
  border-color: transparent;
2915
  border-left-color: #cccccc;
2916
  border-style: solid;
2917
  border-width: 5px 0 5px 5px;
2918
  content: " ";
2919
}
2920
2921
.dropdown-submenu:hover > a:after {
2922
  border-left-color: #ffffff;
2923
}
2924
2925
.dropdown .dropdown-menu .nav-header {
2926
  padding-right: 20px;
2927
  padding-left: 20px;
2928
}
2929
2930
.typeahead {
2931
  margin-top: 2px;
2932
  -webkit-border-radius: 4px;
2933
     -moz-border-radius: 4px;
2934
          border-radius: 4px;
2935
}
2936
2937
.well {
2938
  min-height: 20px;
2939
  padding: 19px;
2940
  margin-bottom: 20px;
2941
  background-color: #f5f5f5;
2942
  border: 1px solid #e3e3e3;
2943
  -webkit-border-radius: 4px;
2944
     -moz-border-radius: 4px;
2945
          border-radius: 4px;
2946
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2947
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2948
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2949
}
2950
2951
.well blockquote {
2952
  border-color: #ddd;
2953
  border-color: rgba(0, 0, 0, 0.15);
2954
}
2955
2956
.well-large {
2957
  padding: 24px;
2958
  -webkit-border-radius: 6px;
2959
     -moz-border-radius: 6px;
2960
          border-radius: 6px;
2961
}
2962
2963
.well-small {
2964
  padding: 9px;
2965
  -webkit-border-radius: 3px;
2966
     -moz-border-radius: 3px;
2967
          border-radius: 3px;
2968
}
2969
2970
.fade {
2971
  opacity: 0;
2972
  -webkit-transition: opacity 0.15s linear;
2973
     -moz-transition: opacity 0.15s linear;
2974
       -o-transition: opacity 0.15s linear;
2975
          transition: opacity 0.15s linear;
2976
}
2977
2978
.fade.in {
2979
  opacity: 1;
2980
}
2981
2982
.collapse {
2983
  position: relative;
2984
  height: 0;
2985
  overflow: hidden;
2986
  -webkit-transition: height 0.35s ease;
2987
     -moz-transition: height 0.35s ease;
2988
       -o-transition: height 0.35s ease;
2989
          transition: height 0.35s ease;
2990
}
2991
2992
.collapse.in {
2993
  height: auto;
2994
}
2995
2996
.close {
2997
  float: right;
2998
  font-size: 20px;
2999
  font-weight: bold;
3000
  line-height: 20px;
3001
  color: #000000;
3002
  text-shadow: 0 1px 0 #ffffff;
3003
  opacity: 0.2;
3004
  filter: alpha(opacity=20);
3005
}
3006
3007
.close:hover {
3008
  color: #000000;
3009
  text-decoration: none;
3010
  cursor: pointer;
3011
  opacity: 0.4;
3012
  filter: alpha(opacity=40);
3013
}
3014
3015
button.close {
3016
  padding: 0;
3017
  cursor: pointer;
3018
  background: transparent;
3019
  border: 0;
3020
  -webkit-appearance: none;
3021
}
3022
3023
.btn {
3024
  display: inline-block;
3025
  *display: inline;
3026
  padding: 4px 14px;
3027
  margin-bottom: 0;
3028
  *margin-left: .3em;
3029
  font-size: 14px;
3030
  line-height: 20px;
3031
  *line-height: 20px;
3032
  color: #333333;
3033
  text-align: center;
3034
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
3035
  vertical-align: middle;
3036
  cursor: pointer;
3037
  background-color: #f5f5f5;
3038
  *background-color: #e6e6e6;
3039
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
3040
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
3041
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
3042
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
3043
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
3044
  background-repeat: repeat-x;
3045
  border: 1px solid #bbbbbb;
3046
  *border: 0;
3047
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3048
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
3049
  border-bottom-color: #a2a2a2;
3050
  -webkit-border-radius: 4px;
3051
     -moz-border-radius: 4px;
3052
          border-radius: 4px;
3053
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
3054
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3055
  *zoom: 1;
3056
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3057
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3058
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3059
}
3060
3061
.btn:hover,
3062
.btn:active,
3063
.btn.active,
3064
.btn.disabled,
3065
.btn[disabled] {
3066
  color: #333333;
3067
  background-color: #e6e6e6;
3068
  *background-color: #d9d9d9;
3069
}
3070
3071
.btn:active,
3072
.btn.active {
3073
  background-color: #cccccc \9;
3074
}
3075
3076
.btn:first-child {
3077
  *margin-left: 0;
3078
}
3079
3080
.btn:hover {
3081
  color: #333333;
3082
  text-decoration: none;
3083
  background-color: #e6e6e6;
3084
  *background-color: #d9d9d9;
3085
  /* Buttons in IE7 don't get borders, so darken on hover */
3086
3087
  background-position: 0 -15px;
3088
  -webkit-transition: background-position 0.1s linear;
3089
     -moz-transition: background-position 0.1s linear;
3090
       -o-transition: background-position 0.1s linear;
3091
          transition: background-position 0.1s linear;
3092
}
3093
3094
.btn:focus {
3095
  outline: thin dotted #333;
3096
  outline: 5px auto -webkit-focus-ring-color;
3097
  outline-offset: -2px;
3098
}
3099
3100
.btn.active,
3101
.btn:active {
3102
  background-color: #e6e6e6;
3103
  background-color: #d9d9d9 \9;
3104
  background-image: none;
3105
  outline: 0;
3106
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3107
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3108
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3109
}
3110
3111
.btn.disabled,
3112
.btn[disabled] {
3113
  cursor: default;
3114
  background-color: #e6e6e6;
3115
  background-image: none;
3116
  opacity: 0.65;
3117
  filter: alpha(opacity=65);
3118
  -webkit-box-shadow: none;
3119
     -moz-box-shadow: none;
3120
          box-shadow: none;
3121
}
3122
3123
.btn-large {
3124
  padding: 9px 14px;
3125
  font-size: 16px;
3126
  line-height: normal;
3127
  -webkit-border-radius: 5px;
3128
     -moz-border-radius: 5px;
3129
          border-radius: 5px;
3130
}
3131
3132
.btn-large [class^="icon-"] {
3133
  margin-top: 2px;
3134
}
3135
3136
.btn-small {
3137
  padding: 3px 9px;
3138
  font-size: 12px;
3139
  line-height: 18px;
3140
}
3141
3142
.btn-small [class^="icon-"] {
3143
  margin-top: 0;
3144
}
3145
3146
.btn-mini {
3147
  padding: 2px 6px;
3148
  font-size: 11px;
3149
  line-height: 17px;
3150
}
3151
3152
.btn-block {
3153
  display: block;
3154
  width: 100%;
3155
  padding-right: 0;
3156
  padding-left: 0;
3157
  -webkit-box-sizing: border-box;
3158
     -moz-box-sizing: border-box;
3159
          box-sizing: border-box;
3160
}
3161
3162
.btn-block + .btn-block {
3163
  margin-top: 5px;
3164
}
3165
3166
input[type="submit"].btn-block,
3167
input[type="reset"].btn-block,
3168
input[type="button"].btn-block {
3169
  width: 100%;
3170
}
3171
3172
.btn-primary.active,
3173
.btn-warning.active,
3174
.btn-danger.active,
3175
.btn-success.active,
3176
.btn-info.active,
3177
.btn-inverse.active {
3178
  color: rgba(255, 255, 255, 0.75);
3179
}
3180
3181
.btn {
3182
  border-color: #c5c5c5;
3183
  border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
3184
}
3185
3186
.btn-primary {
3187
  color: #ffffff;
3188
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3189
  background-color: #006dcc;
3190
  *background-color: #0044cc;
3191
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
3192
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
3193
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
3194
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
3195
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
3196
  background-repeat: repeat-x;
3197
  border-color: #0044cc #0044cc #002a80;
3198
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3199
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
3200
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3201
}
3202
3203
.btn-primary:hover,
3204
.btn-primary:active,
3205
.btn-primary.active,
3206
.btn-primary.disabled,
3207
.btn-primary[disabled] {
3208
  color: #ffffff;
3209
  background-color: #0044cc;
3210
  *background-color: #003bb3;
3211
}
3212
3213
.btn-primary:active,
3214
.btn-primary.active {
3215
  background-color: #003399 \9;
3216
}
3217
3218
.btn-warning {
3219
  color: #ffffff;
3220
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3221
  background-color: #faa732;
3222
  *background-color: #f89406;
3223
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
3224
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
3225
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
3226
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
3227
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
3228
  background-repeat: repeat-x;
3229
  border-color: #f89406 #f89406 #ad6704;
3230
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3231
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
3232
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3233
}
3234
3235
.btn-warning:hover,
3236
.btn-warning:active,
3237
.btn-warning.active,
3238
.btn-warning.disabled,
3239
.btn-warning[disabled] {
3240
  color: #ffffff;
3241
  background-color: #f89406;
3242
  *background-color: #df8505;
3243
}
3244
3245
.btn-warning:active,
3246
.btn-warning.active {
3247
  background-color: #c67605 \9;
3248
}
3249
3250
.btn-danger {
3251
  color: #ffffff;
3252
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3253
  background-color: #da4f49;
3254
  *background-color: #bd362f;
3255
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
3256
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
3257
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
3258
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
3259
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
3260
  background-repeat: repeat-x;
3261
  border-color: #bd362f #bd362f #802420;
3262
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3263
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
3264
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3265
}
3266
3267
.btn-danger:hover,
3268
.btn-danger:active,
3269
.btn-danger.active,
3270
.btn-danger.disabled,
3271
.btn-danger[disabled] {
3272
  color: #ffffff;
3273
  background-color: #bd362f;
3274
  *background-color: #a9302a;
3275
}
3276
3277
.btn-danger:active,
3278
.btn-danger.active {
3279
  background-color: #942a25 \9;
3280
}
3281
3282
.btn-success {
3283
  color: #ffffff;
3284
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3285
  background-color: #5bb75b;
3286
  *background-color: #51a351;
3287
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
3288
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
3289
  background-image: -o-linear-gradient(top, #62c462, #51a351);
3290
  background-image: linear-gradient(to bottom, #62c462, #51a351);
3291
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
3292
  background-repeat: repeat-x;
3293
  border-color: #51a351 #51a351 #387038;
3294
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3295
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
3296
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3297
}
3298
3299
.btn-success:hover,
3300
.btn-success:active,
3301
.btn-success.active,
3302
.btn-success.disabled,
3303
.btn-success[disabled] {
3304
  color: #ffffff;
3305
  background-color: #51a351;
3306
  *background-color: #499249;
3307
}
3308
3309
.btn-success:active,
3310
.btn-success.active {
3311
  background-color: #408140 \9;
3312
}
3313
3314
.btn-info {
3315
  color: #ffffff;
3316
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3317
  background-color: #49afcd;
3318
  *background-color: #2f96b4;
3319
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
3320
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
3321
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
3322
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
3323
  background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
3324
  background-repeat: repeat-x;
3325
  border-color: #2f96b4 #2f96b4 #1f6377;
3326
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3327
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
3328
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3329
}
3330
3331
.btn-info:hover,
3332
.btn-info:active,
3333
.btn-info.active,
3334
.btn-info.disabled,
3335
.btn-info[disabled] {
3336
  color: #ffffff;
3337
  background-color: #2f96b4;
3338
  *background-color: #2a85a0;
3339
}
3340
3341
.btn-info:active,
3342
.btn-info.active {
3343
  background-color: #24748c \9;
3344
}
3345
3346
.btn-inverse {
3347
  color: #ffffff;
3348
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3349
  background-color: #363636;
3350
  *background-color: #222222;
3351
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
3352
  background-image: -webkit-linear-gradient(top, #444444, #222222);
3353
  background-image: -o-linear-gradient(top, #444444, #222222);
3354
  background-image: linear-gradient(to bottom, #444444, #222222);
3355
  background-image: -moz-linear-gradient(top, #444444, #222222);
3356
  background-repeat: repeat-x;
3357
  border-color: #222222 #222222 #000000;
3358
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3359
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
3360
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3361
}
3362
3363
.btn-inverse:hover,
3364
.btn-inverse:active,
3365
.btn-inverse.active,
3366
.btn-inverse.disabled,
3367
.btn-inverse[disabled] {
3368
  color: #ffffff;
3369
  background-color: #222222;
3370
  *background-color: #151515;
3371
}
3372
3373
.btn-inverse:active,
3374
.btn-inverse.active {
3375
  background-color: #080808 \9;
3376
}
3377
3378
button.btn,
3379
input[type="submit"].btn {
3380
  *padding-top: 3px;
3381
  *padding-bottom: 3px;
3382
}
3383
3384
button.btn::-moz-focus-inner,
3385
input[type="submit"].btn::-moz-focus-inner {
3386
  padding: 0;
3387
  border: 0;
3388
}
3389
3390
button.btn.btn-large,
3391
input[type="submit"].btn.btn-large {
3392
  *padding-top: 7px;
3393
  *padding-bottom: 7px;
3394
}
3395
3396
button.btn.btn-small,
3397
input[type="submit"].btn.btn-small {
3398
  *padding-top: 3px;
3399
  *padding-bottom: 3px;
3400
}
3401
3402
button.btn.btn-mini,
3403
input[type="submit"].btn.btn-mini {
3404
  *padding-top: 1px;
3405
  *padding-bottom: 1px;
3406
}
3407
3408
.btn-link,
3409
.btn-link:active,
3410
.btn-link[disabled] {
3411
  background-color: transparent;
3412
  background-image: none;
3413
  -webkit-box-shadow: none;
3414
     -moz-box-shadow: none;
3415
          box-shadow: none;
3416
}
3417
3418
.btn-link {
3419
  color: #0088cc;
3420
  cursor: pointer;
3421
  border-color: transparent;
3422
  -webkit-border-radius: 0;
3423
     -moz-border-radius: 0;
3424
          border-radius: 0;
3425
}
3426
3427
.btn-link:hover {
3428
  color: #005580;
3429
  text-decoration: underline;
3430
  background-color: transparent;
3431
}
3432
3433
.btn-link[disabled]:hover {
3434
  color: #333333;
3435
  text-decoration: none;
3436
}
3437
3438
.btn-group {
3439
  position: relative;
3440
  *margin-left: .3em;
3441
  font-size: 0;
3442
  white-space: nowrap;
3443
  vertical-align: middle;
3444
}
3445
3446
.btn-group:first-child {
3447
  *margin-left: 0;
3448
}
3449
3450
.btn-group + .btn-group {
3451
  margin-left: 5px;
3452
}
3453
3454
.btn-toolbar {
3455
  margin-top: 10px;
3456
  margin-bottom: 10px;
3457
  font-size: 0;
3458
}
3459
3460
.btn-toolbar .btn-group {
3461
  display: inline-block;
3462
  *display: inline;
3463
  /* IE7 inline-block hack */
3464
3465
  *zoom: 1;
3466
}
3467
3468
.btn-toolbar .btn + .btn,
3469
.btn-toolbar .btn-group + .btn,
3470
.btn-toolbar .btn + .btn-group {
3471
  margin-left: 5px;
3472
}
3473
3474
.btn-group > .btn {
3475
  position: relative;
3476
  -webkit-border-radius: 0;
3477
     -moz-border-radius: 0;
3478
          border-radius: 0;
3479
}
3480
3481
.btn-group > .btn + .btn {
3482
  margin-left: -1px;
3483
}
3484
3485
.btn-group > .btn,
3486
.btn-group > .dropdown-menu {
3487
  font-size: 14px;
3488
}
3489
3490
.btn-group > .btn-mini {
3491
  font-size: 11px;
3492
}
3493
3494
.btn-group > .btn-small {
3495
  font-size: 12px;
3496
}
3497
3498
.btn-group > .btn-large {
3499
  font-size: 16px;
3500
}
3501
3502
.btn-group > .btn:first-child {
3503
  margin-left: 0;
3504
  -webkit-border-bottom-left-radius: 4px;
3505
          border-bottom-left-radius: 4px;
3506
  -webkit-border-top-left-radius: 4px;
3507
          border-top-left-radius: 4px;
3508
  -moz-border-radius-bottomleft: 4px;
3509
  -moz-border-radius-topleft: 4px;
3510
}
3511
3512
.btn-group > .btn:last-child,
3513
.btn-group > .dropdown-toggle {
3514
  -webkit-border-top-right-radius: 4px;
3515
          border-top-right-radius: 4px;
3516
  -webkit-border-bottom-right-radius: 4px;
3517
          border-bottom-right-radius: 4px;
3518
  -moz-border-radius-topright: 4px;
3519
  -moz-border-radius-bottomright: 4px;
3520
}
3521
3522
.btn-group > .btn.large:first-child {
3523
  margin-left: 0;
3524
  -webkit-border-bottom-left-radius: 6px;
3525
          border-bottom-left-radius: 6px;
3526
  -webkit-border-top-left-radius: 6px;
3527
          border-top-left-radius: 6px;
3528
  -moz-border-radius-bottomleft: 6px;
3529
  -moz-border-radius-topleft: 6px;
3530
}
3531
3532
.btn-group > .btn.large:last-child,
3533
.btn-group > .large.dropdown-toggle {
3534
  -webkit-border-top-right-radius: 6px;
3535
          border-top-right-radius: 6px;
3536
  -webkit-border-bottom-right-radius: 6px;
3537
          border-bottom-right-radius: 6px;
3538
  -moz-border-radius-topright: 6px;
3539
  -moz-border-radius-bottomright: 6px;
3540
}
3541
3542
.btn-group > .btn:hover,
3543
.btn-group > .btn:focus,
3544
.btn-group > .btn:active,
3545
.btn-group > .btn.active {
3546
  z-index: 2;
3547
}
3548
3549
.btn-group .dropdown-toggle:active,
3550
.btn-group.open .dropdown-toggle {
3551
  outline: 0;
3552
}
3553
3554
.btn-group > .btn + .dropdown-toggle {
3555
  *padding-top: 5px;
3556
  padding-right: 8px;
3557
  *padding-bottom: 5px;
3558
  padding-left: 8px;
3559
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3560
     -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3561
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3562
}
3563
3564
.btn-group > .btn-mini + .dropdown-toggle {
3565
  *padding-top: 2px;
3566
  padding-right: 5px;
3567
  *padding-bottom: 2px;
3568
  padding-left: 5px;
3569
}
3570
3571
.btn-group > .btn-small + .dropdown-toggle {
3572
  *padding-top: 5px;
3573
  *padding-bottom: 4px;
3574
}
3575
3576
.btn-group > .btn-large + .dropdown-toggle {
3577
  *padding-top: 7px;
3578
  padding-right: 12px;
3579
  *padding-bottom: 7px;
3580
  padding-left: 12px;
3581
}
3582
3583
.btn-group.open .dropdown-toggle {
3584
  background-image: none;
3585
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3586
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3587
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3588
}
3589
3590
.btn-group.open .btn.dropdown-toggle {
3591
  background-color: #e6e6e6;
3592
}
3593
3594
.btn-group.open .btn-primary.dropdown-toggle {
3595
  background-color: #0044cc;
3596
}
3597
3598
.btn-group.open .btn-warning.dropdown-toggle {
3599
  background-color: #f89406;
3600
}
3601
3602
.btn-group.open .btn-danger.dropdown-toggle {
3603
  background-color: #bd362f;
3604
}
3605
3606
.btn-group.open .btn-success.dropdown-toggle {
3607
  background-color: #51a351;
3608
}
3609
3610
.btn-group.open .btn-info.dropdown-toggle {
3611
  background-color: #2f96b4;
3612
}
3613
3614
.btn-group.open .btn-inverse.dropdown-toggle {
3615
  background-color: #222222;
3616
}
3617
3618
.btn .caret {
3619
  margin-top: 8px;
3620
  margin-left: 0;
3621
}
3622
3623
.btn-mini .caret,
3624
.btn-small .caret,
3625
.btn-large .caret {
3626
  margin-top: 6px;
3627
}
3628
3629
.btn-large .caret {
3630
  border-top-width: 5px;
3631
  border-right-width: 5px;
3632
  border-left-width: 5px;
3633
}
3634
3635
.dropup .btn-large .caret {
3636
  border-top: 0;
3637
  border-bottom: 5px solid #000000;
3638
}
3639
3640
.btn-primary .caret,
3641
.btn-warning .caret,
3642
.btn-danger .caret,
3643
.btn-info .caret,
3644
.btn-success .caret,
3645
.btn-inverse .caret {
3646
  border-top-color: #ffffff;
3647
  border-bottom-color: #ffffff;
3648
}
3649
3650
.btn-group-vertical {
3651
  display: inline-block;
3652
  *display: inline;
3653
  /* IE7 inline-block hack */
3654
3655
  *zoom: 1;
3656
}
3657
3658
.btn-group-vertical .btn {
3659
  display: block;
3660
  float: none;
3661
  width: 100%;
3662
  -webkit-border-radius: 0;
3663
     -moz-border-radius: 0;
3664
          border-radius: 0;
3665
}
3666
3667
.btn-group-vertical .btn + .btn {
3668
  margin-top: -1px;
3669
  margin-left: 0;
3670
}
3671
3672
.btn-group-vertical .btn:first-child {
3673
  -webkit-border-radius: 4px 4px 0 0;
3674
     -moz-border-radius: 4px 4px 0 0;
3675
          border-radius: 4px 4px 0 0;
3676
}
3677
3678
.btn-group-vertical .btn:last-child {
3679
  -webkit-border-radius: 0 0 4px 4px;
3680
     -moz-border-radius: 0 0 4px 4px;
3681
          border-radius: 0 0 4px 4px;
3682
}
3683
3684
.btn-group-vertical .btn-large:first-child {
3685
  -webkit-border-radius: 6px 6px 0 0;
3686
     -moz-border-radius: 6px 6px 0 0;
3687
          border-radius: 6px 6px 0 0;
3688
}
3689
3690
.btn-group-vertical .btn-large:last-child {
3691
  -webkit-border-radius: 0 0 6px 6px;
3692
     -moz-border-radius: 0 0 6px 6px;
3693
          border-radius: 0 0 6px 6px;
3694
}
3695
3696
.alert {
3697
  padding: 8px 35px 8px 14px;
3698
  margin-bottom: 20px;
3699
  color: #c09853;
3700
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3701
  background-color: #fcf8e3;
3702
  border: 1px solid #fbeed5;
3703
  -webkit-border-radius: 4px;
3704
     -moz-border-radius: 4px;
3705
          border-radius: 4px;
3706
}
3707
3708
.alert h4 {
3709
  margin: 0;
3710
}
3711
3712
.alert .close {
3713
  position: relative;
3714
  top: -2px;
3715
  right: -21px;
3716
  line-height: 20px;
3717
}
3718
3719
.alert-success {
3720
  color: #468847;
3721
  background-color: #dff0d8;
3722
  border-color: #d6e9c6;
3723
}
3724
3725
.alert-danger,
3726
.alert-error {
3727
  color: #b94a48;
3728
  background-color: #f2dede;
3729
  border-color: #eed3d7;
3730
}
3731
3732
.alert-info {
3733
  color: #3a87ad;
3734
  background-color: #d9edf7;
3735
  border-color: #bce8f1;
3736
}
3737
3738
.alert-block {
3739
  padding-top: 14px;
3740
  padding-bottom: 14px;
3741
}
3742
3743
.alert-block > p,
3744
.alert-block > ul {
3745
  margin-bottom: 0;
3746
}
3747
3748
.alert-block p + p {
3749
  margin-top: 5px;
3750
}
3751
3752
.nav {
3753
  margin-bottom: 20px;
3754
  margin-left: 0;
3755
  list-style: none;
3756
}
3757
3758
.nav > li > a {
3759
  display: block;
3760
}
3761
3762
.nav > li > a:hover {
3763
  text-decoration: none;
3764
  background-color: #eeeeee;
3765
}
3766
3767
.nav > .pull-right {
3768
  float: right;
3769
}
3770
3771
.nav-header {
3772
  display: block;
3773
  padding: 3px 15px;
3774
  font-size: 11px;
3775
  font-weight: bold;
3776
  line-height: 20px;
3777
  color: #999999;
3778
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3779
  text-transform: uppercase;
3780
}
3781
3782
.nav li + .nav-header {
3783
  margin-top: 9px;
3784
}
3785
3786
.nav-list {
3787
  padding-right: 15px;
3788
  padding-left: 15px;
3789
  margin-bottom: 0;
3790
}
3791
3792
.nav-list > li > a,
3793
.nav-list .nav-header {
3794
  margin-right: -15px;
3795
  margin-left: -15px;
3796
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3797
}
3798
3799
.nav-list > li > a {
3800
  padding: 3px 15px;
3801
}
3802
3803
.nav-list > .active > a,
3804
.nav-list > .active > a:hover {
3805
  color: #ffffff;
3806
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
3807
  background-color: #0088cc;
3808
}
3809
3810
.nav-list [class^="icon-"] {
3811
  margin-right: 2px;
3812
}
3813
3814
.nav-list .divider {
3815
  *width: 100%;
3816
  height: 1px;
3817
  margin: 9px 1px;
3818
  *margin: -5px 0 5px;
3819
  overflow: hidden;
3820
  background-color: #e5e5e5;
3821
  border-bottom: 1px solid #ffffff;
3822
}
3823
3824
.nav-tabs,
3825
.nav-pills {
3826
  *zoom: 1;
3827
}
3828
3829
.nav-tabs:before,
3830
.nav-pills:before,
3831
.nav-tabs:after,
3832
.nav-pills:after {
3833
  display: table;
3834
  line-height: 0;
3835
  content: "";
3836
}
3837
3838
.nav-tabs:after,
3839
.nav-pills:after {
3840
  clear: both;
3841
}
3842
3843
.nav-tabs > li,
3844
.nav-pills > li {
3845
  float: left;
3846
}
3847
3848
.nav-tabs > li > a,
3849
.nav-pills > li > a {
3850
  padding-right: 12px;
3851
  padding-left: 12px;
3852
  margin-right: 2px;
3853
  line-height: 14px;
3854
}
3855
3856
.nav-tabs {
3857
  border-bottom: 1px solid #ddd;
3858
}
3859
3860
.nav-tabs > li {
3861
  margin-bottom: -1px;
3862
}
3863
3864
.nav-tabs > li > a {
3865
  padding-top: 8px;
3866
  padding-bottom: 8px;
3867
  line-height: 20px;
3868
  border: 1px solid transparent;
3869
  -webkit-border-radius: 4px 4px 0 0;
3870
     -moz-border-radius: 4px 4px 0 0;
3871
          border-radius: 4px 4px 0 0;
3872
}
3873
3874
.nav-tabs > li > a:hover {
3875
  border-color: #eeeeee #eeeeee #dddddd;
3876
}
3877
3878
.nav-tabs > .active > a,
3879
.nav-tabs > .active > a:hover {
3880
  color: #555555;
3881
  cursor: default;
3882
  background-color: #ffffff;
3883
  border: 1px solid #ddd;
3884
  border-bottom-color: transparent;
3885
}
3886
3887
.nav-pills > li > a {
3888
  padding-top: 8px;
3889
  padding-bottom: 8px;
3890
  margin-top: 2px;
3891
  margin-bottom: 2px;
3892
  -webkit-border-radius: 5px;
3893
     -moz-border-radius: 5px;
3894
          border-radius: 5px;
3895
}
3896
3897
.nav-pills > .active > a,
3898
.nav-pills > .active > a:hover {
3899
  color: #ffffff;
3900
  background-color: #0088cc;
3901
}
3902
3903
.nav-stacked > li {
3904
  float: none;
3905
}
3906
3907
.nav-stacked > li > a {
3908
  margin-right: 0;
3909
}
3910
3911
.nav-tabs.nav-stacked {
3912
  border-bottom: 0;
3913
}
3914
3915
.nav-tabs.nav-stacked > li > a {
3916
  border: 1px solid #ddd;
3917
  -webkit-border-radius: 0;
3918
     -moz-border-radius: 0;
3919
          border-radius: 0;
3920
}
3921
3922
.nav-tabs.nav-stacked > li:first-child > a {
3923
  -webkit-border-top-right-radius: 4px;
3924
          border-top-right-radius: 4px;
3925
  -webkit-border-top-left-radius: 4px;
3926
          border-top-left-radius: 4px;
3927
  -moz-border-radius-topright: 4px;
3928
  -moz-border-radius-topleft: 4px;
3929
}
3930
3931
.nav-tabs.nav-stacked > li:last-child > a {
3932
  -webkit-border-bottom-right-radius: 4px;
3933
          border-bottom-right-radius: 4px;
3934
  -webkit-border-bottom-left-radius: 4px;
3935
          border-bottom-left-radius: 4px;
3936
  -moz-border-radius-bottomright: 4px;
3937
  -moz-border-radius-bottomleft: 4px;
3938
}
3939
3940
.nav-tabs.nav-stacked > li > a:hover {
3941
  z-index: 2;
3942
  border-color: #ddd;
3943
}
3944
3945
.nav-pills.nav-stacked > li > a {
3946
  margin-bottom: 3px;
3947
}
3948
3949
.nav-pills.nav-stacked > li:last-child > a {
3950
  margin-bottom: 1px;
3951
}
3952
3953
.nav-tabs .dropdown-menu {
3954
  -webkit-border-radius: 0 0 6px 6px;
3955
     -moz-border-radius: 0 0 6px 6px;
3956
          border-radius: 0 0 6px 6px;
3957
}
3958
3959
.nav-pills .dropdown-menu {
3960
  -webkit-border-radius: 6px;
3961
     -moz-border-radius: 6px;
3962
          border-radius: 6px;
3963
}
3964
3965
.nav .dropdown-toggle .caret {
3966
  margin-top: 6px;
3967
  border-top-color: #0088cc;
3968
  border-bottom-color: #0088cc;
3969
}
3970
3971
.nav .dropdown-toggle:hover .caret {
3972
  border-top-color: #005580;
3973
  border-bottom-color: #005580;
3974
}
3975
3976
/* move down carets for tabs */
3977
3978
.nav-tabs .dropdown-toggle .caret {
3979
  margin-top: 8px;
3980
}
3981
3982
.nav .active .dropdown-toggle .caret {
3983
  border-top-color: #fff;
3984
  border-bottom-color: #fff;
3985
}
3986
3987
.nav-tabs .active .dropdown-toggle .caret {
3988
  border-top-color: #555555;
3989
  border-bottom-color: #555555;
3990
}
3991
3992
.nav > .dropdown.active > a:hover {
3993
  cursor: pointer;
3994
}
3995
3996
.nav-tabs .open .dropdown-toggle,
3997
.nav-pills .open .dropdown-toggle,
3998
.nav > li.dropdown.open.active > a:hover {
3999
  color: #ffffff;
4000
  background-color: #999999;
4001
  border-color: #999999;
4002
}
4003
4004
.nav li.dropdown.open .caret,
4005
.nav li.dropdown.open.active .caret,
4006
.nav li.dropdown.open a:hover .caret {
4007
  border-top-color: #ffffff;
4008
  border-bottom-color: #ffffff;
4009
  opacity: 1;
4010
  filter: alpha(opacity=100);
4011
}
4012
4013
.tabs-stacked .open > a:hover {
4014
  border-color: #999999;
4015
}
4016
4017
.tabbable {
4018
  *zoom: 1;
4019
}
4020
4021
.tabbable:before,
4022
.tabbable:after {
4023
  display: table;
4024
  line-height: 0;
4025
  content: "";
4026
}
4027
4028
.tabbable:after {
4029
  clear: both;
4030
}
4031
4032
.tab-content {
4033
  overflow: auto;
4034
}
4035
4036
.tabs-below > .nav-tabs,
4037
.tabs-right > .nav-tabs,
4038
.tabs-left > .nav-tabs {
4039
  border-bottom: 0;
4040
}
4041
4042
.tab-content > .tab-pane,
4043
.pill-content > .pill-pane {
4044
  display: none;
4045
}
4046
4047
.tab-content > .active,
4048
.pill-content > .active {
4049
  display: block;
4050
}
4051
4052
.tabs-below > .nav-tabs {
4053
  border-top: 1px solid #ddd;
4054
}
4055
4056
.tabs-below > .nav-tabs > li {
4057
  margin-top: -1px;
4058
  margin-bottom: 0;
4059
}
4060
4061
.tabs-below > .nav-tabs > li > a {
4062
  -webkit-border-radius: 0 0 4px 4px;
4063
     -moz-border-radius: 0 0 4px 4px;
4064
          border-radius: 0 0 4px 4px;
4065
}
4066
4067
.tabs-below > .nav-tabs > li > a:hover {
4068
  border-top-color: #ddd;
4069
  border-bottom-color: transparent;
4070
}
4071
4072
.tabs-below > .nav-tabs > .active > a,
4073
.tabs-below > .nav-tabs > .active > a:hover {
4074
  border-color: transparent #ddd #ddd #ddd;
4075
}
4076
4077
.tabs-left > .nav-tabs > li,
4078
.tabs-right > .nav-tabs > li {
4079
  float: none;
4080
}
4081
4082
.tabs-left > .nav-tabs > li > a,
4083
.tabs-right > .nav-tabs > li > a {
4084
  min-width: 74px;
4085
  margin-right: 0;
4086
  margin-bottom: 3px;
4087
}
4088
4089
.tabs-left > .nav-tabs {
4090
  float: left;
4091
  margin-right: 19px;
4092
  border-right: 1px solid #ddd;
4093
}
4094
4095
.tabs-left > .nav-tabs > li > a {
4096
  margin-right: -1px;
4097
  -webkit-border-radius: 4px 0 0 4px;
4098
     -moz-border-radius: 4px 0 0 4px;
4099
          border-radius: 4px 0 0 4px;
4100
}
4101
4102
.tabs-left > .nav-tabs > li > a:hover {
4103
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
4104
}
4105
4106
.tabs-left > .nav-tabs .active > a,
4107
.tabs-left > .nav-tabs .active > a:hover {
4108
  border-color: #ddd transparent #ddd #ddd;
4109
  *border-right-color: #ffffff;
4110
}
4111
4112
.tabs-right > .nav-tabs {
4113
  float: right;
4114
  margin-left: 19px;
4115
  border-left: 1px solid #ddd;
4116
}
4117
4118
.tabs-right > .nav-tabs > li > a {
4119
  margin-left: -1px;
4120
  -webkit-border-radius: 0 4px 4px 0;
4121
     -moz-border-radius: 0 4px 4px 0;
4122
          border-radius: 0 4px 4px 0;
4123
}
4124
4125
.tabs-right > .nav-tabs > li > a:hover {
4126
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
4127
}
4128
4129
.tabs-right > .nav-tabs .active > a,
4130
.tabs-right > .nav-tabs .active > a:hover {
4131
  border-color: #ddd #ddd #ddd transparent;
4132
  *border-left-color: #ffffff;
4133
}
4134
4135
.nav > .disabled > a {
4136
  color: #999999;
4137
}
4138
4139
.nav > .disabled > a:hover {
4140
  text-decoration: none;
4141
  cursor: default;
4142
  background-color: transparent;
4143
}
4144
4145
.navbar {
4146
  *position: relative;
4147
  *z-index: 2;
4148
  margin-bottom: 20px;
4149
  overflow: visible;
4150
  color: #777777;
4151
}
4152
4153
.navbar-inner {
4154
  min-height: 40px;
4155
  padding-right: 20px;
4156
  padding-left: 20px;
4157
  background-color: #fafafa;
4158
  background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
4159
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
4160
  background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
4161
  background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
4162
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
4163
  background-repeat: repeat-x;
4164
  border: 1px solid #d4d4d4;
4165
  -webkit-border-radius: 4px;
4166
     -moz-border-radius: 4px;
4167
          border-radius: 4px;
4168
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
4169
  *zoom: 1;
4170
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
4171
     -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
4172
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
4173
}
4174
4175
.navbar-inner:before,
4176
.navbar-inner:after {
4177
  display: table;
4178
  line-height: 0;
4179
  content: "";
4180
}
4181
4182
.navbar-inner:after {
4183
  clear: both;
4184
}
4185
4186
.navbar .container {
4187
  width: auto;
4188
}
4189
4190
.nav-collapse.collapse {
4191
  height: auto;
4192
}
4193
4194
.navbar .brand {
4195
  display: block;
4196
  float: left;
4197
  padding: 10px 20px 10px;
4198
  margin-left: -20px;
4199
  font-size: 20px;
4200
  font-weight: 200;
4201
  color: #777777;
4202
  text-shadow: 0 1px 0 #ffffff;
4203
}
4204
4205
.navbar .brand:hover {
4206
  text-decoration: none;
4207
}
4208
4209
.navbar-text {
4210
  margin-bottom: 0;
4211
  line-height: 40px;
4212
}
4213
4214
.navbar-link {
4215
  color: #777777;
4216
}
4217
4218
.navbar-link:hover {
4219
  color: #333333;
4220
}
4221
4222
.navbar .divider-vertical {
4223
  height: 40px;
4224
  margin: 0 9px;
4225
  border-right: 1px solid #ffffff;
4226
  border-left: 1px solid #f2f2f2;
4227
}
4228
4229
.navbar .btn,
4230
.navbar .btn-group {
4231
  margin-top: 5px;
4232
}
4233
4234
.navbar .btn-group .btn,
4235
.navbar .input-prepend .btn,
4236
.navbar .input-append .btn {
4237
  margin-top: 0;
4238
}
4239
4240
.navbar-form {
4241
  margin-bottom: 0;
4242
  *zoom: 1;
4243
}
4244
4245
.navbar-form:before,
4246
.navbar-form:after {
4247
  display: table;
4248
  line-height: 0;
4249
  content: "";
4250
}
4251
4252
.navbar-form:after {
4253
  clear: both;
4254
}
4255
4256
.navbar-form input,
4257
.navbar-form select,
4258
.navbar-form .radio,
4259
.navbar-form .checkbox {
4260
  margin-top: 5px;
4261
}
4262
4263
.navbar-form input,
4264
.navbar-form select,
4265
.navbar-form .btn {
4266
  display: inline-block;
4267
  margin-bottom: 0;
4268
}
4269
4270
.navbar-form input[type="image"],
4271
.navbar-form input[type="checkbox"],
4272
.navbar-form input[type="radio"] {
4273
  margin-top: 3px;
4274
}
4275
4276
.navbar-form .input-append,
4277
.navbar-form .input-prepend {
4278
  margin-top: 6px;
4279
  white-space: nowrap;
4280
}
4281
4282
.navbar-form .input-append input,
4283
.navbar-form .input-prepend input {
4284
  margin-top: 0;
4285
}
4286
4287
.navbar-search {
4288
  position: relative;
4289
  float: left;
4290
  margin-top: 5px;
4291
  margin-bottom: 0;
4292
}
4293
4294
.navbar-search .search-query {
4295
  padding: 4px 14px;
4296
  margin-bottom: 0;
4297
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4298
  font-size: 13px;
4299
  font-weight: normal;
4300
  line-height: 1;
4301
  -webkit-border-radius: 15px;
4302
     -moz-border-radius: 15px;
4303
          border-radius: 15px;
4304
}
4305
4306
.navbar-static-top {
4307
  position: static;
4308
  width: 100%;
4309
  margin-bottom: 0;
4310
}
4311
4312
.navbar-static-top .navbar-inner {
4313
  -webkit-border-radius: 0;
4314
     -moz-border-radius: 0;
4315
          border-radius: 0;
4316
}
4317
4318
.navbar-fixed-top,
4319
.navbar-fixed-bottom {
4320
  position: fixed;
4321
  right: 0;
4322
  left: 0;
4323
  z-index: 1030;
4324
  margin-bottom: 0;
4325
}
4326
4327
.navbar-fixed-top .navbar-inner,
4328
.navbar-static-top .navbar-inner {
4329
  border-width: 0 0 1px;
4330
}
4331
4332
.navbar-fixed-bottom .navbar-inner {
4333
  border-width: 1px 0 0;
4334
}
4335
4336
.navbar-fixed-top .navbar-inner,
4337
.navbar-fixed-bottom .navbar-inner {
4338
  padding-right: 0;
4339
  padding-left: 0;
4340
  -webkit-border-radius: 0;
4341
     -moz-border-radius: 0;
4342
          border-radius: 0;
4343
}
4344
4345
.navbar-static-top .container,
4346
.navbar-fixed-top .container,
4347
.navbar-fixed-bottom .container {
4348
  width: 940px;
4349
}
4350
4351
.navbar-fixed-top {
4352
  top: 0;
4353
}
4354
4355
.navbar-fixed-top .navbar-inner,
4356
.navbar-static-top .navbar-inner {
4357
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4358
     -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4359
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4360
}
4361
4362
.navbar-fixed-bottom {
4363
  bottom: 0;
4364
}
4365
4366
.navbar-fixed-bottom .navbar-inner {
4367
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4368
     -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4369
          box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4370
}
4371
4372
.navbar .nav {
4373
  position: relative;
4374
  left: 0;
4375
  display: block;
4376
  float: left;
4377
  margin: 0 10px 0 0;
4378
}
4379
4380
.navbar .nav.pull-right {
4381
  float: right;
4382
  margin-right: 0;
4383
}
4384
4385
.navbar .nav > li {
4386
  float: left;
4387
}
4388
4389
.navbar .nav > li > a {
4390
  float: none;
4391
  padding: 10px 15px 10px;
4392
  color: #777777;
4393
  text-decoration: none;
4394
  text-shadow: 0 1px 0 #ffffff;
4395
}
4396
4397
.navbar .nav .dropdown-toggle .caret {
4398
  margin-top: 8px;
4399
}
4400
4401
.navbar .nav > li > a:focus,
4402
.navbar .nav > li > a:hover {
4403
  color: #333333;
4404
  text-decoration: none;
4405
  background-color: transparent;
4406
}
4407
4408
.navbar .nav > .active > a,
4409
.navbar .nav > .active > a:hover,
4410
.navbar .nav > .active > a:focus {
4411
  color: #555555;
4412
  text-decoration: none;
4413
  background-color: #e5e5e5;
4414
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
4415
     -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
4416
          box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
4417
}
4418
4419
.navbar .btn-navbar {
4420
  display: none;
4421
  float: right;
4422
  padding: 7px 10px;
4423
  margin-right: 5px;
4424
  margin-left: 5px;
4425
  color: #ffffff;
4426
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4427
  background-color: #ededed;
4428
  *background-color: #e5e5e5;
4429
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
4430
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
4431
  background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
4432
  background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
4433
  background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
4434
  background-repeat: repeat-x;
4435
  border-color: #e5e5e5 #e5e5e5 #bfbfbf;
4436
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4437
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
4438
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
4439
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4440
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4441
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4442
}
4443
4444
.navbar .btn-navbar:hover,
4445
.navbar .btn-navbar:active,
4446
.navbar .btn-navbar.active,
4447
.navbar .btn-navbar.disabled,
4448
.navbar .btn-navbar[disabled] {
4449
  color: #ffffff;
4450
  background-color: #e5e5e5;
4451
  *background-color: #d9d9d9;
4452
}
4453
4454
.navbar .btn-navbar:active,
4455
.navbar .btn-navbar.active {
4456
  background-color: #cccccc \9;
4457
}
4458
4459
.navbar .btn-navbar .icon-bar {
4460
  display: block;
4461
  width: 18px;
4462
  height: 2px;
4463
  background-color: #f5f5f5;
4464
  -webkit-border-radius: 1px;
4465
     -moz-border-radius: 1px;
4466
          border-radius: 1px;
4467
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
4468
     -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
4469
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
4470
}
4471
4472
.btn-navbar .icon-bar + .icon-bar {
4473
  margin-top: 3px;
4474
}
4475
4476
.navbar .nav > li > .dropdown-menu:before {
4477
  position: absolute;
4478
  top: -7px;
4479
  left: 9px;
4480
  display: inline-block;
4481
  border-right: 7px solid transparent;
4482
  border-bottom: 7px solid #ccc;
4483
  border-left: 7px solid transparent;
4484
  border-bottom-color: rgba(0, 0, 0, 0.2);
4485
  content: '';
4486
}
4487
4488
.navbar .nav > li > .dropdown-menu:after {
4489
  position: absolute;
4490
  top: -6px;
4491
  left: 10px;
4492
  display: inline-block;
4493
  border-right: 6px solid transparent;
4494
  border-bottom: 6px solid #ffffff;
4495
  border-left: 6px solid transparent;
4496
  content: '';
4497
}
4498
4499
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
4500
  top: auto;
4501
  bottom: -7px;
4502
  border-top: 7px solid #ccc;
4503
  border-bottom: 0;
4504
  border-top-color: rgba(0, 0, 0, 0.2);
4505
}
4506
4507
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
4508
  top: auto;
4509
  bottom: -6px;
4510
  border-top: 6px solid #ffffff;
4511
  border-bottom: 0;
4512
}
4513
4514
.navbar .nav li.dropdown.open > .dropdown-toggle,
4515
.navbar .nav li.dropdown.active > .dropdown-toggle,
4516
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
4517
  color: #555555;
4518
  background-color: #e5e5e5;
4519
}
4520
4521
.navbar .nav li.dropdown > .dropdown-toggle .caret {
4522
  border-top-color: #777777;
4523
  border-bottom-color: #777777;
4524
}
4525
4526
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
4527
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
4528
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
4529
  border-top-color: #555555;
4530
  border-bottom-color: #555555;
4531
}
4532
4533
.navbar .pull-right > li > .dropdown-menu,
4534
.navbar .nav > li > .dropdown-menu.pull-right {
4535
  right: 0;
4536
  left: auto;
4537
}
4538
4539
.navbar .pull-right > li > .dropdown-menu:before,
4540
.navbar .nav > li > .dropdown-menu.pull-right:before {
4541
  right: 12px;
4542
  left: auto;
4543
}
4544
4545
.navbar .pull-right > li > .dropdown-menu:after,
4546
.navbar .nav > li > .dropdown-menu.pull-right:after {
4547
  right: 13px;
4548
  left: auto;
4549
}
4550
4551
.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
4552
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
4553
  right: 100%;
4554
  left: auto;
4555
  margin-right: -1px;
4556
  margin-left: 0;
4557
  -webkit-border-radius: 6px 0 6px 6px;
4558
     -moz-border-radius: 6px 0 6px 6px;
4559
          border-radius: 6px 0 6px 6px;
4560
}
4561
4562
.navbar-inverse {
4563
  color: #999999;
4564
}
4565
4566
.navbar-inverse .navbar-inner {
4567
  background-color: #1b1b1b;
4568
  background-image: -moz-linear-gradient(top, #222222, #111111);
4569
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
4570
  background-image: -webkit-linear-gradient(top, #222222, #111111);
4571
  background-image: -o-linear-gradient(top, #222222, #111111);
4572
  background-image: linear-gradient(to bottom, #222222, #111111);
4573
  background-repeat: repeat-x;
4574
  border-color: #252525;
4575
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
4576
}
4577
4578
.navbar-inverse .brand,
4579
.navbar-inverse .nav > li > a {
4580
  color: #999999;
4581
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4582
}
4583
4584
.navbar-inverse .brand:hover,
4585
.navbar-inverse .nav > li > a:hover {
4586
  color: #ffffff;
4587
}
4588
4589
.navbar-inverse .nav > li > a:focus,
4590
.navbar-inverse .nav > li > a:hover {
4591
  color: #ffffff;
4592
  background-color: transparent;
4593
}
4594
4595
.navbar-inverse .nav .active > a,
4596
.navbar-inverse .nav .active > a:hover,
4597
.navbar-inverse .nav .active > a:focus {
4598
  color: #ffffff;
4599
  background-color: #111111;
4600
}
4601
4602
.navbar-inverse .navbar-link {
4603
  color: #999999;
4604
}
4605
4606
.navbar-inverse .navbar-link:hover {
4607
  color: #ffffff;
4608
}
4609
4610
.navbar-inverse .divider-vertical {
4611
  border-right-color: #222222;
4612
  border-left-color: #111111;
4613
}
4614
4615
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
4616
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
4617
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
4618
  color: #ffffff;
4619
  background-color: #111111;
4620
}
4621
4622
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
4623
  border-top-color: #999999;
4624
  border-bottom-color: #999999;
4625
}
4626
4627
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
4628
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
4629
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
4630
  border-top-color: #ffffff;
4631
  border-bottom-color: #ffffff;
4632
}
4633
4634
.navbar-inverse .navbar-search .search-query {
4635
  color: #ffffff;
4636
  background-color: #515151;
4637
  border-color: #111111;
4638
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
4639
     -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
4640
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
4641
  -webkit-transition: none;
4642
     -moz-transition: none;
4643
       -o-transition: none;
4644
          transition: none;
4645
}
4646
4647
.navbar-inverse .navbar-search .search-query:-moz-placeholder {
4648
  color: #cccccc;
4649
}
4650
4651
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
4652
  color: #cccccc;
4653
}
4654
4655
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
4656
  color: #cccccc;
4657
}
4658
4659
.navbar-inverse .navbar-search .search-query:focus,
4660
.navbar-inverse .navbar-search .search-query.focused {
4661
  padding: 5px 15px;
4662
  color: #333333;
4663
  text-shadow: 0 1px 0 #ffffff;
4664
  background-color: #ffffff;
4665
  border: 0;
4666
  outline: 0;
4667
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4668
     -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4669
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4670
}
4671
4672
.navbar-inverse .btn-navbar {
4673
  color: #ffffff;
4674
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4675
  background-color: #0e0e0e;
4676
  *background-color: #040404;
4677
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
4678
  background-image: -webkit-linear-gradient(top, #151515, #040404);
4679
  background-image: -o-linear-gradient(top, #151515, #040404);
4680
  background-image: linear-gradient(to bottom, #151515, #040404);
4681
  background-image: -moz-linear-gradient(top, #151515, #040404);
4682
  background-repeat: repeat-x;
4683
  border-color: #040404 #040404 #000000;
4684
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4685
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
4686
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
4687
}
4688
4689
.navbar-inverse .btn-navbar:hover,
4690
.navbar-inverse .btn-navbar:active,
4691
.navbar-inverse .btn-navbar.active,
4692
.navbar-inverse .btn-navbar.disabled,
4693
.navbar-inverse .btn-navbar[disabled] {
4694
  color: #ffffff;
4695
  background-color: #040404;
4696
  *background-color: #000000;
4697
}
4698
4699
.navbar-inverse .btn-navbar:active,
4700
.navbar-inverse .btn-navbar.active {
4701
  background-color: #000000 \9;
4702
}
4703
4704
.breadcrumb {
4705
  padding: 8px 15px;
4706
  margin: 0 0 20px;
4707
  list-style: none;
4708
  background-color: #f5f5f5;
4709
  -webkit-border-radius: 4px;
4710
     -moz-border-radius: 4px;
4711
          border-radius: 4px;
4712
}
4713
4714
.breadcrumb li {
4715
  display: inline-block;
4716
  *display: inline;
4717
  text-shadow: 0 1px 0 #ffffff;
4718
  *zoom: 1;
4719
}
4720
4721
.breadcrumb .divider {
4722
  padding: 0 5px;
4723
  color: #ccc;
4724
}
4725
4726
.breadcrumb .active {
4727
  color: #999999;
4728
}
4729
4730
.pagination {
4731
  height: 40px;
4732
  margin: 20px 0;
4733
}
4734
4735
.pagination ul {
4736
  display: inline-block;
4737
  *display: inline;
4738
  margin-bottom: 0;
4739
  margin-left: 0;
4740
  -webkit-border-radius: 3px;
4741
     -moz-border-radius: 3px;
4742
          border-radius: 3px;
4743
  *zoom: 1;
4744
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4745
     -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4746
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4747
}
4748
4749
.pagination ul > li {
4750
  display: inline;
4751
}
4752
4753
.pagination ul > li > a,
4754
.pagination ul > li > span {
4755
  float: left;
4756
  padding: 0 14px;
4757
  line-height: 38px;
4758
  text-decoration: none;
4759
  background-color: #ffffff;
4760
  border: 1px solid #dddddd;
4761
  border-left-width: 0;
4762
}
4763
4764
.pagination ul > li > a:hover,
4765
.pagination ul > .active > a,
4766
.pagination ul > .active > span {
4767
  background-color: #f5f5f5;
4768
}
4769
4770
.pagination ul > .active > a,
4771
.pagination ul > .active > span {
4772
  color: #999999;
4773
  cursor: default;
4774
}
4775
4776
.pagination ul > .disabled > span,
4777
.pagination ul > .disabled > a,
4778
.pagination ul > .disabled > a:hover {
4779
  color: #999999;
4780
  cursor: default;
4781
  background-color: transparent;
4782
}
4783
4784
.pagination ul > li:first-child > a,
4785
.pagination ul > li:first-child > span {
4786
  border-left-width: 1px;
4787
  -webkit-border-radius: 3px 0 0 3px;
4788
     -moz-border-radius: 3px 0 0 3px;
4789
          border-radius: 3px 0 0 3px;
4790
}
4791
4792
.pagination ul > li:last-child > a,
4793
.pagination ul > li:last-child > span {
4794
  -webkit-border-radius: 0 3px 3px 0;
4795
     -moz-border-radius: 0 3px 3px 0;
4796
          border-radius: 0 3px 3px 0;
4797
}
4798
4799
.pagination-centered {
4800
  text-align: center;
4801
}
4802
4803
.pagination-right {
4804
  text-align: right;
4805
}
4806
4807
.pager {
4808
  margin: 20px 0;
4809
  text-align: center;
4810
  list-style: none;
4811
  *zoom: 1;
4812
}
4813
4814
.pager:before,
4815
.pager:after {
4816
  display: table;
4817
  line-height: 0;
4818
  content: "";
4819
}
4820
4821
.pager:after {
4822
  clear: both;
4823
}
4824
4825
.pager li {
4826
  display: inline;
4827
}
4828
4829
.pager a,
4830
.pager span {
4831
  display: inline-block;
4832
  padding: 5px 14px;
4833
  background-color: #fff;
4834
  border: 1px solid #ddd;
4835
  -webkit-border-radius: 15px;
4836
     -moz-border-radius: 15px;
4837
          border-radius: 15px;
4838
}
4839
4840
.pager a:hover {
4841
  text-decoration: none;
4842
  background-color: #f5f5f5;
4843
}
4844
4845
.pager .next a,
4846
.pager .next span {
4847
  float: right;
4848
}
4849
4850
.pager .previous a {
4851
  float: left;
4852
}
4853
4854
.pager .disabled a,
4855
.pager .disabled a:hover,
4856
.pager .disabled span {
4857
  color: #999999;
4858
  cursor: default;
4859
  background-color: #fff;
4860
}
4861
4862
.modal-open .modal .dropdown-menu {
4863
  z-index: 2050;
4864
}
4865
4866
.modal-open .modal .dropdown.open {
4867
  *z-index: 2050;
4868
}
4869
4870
.modal-open .modal .popover {
4871
  z-index: 2060;
4872
}
4873
4874
.modal-open .modal .tooltip {
4875
  z-index: 2080;
4876
}
4877
4878
.modal-backdrop {
4879
  position: fixed;
4880
  top: 0;
4881
  right: 0;
4882
  bottom: 0;
4883
  left: 0;
4884
  z-index: 1040;
4885
  background-color: #000000;
4886
}
4887
4888
.modal-backdrop.fade {
4889
  opacity: 0;
4890
}
4891
4892
.modal-backdrop,
4893
.modal-backdrop.fade.in {
4894
  opacity: 0.8;
4895
  filter: alpha(opacity=80);
4896
}
4897
4898
.modal {
4899
  position: fixed;
4900
  top: 50%;
4901
  left: 50%;
4902
  z-index: 1050;
4903
  width: 560px;
4904
  margin: -250px 0 0 -280px;
4905
  overflow: auto;
4906
  background-color: #ffffff;
4907
  border: 1px solid #999;
4908
  border: 1px solid rgba(0, 0, 0, 0.3);
4909
  *border: 1px solid #999;
4910
  -webkit-border-radius: 6px;
4911
     -moz-border-radius: 6px;
4912
          border-radius: 6px;
4913
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4914
     -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4915
          box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4916
  -webkit-background-clip: padding-box;
4917
     -moz-background-clip: padding-box;
4918
          background-clip: padding-box;
4919
}
4920
4921
.modal.fade {
4922
  top: -25%;
4923
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
4924
     -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
4925
       -o-transition: opacity 0.3s linear, top 0.3s ease-out;
4926
          transition: opacity 0.3s linear, top 0.3s ease-out;
4927
}
4928
4929
.modal.fade.in {
4930
  top: 50%;
4931
}
4932
4933
.modal-header {
4934
  padding: 9px 15px;
4935
  border-bottom: 1px solid #eee;
4936
}
4937
4938
.modal-header .close {
4939
  margin-top: 2px;
4940
}
4941
4942
.modal-header h3 {
4943
  margin: 0;
4944
  line-height: 30px;
4945
}
4946
4947
.modal-body {
4948
  max-height: 400px;
4949
  padding: 15px;
4950
  overflow-y: auto;
4951
}
4952
4953
.modal-form {
4954
  margin-bottom: 0;
4955
}
4956
4957
.modal-footer {
4958
  padding: 14px 15px 15px;
4959
  margin-bottom: 0;
4960
  text-align: right;
4961
  background-color: #f5f5f5;
4962
  border-top: 1px solid #ddd;
4963
  -webkit-border-radius: 0 0 6px 6px;
4964
     -moz-border-radius: 0 0 6px 6px;
4965
          border-radius: 0 0 6px 6px;
4966
  *zoom: 1;
4967
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
4968
     -moz-box-shadow: inset 0 1px 0 #ffffff;
4969
          box-shadow: inset 0 1px 0 #ffffff;
4970
}
4971
4972
.modal-footer:before,
4973
.modal-footer:after {
4974
  display: table;
4975
  line-height: 0;
4976
  content: "";
4977
}
4978
4979
.modal-footer:after {
4980
  clear: both;
4981
}
4982
4983
.modal-footer .btn + .btn {
4984
  margin-bottom: 0;
4985
  margin-left: 5px;
4986
}
4987
4988
.modal-footer .btn-group .btn + .btn {
4989
  margin-left: -1px;
4990
}
4991
4992
.tooltip {
4993
  position: absolute;
4994
  z-index: 1030;
4995
  display: block;
4996
  padding: 5px;
4997
  font-size: 11px;
4998
  opacity: 0;
4999
  filter: alpha(opacity=0);
5000
  visibility: visible;
5001
}
5002
5003
.tooltip.in {
5004
  opacity: 0.8;
5005
  filter: alpha(opacity=80);
5006
}
5007
5008
.tooltip.top {
5009
  margin-top: -3px;
5010
}
5011
5012
.tooltip.right {
5013
  margin-left: 3px;
5014
}
5015
5016
.tooltip.bottom {
5017
  margin-top: 3px;
5018
}
5019
5020
.tooltip.left {
5021
  margin-left: -3px;
5022
}
5023
5024
.tooltip-inner {
5025
  max-width: 200px;
5026
  padding: 3px 8px;
5027
  color: #ffffff;
5028
  text-align: center;
5029
  text-decoration: none;
5030
  background-color: #000000;
5031
  -webkit-border-radius: 4px;
5032
     -moz-border-radius: 4px;
5033
          border-radius: 4px;
5034
}
5035
5036
.tooltip-arrow {
5037
  position: absolute;
5038
  width: 0;
5039
  height: 0;
5040
  border-color: transparent;
5041
  border-style: solid;
5042
}
5043
5044
.tooltip.top .tooltip-arrow {
5045
  bottom: 0;
5046
  left: 50%;
5047
  margin-left: -5px;
5048
  border-top-color: #000000;
5049
  border-width: 5px 5px 0;
5050
}
5051
5052
.tooltip.right .tooltip-arrow {
5053
  top: 50%;
5054
  left: 0;
5055
  margin-top: -5px;
5056
  border-right-color: #000000;
5057
  border-width: 5px 5px 5px 0;
5058
}
5059
5060
.tooltip.left .tooltip-arrow {
5061
  top: 50%;
5062
  right: 0;
5063
  margin-top: -5px;
5064
  border-left-color: #000000;
5065
  border-width: 5px 0 5px 5px;
5066
}
5067
5068
.tooltip.bottom .tooltip-arrow {
5069
  top: 0;
5070
  left: 50%;
5071
  margin-left: -5px;
5072
  border-bottom-color: #000000;
5073
  border-width: 0 5px 5px;
5074
}
5075
5076
.popover {
5077
  position: absolute;
5078
  top: 0;
5079
  left: 0;
5080
  z-index: 1010;
5081
  display: none;
5082
  width: 236px;
5083
  padding: 1px;
5084
  background-color: #ffffff;
5085
  border: 1px solid #ccc;
5086
  border: 1px solid rgba(0, 0, 0, 0.2);
5087
  -webkit-border-radius: 6px;
5088
     -moz-border-radius: 6px;
5089
          border-radius: 6px;
5090
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5091
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5092
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5093
  -webkit-background-clip: padding-box;
5094
     -moz-background-clip: padding;
5095
          background-clip: padding-box;
5096
}
5097
5098
.popover.top {
5099
  margin-bottom: 10px;
5100
}
5101
5102
.popover.right {
5103
  margin-left: 10px;
5104
}
5105
5106
.popover.bottom {
5107
  margin-top: 10px;
5108
}
5109
5110
.popover.left {
5111
  margin-right: 10px;
5112
}
5113
5114
.popover-title {
5115
  padding: 8px 14px;
5116
  margin: 0;
5117
  font-size: 14px;
5118
  font-weight: normal;
5119
  line-height: 18px;
5120
  background-color: #f7f7f7;
5121
  border-bottom: 1px solid #ebebeb;
5122
  -webkit-border-radius: 5px 5px 0 0;
5123
     -moz-border-radius: 5px 5px 0 0;
5124
          border-radius: 5px 5px 0 0;
5125
}
5126
5127
.popover-content {
5128
  padding: 9px 14px;
5129
}
5130
5131
.popover-content p,
5132
.popover-content ul,
5133
.popover-content ol {
5134
  margin-bottom: 0;
5135
}
5136
5137
.popover .arrow,
5138
.popover .arrow:after {
5139
  position: absolute;
5140
  display: inline-block;
5141
  width: 0;
5142
  height: 0;
5143
  border-color: transparent;
5144
  border-style: solid;
5145
}
5146
5147
.popover .arrow:after {
5148
  z-index: -1;
5149
  content: "";
5150
}
5151
5152
.popover.top .arrow {
5153
  bottom: -10px;
5154
  left: 50%;
5155
  margin-left: -10px;
5156
  border-top-color: #ffffff;
5157
  border-width: 10px 10px 0;
5158
}
5159
5160
.popover.top .arrow:after {
5161
  bottom: -1px;
5162
  left: -11px;
5163
  border-top-color: rgba(0, 0, 0, 0.25);
5164
  border-width: 11px 11px 0;
5165
}
5166
5167
.popover.right .arrow {
5168
  top: 50%;
5169
  left: -10px;
5170
  margin-top: -10px;
5171
  border-right-color: #ffffff;
5172
  border-width: 10px 10px 10px 0;
5173
}
5174
5175
.popover.right .arrow:after {
5176
  bottom: -11px;
5177
  left: -1px;
5178
  border-right-color: rgba(0, 0, 0, 0.25);
5179
  border-width: 11px 11px 11px 0;
5180
}
5181
5182
.popover.bottom .arrow {
5183
  top: -10px;
5184
  left: 50%;
5185
  margin-left: -10px;
5186
  border-bottom-color: #ffffff;
5187
  border-width: 0 10px 10px;
5188
}
5189
5190
.popover.bottom .arrow:after {
5191
  top: -1px;
5192
  left: -11px;
5193
  border-bottom-color: rgba(0, 0, 0, 0.25);
5194
  border-width: 0 11px 11px;
5195
}
5196
5197
.popover.left .arrow {
5198
  top: 50%;
5199
  right: -10px;
5200
  margin-top: -10px;
5201
  border-left-color: #ffffff;
5202
  border-width: 10px 0 10px 10px;
5203
}
5204
5205
.popover.left .arrow:after {
5206
  right: -1px;
5207
  bottom: -11px;
5208
  border-left-color: rgba(0, 0, 0, 0.25);
5209
  border-width: 11px 0 11px 11px;
5210
}
5211
5212
.thumbnails {
5213
  margin-left: -20px;
5214
  list-style: none;
5215
  *zoom: 1;
5216
}
5217
5218
.thumbnails:before,
5219
.thumbnails:after {
5220
  display: table;
5221
  line-height: 0;
5222
  content: "";
5223
}
5224
5225
.thumbnails:after {
5226
  clear: both;
5227
}
5228
5229
.row-fluid .thumbnails {
5230
  margin-left: 0;
5231
}
5232
5233
.thumbnails > li {
5234
  float: left;
5235
  margin-bottom: 20px;
5236
  margin-left: 20px;
5237
}
5238
5239
.thumbnail {
5240
  display: block;
5241
  padding: 4px;
5242
  line-height: 20px;
5243
  border: 1px solid #ddd;
5244
  -webkit-border-radius: 4px;
5245
     -moz-border-radius: 4px;
5246
          border-radius: 4px;
5247
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
5248
     -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
5249
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
5250
  -webkit-transition: all 0.2s ease-in-out;
5251
     -moz-transition: all 0.2s ease-in-out;
5252
       -o-transition: all 0.2s ease-in-out;
5253
          transition: all 0.2s ease-in-out;
5254
}
5255
5256
a.thumbnail:hover {
5257
  border-color: #0088cc;
5258
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
5259
     -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
5260
          box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
5261
}
5262
5263
.thumbnail > img {
5264
  display: block;
5265
  max-width: 100%;
5266
  margin-right: auto;
5267
  margin-left: auto;
5268
}
5269
5270
.thumbnail .caption {
5271
  padding: 9px;
5272
  color: #555555;
5273
}
5274
5275
.label,
5276
.badge {
5277
  font-size: 11.844px;
5278
  font-weight: bold;
5279
  line-height: 14px;
5280
  color: #ffffff;
5281
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
5282
  white-space: nowrap;
5283
  vertical-align: baseline;
5284
  background-color: #999999;
5285
}
5286
5287
.label {
5288
  padding: 1px 4px 2px;
5289
  -webkit-border-radius: 3px;
5290
     -moz-border-radius: 3px;
5291
          border-radius: 3px;
5292
}
5293
5294
.badge {
5295
  padding: 1px 9px 2px;
5296
  -webkit-border-radius: 9px;
5297
     -moz-border-radius: 9px;
5298
          border-radius: 9px;
5299
}
5300
5301
a.label:hover,
5302
a.badge:hover {
5303
  color: #ffffff;
5304
  text-decoration: none;
5305
  cursor: pointer;
5306
}
5307
5308
.label-important,
5309
.badge-important {
5310
  background-color: #b94a48;
5311
}
5312
5313
.label-important[href],
5314
.badge-important[href] {
5315
  background-color: #953b39;
5316
}
5317
5318
.label-warning,
5319
.badge-warning {
5320
  background-color: #f89406;
5321
}
5322
5323
.label-warning[href],
5324
.badge-warning[href] {
5325
  background-color: #c67605;
5326
}
5327
5328
.label-success,
5329
.badge-success {
5330
  background-color: #468847;
5331
}
5332
5333
.label-success[href],
5334
.badge-success[href] {
5335
  background-color: #356635;
5336
}
5337
5338
.label-info,
5339
.badge-info {
5340
  background-color: #3a87ad;
5341
}
5342
5343
.label-info[href],
5344
.badge-info[href] {
5345
  background-color: #2d6987;
5346
}
5347
5348
.label-inverse,
5349
.badge-inverse {
5350
  background-color: #333333;
5351
}
5352
5353
.label-inverse[href],
5354
.badge-inverse[href] {
5355
  background-color: #1a1a1a;
5356
}
5357
5358
.btn .label,
5359
.btn .badge {
5360
  position: relative;
5361
  top: -1px;
5362
}
5363
5364
.btn-mini .label,
5365
.btn-mini .badge {
5366
  top: 0;
5367
}
5368
5369
@-webkit-keyframes progress-bar-stripes {
5370
  from {
5371
    background-position: 40px 0;
5372
  }
5373
  to {
5374
    background-position: 0 0;
5375
  }
5376
}
5377
5378
@-moz-keyframes progress-bar-stripes {
5379
  from {
5380
    background-position: 40px 0;
5381
  }
5382
  to {
5383
    background-position: 0 0;
5384
  }
5385
}
5386
5387
@-ms-keyframes progress-bar-stripes {
5388
  from {
5389
    background-position: 40px 0;
5390
  }
5391
  to {
5392
    background-position: 0 0;
5393
  }
5394
}
5395
5396
@-o-keyframes progress-bar-stripes {
5397
  from {
5398
    background-position: 0 0;
5399
  }
5400
  to {
5401
    background-position: 40px 0;
5402
  }
5403
}
5404
5405
@keyframes progress-bar-stripes {
5406
  from {
5407
    background-position: 40px 0;
5408
  }
5409
  to {
5410
    background-position: 0 0;
5411
  }
5412
}
5413
5414
.progress {
5415
  height: 20px;
5416
  margin-bottom: 20px;
5417
  overflow: hidden;
5418
  background-color: #f7f7f7;
5419
  background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
5420
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
5421
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
5422
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
5423
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
5424
  background-repeat: repeat-x;
5425
  -webkit-border-radius: 4px;
5426
     -moz-border-radius: 4px;
5427
          border-radius: 4px;
5428
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
5429
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5430
     -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5431
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5432
}
5433
5434
.progress .bar {
5435
  float: left;
5436
  width: 0;
5437
  height: 100%;
5438
  font-size: 12px;
5439
  color: #ffffff;
5440
  text-align: center;
5441
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
5442
  background-color: #0e90d2;
5443
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
5444
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
5445
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
5446
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
5447
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
5448
  background-repeat: repeat-x;
5449
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
5450
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5451
     -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5452
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5453
  -webkit-box-sizing: border-box;
5454
     -moz-box-sizing: border-box;
5455
          box-sizing: border-box;
5456
  -webkit-transition: width 0.6s ease;
5457
     -moz-transition: width 0.6s ease;
5458
       -o-transition: width 0.6s ease;
5459
          transition: width 0.6s ease;
5460
}
5461
5462
.progress .bar + .bar {
5463
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5464
     -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5465
          box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5466
}
5467
5468
.progress-striped .bar {
5469
  background-color: #149bdf;
5470
  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));
5471
  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);
5472
  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);
5473
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5474
  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);
5475
  -webkit-background-size: 40px 40px;
5476
     -moz-background-size: 40px 40px;
5477
       -o-background-size: 40px 40px;
5478
          background-size: 40px 40px;
5479
}
5480
5481
.progress.active .bar {
5482
  -webkit-animation: progress-bar-stripes 2s linear infinite;
5483
     -moz-animation: progress-bar-stripes 2s linear infinite;
5484
      -ms-animation: progress-bar-stripes 2s linear infinite;
5485
       -o-animation: progress-bar-stripes 2s linear infinite;
5486
          animation: progress-bar-stripes 2s linear infinite;
5487
}
5488
5489
.progress-danger .bar,
5490
.progress .bar-danger {
5491
  background-color: #dd514c;
5492
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
5493
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
5494
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
5495
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
5496
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
5497
  background-repeat: repeat-x;
5498
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
5499
}
5500
5501
.progress-danger.progress-striped .bar,
5502
.progress-striped .bar-danger {
5503
  background-color: #ee5f5b;
5504
  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));
5505
  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);
5506
  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);
5507
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5508
  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);
5509
}
5510
5511
.progress-success .bar,
5512
.progress .bar-success {
5513
  background-color: #5eb95e;
5514
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
5515
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
5516
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
5517
  background-image: -o-linear-gradient(top, #62c462, #57a957);
5518
  background-image: linear-gradient(to bottom, #62c462, #57a957);
5519
  background-repeat: repeat-x;
5520
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
5521
}
5522
5523
.progress-success.progress-striped .bar,
5524
.progress-striped .bar-success {
5525
  background-color: #62c462;
5526
  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));
5527
  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);
5528
  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);
5529
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5530
  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);
5531
}
5532
5533
.progress-info .bar,
5534
.progress .bar-info {
5535
  background-color: #4bb1cf;
5536
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
5537
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
5538
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
5539
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
5540
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
5541
  background-repeat: repeat-x;
5542
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
5543
}
5544
5545
.progress-info.progress-striped .bar,
5546
.progress-striped .bar-info {
5547
  background-color: #5bc0de;
5548
  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));
5549
  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);
5550
  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);
5551
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5552
  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);
5553
}
5554
5555
.progress-warning .bar,
5556
.progress .bar-warning {
5557
  background-color: #faa732;
5558
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
5559
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
5560
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
5561
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
5562
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
5563
  background-repeat: repeat-x;
5564
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
5565
}
5566
5567
.progress-warning.progress-striped .bar,
5568
.progress-striped .bar-warning {
5569
  background-color: #fbb450;
5570
  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));
5571
  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);
5572
  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);
5573
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5574
  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);
5575
}
5576
5577
.accordion {
5578
  margin-bottom: 20px;
5579
}
5580
5581
.accordion-group {
5582
  margin-bottom: 2px;
5583
  border: 1px solid #e5e5e5;
5584
  -webkit-border-radius: 4px;
5585
     -moz-border-radius: 4px;
5586
          border-radius: 4px;
5587
}
5588
5589
.accordion-heading {
5590
  border-bottom: 0;
5591
}
5592
5593
.accordion-heading .accordion-toggle {
5594
  display: block;
5595
  padding: 8px 15px;
5596
}
5597
5598
.accordion-toggle {
5599
  cursor: pointer;
5600
}
5601
5602
.accordion-inner {
5603
  padding: 9px 15px;
5604
  border-top: 1px solid #e5e5e5;
5605
}
5606
5607
.carousel {
5608
  position: relative;
5609
  margin-bottom: 20px;
5610
  line-height: 1;
5611
}
5612
5613
.carousel-inner {
5614
  position: relative;
5615
  width: 100%;
5616
  overflow: hidden;
5617
}
5618
5619
.carousel .item {
5620
  position: relative;
5621
  display: none;
5622
  -webkit-transition: 0.6s ease-in-out left;
5623
     -moz-transition: 0.6s ease-in-out left;
5624
       -o-transition: 0.6s ease-in-out left;
5625
          transition: 0.6s ease-in-out left;
5626
}
5627
5628
.carousel .item > img {
5629
  display: block;
5630
  line-height: 1;
5631
}
5632
5633
.carousel .active,
5634
.carousel .next,
5635
.carousel .prev {
5636
  display: block;
5637
}
5638
5639
.carousel .active {
5640
  left: 0;
5641
}
5642
5643
.carousel .next,
5644
.carousel .prev {
5645
  position: absolute;
5646
  top: 0;
5647
  width: 100%;
5648
}
5649
5650
.carousel .next {
5651
  left: 100%;
5652
}
5653
5654
.carousel .prev {
5655
  left: -100%;
5656
}
5657
5658
.carousel .next.left,
5659
.carousel .prevel.right {
5660
  left: 0;
5661
}
5662
5663
.carousel .active.left {
5664
  left: -100%;
5665
}
5666
5667
.carousel .active.right {
5668
  left: 100%;
5669
}
5670
5671
.carousel-control {
5672
  position: absolute;
5673
  top: 40%;
5674
  left: 15px;
5675
  width: 40px;
5676
  height: 40px;
5677
  margin-top: -20px;
5678
  font-size: 60px;
5679
  font-weight: 100;
5680
  line-height: 30px;
5681
  color: #ffffff;
5682
  text-align: center;
5683
  background: #222222;
5684
  border: 3px solid #ffffff;
5685
  -webkit-border-radius: 23px;
5686
     -moz-border-radius: 23px;
5687
          border-radius: 23px;
5688
  opacity: 0.5;
5689
  filter: alpha(opacity=50);
5690
}
5691
5692
.carousel-control.right {
5693
  right: 15px;
5694
  left: auto;
5695
}
5696
5697
.carousel-control:hover {
5698
  color: #ffffff;
5699
  text-decoration: none;
5700
  opacity: 0.9;
5701
  filter: alpha(opacity=90);
5702
}
5703
5704
.carousel-caption {
5705
  position: absolute;
5706
  right: 0;
5707
  bottom: 0;
5708
  left: 0;
5709
  padding: 15px;
5710
  background: #333333;
5711
  background: rgba(0, 0, 0, 0.75);
5712
}
5713
5714
.carousel-caption h4,
5715
.carousel-caption p {
5716
  line-height: 20px;
5717
  color: #ffffff;
5718
}
5719
5720
.carousel-caption h4 {
5721
  margin: 0 0 5px;
5722
}
5723
5724
.carousel-caption p {
5725
  margin-bottom: 0;
5726
}
5727
5728
.hero-unit {
5729
  padding: 60px;
5730
  margin-bottom: 30px;
5731
  background-color: #eeeeee;
5732
  -webkit-border-radius: 6px;
5733
     -moz-border-radius: 6px;
5734
          border-radius: 6px;
5735
}
5736
5737
.hero-unit h1 {
5738
  margin-bottom: 0;
5739
  font-size: 60px;
5740
  line-height: 1;
5741
  letter-spacing: -1px;
5742
  color: inherit;
5743
}
5744
5745
.hero-unit p {
5746
  font-size: 18px;
5747
  font-weight: 200;
5748
  line-height: 30px;
5749
  color: inherit;
5750
}
5751
5752
.pull-right {
5753
  float: right;
5754
}
5755
5756
.pull-left {
5757
  float: left;
5758
}
5759
5760
.hide {
5761
  display: none;
5762
}
5763
5764
.show {
5765
  display: block;
5766
}
5767
5768
.invisible {
5769
  visibility: hidden;
5770
}
5771
5772
.affix {
5773
  position: fixed;
5774
}

BIN
public/img/favicon.png


BIN
public/img/glyphicons-halflings-white.png


BIN
public/img/glyphicons-halflings.png


BIN
public/img/signup.png


+ 11 - 0
public/js/Chart.min.js

@ -0,0 +1,11 @@
1
/*!
2
 * Chart.js
3
 * http://chartjs.org/
4
 * Version: 1.0.1-beta.3
5
 *
6
 * Copyright 2014 Nick Downie
7
 * Released under the MIT license
8
 * https://github.com/nnnick/Chart.js/blob/master/LICENSE.md
9
 */
10
(function(){"use strict";var t=this,i=t.Chart,e=function(t){this.canvas=t.canvas,this.ctx=t;this.width=t.canvas.width,this.height=t.canvas.height;return this.aspectRatio=this.width/this.height,s.retinaScale(this),this};e.defaults={global:{animation:!0,animationSteps:60,animationEasing:"easeOutQuart",showScale:!0,scaleOverride:!1,scaleSteps:null,scaleStepWidth:null,scaleStartValue:null,scaleLineColor:"rgba(0,0,0,.1)",scaleLineWidth:1,scaleShowLabels:!0,scaleLabel:"<%=value%>",scaleIntegersOnly:!0,scaleBeginAtZero:!1,scaleFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",scaleFontSize:12,scaleFontStyle:"normal",scaleFontColor:"#666",responsive:!1,maintainAspectRatio:!0,showTooltips:!0,tooltipEvents:["mousemove","touchstart","touchmove","mouseout"],tooltipFillColor:"rgba(0,0,0,0.8)",tooltipFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",tooltipFontSize:14,tooltipFontStyle:"normal",tooltipFontColor:"#fff",tooltipTitleFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",tooltipTitleFontSize:14,tooltipTitleFontStyle:"bold",tooltipTitleFontColor:"#fff",tooltipYPadding:6,tooltipXPadding:6,tooltipCaretSize:8,tooltipCornerRadius:6,tooltipXOffset:10,tooltipTemplate:"<%if (label){%><%=label%>: <%}%><%= value %>",multiTooltipTemplate:"<%= value %>",multiTooltipKeyBackground:"#fff",onAnimationProgress:function(){},onAnimationComplete:function(){}}},e.types={};var s=e.helpers={},n=s.each=function(t,i,e){var s=Array.prototype.slice.call(arguments,3);if(t)if(t.length===+t.length){var n;for(n=0;n<t.length;n++)i.apply(e,[t[n],n].concat(s))}else for(var o in t)i.apply(e,[t[o],o].concat(s))},o=s.clone=function(t){var i={};return n(t,function(e,s){t.hasOwnProperty(s)&&(i[s]=e)}),i},a=s.extend=function(t){return n(Array.prototype.slice.call(arguments,1),function(i){n(i,function(e,s){i.hasOwnProperty(s)&&(t[s]=e)})}),t},h=s.merge=function(){var t=Array.prototype.slice.call(arguments,0);return t.unshift({}),a.apply(null,t)},l=s.indexOf=function(t,i){if(Array.prototype.indexOf)return t.indexOf(i);for(var e=0;e<t.length;e++)if(t[e]===i)return e;return-1},r=s.inherits=function(t){var i=this,e=t&&t.hasOwnProperty("constructor")?t.constructor:function(){return i.apply(this,arguments)},s=function(){this.constructor=e};return s.prototype=i.prototype,e.prototype=new s,e.extend=r,t&&a(e.prototype,t),e.__super__=i.prototype,e},c=s.noop=function(){},u=s.uid=function(){var t=0;return function(){return"chart-"+t++}}(),d=s.warn=function(t){window.console&&"function"==typeof window.console.warn&&console.warn(t)},p=s.amd="function"==typeof t.define&&t.define.amd,f=s.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},g=s.max=function(t){return Math.max.apply(Math,t)},m=s.min=function(t){return Math.min.apply(Math,t)},v=(s.cap=function(t,i,e){if(f(i)){if(t>i)return i}else if(f(e)&&e>t)return e;return t},s.getDecimalPlaces=function(t){return t%1!==0&&f(t)?t.toString().split(".")[1].length:0}),x=s.radians=function(t){return t*(Math.PI/180)},S=(s.getAngleFromPoint=function(t,i){var e=i.x-t.x,s=i.y-t.y,n=Math.sqrt(e*e+s*s),o=2*Math.PI+Math.atan2(s,e);return 0>e&&0>s&&(o+=2*Math.PI),{angle:o,distance:n}},s.aliasPixel=function(t){return t%2===0?0:.5}),C=(s.splineCurve=function(t,i,e,s){var n=Math.sqrt(Math.pow(i.x-t.x,2)+Math.pow(i.y-t.y,2)),o=Math.sqrt(Math.pow(e.x-i.x,2)+Math.pow(e.y-i.y,2)),a=s*n/(n+o),h=s*o/(n+o);return{inner:{x:i.x-a*(e.x-t.x),y:i.y-a*(e.y-t.y)},outer:{x:i.x+h*(e.x-t.x),y:i.y+h*(e.y-t.y)}}},s.calculateOrderOfMagnitude=function(t){return Math.floor(Math.log(t)/Math.LN10)}),y=(s.calculateScaleRange=function(t,i,e,s,n){var o=2,a=Math.floor(i/(1.5*e)),h=o>=a,l=g(t),r=m(t);l===r&&(l+=.5,r>=.5&&!s?r-=.5:l+=.5);for(var c=Math.abs(l-r),u=C(c),d=Math.ceil(l/(1*Math.pow(10,u)))*Math.pow(10,u),p=s?0:Math.floor(r/(1*Math.pow(10,u)))*Math.pow(10,u),f=d-p,v=Math.pow(10,u),x=Math.round(f/v);(x>a||a>2*x)&&!h;)if(x>a)v*=2,x=Math.round(f/v),x%1!==0&&(h=!0);else if(n&&u>=0){if(v/2%1!==0)break;v/=2,x=Math.round(f/v)}else v/=2,x=Math.round(f/v);return h&&(x=o,v=f/x),{steps:x,stepValue:v,min:p,max:p+x*v}},s.template=function(t,i){function e(t,i){var e=/\W/.test(t)?new Function("obj","var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push('"+t.replace(/[\r\t\n]/g," ").split("<%").join("	").replace(/((^|%>)[^\t]*)'/g,"$1\r").replace(/\t=(.*?)%>/g,"',$1,'").split("	").join("');").split("%>").join("p.push('").split("\r").join("\\'")+"');}return p.join('');"):s[t]=s[t];return i?e(i):e}if(t instanceof Function)return t(i);var s={};return e(t,i)}),b=(s.generateLabels=function(t,i,e,s){var o=new Array(i);return labelTemplateString&&n(o,function(i,n){o[n]=y(t,{value:e+s*(n+1)})}),o},s.easingEffects={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return-1*t*(t-2)},easeInOutQuad:function(t){return(t/=.5)<1?.5*t*t:-0.5*(--t*(t-2)-1)},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return 1*((t=t/1-1)*t*t+1)},easeInOutCubic:function(t){return(t/=.5)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return-1*((t=t/1-1)*t*t*t-1)},easeInOutQuart:function(t){return(t/=.5)<1?.5*t*t*t*t:-0.5*((t-=2)*t*t*t-2)},easeInQuint:function(t){return 1*(t/=1)*t*t*t*t},easeOutQuint:function(t){return 1*((t=t/1-1)*t*t*t*t+1)},easeInOutQuint:function(t){return(t/=.5)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},easeInSine:function(t){return-1*Math.cos(t/1*(Math.PI/2))+1},easeOutSine:function(t){return 1*Math.sin(t/1*(Math.PI/2))},easeInOutSine:function(t){return-0.5*(Math.cos(Math.PI*t/1)-1)},easeInExpo:function(t){return 0===t?1:1*Math.pow(2,10*(t/1-1))},easeOutExpo:function(t){return 1===t?1:1*(-Math.pow(2,-10*t/1)+1)},easeInOutExpo:function(t){return 0===t?0:1===t?1:(t/=.5)<1?.5*Math.pow(2,10*(t-1)):.5*(-Math.pow(2,-10*--t)+2)},easeInCirc:function(t){return t>=1?t:-1*(Math.sqrt(1-(t/=1)*t)-1)},easeOutCirc:function(t){return 1*Math.sqrt(1-(t=t/1-1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-0.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var i=1.70158,e=0,s=1;return 0===t?0:1==(t/=1)?1:(e||(e=.3),s<Math.abs(1)?(s=1,i=e/4):i=e/(2*Math.PI)*Math.asin(1/s),-(s*Math.pow(2,10*(t-=1))*Math.sin(2*(1*t-i)*Math.PI/e)))},easeOutElastic:function(t){var i=1.70158,e=0,s=1;return 0===t?0:1==(t/=1)?1:(e||(e=.3),s<Math.abs(1)?(s=1,i=e/4):i=e/(2*Math.PI)*Math.asin(1/s),s*Math.pow(2,-10*t)*Math.sin(2*(1*t-i)*Math.PI/e)+1)},easeInOutElastic:function(t){var i=1.70158,e=0,s=1;return 0===t?0:2==(t/=.5)?1:(e||(e=.3*1.5),s<Math.abs(1)?(s=1,i=e/4):i=e/(2*Math.PI)*Math.asin(1/s),1>t?-.5*s*Math.pow(2,10*(t-=1))*Math.sin(2*(1*t-i)*Math.PI/e):s*Math.pow(2,-10*(t-=1))*Math.sin(2*(1*t-i)*Math.PI/e)*.5+1)},easeInBack:function(t){var i=1.70158;return 1*(t/=1)*t*((i+1)*t-i)},easeOutBack:function(t){var i=1.70158;return 1*((t=t/1-1)*t*((i+1)*t+i)+1)},easeInOutBack:function(t){var i=1.70158;return(t/=.5)<1?.5*t*t*(((i*=1.525)+1)*t-i):.5*((t-=2)*t*(((i*=1.525)+1)*t+i)+2)},easeInBounce:function(t){return 1-b.easeOutBounce(1-t)},easeOutBounce:function(t){return(t/=1)<1/2.75?7.5625*t*t:2/2.75>t?1*(7.5625*(t-=1.5/2.75)*t+.75):2.5/2.75>t?1*(7.5625*(t-=2.25/2.75)*t+.9375):1*(7.5625*(t-=2.625/2.75)*t+.984375)},easeInOutBounce:function(t){return.5>t?.5*b.easeInBounce(2*t):.5*b.easeOutBounce(2*t-1)+.5}}),w=s.requestAnimFrame=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)}}(),P=(s.cancelAnimFrame=function(){return window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||window.oCancelAnimationFrame||window.msCancelAnimationFrame||function(t){return window.clearTimeout(t,1e3/60)}}(),s.animationLoop=function(t,i,e,s,n,o){var a=0,h=b[e]||b.linear,l=function(){a++;var e=a/i,r=h(e);t.call(o,r,e,a),s.call(o,r,e),i>a?o.animationFrame=w(l):n.apply(o)};w(l)},s.getRelativePosition=function(t){var i,e,s=t.originalEvent||t,n=t.currentTarget||t.srcElement,o=n.getBoundingClientRect();return s.touches?(i=s.touches[0].clientX-o.left,e=s.touches[0].clientY-o.top):(i=s.clientX-o.left,e=s.clientY-o.top),{x:i,y:e}},s.addEvent=function(t,i,e){t.addEventListener?t.addEventListener(i,e):t.attachEvent?t.attachEvent("on"+i,e):t["on"+i]=e}),L=s.removeEvent=function(t,i,e){t.removeEventListener?t.removeEventListener(i,e,!1):t.detachEvent?t.detachEvent("on"+i,e):t["on"+i]=c},k=(s.bindEvents=function(t,i,e){t.events||(t.events={}),n(i,function(i){t.events[i]=function(){e.apply(t,arguments)},P(t.chart.canvas,i,t.events[i])})},s.unbindEvents=function(t,i){n(i,function(i,e){L(t.chart.canvas,e,i)})}),F=s.getMaximumWidth=function(t){var i=t.parentNode;return i.clientWidth},R=s.getMaximumHeight=function(t){var i=t.parentNode;return i.clientHeight},A=(s.getMaximumSize=s.getMaximumWidth,s.retinaScale=function(t){var i=t.ctx,e=t.canvas.width,s=t.canvas.height;window.devicePixelRatio&&(i.canvas.style.width=e+"px",i.canvas.style.height=s+"px",i.canvas.height=s*window.devicePixelRatio,i.canvas.width=e*window.devicePixelRatio,i.scale(window.devicePixelRatio,window.devicePixelRatio))}),T=s.clear=function(t){t.ctx.clearRect(0,0,t.width,t.height)},M=s.fontString=function(t,i,e){return i+" "+t+"px "+e},W=s.longestText=function(t,i,e){t.font=i;var s=0;return n(e,function(i){var e=t.measureText(i).width;s=e>s?e:s}),s},z=s.drawRoundedRectangle=function(t,i,e,s,n,o){t.beginPath(),t.moveTo(i+o,e),t.lineTo(i+s-o,e),t.quadraticCurveTo(i+s,e,i+s,e+o),t.lineTo(i+s,e+n-o),t.quadraticCurveTo(i+s,e+n,i+s-o,e+n),t.lineTo(i+o,e+n),t.quadraticCurveTo(i,e+n,i,e+n-o),t.lineTo(i,e+o),t.quadraticCurveTo(i,e,i+o,e),t.closePath()};e.instances={},e.Type=function(t,i,s){this.options=i,this.chart=s,this.id=u(),e.instances[this.id]=this,i.responsive&&this.resize(),this.initialize.call(this,t)},a(e.Type.prototype,{initialize:function(){return this},clear:function(){return T(this.chart),this},stop:function(){return s.cancelAnimFrame.call(t,this.animationFrame),this},resize:function(t){this.stop();var i=this.chart.canvas,e=F(this.chart.canvas),s=this.options.maintainAspectRatio?e/this.chart.aspectRatio:R(this.chart.canvas);return i.width=this.chart.width=e,i.height=this.chart.height=s,A(this.chart),"function"==typeof t&&t.apply(this,Array.prototype.slice.call(arguments,1)),this},reflow:c,render:function(t){return t&&this.reflow(),this.options.animation&&!t?s.animationLoop(this.draw,this.options.animationSteps,this.options.animationEasing,this.options.onAnimationProgress,this.options.onAnimationComplete,this):(this.draw(),this.options.onAnimationComplete.call(this)),this},generateLegend:function(){return y(this.options.legendTemplate,this)},destroy:function(){this.clear(),k(this,this.events),delete e.instances[this.id]},showTooltip:function(t,i){"undefined"==typeof this.activeElements&&(this.activeElements=[]);var o=function(t){var i=!1;return t.length!==this.activeElements.length?i=!0:(n(t,function(t,e){t!==this.activeElements[e]&&(i=!0)},this),i)}.call(this,t);if(o||i){if(this.activeElements=t,this.draw(),t.length>0)if(this.datasets&&this.datasets.length>1){for(var a,h,r=this.datasets.length-1;r>=0&&(a=this.datasets[r].points||this.datasets[r].bars||this.datasets[r].segments,h=l(a,t[0]),-1===h);r--);var c=[],u=[],d=function(){var t,i,e,n,o,a=[],l=[],r=[];return s.each(this.datasets,function(i){t=i.points||i.bars||i.segments,t[h]&&a.push(t[h])}),s.each(a,function(t){l.push(t.x),r.push(t.y),c.push(s.template(this.options.multiTooltipTemplate,t)),u.push({fill:t._saved.fillColor||t.fillColor,stroke:t._saved.strokeColor||t.strokeColor})},this),o=m(r),e=g(r),n=m(l),i=g(l),{x:n>this.chart.width/2?n:i,y:(o+e)/2}}.call(this,h);new e.MultiTooltip({x:d.x,y:d.y,xPadding:this.options.tooltipXPadding,yPadding:this.options.tooltipYPadding,xOffset:this.options.tooltipXOffset,fillColor:this.options.tooltipFillColor,textColor:this.options.tooltipFontColor,fontFamily:this.options.tooltipFontFamily,fontStyle:this.options.tooltipFontStyle,fontSize:this.options.tooltipFontSize,titleTextColor:this.options.tooltipTitleFontColor,titleFontFamily:this.options.tooltipTitleFontFamily,titleFontStyle:this.options.tooltipTitleFontStyle,titleFontSize:this.options.tooltipTitleFontSize,cornerRadius:this.options.tooltipCornerRadius,labels:c,legendColors:u,legendColorBackground:this.options.multiTooltipKeyBackground,title:t[0].label,chart:this.chart,ctx:this.chart.ctx}).draw()}else n(t,function(t){var i=t.tooltipPosition();new e.Tooltip({x:Math.round(i.x),y:Math.round(i.y),xPadding:this.options.tooltipXPadding,yPadding:this.options.tooltipYPadding,fillColor:this.options.tooltipFillColor,textColor:this.options.tooltipFontColor,fontFamily:this.options.tooltipFontFamily,fontStyle:this.options.tooltipFontStyle,fontSize:this.options.tooltipFontSize,caretHeight:this.options.tooltipCaretSize,cornerRadius:this.options.tooltipCornerRadius,text:y(this.options.tooltipTemplate,t),chart:this.chart}).draw()},this);return this}},toBase64Image:function(){return this.chart.canvas.toDataURL.apply(this.chart.canvas,arguments)}}),e.Type.extend=function(t){var i=this,s=function(){return i.apply(this,arguments)};if(s.prototype=o(i.prototype),a(s.prototype,t),s.extend=e.Type.extend,t.name||i.prototype.name){var n=t.name||i.prototype.name,l=e.defaults[i.prototype.name]?o(e.defaults[i.prototype.name]):{};e.defaults[n]=a(l,t.defaults),e.types[n]=s,e.prototype[n]=function(t,i){var o=h(e.defaults.global,e.defaults[n],i||{});return new s(t,o,this)}}else d("Name not provided for this chart, so it hasn't been registered");return i},e.Element=function(t){a(this,t),this.initialize.apply(this,arguments),this.save()},a(e.Element.prototype,{initialize:function(){},restore:function(t){return t?n(t,function(t){this[t]=this._saved[t]},this):a(this,this._saved),this},save:function(){return this._saved=o(this),delete this._saved._saved,this},update:function(t){return n(t,function(t,i){this._saved[i]=this[i],this[i]=t},this),this},transition:function(t,i){return n(t,function(t,e){this[e]=(t-this._saved[e])*i+this._saved[e]},this),this},tooltipPosition:function(){return{x:this.x,y:this.y}}}),e.Element.extend=r,e.Point=e.Element.extend({display:!0,inRange:function(t,i){var e=this.hitDetectionRadius+this.radius;return Math.pow(t-this.x,2)+Math.pow(i-this.y,2)<Math.pow(e,2)},draw:function(){if(this.display){var t=this.ctx;t.beginPath(),t.arc(this.x,this.y,this.radius,0,2*Math.PI),t.closePath(),t.strokeStyle=this.strokeColor,t.lineWidth=this.strokeWidth,t.fillStyle=this.fillColor,t.fill(),t.stroke()}}}),e.Arc=e.Element.extend({inRange:function(t,i){var e=s.getAngleFromPoint(this,{x:t,y:i}),n=e.angle>=this.startAngle&&e.angle<=this.endAngle,o=e.distance>=this.innerRadius&&e.distance<=this.outerRadius;return n&&o},tooltipPosition:function(){var t=this.startAngle+(this.endAngle-this.startAngle)/2,i=(this.outerRadius-this.innerRadius)/2+this.innerRadius;return{x:this.x+Math.cos(t)*i,y:this.y+Math.sin(t)*i}},draw:function(t){var i=this.ctx;i.beginPath(),i.arc(this.x,this.y,this.outerRadius,this.startAngle,this.endAngle),i.arc(this.x,this.y,this.innerRadius,this.endAngle,this.startAngle,!0),i.closePath(),i.strokeStyle=this.strokeColor,i.lineWidth=this.strokeWidth,i.fillStyle=this.fillColor,i.fill(),i.lineJoin="bevel",this.showStroke&&i.stroke()}}),e.Rectangle=e.Element.extend({draw:function(){var t=this.ctx,i=this.width/2,e=this.x-i,s=this.x+i,n=this.base-(this.base-this.y),o=this.strokeWidth/2;this.showStroke&&(e+=o,s-=o,n+=o),t.beginPath(),t.fillStyle=this.fillColor,t.strokeStyle=this.strokeColor,t.lineWidth=this.strokeWidth,t.moveTo(e,this.base),t.lineTo(e,n),t.lineTo(s,n),t.lineTo(s,this.base),t.fill(),this.showStroke&&t.stroke()},height:function(){return this.base-this.y},inRange:function(t,i){return t>=this.x-this.width/2&&t<=this.x+this.width/2&&i>=this.y&&i<=this.base}}),e.Tooltip=e.Element.extend({draw:function(){var t=this.chart.ctx;t.font=M(this.fontSize,this.fontStyle,this.fontFamily),this.xAlign="center",this.yAlign="above";var i=2,e=t.measureText(this.text).width+2*this.xPadding,s=this.fontSize+2*this.yPadding,n=s+this.caretHeight+i;this.x+e/2>this.chart.width?this.xAlign="left":this.x-e/2<0&&(this.xAlign="right"),this.y-n<0&&(this.yAlign="below");var o=this.x-e/2,a=this.y-n;switch(t.fillStyle=this.fillColor,this.yAlign){case"above":t.beginPath(),t.moveTo(this.x,this.y-i),t.lineTo(this.x+this.caretHeight,this.y-(i+this.caretHeight)),t.lineTo(this.x-this.caretHeight,this.y-(i+this.caretHeight)),t.closePath(),t.fill();break;case"below":a=this.y+i+this.caretHeight,t.beginPath(),t.moveTo(this.x,this.y+i),t.lineTo(this.x+this.caretHeight,this.y+i+this.caretHeight),t.lineTo(this.x-this.caretHeight,this.y+i+this.caretHeight),t.closePath(),t.fill()}switch(this.xAlign){case"left":o=this.x-e+(this.cornerRadius+this.caretHeight);break;case"right":o=this.x-(this.cornerRadius+this.caretHeight)}z(t,o,a,e,s,this.cornerRadius),t.fill(),t.fillStyle=this.textColor,t.textAlign="center",t.textBaseline="middle",t.fillText(this.text,o+e/2,a+s/2)}}),e.MultiTooltip=e.Element.extend({initialize:function(){this.font=M(this.fontSize,this.fontStyle,this.fontFamily),this.titleFont=M(this.titleFontSize,this.titleFontStyle,this.titleFontFamily),this.height=this.labels.length*this.fontSize+(this.labels.length-1)*(this.fontSize/2)+2*this.yPadding+1.5*this.titleFontSize,this.ctx.font=this.titleFont;var t=this.ctx.measureText(this.title).width,i=W(this.ctx,this.font,this.labels)+this.fontSize+3,e=g([i,t]);this.width=e+2*this.xPadding;var s=this.height/2;this.y-s<0?this.y=s:this.y+s>this.chart.height&&(this.y=this.chart.height-s),this.x>this.chart.width/2?this.x-=this.xOffset+this.width:this.x+=this.xOffset},getLineHeight:function(t){var i=this.y-this.height/2+this.yPadding,e=t-1;return 0===t?i+this.titleFontSize/2:i+(1.5*this.fontSize*e+this.fontSize/2)+1.5*this.titleFontSize},draw:function(){z(this.ctx,this.x,this.y-this.height/2,this.width,this.height,this.cornerRadius);var t=this.ctx;t.fillStyle=this.fillColor,t.fill(),t.closePath(),t.textAlign="left",t.textBaseline="middle",t.fillStyle=this.titleTextColor,t.font=this.titleFont,t.fillText(this.title,this.x+this.xPadding,this.getLineHeight(0)),t.font=this.font,s.each(this.labels,function(i,e){t.fillStyle=this.textColor,t.fillText(i,this.x+this.xPadding+this.fontSize+3,this.getLineHeight(e+1)),t.fillStyle=this.legendColorBackground,t.fillRect(this.x+this.xPadding,this.getLineHeight(e+1)-this.fontSize/2,this.fontSize,this.fontSize),t.fillStyle=this.legendColors[e].fill,t.fillRect(this.x+this.xPadding,this.getLineHeight(e+1)-this.fontSize/2,this.fontSize,this.fontSize)},this)}}),e.Scale=e.Element.extend({initialize:function(){this.fit()},buildYLabels:function(){this.yLabels=[];for(var t=v(this.stepValue),i=0;i<=this.steps;i++)this.yLabels.push(y(this.templateString,{value:(this.min+i*this.stepValue).toFixed(t)}));this.yLabelWidth=this.display&&this.showLabels?W(this.ctx,this.font,this.yLabels):0},addXLabel:function(t){this.xLabels.push(t),this.valuesCount++,this.fit()},removeXLabel:function(){this.xLabels.shift(),this.valuesCount--,this.fit()},fit:function(){this.startPoint=this.display?this.fontSize:0,this.endPoint=this.display?this.height-1.5*this.fontSize-5:this.height,this.startPoint+=this.padding,this.endPoint-=this.padding;var t,i=this.endPoint-this.startPoint;for(this.calculateYRange(i),this.buildYLabels(),this.calculateXLabelRotation();i>this.endPoint-this.startPoint;)i=this.endPoint-this.startPoint,t=this.yLabelWidth,this.calculateYRange(i),this.buildYLabels(),t<this.yLabelWidth&&this.calculateXLabelRotation()},calculateXLabelRotation:function(){this.ctx.font=this.font;var t,i,e=this.ctx.measureText(this.xLabels[0]).width,s=this.ctx.measureText(this.xLabels[this.xLabels.length-1]).width;if(this.xScalePaddingRight=s/2+3,this.xScalePaddingLeft=e/2>this.yLabelWidth+10?e/2:this.yLabelWidth+10,this.xLabelRotation=0,this.display){var n,o=W(this.ctx,this.font,this.xLabels);this.xLabelWidth=o;for(var a=Math.floor(this.calculateX(1)-this.calculateX(0))-6;this.xLabelWidth>a&&0===this.xLabelRotation||this.xLabelWidth>a&&this.xLabelRotation<=90&&this.xLabelRotation>0;)n=Math.cos(x(this.xLabelRotation)),t=n*e,i=n*s,t+this.fontSize/2>this.yLabelWidth+8&&(this.xScalePaddingLeft=t+this.fontSize/2),this.xScalePaddingRight=this.fontSize/2,this.xLabelRotation++,this.xLabelWidth=n*o;this.xLabelRotation>0&&(this.endPoint-=Math.sin(x(this.xLabelRotation))*o+3)}else this.xLabelWidth=0,this.xScalePaddingRight=this.padding,this.xScalePaddingLeft=this.padding},calculateYRange:c,drawingArea:function(){return this.startPoint-this.endPoint},calculateY:function(t){var i=this.drawingArea()/(this.min-this.max);return this.endPoint-i*(t-this.min)},calculateX:function(t){var i=(this.xLabelRotation>0,this.width-(this.xScalePaddingLeft+this.xScalePaddingRight)),e=i/(this.valuesCount-(this.offsetGridLines?0:1)),s=e*t+this.xScalePaddingLeft;return this.offsetGridLines&&(s+=e/2),Math.round(s)},update:function(t){s.extend(this,t),this.fit()},draw:function(){var t=this.ctx,i=(this.endPoint-this.startPoint)/this.steps,e=Math.round(this.xScalePaddingLeft);this.display&&(t.fillStyle=this.textColor,t.font=this.font,n(this.yLabels,function(n,o){var a=this.endPoint-i*o,h=Math.round(a);t.textAlign="right",t.textBaseline="middle",this.showLabels&&t.fillText(n,e-10,a),t.beginPath(),o>0?(t.lineWidth=this.gridLineWidth,t.strokeStyle=this.gridLineColor):(t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor),h+=s.aliasPixel(t.lineWidth),t.moveTo(e,h),t.lineTo(this.width,h),t.stroke(),t.closePath(),t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor,t.beginPath(),t.moveTo(e-5,h),t.lineTo(e,h),t.stroke(),t.closePath()},this),n(this.xLabels,function(i,e){var s=this.calculateX(e)+S(this.lineWidth),n=this.calculateX(e-(this.offsetGridLines?.5:0))+S(this.lineWidth),o=this.xLabelRotation>0;t.beginPath(),e>0?(t.lineWidth=this.gridLineWidth,t.strokeStyle=this.gridLineColor):(t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor),t.moveTo(n,this.endPoint),t.lineTo(n,this.startPoint-3),t.stroke(),t.closePath(),t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor,t.beginPath(),t.moveTo(n,this.endPoint),t.lineTo(n,this.endPoint+5),t.stroke(),t.closePath(),t.save(),t.translate(s,o?this.endPoint+12:this.endPoint+8),t.rotate(-1*x(this.xLabelRotation)),t.font=this.font,t.textAlign=o?"right":"center",t.textBaseline=o?"middle":"top",t.fillText(i,0,0),t.restore()},this))}}),e.RadialScale=e.Element.extend({initialize:function(){this.size=m([this.height,this.width]),this.drawingArea=this.display?this.size/2-(this.fontSize/2+this.backdropPaddingY):this.size/2},calculateCenterOffset:function(t){var i=this.drawingArea/(this.max-this.min);return(t-this.min)*i},update:function(){this.lineArc?this.drawingArea=this.display?this.size/2-(this.fontSize/2+this.backdropPaddingY):this.size/2:this.setScaleSize(),this.buildYLabels()},buildYLabels:function(){this.yLabels=[];for(var t=v(this.stepValue),i=0;i<=this.steps;i++)this.yLabels.push(y(this.templateString,{value:(this.min+i*this.stepValue).toFixed(t)}))},getCircumference:function(){return 2*Math.PI/this.valuesCount},setScaleSize:function(){var t,i,e,s,n,o,a,h,l,r,c,u,d=m([this.height/2-this.pointLabelFontSize-5,this.width/2]),p=this.width,g=0;for(this.ctx.font=M(this.pointLabelFontSize,this.pointLabelFontStyle,this.pointLabelFontFamily),i=0;i<this.valuesCount;i++)t=this.getPointPosition(i,d),e=this.ctx.measureText(y(this.templateString,{value:this.labels[i]})).width+5,0===i||i===this.valuesCount/2?(s=e/2,t.x+s>p&&(p=t.x+s,n=i),t.x-s<g&&(g=t.x-s,a=i)):i<this.valuesCount/2?t.x+e>p&&(p=t.x+e,n=i):i>this.valuesCount/2&&t.x-e<g&&(g=t.x-e,a=i);l=g,r=Math.ceil(p-this.width),o=this.getIndexAngle(n),h=this.getIndexAngle(a),c=r/Math.sin(o+Math.PI/2),u=l/Math.sin(h+Math.PI/2),c=f(c)?c:0,u=f(u)?u:0,this.drawingArea=d-(u+c)/2,this.setCenterPoint(u,c)},setCenterPoint:function(t,i){var e=this.width-i-this.drawingArea,s=t+this.drawingArea;this.xCenter=(s+e)/2,this.yCenter=this.height/2},getIndexAngle:function(t){var i=2*Math.PI/this.valuesCount;return t*i-Math.PI/2},getPointPosition:function(t,i){var e=this.getIndexAngle(t);return{x:Math.cos(e)*i+this.xCenter,y:Math.sin(e)*i+this.yCenter}},draw:function(){if(this.display){var t=this.ctx;if(n(this.yLabels,function(i,e){if(e>0){var s,n=e*(this.drawingArea/this.steps),o=this.yCenter-n;if(this.lineWidth>0)if(t.strokeStyle=this.lineColor,t.lineWidth=this.lineWidth,this.lineArc)t.beginPath(),t.arc(this.xCenter,this.yCenter,n,0,2*Math.PI),t.closePath(),t.stroke();else{t.beginPath();for(var a=0;a<this.valuesCount;a++)s=this.getPointPosition(a,this.calculateCenterOffset(this.min+e*this.stepValue)),0===a?t.moveTo(s.x,s.y):t.lineTo(s.x,s.y);t.closePath(),t.stroke()}if(this.showLabels){if(t.font=M(this.fontSize,this.fontStyle,this.fontFamily),this.showLabelBackdrop){var h=t.measureText(i).width;t.fillStyle=this.backdropColor,t.fillRect(this.xCenter-h/2-this.backdropPaddingX,o-this.fontSize/2-this.backdropPaddingY,h+2*this.backdropPaddingX,this.fontSize+2*this.backdropPaddingY)}t.textAlign="center",t.textBaseline="middle",t.fillStyle=this.fontColor,t.fillText(i,this.xCenter,o)}}},this),!this.lineArc){t.lineWidth=this.angleLineWidth,t.strokeStyle=this.angleLineColor;for(var i=this.valuesCount-1;i>=0;i--){if(this.angleLineWidth>0){var e=this.getPointPosition(i,this.calculateCenterOffset(this.max));t.beginPath(),t.moveTo(this.xCenter,this.yCenter),t.lineTo(e.x,e.y),t.stroke(),t.closePath()}var s=this.getPointPosition(i,this.calculateCenterOffset(this.max)+5);t.font=M(this.pointLabelFontSize,this.pointLabelFontStyle,this.pointLabelFontFamily),t.fillStyle=this.pointLabelFontColor;var o=this.labels.length,a=this.labels.length/2,h=a/2,l=h>i||i>o-h,r=i===h||i===o-h;t.textAlign=0===i?"center":i===a?"center":a>i?"left":"right",t.textBaseline=r?"middle":l?"bottom":"top",t.fillText(this.labels[i],s.x,s.y)}}}}}),s.addEvent(window,"resize",function(){var t;return function(){clearTimeout(t),t=setTimeout(function(){n(e.instances,function(t){t.options.responsive&&t.resize(t.render,!0)})},50)}}()),p?define(function(){return e}):"object"==typeof module&&module.exports&&(module.exports=e),t.Chart=e,e.noConflict=function(){return t.Chart=i,e}}).call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={scaleBeginAtZero:!0,scaleShowGridLines:!0,scaleGridLineColor:"rgba(0,0,0,.05)",scaleGridLineWidth:1,barShowStroke:!0,barStrokeWidth:2,barValueSpacing:5,barDatasetSpacing:1,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<datasets.length; i++){%><li><span style="background-color:<%=datasets[i].fillColor%>"></span><%if(datasets[i].label){%><%=datasets[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"Bar",defaults:s,initialize:function(t){var s=this.options;this.ScaleClass=i.Scale.extend({offsetGridLines:!0,calculateBarX:function(t,i,e){var n=this.calculateBaseWidth(),o=this.calculateX(e)-n/2,a=this.calculateBarWidth(t);return o+a*i+i*s.barDatasetSpacing+a/2},calculateBaseWidth:function(){return this.calculateX(1)-this.calculateX(0)-2*s.barValueSpacing},calculateBarWidth:function(t){var i=this.calculateBaseWidth()-(t-1)*s.barDatasetSpacing;return i/t}}),this.datasets=[],this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getBarsAtEvent(t):[];this.eachBars(function(t){t.restore(["fillColor","strokeColor"])}),e.each(i,function(t){t.fillColor=t.highlightFill,t.strokeColor=t.highlightStroke}),this.showTooltip(i)}),this.BarClass=i.Rectangle.extend({strokeWidth:this.options.barStrokeWidth,showStroke:this.options.barShowStroke,ctx:this.chart.ctx}),e.each(t.datasets,function(i){var s={label:i.label||null,fillColor:i.fillColor,strokeColor:i.strokeColor,bars:[]};this.datasets.push(s),e.each(i.data,function(n,o){e.isNumber(n)&&s.bars.push(new this.BarClass({value:n,label:t.labels[o],datasetLabel:i.label,strokeColor:i.strokeColor,fillColor:i.fillColor,highlightFill:i.highlightFill||i.fillColor,highlightStroke:i.highlightStroke||i.strokeColor}))},this)},this),this.buildScale(t.labels),this.BarClass.prototype.base=this.scale.endPoint,this.eachBars(function(t,i,s){e.extend(t,{width:this.scale.calculateBarWidth(this.datasets.length),x:this.scale.calculateBarX(this.datasets.length,s,i),y:this.scale.endPoint}),t.save()},this),this.render()},update:function(){this.scale.update(),e.each(this.activeElements,function(t){t.restore(["fillColor","strokeColor"])}),this.eachBars(function(t){t.save()}),this.render()},eachBars:function(t){e.each(this.datasets,function(i,s){e.each(i.bars,t,this,s)},this)},getBarsAtEvent:function(t){for(var i,s=[],n=e.getRelativePosition(t),o=function(t){s.push(t.bars[i])},a=0;a<this.datasets.length;a++)for(i=0;i<this.datasets[a].bars.length;i++)if(this.datasets[a].bars[i].inRange(n.x,n.y))return e.each(this.datasets,o),s;return s},buildScale:function(t){var i=this,s=function(){var t=[];return i.eachBars(function(i){t.push(i.value)}),t},n={templateString:this.options.scaleLabel,height:this.chart.height,width:this.chart.width,ctx:this.chart.ctx,textColor:this.options.scaleFontColor,fontSize:this.options.scaleFontSize,fontStyle:this.options.scaleFontStyle,fontFamily:this.options.scaleFontFamily,valuesCount:t.length,beginAtZero:this.options.scaleBeginAtZero,integersOnly:this.options.scaleIntegersOnly,calculateYRange:function(t){var i=e.calculateScaleRange(s(),t,this.fontSize,this.beginAtZero,this.integersOnly);e.extend(this,i)},xLabels:t,font:e.fontString(this.options.scaleFontSize,this.options.scaleFontStyle,this.options.scaleFontFamily),lineWidth:this.options.scaleLineWidth,lineColor:this.options.scaleLineColor,gridLineWidth:this.options.scaleShowGridLines?this.options.scaleGridLineWidth:0,gridLineColor:this.options.scaleShowGridLines?this.options.scaleGridLineColor:"rgba(0,0,0,0)",padding:this.options.showScale?0:this.options.barShowStroke?this.options.barStrokeWidth:0,showLabels:this.options.scaleShowLabels,display:this.options.showScale};this.options.scaleOverride&&e.extend(n,{calculateYRange:e.noop,steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}),this.scale=new this.ScaleClass(n)},addData:function(t,i){e.each(t,function(t,s){e.isNumber(t)&&this.datasets[s].bars.push(new this.BarClass({value:t,label:i,x:this.scale.calculateBarX(this.datasets.length,s,this.scale.valuesCount+1),y:this.scale.endPoint,width:this.scale.calculateBarWidth(this.datasets.length),base:this.scale.endPoint,strokeColor:this.datasets[s].strokeColor,fillColor:this.datasets[s].fillColor}))},this),this.scale.addXLabel(i),this.update()},removeData:function(){this.scale.removeXLabel(),e.each(this.datasets,function(t){t.bars.shift()},this),this.update()},reflow:function(){e.extend(this.BarClass.prototype,{y:this.scale.endPoint,base:this.scale.endPoint});var t=e.extend({height:this.chart.height,width:this.chart.width});this.scale.update(t)},draw:function(t){var i=t||1;this.clear();this.chart.ctx;this.scale.draw(i),e.each(this.datasets,function(t,s){e.each(t.bars,function(t,e){t.base=this.scale.endPoint,t.transition({x:this.scale.calculateBarX(this.datasets.length,s,e),y:this.scale.calculateY(t.value),width:this.scale.calculateBarWidth(this.datasets.length)},i).draw()},this)},this)}})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={segmentShowStroke:!0,segmentStrokeColor:"#fff",segmentStrokeWidth:2,percentageInnerCutout:50,animationSteps:100,animationEasing:"easeOutBounce",animateRotate:!0,animateScale:!1,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<segments.length; i++){%><li><span style="background-color:<%=segments[i].fillColor%>"></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"Doughnut",defaults:s,initialize:function(t){this.segments=[],this.outerRadius=(e.min([this.chart.width,this.chart.height])-this.options.segmentStrokeWidth/2)/2,this.SegmentArc=i.Arc.extend({ctx:this.chart.ctx,x:this.chart.width/2,y:this.chart.height/2}),this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getSegmentsAtEvent(t):[];
11
e.each(this.segments,function(t){t.restore(["fillColor"])}),e.each(i,function(t){t.fillColor=t.highlightColor}),this.showTooltip(i)}),this.calculateTotal(t),e.each(t,function(t,i){this.addData(t,i,!0)},this),this.render()},getSegmentsAtEvent:function(t){var i=[],s=e.getRelativePosition(t);return e.each(this.segments,function(t){t.inRange(s.x,s.y)&&i.push(t)},this),i},addData:function(t,i,e){var s=i||this.segments.length;this.segments.splice(s,0,new this.SegmentArc({value:t.value,outerRadius:this.options.animateScale?0:this.outerRadius,innerRadius:this.options.animateScale?0:this.outerRadius/100*this.options.percentageInnerCutout,fillColor:t.color,highlightColor:t.highlight||t.color,showStroke:this.options.segmentShowStroke,strokeWidth:this.options.segmentStrokeWidth,strokeColor:this.options.segmentStrokeColor,startAngle:1.5*Math.PI,circumference:this.options.animateRotate?0:this.calculateCircumference(t.value),label:t.label})),e||(this.reflow(),this.update())},calculateCircumference:function(t){return 2*Math.PI*(t/this.total)},calculateTotal:function(t){this.total=0,e.each(t,function(t){this.total+=t.value},this)},update:function(){this.calculateTotal(this.segments),e.each(this.activeElements,function(t){t.restore(["fillColor"])}),e.each(this.segments,function(t){t.save()}),this.render()},removeData:function(t){var i=e.isNumber(t)?t:this.segments.length-1;this.segments.splice(i,1),this.reflow(),this.update()},reflow:function(){e.extend(this.SegmentArc.prototype,{x:this.chart.width/2,y:this.chart.height/2}),this.outerRadius=(e.min([this.chart.width,this.chart.height])-this.options.segmentStrokeWidth/2)/2,e.each(this.segments,function(t){t.update({outerRadius:this.outerRadius,innerRadius:this.outerRadius/100*this.options.percentageInnerCutout})},this)},draw:function(t){var i=t?t:1;this.clear(),e.each(this.segments,function(t,e){t.transition({circumference:this.calculateCircumference(t.value),outerRadius:this.outerRadius,innerRadius:this.outerRadius/100*this.options.percentageInnerCutout},i),t.endAngle=t.startAngle+t.circumference,t.draw(),0===e&&(t.startAngle=1.5*Math.PI),e<this.segments.length-1&&(this.segments[e+1].startAngle=t.endAngle)},this)}}),i.types.Doughnut.extend({name:"Pie",defaults:e.merge(s,{percentageInnerCutout:0})})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={scaleShowGridLines:!0,scaleGridLineColor:"rgba(0,0,0,.05)",scaleGridLineWidth:1,bezierCurve:!0,bezierCurveTension:.4,pointDot:!0,pointDotRadius:4,pointDotStrokeWidth:1,pointHitDetectionRadius:20,datasetStroke:!0,datasetStrokeWidth:2,datasetFill:!0,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<datasets.length; i++){%><li><span style="background-color:<%=datasets[i].strokeColor%>"></span><%if(datasets[i].label){%><%=datasets[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"Line",defaults:s,initialize:function(t){this.PointClass=i.Point.extend({strokeWidth:this.options.pointDotStrokeWidth,radius:this.options.pointDotRadius,display:this.options.pointDot,hitDetectionRadius:this.options.pointHitDetectionRadius,ctx:this.chart.ctx,inRange:function(t){return Math.pow(t-this.x,2)<Math.pow(this.radius+this.hitDetectionRadius,2)}}),this.datasets=[],this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getPointsAtEvent(t):[];this.eachPoints(function(t){t.restore(["fillColor","strokeColor"])}),e.each(i,function(t){t.fillColor=t.highlightFill,t.strokeColor=t.highlightStroke}),this.showTooltip(i)}),e.each(t.datasets,function(i){var s={label:i.label||null,fillColor:i.fillColor,strokeColor:i.strokeColor,pointColor:i.pointColor,pointStrokeColor:i.pointStrokeColor,points:[]};this.datasets.push(s),e.each(i.data,function(n,o){e.isNumber(n)&&s.points.push(new this.PointClass({value:n,label:t.labels[o],datasetLabel:i.label,strokeColor:i.pointStrokeColor,fillColor:i.pointColor,highlightFill:i.pointHighlightFill||i.pointColor,highlightStroke:i.pointHighlightStroke||i.pointStrokeColor}))},this),this.buildScale(t.labels),this.eachPoints(function(t,i){e.extend(t,{x:this.scale.calculateX(i),y:this.scale.endPoint}),t.save()},this)},this),this.render()},update:function(){this.scale.update(),e.each(this.activeElements,function(t){t.restore(["fillColor","strokeColor"])}),this.eachPoints(function(t){t.save()}),this.render()},eachPoints:function(t){e.each(this.datasets,function(i){e.each(i.points,t,this)},this)},getPointsAtEvent:function(t){var i=[],s=e.getRelativePosition(t);return e.each(this.datasets,function(t){e.each(t.points,function(t){t.inRange(s.x,s.y)&&i.push(t)})},this),i},buildScale:function(t){var s=this,n=function(){var t=[];return s.eachPoints(function(i){t.push(i.value)}),t},o={templateString:this.options.scaleLabel,height:this.chart.height,width:this.chart.width,ctx:this.chart.ctx,textColor:this.options.scaleFontColor,fontSize:this.options.scaleFontSize,fontStyle:this.options.scaleFontStyle,fontFamily:this.options.scaleFontFamily,valuesCount:t.length,beginAtZero:this.options.scaleBeginAtZero,integersOnly:this.options.scaleIntegersOnly,calculateYRange:function(t){var i=e.calculateScaleRange(n(),t,this.fontSize,this.beginAtZero,this.integersOnly);e.extend(this,i)},xLabels:t,font:e.fontString(this.options.scaleFontSize,this.options.scaleFontStyle,this.options.scaleFontFamily),lineWidth:this.options.scaleLineWidth,lineColor:this.options.scaleLineColor,gridLineWidth:this.options.scaleShowGridLines?this.options.scaleGridLineWidth:0,gridLineColor:this.options.scaleShowGridLines?this.options.scaleGridLineColor:"rgba(0,0,0,0)",padding:this.options.showScale?0:this.options.pointDotRadius+this.options.pointDotStrokeWidth,showLabels:this.options.scaleShowLabels,display:this.options.showScale};this.options.scaleOverride&&e.extend(o,{calculateYRange:e.noop,steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}),this.scale=new i.Scale(o)},addData:function(t,i){e.each(t,function(t,s){e.isNumber(t)&&this.datasets[s].points.push(new this.PointClass({value:t,label:i,x:this.scale.calculateX(this.scale.valuesCount+1),y:this.scale.endPoint,strokeColor:this.datasets[s].pointStrokeColor,fillColor:this.datasets[s].pointColor}))},this),this.scale.addXLabel(i),this.update()},removeData:function(){this.scale.removeXLabel(),e.each(this.datasets,function(t){t.points.shift()},this),this.update()},reflow:function(){var t=e.extend({height:this.chart.height,width:this.chart.width});this.scale.update(t)},draw:function(t){var i=t||1;this.clear();var s=this.chart.ctx;this.scale.draw(i),e.each(this.datasets,function(t){e.each(t.points,function(t,e){t.transition({y:this.scale.calculateY(t.value),x:this.scale.calculateX(e)},i)},this),this.options.bezierCurve&&e.each(t.points,function(i,s){i.controlPoints=0===s?e.splineCurve(i,i,t.points[s+1],0):s>=t.points.length-1?e.splineCurve(t.points[s-1],i,i,0):e.splineCurve(t.points[s-1],i,t.points[s+1],this.options.bezierCurveTension)},this),s.lineWidth=this.options.datasetStrokeWidth,s.strokeStyle=t.strokeColor,s.beginPath(),e.each(t.points,function(i,e){e>0?this.options.bezierCurve?s.bezierCurveTo(t.points[e-1].controlPoints.outer.x,t.points[e-1].controlPoints.outer.y,i.controlPoints.inner.x,i.controlPoints.inner.y,i.x,i.y):s.lineTo(i.x,i.y):s.moveTo(i.x,i.y)},this),s.stroke(),this.options.datasetFill&&(s.lineTo(t.points[t.points.length-1].x,this.scale.endPoint),s.lineTo(this.scale.calculateX(0),this.scale.endPoint),s.fillStyle=t.fillColor,s.closePath(),s.fill()),e.each(t.points,function(t){t.draw()})},this)}})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={scaleShowLabelBackdrop:!0,scaleBackdropColor:"rgba(255,255,255,0.75)",scaleBeginAtZero:!0,scaleBackdropPaddingY:2,scaleBackdropPaddingX:2,scaleShowLine:!0,segmentShowStroke:!0,segmentStrokeColor:"#fff",segmentStrokeWidth:2,animationSteps:100,animationEasing:"easeOutBounce",animateRotate:!0,animateScale:!1,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<segments.length; i++){%><li><span style="background-color:<%=segments[i].fillColor%>"></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"PolarArea",defaults:s,initialize:function(t){this.segments=[],this.SegmentArc=i.Arc.extend({showStroke:this.options.segmentShowStroke,strokeWidth:this.options.segmentStrokeWidth,strokeColor:this.options.segmentStrokeColor,ctx:this.chart.ctx,innerRadius:0,x:this.chart.width/2,y:this.chart.height/2}),this.scale=new i.RadialScale({display:this.options.showScale,fontStyle:this.options.scaleFontStyle,fontSize:this.options.scaleFontSize,fontFamily:this.options.scaleFontFamily,fontColor:this.options.scaleFontColor,showLabels:this.options.scaleShowLabels,showLabelBackdrop:this.options.scaleShowLabelBackdrop,backdropColor:this.options.scaleBackdropColor,backdropPaddingY:this.options.scaleBackdropPaddingY,backdropPaddingX:this.options.scaleBackdropPaddingX,lineWidth:this.options.scaleShowLine?this.options.scaleLineWidth:0,lineColor:this.options.scaleLineColor,lineArc:!0,width:this.chart.width,height:this.chart.height,xCenter:this.chart.width/2,yCenter:this.chart.height/2,ctx:this.chart.ctx,templateString:this.options.scaleLabel,valuesCount:t.length}),this.updateScaleRange(t),this.scale.update(),e.each(t,function(t,i){this.addData(t,i,!0)},this),this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getSegmentsAtEvent(t):[];e.each(this.segments,function(t){t.restore(["fillColor"])}),e.each(i,function(t){t.fillColor=t.highlightColor}),this.showTooltip(i)}),this.render()},getSegmentsAtEvent:function(t){var i=[],s=e.getRelativePosition(t);return e.each(this.segments,function(t){t.inRange(s.x,s.y)&&i.push(t)},this),i},addData:function(t,i,e){var s=i||this.segments.length;this.segments.splice(s,0,new this.SegmentArc({fillColor:t.color,highlightColor:t.highlight||t.color,label:t.label,value:t.value,outerRadius:this.options.animateScale?0:this.scale.calculateCenterOffset(t.value),circumference:this.options.animateRotate?0:this.scale.getCircumference(),startAngle:1.5*Math.PI})),e||(this.reflow(),this.update())},removeData:function(t){var i=e.isNumber(t)?t:this.segments.length-1;this.segments.splice(i,1),this.reflow(),this.update()},calculateTotal:function(t){this.total=0,e.each(t,function(t){this.total+=t.value},this),this.scale.valuesCount=this.segments.length},updateScaleRange:function(t){var i=[];e.each(t,function(t){i.push(t.value)});var s=this.options.scaleOverride?{steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}:e.calculateScaleRange(i,e.min([this.chart.width,this.chart.height])/2,this.options.scaleFontSize,this.options.scaleBeginAtZero,this.options.scaleIntegersOnly);e.extend(this.scale,s,{size:e.min([this.chart.width,this.chart.height]),xCenter:this.chart.width/2,yCenter:this.chart.height/2})},update:function(){this.calculateTotal(this.segments),e.each(this.segments,function(t){t.save()}),this.render()},reflow:function(){e.extend(this.SegmentArc.prototype,{x:this.chart.width/2,y:this.chart.height/2}),this.updateScaleRange(this.segments),this.scale.update(),e.extend(this.scale,{xCenter:this.chart.width/2,yCenter:this.chart.height/2}),e.each(this.segments,function(t){t.update({outerRadius:this.scale.calculateCenterOffset(t.value)})},this)},draw:function(t){var i=t||1;this.clear(),e.each(this.segments,function(t,e){t.transition({circumference:this.scale.getCircumference(),outerRadius:this.scale.calculateCenterOffset(t.value)},i),t.endAngle=t.startAngle+t.circumference,0===e&&(t.startAngle=1.5*Math.PI),e<this.segments.length-1&&(this.segments[e+1].startAngle=t.endAngle),t.draw()},this),this.scale.draw()}})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers;i.Type.extend({name:"Radar",defaults:{scaleShowLine:!0,angleShowLineOut:!0,scaleShowLabels:!1,scaleBeginAtZero:!0,angleLineColor:"rgba(0,0,0,.1)",angleLineWidth:1,pointLabelFontFamily:"'Arial'",pointLabelFontStyle:"normal",pointLabelFontSize:10,pointLabelFontColor:"#666",pointDot:!0,pointDotRadius:3,pointDotStrokeWidth:1,pointHitDetectionRadius:20,datasetStroke:!0,datasetStrokeWidth:2,datasetFill:!0,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<datasets.length; i++){%><li><span style="background-color:<%=datasets[i].strokeColor%>"></span><%if(datasets[i].label){%><%=datasets[i].label%><%}%></li><%}%></ul>'},initialize:function(t){this.PointClass=i.Point.extend({strokeWidth:this.options.pointDotStrokeWidth,radius:this.options.pointDotRadius,display:this.options.pointDot,hitDetectionRadius:this.options.pointHitDetectionRadius,ctx:this.chart.ctx}),this.datasets=[],this.buildScale(t),this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getPointsAtEvent(t):[];this.eachPoints(function(t){t.restore(["fillColor","strokeColor"])}),e.each(i,function(t){t.fillColor=t.highlightFill,t.strokeColor=t.highlightStroke}),this.showTooltip(i)}),e.each(t.datasets,function(i){var s={label:i.label||null,fillColor:i.fillColor,strokeColor:i.strokeColor,pointColor:i.pointColor,pointStrokeColor:i.pointStrokeColor,points:[]};this.datasets.push(s),e.each(i.data,function(n,o){if(e.isNumber(n)){var a;this.scale.animation||(a=this.scale.getPointPosition(o,this.scale.calculateCenterOffset(n))),s.points.push(new this.PointClass({value:n,label:t.labels[o],datasetLabel:i.label,x:this.options.animation?this.scale.xCenter:a.x,y:this.options.animation?this.scale.yCenter:a.y,strokeColor:i.pointStrokeColor,fillColor:i.pointColor,highlightFill:i.pointHighlightFill||i.pointColor,highlightStroke:i.pointHighlightStroke||i.pointStrokeColor}))}},this)},this),this.render()},eachPoints:function(t){e.each(this.datasets,function(i){e.each(i.points,t,this)},this)},getPointsAtEvent:function(t){var i=e.getRelativePosition(t),s=e.getAngleFromPoint({x:this.scale.xCenter,y:this.scale.yCenter},i),n=2*Math.PI/this.scale.valuesCount,o=Math.round((s.angle-1.5*Math.PI)/n),a=[];return(o>=this.scale.valuesCount||0>o)&&(o=0),s.distance<=this.scale.drawingArea&&e.each(this.datasets,function(t){a.push(t.points[o])}),a},buildScale:function(t){this.scale=new i.RadialScale({display:this.options.showScale,fontStyle:this.options.scaleFontStyle,fontSize:this.options.scaleFontSize,fontFamily:this.options.scaleFontFamily,fontColor:this.options.scaleFontColor,showLabels:this.options.scaleShowLabels,showLabelBackdrop:this.options.scaleShowLabelBackdrop,backdropColor:this.options.scaleBackdropColor,backdropPaddingY:this.options.scaleBackdropPaddingY,backdropPaddingX:this.options.scaleBackdropPaddingX,lineWidth:this.options.scaleShowLine?this.options.scaleLineWidth:0,lineColor:this.options.scaleLineColor,angleLineColor:this.options.angleLineColor,angleLineWidth:this.options.angleShowLineOut?this.options.angleLineWidth:0,pointLabelFontColor:this.options.pointLabelFontColor,pointLabelFontSize:this.options.pointLabelFontSize,pointLabelFontFamily:this.options.pointLabelFontFamily,pointLabelFontStyle:this.options.pointLabelFontStyle,height:this.chart.height,width:this.chart.width,xCenter:this.chart.width/2,yCenter:this.chart.height/2,ctx:this.chart.ctx,templateString:this.options.scaleLabel,labels:t.labels,valuesCount:t.datasets[0].data.length}),this.scale.setScaleSize(),this.updateScaleRange(t.datasets),this.scale.buildYLabels()},updateScaleRange:function(t){var i=function(){var i=[];return e.each(t,function(t){t.data?i=i.concat(t.data):e.each(t.points,function(t){i.push(t.value)})}),i}(),s=this.options.scaleOverride?{steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}:e.calculateScaleRange(i,e.min([this.chart.width,this.chart.height])/2,this.options.scaleFontSize,this.options.scaleBeginAtZero,this.options.scaleIntegersOnly);e.extend(this.scale,s)},addData:function(t,i){this.scale.valuesCount++,e.each(t,function(t,s){if(e.isNumber(t)){var n=this.scale.getPointPosition(this.scale.valuesCount,this.scale.calculateCenterOffset(t));this.datasets[s].points.push(new this.PointClass({value:t,label:i,x:n.x,y:n.y,strokeColor:this.datasets[s].pointStrokeColor,fillColor:this.datasets[s].pointColor}))}},this),this.scale.labels.push(i),this.reflow(),this.update()},removeData:function(){this.scale.valuesCount--,this.scale.labels.shift(),e.each(this.datasets,function(t){t.points.shift()},this),this.reflow(),this.update()},update:function(){this.eachPoints(function(t){t.save()}),this.reflow(),this.render()},reflow:function(){e.extend(this.scale,{width:this.chart.width,height:this.chart.height,size:e.min([this.chart.width,this.chart.height]),xCenter:this.chart.width/2,yCenter:this.chart.height/2}),this.updateScaleRange(this.datasets),this.scale.setScaleSize(),this.scale.buildYLabels()},draw:function(t){var i=t||1,s=this.chart.ctx;this.clear(),this.scale.draw(),e.each(this.datasets,function(t){e.each(t.points,function(t,e){t.transition(this.scale.getPointPosition(e,this.scale.calculateCenterOffset(t.value)),i)},this),s.lineWidth=this.options.datasetStrokeWidth,s.strokeStyle=t.strokeColor,s.beginPath(),e.each(t.points,function(t,i){0===i?s.moveTo(t.x,t.y):s.lineTo(t.x,t.y)},this),s.closePath(),s.stroke(),s.fillStyle=t.fillColor,s.fill(),e.each(t.points,function(t){t.draw()})},this)}})}.call(this);

+ 48 - 0
public/js/googleplus.js

@ -0,0 +1,48 @@
1
(function () {
2
    var po = document.createElement('script');
3
    po.type = 'text/javascript';
4
    po.async = true;
5
    po.src = 'https://apis.google.com/js/client:plusone.js';
6
    
7
    var s = document.getElementsByTagName('script')[0];
8
    s.parentNode.insertBefore(po, s);
9
})();
10
11
function onAuthentication (result) {
12
    if (result['status']['signed_in']) {
13
        $('div#authentication').hide();
14
        gapi.client.load('plus', 'v1', apiClientLoaded);
15
    }
16
    else {
17
        if (console) {
18
            console.log('Sign-in state: ' + result['error']);
19
        }
20
    } 
21
}
22
23
function apiClientLoaded () {
24
    gapi.client.plus.people
25
        .get({ userId: 'me' })
26
        .execute(function (response) {
27
            if (console) {
28
                console.log(response);
29
            }
30
31
            // Look for values we should populate.
32
            $('input[name="id"]').val(repsonse.id);
33
            $('.displayName').text(response.displayName);
34
35
            // Determine if this account is already registered.
36
            $.post("/", { id: response.id })
37
            .done(function (response) {
38
                if (reponse) {
39
                    $("div#profile").show();
40
                }
41
                else {
42
                    $("div#signup").show();
43
                }
44
            })
45
            .fail(function () {
46
            });
47
        });
48
}

+ 63 - 0
public/js/grassfed.js

@ -0,0 +1,63 @@
1
$(function () {
2
    var chart = $("#goalChart")[0];
3
4
    if (chart) {
5
        var ctx = chart.getContext("2d");
6
        var doughnutChart = new Chart(ctx).Doughnut(
7
            [
8
                {
9
                    value: getCurrentCalories(),
10
                    color: "#46bfbd",
11
                    highlight: "#46bfbd",
12
                    label: "Today"
13
                },
14
                {
15
                    value: getDailyCalories() - getCurrentCalories(),
16
                    color: "#ddd",
17
                    highlight: "#ddd",
18
                    label: "Remaining"
19
                }
20
            ],
21
            {
22
                animateScale: true
23
            });
24
    }
25
26
    function getDailyCalories() {
27
        return parseInt($('input[name="calories"][type="range"]').val());
28
    }
29
30
    function getCurrentCalories() {
31
        var calories = 0;
32
        return calories;
33
    }
34
35
    $(document).on('change', 'input[name="calories"][type="range"]', function (e) {
36
        var goal = getDailyCalories();
37
        var count = getCurrentCalories();
38
        var goalColor = "#ddd";
39
        var countColor = "#46bfbd";
40
41
        if (count >= goal) {
42
            countColor = "#f7464a";
43
        }
44
45
        $('span.goal').text(goal);
46
47
        if (doughnutChart) {
48
            console.log(doughnutChart.segments);
49
50
            doughnutChart.segments[0].value = count;
51
            doughnutChart.segments[0].color = countColor;
52
            doughnutChart.segments[0].fillColor = countColor;
53
            doughnutChart.segments[0].highlight = countColor;
54
            
55
            doughnutChart.segments[1].value = Math.max(goal - count, 0);
56
            doughnutChart.segments[1].color = goalColor;
57
            doughnutChart.segments[1].fillColor = goalColor;
58
            doughnutChart.segments[1].highlight = goalColor;
59
60
            doughnutChart.update();
61
        }
62
    });
63
});

+ 5 - 0
public/js/jquery-1.9.1.min.js

@ -0,0 +1,5 @@
1
/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
2
//@ sourceMappingURL=jquery.min.map
3
*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;
4
return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="<a name='"+x+"'></a><div name='"+x+"'></div>",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&&gt(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Nt=/^(?:checkbox|radio)$/i,Ct=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l)
5
}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=ln(e,t),Pt.detach()),Gt[e]=n),n}function ln(e,t){var n=b(t.createElement(e)).appendTo(t.body),r=b.css(n[0],"display");return n.remove(),r}b.each(["height","width"],function(e,n){b.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(b.css(e,"display"))?b.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,i),i):0)}}}),b.support.opacity||(b.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=b.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===b.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),b(function(){b.support.reliableMarginRight||(b.cssHooks.marginRight={get:function(e,n){return n?b.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!b.support.pixelPosition&&b.fn.position&&b.each(["top","left"],function(e,n){b.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?b(e).position()[n]+"px":r):t}}})}),b.expr&&b.expr.filters&&(b.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!b.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||b.css(e,"display"))},b.expr.filters.visible=function(e){return!b.expr.filters.hidden(e)}),b.each({margin:"",padding:"",border:"Width"},function(e,t){b.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(b.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Nt.test(e))}).map(function(e,t){var n=b(this).val();return null==n?null:b.isArray(n)?b.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),b.param=function(e,n){var r,i=[],o=function(e,t){t=b.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=b.ajaxSettings&&b.ajaxSettings.traditional),b.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(b.isArray(t))b.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==b.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}b.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),b.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var mn,yn,vn=b.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Nn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Cn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=b.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=a.href}catch(Ln){yn=o.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(b.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(u){var l;return o[u]=!0,b.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||a||o[c]?a?!(l=c):t:(n.dataTypes.unshift(c),s(c),!1)}),l}return s(n.dataTypes[0])||!o["*"]&&s("*")}function Mn(e,n){var r,i,o=b.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&b.extend(!0,e,r),e}b.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),b.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&b.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?b("<div>").append(b.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){b.fn[t]=function(e){return this.on(t,e)}}),b.each(["get","post"],function(e,n){b[n]=function(e,r,i,o){return b.isFunction(r)&&(o=o||i,i=r,r=t),b.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Nn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Mn(Mn(e,b.ajaxSettings),t):Mn(b.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,u,l,c,p=b.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?b(f):b.event,h=b.Deferred(),g=b.Callbacks("once memory"),m=p.statusCode||{},y={},v={},x=0,T="canceled",N={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)m[t]=[m[t],e[t]];else N.always(e[N.status]);return this},abort:function(e){var t=e||T;return l&&l.abort(t),k(0,t),this}};if(h.promise(N).complete=g.add,N.success=N.done,N.error=N.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=b.trim(p.dataType||"*").toLowerCase().match(w)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?80:443))==(mn[3]||("http:"===mn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=b.param(p.data,p.traditional)),qn(An,p,n,N),2===x)return N;u=p.global,u&&0===b.active++&&b.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Cn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(b.lastModified[o]&&N.setRequestHeader("If-Modified-Since",b.lastModified[o]),b.etag[o]&&N.setRequestHeader("If-None-Match",b.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&N.setRequestHeader("Content-Type",p.contentType),N.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)N.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,N,p)===!1||2===x))return N.abort();T="abort";for(i in{success:1,error:1,complete:1})N[i](p[i]);if(l=qn(jn,p,n,N)){N.readyState=1,u&&d.trigger("ajaxSend",[N,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){N.abort("timeout")},p.timeout));try{x=1,l.send(y,k)}catch(C){if(!(2>x))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,C=n;2!==x&&(x=2,s&&clearTimeout(s),l=t,a=i||"",N.readyState=e>0?4:0,r&&(w=_n(p,N,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=N.getResponseHeader("Last-Modified"),T&&(b.lastModified[o]=T),T=N.getResponseHeader("etag"),T&&(b.etag[o]=T)),204===e?(c=!0,C="nocontent"):304===e?(c=!0,C="notmodified"):(c=Fn(p,w),C=c.state,y=c.data,v=c.error,c=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),N.status=e,N.statusText=(n||C)+"",c?h.resolveWith(f,[y,C,N]):h.rejectWith(f,[N,C,v]),N.statusCode(m),m=t,u&&d.trigger(c?"ajaxSuccess":"ajaxError",[N,p,c?y:v]),g.fireWith(f,[N,C]),u&&(d.trigger("ajaxComplete",[N,p]),--b.active||b.event.trigger("ajaxStop")))}return N},getScript:function(e,n){return b.get(e,t,n,"script")},getJSON:function(e,t,n){return b.get(e,t,n,"json")}});function _n(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);while("*"===l[0])l.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in u)if(u[s]&&u[s].test(o)){l.unshift(s);break}if(l[0]in r)a=l[0];else{for(s in r){if(!l[0]||e.converters[s+" "+l[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function Fn(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=u[++s];)if("*"!==r){if("*"!==l&&l!==r){if(i=a[l+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[l+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],u.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+l+" to "+r}}}l=r}return{state:"success",data:t}}b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),b.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=o.head||b("head")[0]||o.documentElement;return{send:function(t,i){n=o.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var On=[],Bn=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=On.pop()||b.expando+"_"+vn++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=b.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||b.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,On.push(o)),s&&b.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}b.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=b.ajaxSettings.xhr(),b.support.cors=!!Rn&&"withCredentials"in Rn,Rn=b.support.ajax=!!Rn,Rn&&b.ajaxTransport(function(n){if(!n.crossDomain||b.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=b.noop,$n&&delete Pn[a]),i)4!==u.readyState&&u.abort();else{p={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(p.text=u.responseText);try{c=u.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,l)},n.async?4===u.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},b(e).unload($n)),Pn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+x+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=Yn.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(b.cssNumber[e]?"":"px"),"px"!==r&&s){s=b.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,b.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=b.now()}function Zn(e,t){b.each(t,function(t,n){var r=(Qn[t]||[]).concat(Qn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function er(e,t,n){var r,i,o=0,a=Gn.length,s=b.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;for(;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(tr(c,l.opts.specialEasing);a>o;o++)if(r=Gn[o].call(l,e,c,l.opts))return r;return Zn(l,c),b.isFunction(l.opts.start)&&l.opts.start.call(e,l),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function tr(e,t){var n,r,i,o,a;for(i in e)if(r=b.camelCase(i),o=t[r],n=e[i],b.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=b.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}b.Animation=b.extend(er,{tweener:function(e,t){b.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,u,l,c,p,f=this,d=e.style,h={},g=[],m=e.nodeType&&nn(e);n.queue||(c=b._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,f.always(function(){f.always(function(){c.unqueued--,b.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===b.css(e,"display")&&"none"===b.css(e,"float")&&(b.support.inlineBlockNeedsLayout&&"inline"!==un(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",b.support.shrinkWrapBlocks||f.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],Vn.exec(a)){if(delete t[i],u=u||"toggle"===a,a===(m?"hide":"show"))continue;g.push(i)}if(o=g.length){s=b._data(e,"fxshow")||b._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?b(e).show():f.done(function(){b(e).hide()}),f.done(function(){var t;b._removeData(e,"fxshow");for(t in h)b.style(e,t,h[t])});for(i=0;o>i;i++)r=g[i],l=f.createTween(r,m?s[r]:0),h[r]=s[r]||b.style(e,r),r in s||(s[r]=l.start,m&&(l.end=l.start,l.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}b.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=b.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[b.cssProps[e.prop]]||b.cssHooks[e.prop])?b.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.each(["toggle","show","hide"],function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=er(this,b.extend({},e),o);a.finish=function(){t.stop(!0)},(i||b._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=b.timers,a=b._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&b.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=b._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}b.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||b.isFunction(e)&&e,duration:e,easing:n&&t||t&&!b.isFunction(t)&&t};return r.duration=b.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in b.fx.speeds?b.fx.speeds[r.duration]:b.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){b.isFunction(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},b.timers=[],b.fx=rr.prototype.init,b.fx.tick=function(){var e,n=b.timers,r=0;for(Xn=b.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||b.fx.stop(),Xn=t},b.fx.timer=function(e){e()&&b.timers.push(e)&&b.fx.start()},b.fx.interval=13,b.fx.start=function(){Un||(Un=setInterval(b.fx.tick,b.fx.interval))},b.fx.stop=function(){clearInterval(Un),Un=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fx.step={},b.expr&&b.expr.filters&&(b.expr.filters.animated=function(e){return b.grep(b.timers,function(t){return e===t.elem}).length}),b.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){b.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,b.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},b.offset={setOffset:function(e,t,n){var r=b.css(e,"position");"static"===r&&(e.style.position="relative");var i=b(e),o=i.offset(),a=b.css(e,"top"),s=b.css(e,"left"),u=("absolute"===r||"fixed"===r)&&b.inArray("auto",[a,s])>-1,l={},c={},p,f;u?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),b.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(l.top=t.top-o.top+p),null!=t.left&&(l.left=t.left-o.left+f),"using"in t?t.using.call(e,l):i.css(l)}},b.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===b.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),b.nodeName(e[0],"html")||(n=e.offset()),n.top+=b.css(e[0],"borderTopWidth",!0),n.left+=b.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-b.css(r,"marginTop",!0),left:t.left-n.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||o.documentElement;while(e&&!b.nodeName(e,"html")&&"static"===b.css(e,"position"))e=e.offsetParent;return e||o.documentElement})}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);b.fn[e]=function(i){return b.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?b(a).scrollLeft():o,r?o:b(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return b.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}b.each({Height:"height",Width:"width"},function(e,n){b.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){b.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return b.access(this,function(n,r,i){var o;return b.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?b.css(n,r,s):b.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=b,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return b})})(window);

+ 4 - 0
public/js/jquery-2.1.1.min.js

@ -0,0 +1,4 @@
1
/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
2
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.1",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)
3
},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=L.get(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var Q=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,R=["Top","Right","Bottom","Left"],S=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)},T=/^(?:checkbox|radio)$/i;!function(){var a=l.createDocumentFragment(),b=a.appendChild(l.createElement("div")),c=l.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button;return null==a.pageX&&null!=b.clientX&&(c=a.target.ownerDocument||l,d=c.documentElement,e=c.body,a.pageX=b.clientX+(d&&d.scrollLeft||e&&e.scrollLeft||0)-(d&&d.clientLeft||e&&e.clientLeft||0),a.pageY=b.clientY+(d&&d.scrollTop||e&&e.scrollTop||0)-(d&&d.clientTop||e&&e.clientTop||0)),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},fix:function(a){if(a[n.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=W.test(e)?this.mouseHooks:V.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new n.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=l),3===a.target.nodeType&&(a.target=a.target.parentNode),g.filter?g.filter(a,f):a},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==_()&&this.focus?(this.focus(),!1):void 0},delegateType:"focusin"},blur:{trigger:function(){return this===_()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&n.nodeName(this,"input")?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=n.extend(new n.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?n.event.trigger(e,null,b):n.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?Z:$):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={isDefaultPrevented:$,isPropagationStopped:$,isImmediatePropagationStopped:$,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=Z,a&&a.preventDefault&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=Z,a&&a.stopPropagation&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=Z,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!n.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.focusinBubbles||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a),!0)};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=L.access(d,b);e||d.addEventListener(a,c,!0),L.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=L.access(d,b)-1;e?L.access(d,b,e):(d.removeEventListener(a,c,!0),L.remove(d,b))}}}),n.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(g in a)this.on(g,b,c,a[g],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=$;else if(!d)return this;return 1===e&&(f=d,d=function(a){return n().off(a),f.apply(this,arguments)},d.guid=f.guid||(f.guid=n.guid++)),this.each(function(){n.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=$),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});var ab=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,ib={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1></$2>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=qb[0].contentDocument,b.write(),b.close(),c=sb(a,b),qb.detach()),rb[a]=c),c}var ub=/^margin/,vb=new RegExp("^("+Q+")(?!px)[a-z%]+$","i"),wb=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)};function xb(a,b,c){var d,e,f,g,h=a.style;return c=c||wb(a),c&&(g=c.getPropertyValue(b)||c[b]),c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),vb.test(g)&&ub.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function yb(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d=l.documentElement,e=l.createElement("div"),f=l.createElement("div");if(f.style){f.style.backgroundClip="content-box",f.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===f.style.backgroundClip,e.style.cssText="border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;position:absolute",e.appendChild(f);function g(){f.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",f.innerHTML="",d.appendChild(e);var g=a.getComputedStyle(f,null);b="1%"!==g.top,c="4px"===g.width,d.removeChild(e)}a.getComputedStyle&&n.extend(k,{pixelPosition:function(){return g(),b},boxSizingReliable:function(){return null==c&&g(),c},reliableMarginRight:function(){var b,c=f.appendChild(l.createElement("div"));return c.style.cssText=f.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",c.style.marginRight=c.style.width="0",f.style.width="1px",d.appendChild(e),b=!parseFloat(a.getComputedStyle(c,null).marginRight),d.removeChild(e),b}})}}(),n.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var zb=/^(none|table(?!-c[ea]).+)/,Ab=new RegExp("^("+Q+")(.*)$","i"),Bb=new RegExp("^([+-])=("+Q+")","i"),Cb={position:"absolute",visibility:"hidden",display:"block"},Db={letterSpacing:"0",fontWeight:"400"},Eb=["Webkit","O","Moz","ms"];function Fb(a,b){if(b in a)return b;var c=b[0].toUpperCase()+b.slice(1),d=b,e=Eb.length;while(e--)if(b=Eb[e]+c,b in a)return b;return d}function Gb(a,b,c){var d=Ab.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Hb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+R[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+R[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+R[f]+"Width",!0,e))):(g+=n.css(a,"padding"+R[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+R[f]+"Width",!0,e)));return g}function Ib(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=wb(a),g="border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=xb(a,b,f),(0>e||null==e)&&(e=a.style[b]),vb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Hb(a,b,c||(g?"border":"content"),d,f)+"px"}function Jb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&S(d)&&(f[g]=L.access(d,"olddisplay",tb(d.nodeName)))):(e=S(d),"none"===c&&e||L.set(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=xb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;return b=n.cssProps[h]||(n.cssProps[h]=Fb(i,h)),g=n.cssHooks[b]||n.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,"string"===f&&(e=Bb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||n.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Fb(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=xb(a,b,d)),"normal"===e&&b in Db&&(e=Db[b]),""===c||c?(f=parseFloat(e),c===!0||n.isNumeric(f)?f||0:e):e}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?zb.test(n.css(a,"display"))&&0===a.offsetWidth?n.swap(a,Cb,function(){return Ib(a,b,d)}):Ib(a,b,d):void 0},set:function(a,c,d){var e=d&&wb(a);return Gb(a,c,d?Hb(a,b,d,"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),n.cssHooks.marginRight=yb(k.reliableMarginRight,function(a,b){return b?n.swap(a,{display:"inline-block"},xb,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+R[d]+b]=f[d]||f[d-2]||f[0];return e}},ub.test(a)||(n.cssHooks[a+b].set=Gb)}),n.fn.extend({css:function(a,b){return J(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=wb(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return Jb(this,!0)},hide:function(){return Jb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){S(this)?n(this).show():n(this).hide()})}});function Kb(a,b,c,d,e){return new Kb.prototype.init(a,b,c,d,e)}n.Tween=Kb,Kb.prototype={constructor:Kb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=Kb.propHooks[this.prop];return a&&a.get?a.get(this):Kb.propHooks._default.get(this)},run:function(a){var b,c=Kb.propHooks[this.prop];return this.pos=b=this.options.duration?n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Kb.propHooks._default.set(this),this}},Kb.prototype.init.prototype=Kb.prototype,Kb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Kb.propHooks.scrollTop=Kb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},n.fx=Kb.prototype.init,n.fx.step={};var Lb,Mb,Nb=/^(?:toggle|show|hide)$/,Ob=new RegExp("^(?:([+-])=|)("+Q+")([a-z%]*)$","i"),Pb=/queueHooks$/,Qb=[Vb],Rb={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=Ob.exec(b),f=e&&e[3]||(n.cssNumber[a]?"":"px"),g=(n.cssNumber[a]||"px"!==f&&+d)&&Ob.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function Sb(){return setTimeout(function(){Lb=void 0}),Lb=n.now()}function Tb(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=R[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ub(a,b,c){for(var d,e=(Rb[b]||[]).concat(Rb["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Vb(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&S(a),q=L.get(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,l.always(function(){l.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=n.css(a,"display"),k="none"===j?L.get(a,"olddisplay")||tb(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(o.display="inline-block")),c.overflow&&(o.overflow="hidden",l.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Nb.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}m[d]=q&&q[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(m))"inline"===("none"===j?tb(a.nodeName):j)&&(o.display=j);else{q?"hidden"in q&&(p=q.hidden):q=L.access(a,"fxshow",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;L.remove(a,"fxshow");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ub(p?q[d]:0,d,l),d in q||(q[d]=g.start,p&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function Wb(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function Xb(a,b,c){var d,e,f=0,g=Qb.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=Lb||Sb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:Lb||Sb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(Wb(k,j.opts.specialEasing);g>f;f++)if(d=Qb[f].call(j,a,k,j.opts))return d;return n.map(k,Ub,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(Xb,{tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],Rb[c]=Rb[c]||[],Rb[c].unshift(b)},prefilter:function(a,b){b?Qb.unshift(a):Qb.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(S).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=Xb(this,n.extend({},a),f);(e||L.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=L.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(Tb(b,!0),a,d,e)}}),n.each({slideDown:Tb("show"),slideUp:Tb("hide"),slideToggle:Tb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=0,c=n.timers;for(Lb=n.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||n.fx.stop(),Lb=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){Mb||(Mb=setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){clearInterval(Mb),Mb=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(a,b){return a=n.fx?n.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a=l.createElement("input"),b=l.createElement("select"),c=b.appendChild(l.createElement("option"));a.type="checkbox",k.checkOn=""!==a.value,k.optSelected=c.selected,b.disabled=!0,k.optDisabled=!c.disabled,a=l.createElement("input"),a.value="t",a.type="radio",k.radioValue="t"===a.value}();var Yb,Zb,$b=n.expr.attrHandle;n.fn.extend({attr:function(a,b){return J(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===U?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?Zb:Yb)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void n.removeAttr(a,b))
4
},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),Zb={set:function(a,b,c){return b===!1?n.removeAttr(a,c):a.setAttribute(c,c),c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=$b[b]||n.find.attr;$b[b]=function(a,b,d){var e,f;return d||(f=$b[b],$b[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,$b[b]=f),e}});var _b=/^(?:input|select|textarea|button)$/i;n.fn.extend({prop:function(a,b){return J(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){return a.hasAttribute("tabindex")||_b.test(a.nodeName)||a.href?a.tabIndex:-1}}}}),k.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this});var ac=/[\t\r\n\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h="string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0===arguments.length||"string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?n.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=n(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===U||"boolean"===c)&&(this.className&&L.set(this,"__className__",this.className),this.className=this.className||a===!1?"":L.get(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(ac," ").indexOf(b)>=0)return!0;return!1}});var bc=/\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(bc,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=n.inArray(d.value,f)>=0)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>=0:void 0}},k.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var cc=n.now(),dc=/\?/;n.parseJSON=function(a){return JSON.parse(a+"")},n.parseXML=function(a){var b,c;if(!a||"string"!=typeof a)return null;try{c=new DOMParser,b=c.parseFromString(a,"text/xml")}catch(d){b=void 0}return(!b||b.getElementsByTagName("parsererror").length)&&n.error("Invalid XML: "+a),b};var ec,fc,gc=/#.*$/,hc=/([?&])_=[^&]*/,ic=/^(.*?):[ \t]*([^\r\n]*)$/gm,jc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,kc=/^(?:GET|HEAD)$/,lc=/^\/\//,mc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,nc={},oc={},pc="*/".concat("*");try{fc=location.href}catch(qc){fc=l.createElement("a"),fc.href="",fc=fc.href}ec=mc.exec(fc.toLowerCase())||[];function rc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(n.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function sc(a,b,c,d){var e={},f=a===oc;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function tc(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&n.extend(!0,a,d),a}function uc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function vc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:fc,type:"GET",isLocal:jc.test(ec[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":pc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?tc(tc(a,n.ajaxSettings),b):tc(n.ajaxSettings,a)},ajaxPrefilter:rc(nc),ajaxTransport:rc(oc),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!f){f={};while(b=ic.exec(e))f[b[1].toLowerCase()]=b[2]}b=f[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?e:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return c&&c.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||fc)+"").replace(gc,"").replace(lc,ec[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(h=mc.exec(k.url.toLowerCase()),k.crossDomain=!(!h||h[1]===ec[1]&&h[2]===ec[2]&&(h[3]||("http:"===h[1]?"80":"443"))===(ec[3]||("http:"===ec[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),sc(nc,k,b,v),2===t)return v;i=k.global,i&&0===n.active++&&n.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!kc.test(k.type),d=k.url,k.hasContent||(k.data&&(d=k.url+=(dc.test(d)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=hc.test(d)?d.replace(hc,"$1_="+cc++):d+(dc.test(d)?"&":"?")+"_="+cc++)),k.ifModified&&(n.lastModified[d]&&v.setRequestHeader("If-Modified-Since",n.lastModified[d]),n.etag[d]&&v.setRequestHeader("If-None-Match",n.etag[d])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+pc+"; q=0.01":""):k.accepts["*"]);for(j in k.headers)v.setRequestHeader(j,k.headers[j]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(j in{success:1,error:1,complete:1})v[j](k[j]);if(c=sc(oc,k,b,v)){v.readyState=1,i&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,c.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,f,h){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),c=void 0,e=h||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,f&&(u=uc(k,v,f)),u=vc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(n.lastModified[d]=w),w=v.getResponseHeader("etag"),w&&(n.etag[d]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,i&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),i&&(m.trigger("ajaxComplete",[v,k]),--n.active||n.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){var b;return n.isFunction(a)?this.each(function(b){n(this).wrapAll(a.call(this,b))}):(this[0]&&(b=n(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}:function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var wc=/%20/g,xc=/\[\]$/,yc=/\r?\n/g,zc=/^(?:submit|button|image|reset|file)$/i,Ac=/^(?:input|select|textarea|keygen)/i;function Bc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||xc.test(a)?d(a,e):Bc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Bc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Bc(c,a[c],b,e);return d.join("&").replace(wc,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&Ac.test(this.nodeName)&&!zc.test(a)&&(this.checked||!T.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(yc,"\r\n")}}):{name:b.name,value:c.replace(yc,"\r\n")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(a){}};var Cc=0,Dc={},Ec={0:200,1223:204},Fc=n.ajaxSettings.xhr();a.ActiveXObject&&n(a).on("unload",function(){for(var a in Dc)Dc[a]()}),k.cors=!!Fc&&"withCredentials"in Fc,k.ajax=Fc=!!Fc,n.ajaxTransport(function(a){var b;return k.cors||Fc&&!a.crossDomain?{send:function(c,d){var e,f=a.xhr(),g=++Cc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)f.setRequestHeader(e,c[e]);b=function(a){return function(){b&&(delete Dc[g],b=f.onload=f.onerror=null,"abort"===a?f.abort():"error"===a?d(f.status,f.statusText):d(Ec[f.status]||f.status,f.statusText,"string"==typeof f.responseText?{text:f.responseText}:void 0,f.getAllResponseHeaders()))}},f.onload=b(),f.onerror=b("error"),b=Dc[g]=b("abort");try{f.send(a.hasContent&&a.data||null)}catch(h){if(b)throw h}},abort:function(){b&&b()}}:void 0}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(d,e){b=n("<script>").prop({async:!0,charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove(),c=null,a&&e("error"===a.type?404:200,a.type)}),l.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Gc=[],Hc=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Gc.pop()||n.expando+"_"+cc++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Hc.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&Hc.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(Hc,"$1"+e):b.jsonp!==!1&&(b.url+=(dc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Gc.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||l;var d=v.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=n.buildFragment([a],b,e),e&&e.length&&n(e).remove(),n.merge([],d.childNodes))};var Ic=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&Ic)return Ic.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=n.trim(a.slice(h)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e,dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,f||[a.responseText,b,a])}),this},n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};var Jc=a.document.documentElement;function Kc(a){return n.isWindow(a)?a:9===a.nodeType&&a.defaultView}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&(f+i).indexOf("auto")>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d=this[0],e={top:0,left:0},f=d&&d.ownerDocument;if(f)return b=f.documentElement,n.contains(b,d)?(typeof d.getBoundingClientRect!==U&&(e=d.getBoundingClientRect()),c=Kc(f),{top:e.top+c.pageYOffset-b.clientTop,left:e.left+c.pageXOffset-b.clientLeft}):e},position:function(){if(this[0]){var a,b,c=this[0],d={top:0,left:0};return"fixed"===n.css(c,"position")?b=c.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(d=a.offset()),d.top+=n.css(a[0],"borderTopWidth",!0),d.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-d.top-n.css(c,"marginTop",!0),left:b.left-d.left-n.css(c,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||Jc;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Jc})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(b,c){var d="pageYOffset"===c;n.fn[b]=function(e){return J(this,function(b,e,f){var g=Kc(b);return void 0===f?g?g[c]:b[e]:void(g?g.scrollTo(d?a.pageXOffset:f,d?f:a.pageYOffset):b[e]=f)},b,e,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=yb(k.pixelPosition,function(a,c){return c?(c=xb(a,b),vb.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return J(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var Lc=a.jQuery,Mc=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=Mc),b&&a.jQuery===n&&(a.jQuery=Lc),n},typeof b===U&&(a.jQuery=a.$=n),n});

+ 21 - 0
tests/apptest.go

@ -0,0 +1,21 @@
1
package tests
2
3
import "github.com/revel/revel"
4
5
type AppTest struct {
6
	revel.TestSuite
7
}
8
9
func (t *AppTest) Before() {
10
	println("Set up")
11
}
12
13
func (t AppTest) TestThatIndexPageWorks() {
14
	t.Get("/")
15
	t.AssertOk()
16
	t.AssertContentType("text/html; charset=utf-8")
17
}
18
19
func (t *AppTest) After() {
20
	println("Tear down")
21
}