~ubuntu-on-ec2/vmbuilder/ec2-finder-opening-groovy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
/*  
Theme Name: Ubuntu Cloud
Theme URI: http://www.ubuntu.com
Description: Ubuntu Cloud based on Ubuntu Drupal Theme.
Version: 1.1
Author: Adnane Belmadiaf
Author URI: http://www.ubuntu.com/
*/

* {
	font-family: Ubuntu, 'Ubuntu Beta', UbuntuBeta, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif;
	color: #333333;
	clear: none;
	outline: none;
}

body {
	font-family: Ubuntu, 'Ubuntu Beta', UbuntuBeta, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif;
	background: white url(images/bg_dotted.png);
	font-size: 12px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

a {
	color: #dd4814;
	text-decoration: none;
}
a:hover {
 	text-decoration: underline;
}


textarea, select, input {
	margin:4px 0 8px;
	-moz-border-radius:2px; 
	border-radius:2px; 
	border:1px solid #888; 
	font-size:11px; 
	color:#ccc; 
	line-height:16px;
}

select {
	color:#000; 
}

#container {
	background: #F7F6F5;
	margin: 0 auto;
	padding: 0;
	width: 960px;
}

#container-inner {
	background-color: #FFFFFF;
}

#header {
	background: #E24D00 url(images/header_bg.gif) top left repeat-x;
	height: 64px;
	margin: 0px;
	padding: 0 5px;
	position: relative;
}

#header , #container-inner {
	border-radius: 0px 0px 4px 4px;
	-moz-border-radius: 0px 0px 4px 4px;
	-webkit-border-radius: 0px 0px 8px 8px;
	-box-box-shadow:0px 1px 2px #888;
	-moz-box-shadow:0px 1px 2px #888;
	-webkit-box-shadow:0px 1px 2px #888;

}

#header ul {
	padding: 0;
	margin: 0;
	margin-left: 7px;
}

#header li {
	float: left;
	border-left: 1px solid #F07B55;
	display: block;
	padding: 0;
	margin: 0;
}

#header li.last {
	border-right: 1px solid #F07B55;
}

#header li a {
	text-decoration: none;
	color: #FFFFFF;
	height: 40px;
	padding: 23px 9px 0 9px;
	font-size: 14px;
	display: block;
	margin: 0 !important;
	-webkit-transition-property: color, background; 
	-webkit-transition-duration: .2s, .2s; 
	-webkit-transition-timing-function: linear, ease-in;
}

#header li a.active, #header li a:hover, #header li.current_page_item, #header li.current_page_parent {
	background: #ED6521;
}

#header #logo {
	float: right;
	margin: 15px 5px 0;
}

#header #logo img {
	border: 0;
}

/* sub header */
#subheader {
	margin: 0 13px;
	padding: 0 8px;
	background: #F8F8F8;
	-moz-border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
	-moz-box-shadow: #BBBBBB 0px 0px 5px;
	-webkit-box-shadow: #BBBBBB 0px 0px 5px;
	height: 40px;
}
#subheader * {
	font-size: 12px;
	color: #555555;
}

#subheader ul {
	padding: 0;
	margin: 0;
	margin-left:3px;
}

#subheader .secondar-links, #subheader .links * {
	margin:0;
	padding:0;
}

#subheader ul.links {
	float: left;
}

#subheader .links li {
	display:block;
	float: left;
	padding: 10px 0;
	border-right: 1px solid #EFEFEF;
}

#subheader .links .first {
	border-left: 0;
}

#subheader .links a {
	text-decoration:none;
	padding: 13px 16px;
	-webkit-transition-property: color, background; 
	-webkit-transition-duration: .2s, .2s; 
	-webkit-transition-timing-function: linear, ease-in;
}
#subheader .links a.active, #subheader .links a:hover , #subheader li.current_page_item {
	background-color: #EEEEEE;
}

#subheader .search {
	float: right;
	width: 225px;
}

#subheader .search input[type="text"]{
	background: #F8F8F8 ;
	height: 25px;
	margin: 0px;
	padding: 0 5px;
	color: #555555;
	border: 1px solid #ccc;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	color: #E24D00 !important;
	margin: 6px 0px !important;
	text-decoration: none !important;
	width: 180px;
	text-align:left;
}

#subheader h2 {
	display: none;
}

#subheader .search #searchsubmit {
	background: transparent url(http://www.ubuntu.com/sites/default/themes/ubuntu10/images/search_submit_bg_2.png) no-repeat 0% 0%;
	border: none;
	cursor: pointer;
	height: 25px;
	margin: 3px 0px 0px;
	overflow: hidden;
	padding: 0px;
	text-indent: 35px;
	width: 26px;
        border: 0;
	-moz-box-shadow: #F8F8F8 0px 1px 3px;
	-webkit-box-shadow: #F8F8F8 0px 1px 3px;
}

