Revision 3fba84bf

b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_common.scss
251 251

  
252 252

  
253 253
.row {
254
	padding:0 30px;
254
	padding:0 40px;
255 255
}
256 256

  
257 257
/* Header ----------------------------------------------- */
......
373 373
	li {
374 374
		display: inline-block;
375 375
		margin:0 $icons-nav-margin-horizontal;
376
		font-size: emCalc(24px);
376
		font-size: emCalc(23px);
377 377
		line-height: 1em;
378 378
		padding-bottom:5px;
379 379
		width: 30px;
b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_overlays.scss
37 37

  
38 38

  
39 39
.overlay-wrapper {
40
    position: relative;
41
    .overlay-area {
42
        display:none;
43
        position:absolute;
44
        left:0;
45
        right:0;
46
        top:-$bar-height;
47
        width:100%;
48
        height:100%;
49
        background:$overlay-color;
50
        z-index:20;
51
    }
52
    .close {
53
        position: absolute;
54
        right:$header-padding-horizontal;
55
        top:50px;
56
        font-size:32px;
57
        color:$primary-color;
58
        &:hover, &:focus {
59
            color:white;
60
        }
61
    }
62
    .row {
63
        .close {
64
            position:static;
65
            float:right;
66
        }
67
    }
68
    .overlay-div {
69
        display: none;
70
        z-index:100;
71
        position: relative;
72
        background:#fff;
73
        top:20%;
74
        left:25%;
75
        width:50%;
76
        padding:25px;
77
        .buttons {
78
            a {
79
                margin-right:20px;
80
            }
81
        }
82
        &.upload-widget {
83
            background:transparent;
84
            padding:45px 0;
85
            width:80%;
86
            left:10%;
87
            border:1px solid white;
88
        }
89
        &.wizard {
90
            background:$overlay-color;
91
            padding:0 ;
92
            width:100%;
93
            top:0;
94
            left:0;
95
        }
96
    }
40
	position: relative;
41
	.overlay-area {
42
		display:none;
43
		position:absolute;
44
		left:0;
45
		right:0;
46
		top:-$bar-height;
47
		width:100%;
48
		height:100%;
49
		background:$overlay-color;
50
		z-index:20;
51
	}
52
	.close {
53
		position: absolute;
54
		right:$header-padding-horizontal;
55
		top:50px;
56
		font-size:30px;
57
		color:$primary-color;
58
		&:hover, &:focus {
59
			color:white;
60
		}
61
	}
62
	.row {
63
		.close {
64
			position:static;
65
			float:right;
66
		}
67
	}
68
	.overlay-div {
69
		display: none;
70
		z-index:100;
71
		position: relative;
72
		background:#fff;
73
		top:20%; 
74
		left:25%; 
75
		width:50%;
76
		padding:25px;
77
		.buttons {
78
			a {
79
				margin-right:20px;
80
			}
81
		}
82
		&.upload-widget {
83
			background:transparent;
84
			padding:45px 0;
85
			width:80%;
86
			left:10%;
87
			border:1px solid white;
88
		}
89
		&.wizard {
90
			background:$overlay-color;
91
			padding:0 ;
92
			width:100%;
93
			top:0;
94
			left:0;
95
		}
96
	}
97 97
}
98 98

  
99 99

  
......
150 150
}
151 151

  
152 152
.wizard {
153
    position: relative;
154
    top:0;
155
    color:white;
156
    .top {
157
        background:$overlay-color-top;
158
        height:$bar-height+$bar-submenu-height;
159
        position:fixed;
160
        left:0;
161
        top:$header-height;
162
        width:100%;
163
        z-index:40;
164
        .numbers {
165
            height:$bar-height;
166
            line-height:$bar-height;
167
            background:$overlay-darker-color;
168
        }
169
        .sub-menu {
170
            display: none;
171
            &[data-step="1"] {
172
                display: block;
173
            }
174
            ul {
175
                margin:0;
176
                padding:0;
177
                list-style: none outside none;
178
                font-size:emCalc(12px);
179
                li {
180
                    display: inline;
181
                    margin-right:10px;
182
                    line-height: $bar-submenu-height;
183
                    list-style: none outside none;
184
                    a {
185
                        color:$black;
186
                        &:hover, &:focus, &.current {
187
                            color:white;
188
                        }
189
                        &.current {
190
                            text-decoration: underline;
191
                        }
192
                    }
193
                }
194
            }
195
        }
196
        .nums {
197
            text-align: right;
198
            list-style:none outside none;
199
            margin:0;
200
            height: $bar-height;
201
            line-height: $bar-height;
202
            font-size:emCalc(12px);
203
            padding-right:120px;
204
            color:$secondary-color;
205
            li {
206
                list-style:none outside none;
207
                display: inline;
208
                p {
209
                    display: none;
210
                    position: relative;
211
                    top: 1px;
212
                    strong {
213
                        font-size:16px;
214
                        margin-right:10px;
215
                    }
216
                }
217
                em {
218
                    display: inline-block;
219
                    border-radius:50%;
220
                    border:1px solid $secondary-color;
221
                    width:25px;
222
                    height:25px;
223
                    line-height: 21px;
224
                    margin:0 3px;
225
                    text-align: center;
226
                    font-style: normal;
227
                }
228
                a {
229
                    color:$secondary-color;
230
                    display: block;
231
                    &:hover {
232
                        cursor: default;
233
                    }
234
                }
235
                &.current{
236
                    float: left;
237
                    p {
238
                        display: inline-block;
239
                    }
240
                    em {
241
                        font-size:emCalc(16px);
242
                        width:30px;
243
                        height:30px;
244
                        line-height: 27px;
245
                        border-color:$secondary-color;
246
                        * {
247
                            color:$secondary-color;
248
                        }
249
                    }
250
                }
251
            }
252
        }
253
    }
254
    .middle {
255
        padding-top:$bar-height+$bar-submenu-height;
256
        .step {
257
            padding:50px 0 50px;
258
            position:relative;
259
            width:$row-width;
260
            overflow:hidden;
261
            overflow-y: scroll;
262
           &.step-3 {
263
           	padding-bottom: 0;
264
           }
265
            .os {
266
                li {
267
                    list-style: none outside none;
268
                    @extend .clearfix;
269
                    padding:0.5em 0;
270
                    &:hover,
271
                    &.hover {
272
                        background:$overlay-darker-color;
273
                    }
274
                    &.current {
275
                        background:white;
276
                        color:$overlay-color;
277
                        .name-col {
278
                            color:$overlay-color;
279
                        }
280
                        .btn-col {
281
                            a {
282
                                @extend .btn5;
283
                                border-color:$overlay-color;
284
                                color:$overlay-color;
285
                                &.current {
286
                                    color:white;
287
                                    background:$overlay-color;
288
                                }
289
                            }
290
                        }
291
                    }
292
                    .img-col {
293
                        float:left;
294
                        width:10%;
295
                        padding-right:10px;
296
                    }
297
                    .name-col {
298
                        float: left;
299
                        color: $wizard-base-font-color;
300
                        width:65%;
301
                        padding-right:10px;
302
                    }
303
                    .size-col {
304
                        float:left;
305
                        width:10%;
306
                    }
307
                    .btn-col {
308
                        float:left;
309
                        width:10%;
310
                        margin-left:10px;
311
                        a {
312
                            @extend .btn5;
313
                            &.current {
314
                                color:$overlay-color;
315
                            }
316
                        }
317
                    }
318
                    .details {
319
                        display: none;
320
                        background:darken(white,10%);
321
                        padding:30px 0;
322
                        margin:20px 6px 6px;
323
                        color: $body-font-color;
324
                        h3 {
325
                            font-size: 1em;
326
                        }
327
                        dl {
328
                            @extend .clearfix;
329
                            dt {
330
                                width: 20%;
331
                                float:left;
332
                                font-weight:normal;
333
                            }
334
                            dd {
335
                                margin:0 0 5px;
336
                            }
337
                        }
338
                    }
339
                }
340
            }
341
            .flavor {
342
                list-style: none outside none;
343
                li {
344
                    list-style:none outside none;
345
                    margin-bottom:1.5em;
346
                    .title {
347
                        @extend .clearfix;
348
                        margin-bottom:emCalc(5px);
349
                        color:white;
350
                        vertical-align: top;
351
                        .icon {
352
                            display: block;
353
                            width:5%;
354
                            font-size:emCalc(40px);
355
                            float: left;
356
                        }
357
                        h2 {
358
                            font-size:emCalc(16px);
359
                            span {
360
                                font-weight:normal;
361
                            }
362
                            float:left;
363
                            width: 19%;
364
                            color:white;
365
                            margin-right:4%;
366
                            padding-left:emCalc(10px);
367
                            &:hover {
368
                                & + p {
369
                                    visibility: visible;
370
                                }
371
                            }
372
                        }
373
                        p {
374
                            visibility: hidden;
375
                            float:left;
376
                            width:70%;
377
                            font-size:emCalc(12px);
378
                        }
379
                    }
380
                    .options-bar {
381
                        @extend .clearfix;
382
                        .bar {
383
                            width:24%;
384
                            float: left;
385
                            margin-right:4%;
386
                            height: 26px;
387
                            position: relative;
388
                            top:2px;
389
                            .wrap {
390
                                border:1px solid white;
391
                                padding:1px;
392
                                height: 100%;
393
                                &.disabled-progress-bar {
394
                                    border-color: #3a4046;
395
                                    .container{
396
                                        .total {
397
                                            background-color: #3a4046;
398
                                        }
399
                                    }
400
                                }
401
                                .container {
402
                                    height: 100%;
403
                                    .total {
404
                                        background:$primary-color;
405
                                        height: 100%;
406
                                        float:left;
407
                                        position: relative;
408
                                        .current {
409
                                            background:white;
410
                                            height: 100%;
411
                                            float:left;
412
                                        }
413
                                        span {
414
                                            position:absolute;
415
                                            right:10px;
416
                                            color:$black;
417
                                            font-size: emCalc(12px);
418
                                        }
419
                                        &.low {
420
                                            span {
421
                                                right:-30px;
422
                                                color:white;
423
                                            }
424
                                        }
425
                                    }
426
                                }
153
	position: relative;
154
	top:0;
155
	color:white;
156
	.top {
157
		background:$overlay-color-top;
158
		height:$bar-height+$bar-submenu-height;
159
		position:fixed;
160
		left:0;
161
		top:$header-height;
162
		width:100%;
163
		z-index:40;
164
		.row {
165
		}
166
		.numbers {
167
			.row {
168
				max-width: 100%;
169
				padding:0 $header-padding-horizontal
427 170

  
428
                            }
429
                        }
430
                        .options {
431
                            overflow:hidden;
432
                            list-style: none outside none;
433
                            li {
434
                                list-style: none outside none;
435
                                display: inline-block;
436
                                margin-right: 10px;
437
                                a {
438
                                    @extend .btn5;
439
                                    min-width: 60px;
440
                                    &.current {
441
                                        color:$overlay-color;
442
                                    }
443
                                }
444
                            }
445
                        }
446
                    }
447
                }
448
            }
449
            .summary {
450
                .row {
451
                    padding-top:1em;
452
                    margin-top:1em;
453
                    border-top:1px solid white;
454
                    &:first-child {
455
                        border-top:0 none;
456
                    }
457
                }
458
                h2 {
459
                    font-size:1em;
460
                    color:white;
461
                }
462
                dl {
463
                    margin-bottom:0;
464
                    span {
465
                        margin-right:10px;
466
                        font-size:20px;
467
                    }
468
                    dt {
469
                        display: inline-block;
470
                        width: 45%;
471
                        vertical-align: top;
472
                    }
473
                    dd {
474
                        display: inline-block;
475
                        width:45%;
476
                    }
477
                }
478
            }
479
            .advanced-conf-step {
480
                color: $wizard-base-font-color;
481
                h2 {
482
                    color: $wizard-base-font-color;
483
                    font-size: 1em;
484
                    margin:0 auto 1em;
485
                }
486
                p {
487
                    font-size: $wizard-paragraph-font-size;
488
                }
171
			}
172
			height:$bar-height;
173
			line-height:$bar-height; 
174
			background:$overlay-darker-color;
175
		}
176
		.sub-menu {
177
			display: none;
178
			&[data-step="1"] {
179
				display: block;
180
			}
181
			ul {
182
				margin:0;
183
				padding:0;
184
				list-style: none outside none;
185
				font-size:emCalc(12px);
186
				li {
187
					display: inline;
188
					margin-right:10px;
189
					line-height: $bar-submenu-height;
190
					list-style: none outside none;
191
					a {
192
						color:$black;
193
						&:hover, &:focus, &.current {
194
							color:white;
195
						}
196
						&.current {
197
							text-decoration: underline;
198
						}
199
					}
200
				}
201
			}
202
		}
203
		.nums {
204
			text-align: right;
205
			list-style:none outside none;
206
			margin:0;
207
			height: $bar-height;
208
			line-height: $bar-height;
209
			font-size:emCalc(9px);
210
			padding-right:120px;
211
			color:$secondary-color;
212
			li {
213
				list-style:none outside none;
214
				display: inline;
215
				p {
216
					display: none;
217
					position: relative;
218
					top: 1px;
219
					font-size:12px;
220
					margin-left:12px;
221
					strong {
222
						margin-right:5px;
223
					}
224
				}
225
				em {
226
					display: inline-block;
227
					border-radius:50%;
228
					border:1px solid $secondary-color;
229
					width:20px;
230
					height:20px;
231
					line-height: 18px;
232
					margin:0 3px;
233
					text-align: center;
234
					font-style: normal;
235
				}
236
				a {
237
					color:$secondary-color;
238
					display: block;
239
					&:hover {
240
						cursor: default;
241
					}
242
				}
243
				&.current{
244
					float: left;
245
					p {
246
						display: inline-block;
247
					}
248
					em {
249
						font-size:12px;
250
						width:30px;
251
						height:30px;
252
						line-height: 27px;
253
						border-color:$secondary-color;
254
						* {
255
							color:$secondary-color;
256
						}
257
					}
258
				}
259
			}
260
		}
261
	}
262
	.middle {
263
		padding-top:$bar-height+$bar-submenu-height;
264
		.step {
265
			padding:50px 0 50px;
266
			position:relative;
267
			width:$row-width;
268
			overflow:hidden;
269
			overflow-y: scroll;
270
			&.step-2 {
271
				padding-top:30px;
272
				.dropdown {
273
					margin-bottom:40px;
274
				}
275
			}
276
			.os {
277
				li {
278
					list-style: none outside none;
279
					font-size:emCalc(12px);
280
					@extend .clearfix;
281
					padding:15px 0;
282
					&:hover,
283
					&.hover {
284
						background:$overlay-darker-color;
285
					}
286
					&.current {
287
						background:white;
288
						color:$overlay-color;
289
						.name-col {
290
							color:$overlay-color;
291
						}
292
						.btn-col {
293
							a {
294
								border-color:$overlay-color;
295
								color:$overlay-color;
296
								&.current {
297
									color:white;
298
									background:$overlay-color;
299
								}
300
							}
301
						}
302
					}
303
					.img-col {
304
						float:left;
305
						width:50px;
306
					}
307
					.name-col {
308
						float: left;
309
						color: $wizard-base-font-color;
310
						width:71%;
311
						padding-right:10px;
312
					}
313
					.size-col {
314
						float:left;
315
						width:10%;
316
					}
317
					.btn-col {
318
						float:right;
319
						width:10%;
320
						margin-left:10px;
321
						a {
322
							@extend .btn5;
489 323

  
324
								font-size:1em;
325
							&.current {
326
								color:$overlay-color;
327
							}
328
						}
329
					}
330
					.details {
331
						display: none;
332
						background:darken(white,10%);
333
						padding:22px 0;
334
						margin:20px 6px -9px;
335
						color: $body-font-color;
336
						h3 {
337
							font-size: 1em;
338
							font-weight: normal;
339
							margin-bottom:1em;
340
							padding-left:50px;
341
						}
342
						dl {
343
							margin:0;
344
							padding-left:50px;
345
							@extend .clearfix;
346
							dt {
347
								width: 20%;
348
								float:left;
349
								color:$black;
350
								font-weight:normal;
351
							}
352
							dd {
353
								color:#485057;
354
								margin:0 0 5px;
355
							}
356
						}
357
					}
358
				}
359
			}
360
			.flavor {
361
				list-style: none outside none;
362
				li {
363
					list-style:none outside none;
364
					margin-bottom:2.5em;
365
					.title {
366
						@extend .clearfix;
367
						margin-bottom:emCalc(5px);
368
						color:white;
369
						vertical-align: top;
370
						.icon {
371
							display: block;
372
							width:5%;
373
							font-size:emCalc(40px);
374
							float: left;
375
						}
376
						h2 {
377
							font-size:emCalc(14px);
378
							span {
379
								font-weight:normal;
380
							}
381
							float:left;
382
							width: 19%;
383
							color:white;
384
							margin-right:4%;
385
							padding-left:emCalc(10px);
386
							&:hover {
387
								& + p {
388
									visibility: visible;
389
								}
390
							}
391
						}
392
						p {
393
							visibility: hidden;
394
							float:left;
395
							width:70%;
396
							color:$black;
397
							font-size:emCalc(9px);
398
						}
399
					}
400
					.options-bar {
401
						@extend .clearfix;
402
						.bar {
403
							width:24%;
404
							float: left;
405
							margin-right:4%;
406
							height: 20px;
407
							position: relative;
408
							top:10px;
409
							.wrap {
410
								border:1px solid white;
411
								padding:1px;
412
								height: 100%;
413
								&.disabled-progress-bar {
414
									border-color: #3a4046;
415
									.container{
416
										.total {
417
											background-color: #3a4046;
418
										}
419
									}
420
								}
421
								.container {
422
									height: 100%;
423
									.total {
424
										background:$primary-color;
425
										height: 100%;
426
										float:left;
427
										position: relative;
428
										.current {
429
											background:white;
430
											height: 100%;
431
											float:left;
432
										}
433
										span {
434
											position:absolute;
435
											right:10px;
436
											color:$black;
437
											font-size: emCalc(9px);
438
										}
439
										&.low {
440
											span {
441
												right:-30px;
442
												color:white;
443
											}
444
										}
445
									}
446
								}
447

  
448
							}
449
						}
450
						.options {
451
							overflow:hidden;
452
							list-style: none outside none;
453
							li {
454
								list-style: none outside none;
455
								display: inline-block;
456
								margin-right: 10px;
457
								margin-bottom:0;
458
								a {
459
									@extend .btn5;
460
									min-width: 60px;
461
									&.current {
462
										color:$overlay-color;
463
									}
464
								}
465
							}
466
						}
467
					}
468
				}
469
			}
470
			.summary {
471
				.row {
472
					padding-top:1em;
473
					margin-top:1em;
474
					border-top:1px solid white;
475
					&:first-child {
476
						border-top:0 none;
477
					}
478
				}
479
				h2 {
480
					font-size:1em;
481
					color:white;
482
				}
483
				dl {
484
					margin-bottom:0;
485
					span {
486
						margin-right:10px;
487
						font-size:20px;
488
					}
489
					dt {
490
						display: inline-block;
491
						width: 45%;
492
						vertical-align: top;
493
					}
494
					dd {
495
						display: inline-block;
496
						width:45%;
497
					}
498
				}
499
			}
500
			.advanced-conf-step {
501
				color: $wizard-base-font-color;
502
				h2 {
503
					color: $wizard-base-font-color;
504
					font-size: 1em;
505
					margin:0 auto 1em;
506
				}
507
				p {
508
					font-size: $wizard-paragraph-font-size;
509
				}
490 510
                .snf-checkbox-checked, .snf-checkbox-unchecked {
491 511
                    color: $wizard-base-font-color;
492 512
                }   
......
627 647
                        .btn5 {
628 648
                            margin-right:20px;
629 649
                        }
630

  
631 650
                    }
632

  
633 651
                }
634 652
            }
635 653
        }
636
       
637 654
    }
638 655
    .bottom {
639 656
        position: fixed;
b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_settings.scss
34 34
$overlay-color: #485057;
35 35
$overlay-color-top:#636a70;
36 36
$overlay-darker-color:#33383D;
37
$black:#333;
37
$black:#1a1a1a;
38 38

  
39 39
$alert-color: $secondary-color;
40 40
$success-color: #00a551;
......
64 64
// $global-rounded: 1000px;
65 65

  
66 66
// header settings
67
$header-height:70px;
67
$header-height:80px;
68 68
$header-height-responsive:120px;
69 69
$header-padding-vertical:emCalc(20px);
70
$header-padding-horizontal:emCalc(40px);
70
$header-padding-horizontal:emCalc(15px);
71 71

  
72 72
// icons nav settings
73 73
$icons-nav-margin-horizontal : emCalc(5px);
74 74

  
75 75
// bar options
76
$bar-height:60px;
77
$bar-submenu-height:50px;
76
$bar-height:50px;
77
$bar-submenu-height:40px;
78 78

  
79 79
// button options
80 80
$btn-height:30px;
......
109 109
//
110 110

  
111 111
$row-full-width:100%;
112
$row-width: emCalc(1200px);
112
$row-width: 1200px;
113 113
$row-small: emCalc(600px);
114 114

  
115 115
$conf-area-h-width: emCalc(300px);
b/snf-cyclades-app/synnefo/ui/new_ui/ui/stylesheets/app.css
1
/* line 264, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
1
/* line 264, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
2 2
*,
3 3
*:before,
4 4
*:after {
......
7 7
  box-sizing: border-box;
8 8
}
9 9

  
10
/* line 269, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
10
/* line 269, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
11 11
html,
12 12
body {
13 13
  font-size: 100%;
14 14
}
15 15

  
16
/* line 272, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
16
/* line 272, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
17 17
body {
18 18
  background: white;
19 19
  color: #222222;
......
27 27
  cursor: default;
28 28
}
29 29

  
30
/* line 285, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
30
/* line 285, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
31 31
a:hover {
32 32
  cursor: pointer;
33 33
}
34 34

  
35
/* line 288, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
35
/* line 288, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
36 36
a:focus {
37 37
  outline: none;
38 38
}
39 39

  
40
/* line 293, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
40
/* line 293, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
41 41
img,
42 42
object,
43 43
embed {
......
45 45
  height: auto;
46 46
}
47 47

  
48
/* line 296, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
48
/* line 296, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
49 49
object,
50 50
embed {
51 51
  height: 100%;
52 52
}
53 53

  
54
/* line 297, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
54
/* line 297, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
55 55
img {
56 56
  -ms-interpolation-mode: bicubic;
57 57
}
58 58

  
59
/* line 303, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
59
/* line 303, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
60 60
#map_canvas img,
61 61
#map_canvas embed,
62 62
#map_canvas object,
......
66 66
  max-width: none !important;
67 67
}
68 68

  
69
/* line 308, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
69
/* line 308, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
70 70
.left {
71 71
  float: left !important;
72 72
}
73 73

  
74
/* line 309, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
74
/* line 309, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
75 75
.right {
76 76
  float: right !important;
77 77
}
78 78

  
79
/* line 310, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
79
/* line 310, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
80 80
.text-left {
81 81
  text-align: left !important;
82 82
}
83 83

  
84
/* line 311, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
84
/* line 311, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
85 85
.text-right {
86 86
  text-align: right !important;
87 87
}
88 88

  
89
/* line 312, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
89
/* line 312, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
90 90
.text-center {
91 91
  text-align: center !important;
92 92
}
93 93

  
94
/* line 313, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
94
/* line 313, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
95 95
.text-justify {
96 96
  text-align: justify !important;
97 97
}
98 98

  
99
/* line 314, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
99
/* line 314, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
100 100
.hide {
101 101
  display: none;
102 102
}
103 103

  
104
/* line 320, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
104
/* line 320, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
105 105
.antialiased {
106 106
  -webkit-font-smoothing: antialiased;
107 107
}
108 108

  
109
/* line 323, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
109
/* line 323, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
110 110
img {
111 111
  display: inline-block;
112 112
  vertical-align: middle;
113 113
}
114 114

  
115
/* line 333, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
115
/* line 333, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
116 116
textarea {
117 117
  height: auto;
118 118
  min-height: 50px;
119 119
}
120 120

  
121
/* line 336, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
121
/* line 336, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
122 122
select {
123 123
  width: 100%;
124 124
}
125 125

  
126 126
/* Grid HTML Classes */
127
/* line 116, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
127
/* line 116, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
128 128
.row {
129 129
  width: 100%;
130 130
  margin-left: auto;
131 131
  margin-right: auto;
132 132
  margin-top: 0;
133 133
  margin-bottom: 0;
134
  max-width: 75em;
134
  max-width: 1200px;
135 135
  *zoom: 1;
136 136
}
137
/* line 121, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
137
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
138 138
.row:before, .row:after {
139 139
  content: " ";
140 140
  display: table;
141 141
}
142
/* line 122, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
142
/* line 122, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
143 143
.row:after {
144 144
  clear: both;
145 145
}
146
/* line 121, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
146
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
147 147
.row.collapse .column,
148 148
.row.collapse .columns {
149 149
  position: relative;
......
151 151
  padding-right: 0;
152 152
  float: left;
153 153
}
154
/* line 124, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
154
/* line 124, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
155 155
.row .row {
156 156
  width: auto;
157 157
  margin-left: -0.9375em;
......
161 161
  max-width: none;
162 162
  *zoom: 1;
163 163
}
164
/* line 121, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
164
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
165 165
.row .row:before, .row .row:after {
166 166
  content: " ";
167 167
  display: table;
168 168
}
169
/* line 122, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
169
/* line 122, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
170 170
.row .row:after {
171 171
  clear: both;
172 172
}
173
/* line 125, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
173
/* line 125, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
174 174
.row .row.collapse {
175 175
  width: auto;
176 176
  margin: 0;
177 177
  max-width: none;
178 178
  *zoom: 1;
179 179
}
180
/* line 121, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
180
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
181 181
.row .row.collapse:before, .row .row.collapse:after {
182 182
  content: " ";
183 183
  display: table;
184 184
}
185
/* line 122, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
185
/* line 122, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
186 186
.row .row.collapse:after {
187 187
  clear: both;
188 188
}
189 189

  
190
/* line 130, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
190
/* line 130, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
191 191
.column,
192 192
.columns {
193 193
  position: relative;
......
198 198
}
199 199

  
200 200
@media only screen {
201
  /* line 135, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
201
  /* line 135, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
202 202
  .column,
203 203
  .columns {
204 204
    position: relative;
......
207 207
    float: left;
208 208
  }
209 209

  
210
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
210
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
211 211
  .small-1 {
212 212
    position: relative;
213 213
    width: 8.33333%;
214 214
  }
215 215

  
216
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
216
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
217 217
  .small-2 {
218 218
    position: relative;
219 219
    width: 16.66667%;
220 220
  }
221 221

  
222
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
222
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
223 223
  .small-3 {
224 224
    position: relative;
225 225
    width: 25%;
226 226
  }
227 227

  
228
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
228
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
229 229
  .small-4 {
230 230
    position: relative;
231 231
    width: 33.33333%;
232 232
  }
233 233

  
234
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
234
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
235 235
  .small-5 {
236 236
    position: relative;
237 237
    width: 41.66667%;
238 238
  }
239 239

  
240
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
240
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
241 241
  .small-6 {
242 242
    position: relative;
243 243
    width: 50%;
244 244
  }
245 245

  
246
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
246
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
247 247
  .small-7 {
248 248
    position: relative;
249 249
    width: 58.33333%;
250 250
  }
251 251

  
252
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
252
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
253 253
  .small-8 {
254 254
    position: relative;
255 255
    width: 66.66667%;
256 256
  }
257 257

  
258
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
258
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
259 259
  .small-9 {
260 260
    position: relative;
261 261
    width: 75%;
262 262
  }
263 263

  
264
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
264
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
265 265
  .small-10 {
266 266
    position: relative;
267 267
    width: 83.33333%;
268 268
  }
269 269

  
270
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
270
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
271 271
  .small-11 {
272 272
    position: relative;
273 273
    width: 91.66667%;
274 274
  }
275 275

  
276
  /* line 138, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
276
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
277 277
  .small-12 {
278 278
    position: relative;
279 279
    width: 100%;
280 280
  }
281 281

  
282
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
282
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
283 283
  .small-offset-0 {
284 284
    position: relative;
285 285
    margin-left: 0%;
286 286
  }
287 287

  
288
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
288
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
289 289
  .small-offset-1 {
290 290
    position: relative;
291 291
    margin-left: 8.33333%;
292 292
  }
293 293

  
294
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
294
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
295 295
  .small-offset-2 {
296 296
    position: relative;
297 297
    margin-left: 16.66667%;
298 298
  }
299 299

  
300
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
300
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
301 301
  .small-offset-3 {
302 302
    position: relative;
303 303
    margin-left: 25%;
304 304
  }
305 305

  
306
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
306
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
307 307
  .small-offset-4 {
308 308
    position: relative;
309 309
    margin-left: 33.33333%;
310 310
  }
311 311

  
312
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
312
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
313 313
  .small-offset-5 {
314 314
    position: relative;
315 315
    margin-left: 41.66667%;
316 316
  }
317 317

  
318
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
318
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
319 319
  .small-offset-6 {
320 320
    position: relative;
321 321
    margin-left: 50%;
322 322
  }
323 323

  
324
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
324
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
325 325
  .small-offset-7 {
326 326
    position: relative;
327 327
    margin-left: 58.33333%;
328 328
  }
329 329

  
330
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
330
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
331 331
  .small-offset-8 {
332 332
    position: relative;
333 333
    margin-left: 66.66667%;
334 334
  }
335 335

  
336
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
336
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
337 337
  .small-offset-9 {
338 338
    position: relative;
339 339
    margin-left: 75%;
340 340
  }
341 341

  
342
  /* line 142, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
342
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
343 343
  .small-offset-10 {
344 344
    position: relative;
345 345
    margin-left: 83.33333%;
346 346
  }
347 347

  
348
  /* line 145, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
348
  /* line 145, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
349 349
  [class*="column"] + [class*="column"]:last-child {
350 350
    float: right;
351 351
  }
352 352

  
353
  /* line 146, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
353
  /* line 146, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
354 354
  [class*="column"] + [class*="column"].end {
355 355
    float: left;
356 356
  }
357 357

  
358
  /* line 149, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
358
  /* line 149, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
359 359
  .column.small-centered,
360 360
  .columns.small-centered {
361 361
    position: relative;
......
366 366
}
367 367
/* Styles for screens that are atleast 768px; */
368 368
@media only screen and (min-width: 768px) {
369
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
369
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
370 370
  .large-1 {
371 371
    position: relative;
372 372
    width: 8.33333%;
373 373
  }
374 374

  
375
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
375
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
376 376
  .large-2 {
377 377
    position: relative;
378 378
    width: 16.66667%;
379 379
  }
380 380

  
381
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
381
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
382 382
  .large-3 {
383 383
    position: relative;
384 384
    width: 25%;
385 385
  }
386 386

  
387
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
387
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
388 388
  .large-4 {
389 389
    position: relative;
390 390
    width: 33.33333%;
391 391
  }
392 392

  
393
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
393
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
394 394
  .large-5 {
395 395
    position: relative;
396 396
    width: 41.66667%;
397 397
  }
398 398

  
399
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
399
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
400 400
  .large-6 {
401 401
    position: relative;
402 402
    width: 50%;
403 403
  }
404 404

  
405
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
405
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
406 406
  .large-7 {
407 407
    position: relative;
408 408
    width: 58.33333%;
409 409
  }
410 410

  
411
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
411
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
412 412
  .large-8 {
413 413
    position: relative;
414 414
    width: 66.66667%;
415 415
  }
416 416

  
417
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
417
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
418 418
  .large-9 {
419 419
    position: relative;
420 420
    width: 75%;
421 421
  }
422 422

  
423
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
423
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
424 424
  .large-10 {
425 425
    position: relative;
426 426
    width: 83.33333%;
427 427
  }
428 428

  
429
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
429
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
430 430
  .large-11 {
431 431
    position: relative;
432 432
    width: 91.66667%;
433 433
  }
434 434

  
435
  /* line 156, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
435
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
436 436
  .large-12 {
437 437
    position: relative;
438 438
    width: 100%;
439 439
  }
440 440

  
441
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
441
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
442 442
  .row .large-offset-0 {
443 443
    position: relative;
444 444
    margin-left: 0%;
445 445
  }
446 446

  
447
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
447
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
448 448
  .row .large-offset-1 {
449 449
    position: relative;
450 450
    margin-left: 8.33333%;
451 451
  }
452 452

  
453
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
453
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
454 454
  .row .large-offset-2 {
455 455
    position: relative;
456 456
    margin-left: 16.66667%;
457 457
  }
458 458

  
459
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
459
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
460 460
  .row .large-offset-3 {
461 461
    position: relative;
462 462
    margin-left: 25%;
463 463
  }
464 464

  
465
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
465
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
466 466
  .row .large-offset-4 {
467 467
    position: relative;
468 468
    margin-left: 33.33333%;
469 469
  }
470 470

  
471
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
471
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
472 472
  .row .large-offset-5 {
473 473
    position: relative;
474 474
    margin-left: 41.66667%;
475 475
  }
476 476

  
477
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
477
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
478 478
  .row .large-offset-6 {
479 479
    position: relative;
480 480
    margin-left: 50%;
481 481
  }
482 482

  
483
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
483
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
484 484
  .row .large-offset-7 {
485 485
    position: relative;
486 486
    margin-left: 58.33333%;
487 487
  }
488 488

  
489
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
489
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
490 490
  .row .large-offset-8 {
491 491
    position: relative;
492 492
    margin-left: 66.66667%;
493 493
  }
494 494

  
495
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
495
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
496 496
  .row .large-offset-9 {
497 497
    position: relative;
498 498
    margin-left: 75%;
499 499
  }
500 500

  
501
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
501
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
502 502
  .row .large-offset-10 {
503 503
    position: relative;
504 504
    margin-left: 83.33333%;
505 505
  }
506 506

  
507
  /* line 160, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
507
  /* line 160, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
508 508
  .row .large-offset-11 {
509 509
    position: relative;
510 510
    margin-left: 91.66667%;
511 511
  }
512 512

  
513
  /* line 164, ../../../../../../../../.rvm/gems/ruby-1.9.2-p320/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff