-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.htm
1305 lines (1276 loc) · 61.1 KB
/
event.htm
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
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<title>Events - saMMsCRIthi 16</title>
<meta name="robots" content="noodp,noydir" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script type="text/javascript">
window._wpemojiSettings = {
"baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/72x72\/",
"ext": ".png",
"source": {
"concatemoji": "http:\/\/demo.studiopress.com\/parallax\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.4.2"
}
};
! function(a, b, c) {
function d(a) {
var c, d = b.createElement("canvas"),
e = d.getContext && d.getContext("2d"),
f = String.fromCharCode;
return e && e.fillText ? (e.textBaseline = "top", e.font = "600 32px Arial", "flag" === a ? (e.fillText(f(55356, 56806, 55356, 56826), 0, 0), d.toDataURL().length > 3e3) : "diversity" === a ? (e.fillText(f(55356, 57221), 0, 0), c = e.getImageData(16, 16, 1, 1).data.toString(), e.fillText(f(55356, 57221, 55356, 57343), 0, 0), c !== e.getImageData(16, 16, 1, 1).data.toString()) : ("simple" === a ? e.fillText(f(55357, 56835), 0, 0) : e.fillText(f(55356, 57135), 0, 0), 0 !== e.getImageData(16, 16, 1, 1).data[0])) : !1
}
function e(a) {
var c = b.createElement("script");
c.src = a, c.type = "text/javascript", b.getElementsByTagName("head")[0].appendChild(c)
}
var f, g;
c.supports = {
simple: d("simple"),
flag: d("flag"),
unicode8: d("unicode8"),
diversity: d("diversity")
}, c.DOMReady = !1, c.readyCallback = function() {
c.DOMReady = !0
}, c.supports.simple && c.supports.flag && c.supports.unicode8 && c.supports.diversity || (g = function() {
c.readyCallback()
}, b.addEventListener ? (b.addEventListener("DOMContentLoaded", g, !1), a.addEventListener("load", g, !1)) : (a.attachEvent("onload", g), b.attachEvent("onreadystatechange", function() {
"complete" === b.readyState && c.readyCallback()
})), f = c.source || {}, f.concatemoji ? e(f.concatemoji) : f.wpemoji && f.twemoji && (e(f.twemoji), e(f.wpemoji)))
}(window, document, window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<style class="cp-pen-styles">dl {
font-family: monospace;
font-size: 370px;
line-height: 265px;
margin: 0 92.5px;
text-align: center;
}
dl > * {
font-family: sans-serif;
}
dl > dt {
display: inline-block;
margin: 0 -92.5px;
position: relative;
vertical-align: top;
width: 185px;
}
dl dt:hover ~ dd > a,
dl dd:hover > a,
dl dd:hover ~ dd > a {
opacity: 1;
}
dl dt:hover ~ dt ~ dd > a,
dl dd:hover ~ dt ~ dd > a {
opacity: 0;
}
dl > dd {
display: inline-block;
font-size: 16px;
font-size: 1rem;
line-height: 1;
margin: 0 -92.5px;
position: relative;
vertical-align: bottom;
width: 185px;
}
dl > dd + dd {
margin-bottom: 40px;
}
dl > dd > a {
background: red;
border-radius: 1em;
color: white;
display: block;
margin: .5em;
opacity: 0;
padding: .5em;
text-decoration: none;
transition: opacity .2s ease-in-out;
}
</style>
<link rel='stylesheet' id='parallax-pro-theme-css' href='files/style_002.css' type='text/css' media='all' />
<style id="parallax-pro-theme-inline-css" type="text/css">
.home-section-1 {
background-image: url(files/bg1.png);
}
.home-section-3 {
background-image: url(files/color.jpg);
background-attachment: fixed;
background-color: #fff;
background-position: center center;
background-repeat: no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
.home-section-5 {
background-image: url(files/bg1.png);
}
</style>
<link rel='stylesheet' id='dashicons-css' href='files/dashicons.css' type='text/css' media='all' />
<link rel="stylesheet" id="parallax-google-fonts-css" href="files/css.css" type="text/css" media="all">
<link rel="stylesheet" id="simple-social-icons-font-css" href="files/style.css" type="text/css" media="all">
<script type="text/javascript" src="files/jquery-migrate.js"></script>
<script type="text/javascript" src="files/responsive-menu.js"></script>
<script type="text/javascript" src="files/parallax.js"></script>
<style type="text/css">
<style class="cp-pen-styles">.transition,
p,
ul li i:before,
ul li i:after {
transition: all 0.25s ease-in-out;
}
.flipIn,
h1,
ul li {
animation: flipdown 0.5s ease both;
}
ul {
list-style: none;
perspective: 900;
padding: 0;
margin: 0;
}
ul li {
position: relative;
padding: 0;
margin: 0;
padding-bottom: 4px;
padding-top: 18px;
border-top: 1px dotted #dce7eb;
}
ul li:nth-of-type(1) {
animation-delay: 0.5s;
}
ul li:nth-of-type(2) {
animation-delay: 0.75s;
}
ul li:nth-of-type(3) {
animation-delay: 1s;
}
ul li:last-of-type {
padding-bottom: 0;
}
ul li i {
position: absolute;
transform: translate(-6px, 0);
margin-top: 16px;
right: 0;
}
ul li i:before,
ul li i:after {
content: "";
position: absolute;
background-color: #ff6873;
width: 3px;
height: 9px;
}
ul li i:before {
transform: translate(-2px, 0) rotate(45deg);
}
ul li i:after {
transform: translate(2px, 0) rotate(-45deg);
}
ul li input[type=checkbox] {
position: absolute;
cursor: pointer;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0;
}
ul li input[type=checkbox]:checked ~ p {
margin-top: 0;
max-height: 0;
opacity: 0;
transform: translate(0, 50%);
}
ul li input[type=checkbox]:checked ~ i:before {
transform: translate(2px, 0) rotate(45deg);
}
ul li input[type=checkbox]:checked ~ i:after {
transform: translate(-2px, 0) rotate(-45deg);
}
@keyframes flipdown {
0% {
opacity: 0;
transform-origin: top center;
transform: rotateX(-90deg);
}
5% {
opacity: 1;
}
80% {
transform: rotateX(8deg);
}
83% {
transform: rotateX(6deg);
}
92% {
transform: rotateX(-3deg);
}
100% {
transform-origin: top center;
transform: rotateX(0deg);
}
}
</style>
<link rel="shortcut icon" href="files/favicon.ico">
<style type="text/css" media="screen">
.simple-social-icons ul li a,
.simple-social-icons ul li a:hover {
background-color: #fff !important;
border-radius: 60px;
color: #000 !important;
border: 0px #ffffff solid !important;
font-size: 30px;
padding: 15px;
}
.simple-social-icons ul li a:hover {
background-color: #f04848 !important;
border-color: #ffffff !important;
color: #ffffff !important;
}
</style>
<style type="text/css">
.enews .screenread {
height: 1px;
left: -1000em;
overflow: hidden;
position: absolute;
top: -1000em;
width: 1px;
}
</style>
<style type="text/css">
.enews .screenread {
$breakpoint-alpha: 480px; // adjust to your needs
.rwd-table {
margin: 1em 0;
min-width: 300px; // adjust to your needs
tr {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
th {
display: none; // for accessibility, use a visually hidden method here instead! Thanks, reddit!
}
td {
display: block;
&:first-child {
padding-top: .5em;
}
&:last-child {
padding-bottom: .5em;
}
&:before {
content: attr(data-th)": "; // who knew you could do this? The internet, that's who.
font-weight: bold;
// optional stuff to make it look nicer
width: 6.5em; // magic number :( adjust according to your own content
display: inline-block;
// end options
@media (min-width: $breakpoint-alpha) {
display: none;
}
}
}
th,
td {
text-align: left;
@media (min-width: $breakpoint-alpha) {
display: table-cell;
padding: .25em .5em;
&:first-child {
padding-left: 0;
}
&:last-child {
padding-right: 0;
}
}
}
}
// presentational styling
@import 'http://fonts.googleapis.com/css?family=Montserrat:300,400,700';
body {
padding: 0 2em;
font-family: Montserrat, sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
color: #444;
}
h1 {
font-weight: normal;
letter-spacing: -1px;
color: #34495E;
}
.rwd-table {
background: #34495E;
color: #fff;
border-radius: .4em;
overflow: hidden;
tr {
border-color: lighten(#34495E, 10%);
}
th,
td {
margin: .5em 1em;
@media (min-width: $breakpoint-alpha) {
padding: 1em !important;
}
}
th,
td:before {
color: #dd5;
}
}
}
</style <link rel="shortcut icon" href="files/favicon.ico"> <style type="text/css" media="screen"> .simple-social-icons ul li a,
.simple-social-icons ul li a:hover {
background-color: #fff !important;
border-radius: 60px;
color: #000 !important;
border: 0px #ffffff solid !important;
font-size: 30px;
padding: 15px;
}
.simple-social-icons ul li a:hover {
background-color: #f04848 !important;
border-color: #ffffff !important;
color: #ffffff !important;
}
</style>
</head>
<body class="page page-id-514 page-template-default custom-header full-width-content" itemscope itemtype="http://schema.org/WebPage">
<div class="site-container">
<header class="site-header" itemscope itemtype="http://schema.org/WPHeader">
<div class="wrap">
<div class="title-area">
<h1 class="site-title" itemprop="headline"><a href="index.htm" title="">
<img src="files/logo1.png" alt="Logo" class="responsive" height="200" width="150">
</a></h1>
<h2 class="site-description" itemprop="description">Official Webpage of saMMsCRIthi - 2016</h2></div>
<div class="widget-area header-widget-area">
<section id="nav_menu-2" class="widget widget_nav_menu">
<div class="widget-wrap">
<nav class="nav-header" itemscope itemtype="http://schema.org/SiteNavigationElement">
<ul id="menu-primary-navigation" class="menu genesis-nav-menu">
<li id="menu-item-526" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-526"><a href="event.htm#events" itemprop="url"><span itemprop="name">Events</span></a>
</li>
<li id="menu-item-557" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-557"><a href="event.htm#patrons" itemprop="url"><span itemprop="name">Patrons</span></a>
</li>
<li id="menu-item-491" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-491"><a href="contact.htm" itemprop="url"><span itemprop="name">Contact & Stay</span></a></li>
</ul>
</nav>
</div>
</section>
</div>
</div>
</header>
<div class="site-inner">
<div class="content-sidebar-wrap">
<main class="content">
<article class="post-514 page type-page status-publish entry" itemscope itemtype="http://schema.org/CreativeWork">
<header id="events" class="entry-header">
<h1 class="entry-title" itemprop="headline">Events</h1>
</header>
<h3>Day 1 - 19<sup>th</sup> August</h3>
<table id="d1" class="rwd-table">
<tr>
<th>Venue</th>
<th>9 AM</th>
<th>11 AM</th>
<th>2 PM</th>
</tr>
<tr>
<td data-th="Venue"><b>Auditorium Main Stage</b></td>
<td data-th="9 AM">Group Song</td>
<td data-th="11 AM">General quiz Finals</td>
<td data-th="2 PM">Introduction & Spot Dance</td>
</tr>
<tr>
<td data-th="Venue"><b>Auditorium Seats</b></td>
<td data-th="9 AM">General quiz prelims</td>
<td data-th="11 AM">Creative Writing</td>
<td data-th="2 PM">Creative Writing(conti..)</td>
</tr>
<tr>
<td data-th="Venue"><b>Millennium Lecture Hall</b></td>
<td data-th="9 AM">Case Presentation</td>
<td data-th="11 AM">Mock Press</td>
<td data-th="2 PM">Extempore Kannada</td>
</tr>
<tr>
<td data-th="Venue"><b>Room 1</b></td>
<td data-th="9 AM">Pictionary Prelims</td>
<td data-th="11 AM">Pictionary Finals</td>
<td data-th="2 PM">Extempore English</td>
</tr>
<tr>
<td data-th="Venue"><b>Room 2</b></td>
<td data-th="9 AM">Sketching</td>
<td data-th="11 AM">Collage</td>
<td data-th="2 PM">Dumb Charades Prelims</td>
</tr>
<tr>
<td data-th="Venue"><b>Outdoor</b></td>
<td></td>
<td data-th="Evening">Inaugaration</td>
<td></td>
</tr>
<tr>
<td data-th="Venue"><b>Main Stage</b></td>
<td id="d2" data-th="Guest of Honor"><b>Naa Someshwara</b></td>
<td data-th="Performance by"><b>Yashwanth Sardeshpande</b></td>
<td data-th="Speech by"><b>Chakravarthy Sulibele</b></td>
</tr>
</table>
<h3>Day 2 - 20<sup>th</sup> August</h3>
<table class="rwd-table">
<tr>
<th>Venue</th>
<th>9 AM</th>
<th>11 AM</th>
<th>2 PM</th>
</tr>
<tr>
<td data-th="Venue"><b>Auditorium Main Stage</b></td>
<td data-th="9 AM">Solo Singing</td>
<td data-th="11 AM">Solo Singing & Pair Dance</td>
<td></td>
</tr>
<tr>
<td data-th="Venue"><b>Auditorium Seats</b></td>
<td data-th="9 AM">Medical quiz prelims</td>
<td data-th="11 AM">Poetry</td>
<td data-th="2 PM">Medical Crossword</td>
</tr>
<tr>
<td data-th="Venue"><b>Millennium Lecture Hall</b></td>
<td data-th="9 AM">Debate Finals</td>
<td data-th="11 AM">Medical Quiz Finals</td>
<td data-th="2 PM">Jam English</td>
</tr>
<tr>
<td data-th="Venue"><b>Room 1</b></td>
<td data-th="9 AM">Jam Kannada</td>
<td data-th="11 AM">Dumb Charade</td>
<td data-th="2 PM">Painting</td>
</tr>
<tr>
<td data-th="Venue"><b>Room 2</b></td>
<td data-th="9 AM">Jam Hindi</td>
<td></td>
<td data-th="2 PM">Debate Kannada</td>
</tr>
<tr>
<td data-th="Venue"><b>Indoor</b></td>
<td></td>
<td data-th="Evening">The Improv</td>
<td></td>
</tr>
<tr>
<td data-th="Venue"><b>Outdoor</b></td>
<td id="d3"></td>
<td data-th="Evening">Fashion Show</td>
<td></td>
</tr>
</table>
<p style="text-align:center">Disclaimer<br>
<small>Seating will be on first come first serve basis, except VIPs
<br>The auditorium will be locked once the seats are filled
<br>Passes will only be given to those who have registered for events
</small>
</p>
<h3>Day 3 - 21<sup>st</sup> August</h3>
<table class="rwd-table">
<tr>
<th>Venue</th>
<th>9 AM</th>
<th>11 AM</th>
<th>2 PM</th>
</tr>
<tr>
<td data-th="Venue"><b>Auditorium Main Stage</b></td>
<td data-th="9 AM">Duet Singing & Movie Making</td>
<td data-th="11 AM">Solo Dance & Mad Ads</td>
<td data-th="2 PM">Anthakshari Finals & Skit</td>
</tr>
<tr>
<td data-th="Venue"><b>Auditorium Seats</b></td>
<td data-th="9 AM">Anthakshari Kannada Prelims</td>
<td data-th="11 AM">Anthakshari Hindi Prelims</td>
<td data-th="2 PM">Love letter Writing</td>
</tr>
<tr>
<td data-th="Venue"><b>Millennium Lecture Hall</b></td>
<td></td>
<td data-th="11 AM">Instrumental</td>
<td></td>
</tr>
<tr>
<td data-th="Venue"><b>Room 1</b></td>
<td data-th="9 AM">Face Painting</td>
<td data-th="11 AM">90 seconds</td>
<td data-th="2 PM">Rangoli</td>
</tr>
<tr>
<td data-th="Venue"><b>Room 2</b></td>
<td data-th="9 AM">Mehendi</td>
<td data-th="11 AM">Pot Painting</td>
<td data-th="2 PM">Crossword</td>
</tr>
<tr>
<td data-th="Venue"><b>Main Stage</b></td>
<td></td>
<td data-th="Evening"> Group Dance</td>
<td></td>
</tr>
<tr>
<td data-th="Venue"><b>Outdoor</b></td>
<td></td>
<td data-th="8PM"><p style="text-align:center">Naveen Sajju LIVE & Poornachandra Tejaswi</p></td>
<td></td>
</tr>
</table>
<hr>
<header id="patrons" class="entry-header">
<h1 class="entry-title" itemprop="headline">Patrons</h1>
</header>
<p style="text-align:center">
<img src="files/sp/msf.png" align="middle"/>
</p>
<dl>
<dt><img src="files/sp/lw.jpg" /></dt>
<dt><img src="files/sp/ss.png" /></dt>
<dt><img src="files/sp/ar.jpg" /></dt>
<dt><img src="files/sp/sbm.jpg" /></dt>
<dt><img src="files/sp/GANA.jpg" /></dt>
<dt><img src="files/sp/sd.jpg" /></dt>
</dl>
<br>
<dl>
<dt><img src="files/sp/mls.jpg" /></dt>
<dt><img src="files/sp/bh.jpg" /></dt>
<dt><img src="files/sp/stp.png" /></dt>
<dt><img src="files/sp/mdc.jpg" /></dt>
<dt><img src="files/sp/dams.jpg" /></dt>
</dl>
<dl>
<dt><img src="files/sp/sb.JPG" /></dt>
<dt><img src="files/sp/pv.jpg" /></dt>
<dt><img src="files/sp/siri.png" /></dt>
</dl>
<header id="rules" class="entry-header">
<h1 class="entry-title" itemprop="headline">Rules</h1>
</header>
<ul>
<li>
<input type="checkbox">
<i></i>
<h4>GENERAL RULES</h4>
<p>Participants are requested to enroll for participation & accommodation</b>
<br>
<small>
•It is mandatory to confirm the enrolment on arrival at reception.<br>
•Participants must carry their ID cards.<br>
•Participants should report to event organizers 30minutes before the start of the event.<br>
•Vulgarity or obscenity in any form will lead to immediate disqualification. <br>
•Judge’s decision is final and binding.<br>
•Events are subjected to modification & cancellation depending on the number of registrants.<br>
•Accommodation and food will be arranged at nominal prices and on first come first serve basis.<br>
•If number of participants participating in a particular event is less than or equal to 4, then only one prize will be issued.<br>
•The Prizes are subject to change.<br>
</small>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h4>ACCOMMODATION</h4>
<p>
<small>
•Charges are Rs. 150/head/day<br>
•Three Persons per room<br>
•First come first serve basis<br>
•Must collect token from organizers before going to hotel<br>
•Contact - HEMANTH : 8951286378<br>
<p><img src="files/acc1.jpeg" alt="Accommodation 1" height="240" width="320"/>
<img src="files/acc3.jpeg" alt="Accommodation 2" height="240" width="320"/></p>
</small>
</p>
</li>
</ul>
<h3>eventos de teatro</h3>
<hr>
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Music Events</h4>
<p>SUR SANGRAM(GROUP SINGING)
<br>
<small>
•TEAM OF 5+5<br>
•KARAOKE ALLOWED<br>
•TIME ALLOWED 8+2 MINUTES<br>
•ORGANIZERS: PRASAD – 9741595450 POOJA - 7760362754<br>
</small>
<br> SUSHRAVYA (SOLO SINGING)
<br>
<small>
•INDIAN FILMY, INDIAN NON FILMY & WESTERN CATEGORIES SEPARATE<br>
• 4+1 MINUTES KARAOKE ALLOWED, FIRST 25 ENTRIES ONLY<br>
•INSTRUMENTS ALLOWED ONLY IF PLAYED BY THE PARTICIPANT.<br>
•ORGANIZERS: NIDHI – 9986663673 NIMISHA - 9686982348<br>
</small>
<br> RHYTHM & HUES(DUET SINGING)
<br>
<small>
• 5+1 MINUTES<br>
•KARAOKE ALLOWED<br>
•NSTRUMENTS ALLOWED IF PLAYED BY THE PARTICIPANTS.<br>
•ORGANIZERS: JESNA – 8722468582 NIROOP - 8892152838<br>
</small>
<br> ANTHAKSHARI (Kannada/Hindi)
<br>
<small>
•TEAM OF 2 MEMBERS<br>
•STANDARD RULES APPLY<br>
•THE PRELIMINARY ROUND WILL BE A WRITTEN QUALIFYING ROUND, THROUGH WHICH 6 TEAMS WILL BE QUALIFIED FOR THE FINALS.<br>
•ORGANIZERS HINDI: ABHINAV – 7259524044 ANUSHREE - 9538957693 <br>
•ORGANIZERS KANNADA: HARSHITHA – 9483803657 VINAY MV - 8971060740 <br>
</small>
<br> SAPTASWARA (INSTRUMENTALS)
<br>
<small>
•INDIVIDUAL EVENT<br>
•TIME DURATION 5+1 MINUTES<br>
•INDIAN AND WESTERN CATEGORIES SEPARATE.SAME PARTICIPANT CAN PARTICIPATE IN BOTH.<br>
•PARTICIPANTS SHOULD GET THEIR OWN INSTRUMENTS. NO RECORDING ALLOWED.<br>
•ORGANIZERS: SAGAR – 8105530656 DYVIK - 9206190450<br>
</small>
<br>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Dance Events</h4>
<p>DANCE MASTI (SPOT DANCE)
<br>
<small>
•MINIMUM 3 PER GROUP<br>
• 3 SONGS EACH OF 1 MIN WILL BE PLAYED<br>
• 30MIN PREPARATION TIME WILL BE GIVEN TO THE PARTICIPANTS.<br>
•ORGANIZERS: SUPRIYA – 8867499765 ANKITH SHETTAR – 9480445744<br>
</small>
<br> TWINKLE TOES (GROUP DANCE)
<br>
<small>
•THE TEAM CAN CONSIST OF MINIMUM 5 AND MAXIMUM 12 PARTICIPANTS.<br>
•TIME LIMIT 8+2 MINUTES.<br>
•ALL DANCE STYLES WILL BE ALLOWED<br>
•PROPS CAN BE USED. (NO HAZARDOUS PROPS ALLOWED)<br>
•ONLY COLLEGE TEAMS ARE ALLOWED. PROFESSIONAL GROUPS ARE NOT ALLOWED. <br>
•PARTICIPANTS SHOULD SUBMIT MUSIC 30 MINUTES BEFORE THE EVENT STARTS.<br>
•ORGANIZERS: VIKAS - 8553536342<br>
</small>
<br> LET’S DANCE (PAIR DANCE)
<br>
<small>
• 2MEMBERS (BOY-GIRL/GIRL-GIRL/BOY-BOY) TIME LIMIT 3+2 MIN<br>
•PROPS ARE ALLOWED<br>
•BOTH SHOULD BE FROM SAME COLLEGE.<br>
•OBSCENITY OF ANY KIND IS LIABLE TO DISQUALIFICATION.<br>
•ORGANIZERS: ABHISHEK SWAMY – 7259547488 ANN MARIYA - 9620072068<br>
</small>
<br> HAPPY FEET (SOLO DANCE)
<br>
<small>
•CLASSICAL AND NON CLASSICAL STYLES (AS SEPARATE CATEGORIES)<br>
•TIME LIMIT 3+2<br>
•PROPS ARE ALLOWED. NO HARMFUL PROPS WILL BE ALLOWED.<br>
•NO VULGARITY, OBSCENE DRESSING OR FORM OR DANCE ARE LIABLE FOR DISQUALIFICATION.<br>
•PARTICIPANTS MUST SUBMIT MUSIC 30 MIN BEFORE THE START OF EVENT.<br>
•ORGANIZERS: AABHA – 9739440245 ANOOP - 9916071666<br>
</small>
<br> SAPTASWARA (INSTRUMENTALS)
<br>
<small>
•INDIVIDUAL EVENT<br>
•TIME DURATION 5+1 MINUTES<br>
•INDIAN AND WESTERN CATEGORIES SEPARATE.SAME PARTICIPANT CAN PARTICIPATE IN BOTH.<br>
•PARTICIPANTS SHOULD GET THEIR OWN INSTRUMENTS. NO RECORDING ALLOWED.<br>
•ORGANIZERS: SAGAR – 8105530656 DYVIK - 9206190450<br>
</small>
<br>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Fashion Show</h4>
<p>#POSHFEET
<br>
<small>
•TIME LIMIT 20+5 MIN (NEGATIVE POINTS FOR EXCEEDING TIME LIMIT)<br>
•MAXIMUM OF 25 AND MINIMUM OF 12 PERSONS PER TEAM (INCLUDING THE NARRATOR).<br>
•TEAMS WILL BE ALLOWED TO CHOOSE THE THEME OF THEIR CHOICE.<br>
•NO LIMIT TO THE NUMBER OF ROUNDS OR THEMES.<br>
•THE MUSIC SHOULD BE SUBMITTED TO THE ORGANISERS 1 HR PRIOR TO THE EVENT.<br>
•JUDGEMENT WILL BE BASED ON CREATIVITY. DESIGN, THEME, CHOREOGRAPHY & WALK<br>
•OBSCENITY OF ANY SORT WILL NOT BE ENTERTAINED<br>
•PROPS ARE ALLOWED.<br>
•T RAMP STAGE<br>
•ORGANIZERS: KRUTIKA BARKI – 9686396666 GOUTHAM - 8147238881<br>
</small>
<br>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Drama Events</h4>
<p>
DECIPHER (DUMB CHARADES)
<br>
<small>
•TEAM OF 3<br>
• 6 TEAMS WILL BE SELECTED FOR THE FINALS AFTER PRELIMS.<br>
•STANDARD DC RULES SHALL APPLY<br>
•ALL THE MEMBERS IN THE TEAM MUST ENACT COMPULSORILY.<br>
•TWIST IN THE FINALE WILL BE REVEALED TO FINALISTS.<br>
•ORGANIZERS: NAVYA BHAT - 9686142883<br>
</small>
<br> MIMDROIT (MIME)
<br>
<small>
•ONLY 1 TEAM PER COLLEGE<br>
•TEAM CONSISTING OF 6+2 INCLUDING MUSICIANS DURATION 8+2<br>
•MUSIC IS ALLOWED AND THE ACT SHOULD NOT CONTAIN ANY DIALOGUES OR LIP SYNC<br>
•TEAM WILL BE DISQUALIFIED IF ACT CONATIS ANY OFFENSIVE, DISRESPECTFUL ACTIONS OR
GESTURES.<br>
•NEGATIVE POINTS FOR EXCEEDING TIME LIMIT PROPS NOT ALLOWED<br>
•ORGANIZERS: HARSHITH – 8553156025 MANJUNATH - 9901662033<br>
</small>
<br> DRAMEBAAZ (SKIT)
<br>
<small>
•TIME DURATION 8+2 MIN<br>
•MEMBERS MINIMUM 4+1, MAXIMUM 9+1<br>
•VULGARITY WILL NOT BE ENTERTAINED<br>
•NO COSTUMES OR PROP ALLOWED<br>
•UDGES DECISION IS FINAL.<br>
•ORGANIZERS: PRATAP SHETTY – 8970062511 SHIVANAND – 8971062901<br>
</small>
<br> MADVERTISEMENT (MAD ADS)
<br>
<small>
•TEAM OF 8+2<br>
•TIME DURATION 6+2 MIN<br>
•NO FORM OF VULGARITY WILL BE ENTERTAINED.<br>
•ORGANIZERS: ANKITH G P - 8277524347 NIKHIL GOWDA - 8867310974<br>
</small>
<br>
</p>
</li>
</ul>
<h3>eventos de arte</h3>
<hr>
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Art Events</h4>
<p>ETCH A SKETCH (PICTIONARY)
<br>
<small>
•TEAM OF 2<br>
• 10 TEAMS SHALL QUALIFY FOR FINALS<br>
• BOTH MEMBERS OF THE GROUP SHOULD DRAW COMPULSORILY.<br>
•OTHER GENERAL RULES OF PICTIONARY SHALL APPLY.
•ORGANIZERS: BHAVANA BHAGAVATH – 9481683262 CHARITHA – 9945987773<br>
</small>
<br> SHAKA-LAKA BOOM BOOM (SKETCHING)
<br>
<small>
•THEMES WILL BE GIVEN ON THE SPOT.<br>
•ONLY SHEETS WILL BE PROVIDED.<br>
•TIME DURATION 2HRS.<br>
•ORGANIZERS: BHUVANA – 9740726521 HARIPRIYA – 9446077191<br>
</small>
<br> CUT, PASTE (COLLAGE)
<br>
<small>
•TEAM OF 3<br>
•TIME DURATION 2HRS<br>
•CHART PAPER WILL BE PROVIDED.<br>
•PARTICIPANTS SHOULD CARRY A MAXIMUM OF 15 NEWSPAPERS AND 5 MAGAZINES. USE OF COLOUR PAPER, SCISSORS, SKETCH PENS NOT ALLOWED.<br>
•ORGANIZERS: SAHUKAR – 9164809737 YASHWANTH – 9900108308<br>
</small>
<br> RANG DE (PAINTING)
<br>
<small>
•INDIVIDUAL EVENT.<br>
•TOPIC WILL BE GIVEN ON THE SPOT. SHEETS WILL BE PROVIDED.<br>
•ALL OTHER NECESSARY MATERIAL SHOULD BE BROUGHT BY THE PARTICIPANT. DURATION 2HR<br>
•ORGANIZERS: NAFEESATH – 9567818951 ARUN - 8553715606<br>
</small>
<br> PRATIBIMBA (FACE PAINTING)
<br>
<small>
•MEMBERS PER TEAM<br>
•TOPIC WILL BE GIVEN ON THE SPOT<br>
•GLITTERS AND ACCESSORIES CANNOT BE USED.<br>
•TIME DURATION 2 HRS.<br>
•ORGANIZERS: RAMYA – 9591133554 RAJESHWARI - 9483803194<br>
</small>
<br> VARNA RANGA (RANGOLI)
<br>
<small>
• 3 PER TEAM DURATION 2 HRS<br>
•AREA PROVIDED 5*5 SQUARE FEET THEMES WILL BE GIVEN ON THE SPOT<br>
•ALL REQUIRED MATERIALS TO BE BOUGHT BY PARTICIPANTS.USE OF FLOWERS AND PAINTS ARE NOT ALLOWED.<br>
•ORGANIZERS: ANKITHA – 8453426788 KAVYA -9482423946<br>
</small>
<br> MADARANGI (MEHENDI)
<br>
<small>
• 2 PER TERM. INCLUDING THE ONE ON WHOM YOU WILL APPLY MEHENDI. MEHENDI CONES WILL BE PROVIDED<br>
•ORGANIZERS: MEGHANA T S - 9481176145 MEGHANA K S – 8123629949<br>
</small>
<br> BANNADA MADIKE (POT PAINTING)
<br>
<small>
• TOPIC WILL BE GIVEN ON THE SPOT<br>
•ONLY POTS WILL BE PROVIDED.<br>
•OTHER NECESSARY MATERIALS ARE TO BE CARRIED BY PARTICIPANTS<br>
•DURATION 2 HRS<br>
•ORGANIZERS: MANJUNATH M - 8892350494 NIRANJAN - 8762345058<br>
</small>
<br>
</p>
</li>
</ul>
<h3>eventos literarios</h3>
<hr>
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h4>General Quiz</h4>
<p>BATTLE OF BRAINS
<br>
<small>
•TEAM OF 2 PARTICIPANTS<br>
•THERE WILL BE A PRELIMINARY SELECTION ROUND 6 QUALIFYING TEAMS MOVE TO THE FINALS<br>
•GENERAL TOPICS LIKE HISTORY, CURRENT EVENTS TRIVIA<br>
•BRING YOUR OWN PENS AND WRITING PADS<br>
•USAGE OF ELECTRONIC GADGETS AND OTHER ARTICLES AMOUNTS TO DISQUALIFICATION <br>
•ORGANIZERS: KRISHNA PRASAD – 8867520657 APARNA – 9449836711<br>
</small>
<br>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Writing Events</h4>
<p>INK IMPULSE (CREATIVE WRITING ENGLISH, HINDI & KANNADA)
<br>
<small>
•INDIVIDUAL EVENT<br>
•WORD LIMIT 250 WORDS<br>
•TOPIC WILL BE GIVEN ON THE SPOT<br>
•TIME DURATION 1 HOUR<br>
•JUDGING WILL BE BASED ON CREATIVITY, VOCABULARY, AND ADHERENCE TO WORD LIMIT, TOPIC CHOSEN AND PRESENTATION.<br>
•ORGANIZERS: ELSU BEJOY – 9964861942 SATISH – 9449376080<br>
</small>
</p>
<p>POETRY (ENGLISH/HINDI/KANNADA)
<br>
<small>
•INDIVIDUAL EVENT<br>
•WORD LIMIT 100 WORDS<br>
•TOPICS WILL BE GIVEN ON THE SPOT.<br>
•DURATION 1 HOUR<br>
•JUDGING IS BASED ON CREATIVITY, VOCABULARY, AND ADHERENCE TO WORD LIMIT, TOPIC CHOSEN AND PRESENTATION.<br>
•ORGANIZERS: VINAY R – 9448299597 VANDANA - 9035603459<br>
</small>
</p>
<p>PREMAM (LOVE LETTER WRITING)
<br>
<small>
•INDIVIDUAL EVENT<br>
•WORD LIMIT 100 WORDS<br>
•TOPICS WILL BE GIVEN ON THE SPOT.<br>
•DURATION 1 HOUR<br>
•JUDGING IS BASED ON CREATIVITY, VOCABULARY, AND ADHERENCE TO WORD LIMIT, TOPIC CHOSEN AND PRESENTATION.<br>
•ORGANIZERS: VINAY R – 9448299597 VANDANA - 9035603459
</small>
<br>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Jam</h4>
<p>MINUTE WALTZ (ENGLISH/HINDI/KANNADA)
<br>
<small>
•INDIVIDUAL EVENT<br>
•TOPICS WILL BE GIVEN ON THE SPOT<br>
•PARTICIPANTS CAN CATCH THE SPEAKER FOR LATE START, GRAMMATICAL MISTAKE, STUTTERING, PAUSING, AND BEATING AROUND THE BUSH, REPETITION<br>
•SCORING WILL BE BASED ON SPONTANEITY, HUMOUR, CREATIVITY, AND PRESENTATION AUDIENCE RESPONSE.<br>
•ORGANIZERS: ENGLISH – SHILPA - 9591200586 KANNADA – PRAVEEN - 9900253568 HINDI – ROSENA - 9663647614<br>
</small>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h4>Debate</h4>
<p>BATTLE OF WORDS (ENGLISH)
<br>
<small>
• 2MEMBERS PER TEAM ONE OPPOSITION & ONE PROPOSITION.<br>
•A LIST OF 20 TOPICS WILL BE PUT UP ON THE NOTICE BOARD ON THE PREVIOUS DAY. TOPIC WILL BE PICKED BY TAKING LOTS ON THE DAY OF THE EVENT.<br>
•WITH BOTH THE MEMBERS ON THE DIAS 1 MEMBER WILL SPEAK FOR WHILE THE OTHER WILL SEEK AGAINST THE PICKED TOPIC.<br>
• 1MIN INTRODUCTION+2 MIN REBUTTAL+1MIN EACH FOR CONCLUSION. (6 MIN)<br>
•ORGANIZERS: LIKHITH – 9480213167 RUMANA - 9632789797<br>
</small>
</p>
<p>JIHVEGARADI (KANNADA)
<br>
<small>
•TEAM OF 2<br>
•TIME 3+1 MIN<br>
•TOPIC WILL BE GIVEN ONE DAY BEFORE.<br>
•THE SPEAKER SHOULD ONLY SPEAK FOR OR AGAINST THE GIVEN TOPIC.<br>
•ORGANIZERS: SHIVA KUMAR - 9481236304 DAKSHAYANI - 9964219190
</small>
</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>