#subheader .search #searchsubmit:hover {
	background: transparent url(http://www.ubuntu.com/sites/default/themes/ubuntu10/images/search_submit_bg_2.png) no-repeat 0% 50%;
}

#subheader .search #searchsubmit:active {
	background: transparent url(http://www.ubuntu.com/sites/default/themes/ubuntu10/images/search_submit_bg_2.png) no-repeat 0% 100%;
}

#titleBox
{
	padding:30px;
	padding-top:60px;
	width:400px;
}

#titleBox h1
{
	line-height:28px;
	clear:both;
	color:#fff;
	padding-left:0;
	font-size:38;
}

#titleBox h2
{
	margin-top:55px;
	color:#AEA79F;
	font-size:26;
}


#content {
	width: 960px;
	line-height: 1.4em;
	padding: 10px 10px 40px 25px;
	overflow:auto;
	color:#333333 ;
}

#content .page {
	width: 920px;
}

#main {
	float:left;
	width:580px;
	margin-left:-10px;
}
#sidebar {
	float:right;
	width:320px;
	margin-right:45px;
}

#sidebar h4{
	line-height:25px;
}

h1 {
	color: #E24D00;
	font-size: 34px;
	font-weight: normal;
	line-height: 36px;
	margin: 6px 0 10px 0;
}

h2 {
	color: #E24D00;
	font-size: 24px;
	font-weight: normal;
	line-height: 36px;
	margin: 6px 0 10px 0;
}

h3 {
	color: #E24D00;
	font-size: 22px;
	font-weight: normal;
	line-height: 36px;
	margin: 6px 0 10px 0;
}

h4 {
	color: #E24D00;
	font-size: 18px;
	font-weight: normal;
	line-height: 36px;
	margin: 6px 0 10px 0;
}

.postmetadata{
	font-size:90%;
}

.post h3{
	line-height:20px;
	padding:0;
}

.post{
	background: #fff;
	/*-moz-border-radius: 6px;
	-moz-border-radius: 6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;*/
        padding:10px;
        margin-bottom:10px;
}


.post .more-link{
	background: transparent url(http://www.ubuntu.com/sites/default/themes/ubuntu10/images/hs_arrow.png) no-repeat 100% 50%;
	padding-right:11px;
}

.post h1{
	font-size:24px;
}

.post h2{
        font-size:22px;
}

.post h3{
        font-size:20px;
}

.post .post_content img
{
	max-width: 560px;
	height: auto;
}

.post-planet{
	background: #fff;
	/*-moz-border-radius: 6px;
	-moz-border-radius: 6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;*/
    padding:10px;
    margin-bottom:10px;
}


.post-planet .more-link{
	background: transparent url(http://www.ubuntu.com/sites/default/themes/ubuntu10/images/hs_arrow.png) no-repeat 100% 50%;
	padding-right:11px;
}

.post-planet h1{
	font-size:24px;
}

.post-planet h2{
    font-size:22px;
}

.post-planet h3{
    font-size:20px;
    line-height:20px;
    padding:0;
}

.post-planet .post_content img
{
	max-width: 880px;
	height: auto;
}

#footer {
	background-position: right top;
	background-repeat: no-repeat;
	font-size: 11px;
	padding: 0;
	padding-bottom:10px;
	margin: 5px 9px 0 0;
	overflow:auto;
        color:#aea79f;
}



#misc {
	width:350px;
        float:right;
}

#footer-logo {
    margin: 10px 0;
    background-image: url(images/footer_logo.png);
    background-repeat: no-repeat;
    float:right;
}

#footer-logo a {
    display: block;
    width: 118px;
    height: 27px;
}

#copyright {
    margin: 0 16px;
    padding: 10px 0;
    height: 48px;
    width:400px;
    float:left;
}
#copyright p {
    color: #aea79f;
    font-size: 10px;
    line-height: 16px;
    margin: 2px 0;
}

textarea, select, input[type="text"], input[type="password"] {margin:4px 0 8px;-moz-border-radius:2px; border-radius:2px; border:1px solid #888; font-size:12px; line-height:16px;}

textarea, input[type="text"], input[type="password"] {
	/*background: white url(images/shadow.gif) repeat-x;*/
	border: 1px solid lightGrey;
	font-size:12px; 
	color:#464646;
	margin-bottom: 10px;
	padding: 5px;
}

input[type="submit"] {
	-moz-border-radius:11px 11px 11px 11px;
	-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	-webkit-border-radius:11px 11px 11px 11px;	
	background:url("images/white-grad.png") repeat-x scroll left top #EAEAEA;
	border-color:#DEDEDE #BBBBBB #BFBFBF #DEDEDE;
	border-style:solid;
	border-width:1px;
	color:#464646;
	border-radius: 6px;	
	cursor: pointer;
	font-size: 12px !important;
	line-height: 22px;
	padding: 2px 8px;
	text-decoration: none;
	background: #f2f2f2 url(images/white-grad.png) repeat-x scroll left top;
}


input[type="submit"]:active {
	background: #eee url(images/white-grad-active.png) repeat-x scroll left top;
}

#learn, #connect, #engage , #immerse {
    padding: 10px;  /* This sets a 10px padding on all of our content boxes */
    width: 220px;
    height:250px;
}
 
 
 
    #learn, #engage {
        float: left; /* Sets this column to the left inside its section */
       
    }
 
    #connect, #immerse {
        float: right; /* Sets this column to the right inside its section*/
        width: 220px;
    }

 
   #features {
	position:relative;
    margin-left:-20px;
	height:200px;
    width:960px;
}

   #features #learn h2, #features #engage h2, #features #connect h2, #features #immerse h2{
	  margin: 0;
          line-height:20px;
}

.entry-content h3
{  
   margin:0;
   padding:0;
   padding-right:10px;
}


.col1, .col2, .col3 , .col4 {
    padding: 10px;
    width: 215px;
    min-height:120px;
    height:auto;
    overflow:auto;
}
    .col1, .col2 {
        float: left; 
       
    }
 
    .col3 , .col4 {
        float: right; 
        width: 220px;
    }

 
   .features-dev {
	    min-height:120px;
        height:auto;
        overflow: auto;
        width:950px;
        padding-right:10px;
        padding-left:10px;
}

   .features-dev .col1 h2, .features-dev .col2 h2, .features-dev .col3 h2, .features-dev .col4 h2{
	  margin: 0;
          line-height:20px;
}


div.features {
    margin: 16px 0 0 0;
    display: table;
    border-spacing: 16px 0;
    border-collapse: separate;
}

div.features ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: table-row;
}

div.features ul li:first-child {
    margin: 0;
}
.features ul li {
    width: 208px;
    padding: 0 8px 0 8px;
    display: table-cell;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.features ul li h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 8px 0;
    font-weight: normal;

}

.features ul li h2 {
    font-size: 14px;
    line-height: 28px;
    margin: 0 0 8px 0;
    font-weight: bold;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background: #DD4814;
    text-decoration: none;
    color:white;
    text-align: center; 
}

.features ul li h2 a {
    padding-top:6px;
    padding-left:0;
    text-decoration: none;
    color:white;
}

#videos{
       	background: #EFECEA;
	-moz-border-radius: 6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
        margin-bottom:20px;
}

#videos .video {
	width:250px;
        height:164px;
        margin-left:30px;
}

/*-------------------------------
Sidebar Tabber
-------------------------------*/

ul.idTabs {
	width: 100%;
	padding: 0;
	margin: 0 0 0 10px;
	display: block;
        height:25px;
        
}

ul.idTabs li {
	display: inline;
	margin-right:10px;
	float:left;
}

ul.idTabs li a {
	display:block;
	float:left;
	height:16px;
	margin:0 auto;
	padding:10px;
	text-align:left;
}

ul.idTabs li a.selected, ul.idTabs li a:hover {
	background: #EFECEA;
	-moz-border-radius-topright: 6px;
	-moz-border-radius-topleft: 6px;
	-khtml-border-radius: 6px 6px 0 0;
	-webkit-border-top-right-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	border-radius: 6px 6px 0 0;	
}
#tabs .inside {
        margin-top:5px;
	background: #EFECEA;
	-moz-border-radius: 6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;	
	width: 100%;
	font-size: 90%;
}

#tabs .inside-ami {
        margin-top:5px;
	background: #EFECEA;
	-moz-border-radius: 6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;	
	width: 910px;
	font-size: 90%;
}

#tabs .inside ul li {
	line-height: 13px;
	border-bottom: 1px dashed #ccc;
	padding: 10px 0;
	margin: 0;
        list-style:none;	
}
#tabs .inside-ami ul li {
	line-height: 13px;
	border-bottom: 1px dashed #ccc;
	padding: 10px 0;
	margin: 0;
        list-style:none;	
}
#tabs .inside ul#comm li {
	padding-left:5px;
}
#tabs .inside ul#pop li {
	padding-left:5px;
}
#tabs .inside ul#archive li {
	padding-left:5px;
}


#tagcloud {
	padding:15px;
}

#tagcloud a{
	margin-left:10px;
}
#tabs .inside ul{
	margin:0;
	padding:0px 15px 10px 15px !important;
}

#tabs .inside-ami ul{
	margin:0;
	padding:0px 15px 10px 15px !important;
}

.query {
	font-size: 90%;
        min-height:40px;
	color: #085258;
	-webkit-border-radius: 6px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #EFECEA; }

.query p.loading {
	margin: 0;
	padding:20px; }

.query ul.tweet_list{
   margin: 0;
   padding: 0;
}

.query .tweet_list .awesome, .query .tweet_list .epic {
      text-transform: uppercase; }

.query .tweet_list li {
      overflow-y: auto;
      overflow-x: hidden;
      padding: 5px; 
}


.query .tweet_list .tweet_even {
      background-color: #ccc ; 
}

.query .tweet_list .tweet_avatar {
      padding-right: .5em;
      float: left; 
}

.query .tweet_list .tweet_avatar img {
        vertical-align: middle; }


/* Wiki Imported */

#imported h1 {
 font-size: 24px;
}

#imported h2 {
 font-size: 20px;
}

#imported h3 {
 font-size: 16px;
}

#twitter {
  margin-bottom:10px;
 }			


#twitter p.loading {
	margin: 0;
	padding:20px; }

#twitter ul.tweet_list{
   margin: 0;
   padding: 0;
}

#twitter .tweet_list .awesome, .query .tweet_list .epic {
      text-transform: uppercase; }

#twitter .tweet_list li {
      overflow-y: auto;
      overflow-x: hidden;
      padding: 5px; 
}


#twitter .tweet_list .tweet_even {
      background-color: #ccc ; 
}

#twitter .tweet_list .tweet_avatar {
      padding-right: .5em;
      float: left; 
}

.query .tweet_list .tweet_avatar img {
        vertical-align: middle; 
}

#rss p {
	color: #555;
	float: right;
	font-size: 14px;
	padding: 0;
	margin: 0;
	width: 275px;
}


#ami_search_input {
	width:200px;
	border: 1px solid #fff;
	padding-left:5px;
	margin-bottom:0;
}

#ami_info {
	display:none;
}
code, pre {
	background-color: #EEE;
	border: none;
	overflow: auto;
}
pre {
	border: 1px dashed #dd4814;
	overflow: auto;
	padding: 1em;
}

.get_involved, .get_involved_comments {
    background: url(images/get_involved_white.png) no-repeat 0 50%;
    padding: 10px;
    padding-left:30px;
    padding-top:4px;
    font-size:14px;
}

.get_involved_comments {
    background-color: #E24D00;
    color: #fff;
    min-width: 300px;
    width: 380px;
    padding-top: 4px;
    line-height: 20px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px 6px 6px 6px;
}

.get_involved_comments a {
    color: #fff;
}

ol.commentlist { list-style:none; margin:0; padding:0; width:800px; }
ol.commentlist li { background-color: #EFECEA; margin:0 0 10px; padding:5px 7px 5px 64px; position:relative; border-radius: 4px;-moz-border-radius: 4px;-webkit-border-radius: 4px;}
ol.commentlist li.pingback comment-author { padding:0 170px 0 0; }
ol.commentlist li div.vcard { font-weight:bold; font-size: 14px; line-height: 16px; font-family: helvetica,arial,sans-serif; }
ol.commentlist li div.vcard cite.fn { font-style:normal; font-size: 13px; }
ol.commentlist li div.vcard cite.fn a.url { color:#AAA; text-decoration:none; }
ol.commentlist li div.vcard cite.fn a.url:hover { color:#AAA; text-decoration:underline; }
ol.commentlist li div.vcard img.avatar { background: #fff; border:1px solid #aaa; padding: 5px; left:7px; position:absolute; top:7px; }
ol.commentlist li div.comment-meta { font-weight:bold; font-size: 10px; line-height: 16px; font-family: helvetica,arial,sans-serif; position:absolute; right:10px; text-align:right; top:5px; }
ol.commentlist li div.comment-meta a { color:#333; text-decoration:none; }
ol.commentlist li p { font-weight:normal; font-size: 12px; line-height: 16px; margin:5px 0 12px; }
ol.commentlist li ul { font-weight:normal; font-size: 12px; line-height: 16px; list-style:square; margin:0 0 12px; padding:0; }
ol.commentlist li div.reply { text-align:center; width:36px; }
ol.commentlist li div.reply a { color:#333; text-decoration:none; text-transform:uppercase; }
ol.commentlist li ul.children { list-style:none; margin:12px 0 0; text-indent:0; }
ol.commentlist li ul.children li.depth-2 { margin:0 0 3px; }
ol.commentlist li ul.children li.depth-3 { margin:0 0 3px; }
ol.commentlist li ul.children li.depth-4 { margin:0 0 3px; }
ol.commentlist li ul.children li.depth-5 { margin:0 0 3px; }
ol.commentlist ul.children li.odd { background:#fff; }
ol.commentlist ul.children li.even { background:#f6f6f6; }
ol.commentlist li.pingback div.vcard { padding:0 170px 0 0; }