@xcpcio/board-app 0.31.1 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/Board-5181d383.css +1 -0
- package/dist/assets/Board-a9988a0d.js +3 -0
- package/dist/assets/{DataSourceInput.vue_vue_type_script_setup_true_lang-b87eba77.js → DataSourceInput.vue_vue_type_script_setup_true_lang-7ca3c000.js} +1 -1
- package/dist/assets/{TheInput.vue_vue_type_script_setup_true_lang-079f8c80.js → TheInput.vue_vue_type_script_setup_true_lang-2682b2e3.js} +1 -1
- package/dist/assets/{_...all_-019b03b8.js → _...all_-c4727646.js} +1 -1
- package/dist/assets/{_name_-6a3b59a1.js → _name_-8853f4a2.js} +1 -1
- package/dist/assets/{about-f9061b17.js → about-b984181a.js} +1 -1
- package/dist/assets/{board-6d208112.js → board-ce33013d.js} +1 -1
- package/dist/assets/{board-layout-5590c53f.js → board-layout-ccb8d7e4.js} +1 -1
- package/dist/assets/{headless-94485ccd.js → headless-be8dd44c.js} +1 -1
- package/dist/assets/{home-e847177d.js → home-bc4084e9.js} +1 -1
- package/dist/assets/index-181beaa6.js +1 -0
- package/dist/assets/{index-7a9bcf50.js → index-6c4a0937.js} +5 -5
- package/dist/assets/{index-d429549a.css → index-bbe8c4f8.css} +1 -1
- package/dist/assets/{index-3735f4c2.js → index-d882800e.js} +1 -1
- package/dist/assets/{index-layout-3f26f613.js → index-layout-95eb074e.js} +1 -1
- package/dist/assets/{test-24dab276.js → test-fa217a0f.js} +1 -1
- package/dist/assets/{useQueryBoardData-b6644ecd.js → useQueryBoardData-95ed94f9.js} +1 -1
- package/dist/assets/{user-7a10fa8c.js → user-c1e9292b.js} +1 -1
- package/dist/assets/{virtual_pwa-register-41acaeb8.js → virtual_pwa-register-f8259b1b.js} +1 -1
- package/dist/index.html +3 -3
- package/dist/sw.js +1 -1
- package/package.json +3 -3
- package/src/components/board/Board.vue +17 -8
- package/src/components/board/BottomStatistics.vue +2 -2
- package/src/components/board/DynamicSubmissionsModal.vue +131 -0
- package/src/components/board/OptionsModal.vue +30 -0
- package/src/components.d.ts +1 -0
- package/src/styles/submission-status-background.css +123 -0
- package/dist/assets/Board-3c31679a.css +0 -1
- package/dist/assets/Board-ce0a2c6c.js +0 -3
- package/dist/assets/index-4b46c3f4.js +0 -1
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { Problem, Rank, Team } from "@xcpcio/core";
|
|
3
|
+
import { Submission } from "@xcpcio/core";
|
|
4
|
+
import { SubmissionStatusToSimpleString } from "@xcpcio/types";
|
|
5
|
+
|
|
6
|
+
const props = defineProps<{
|
|
7
|
+
rank: Rank,
|
|
8
|
+
}>();
|
|
9
|
+
|
|
10
|
+
interface Item {
|
|
11
|
+
submission: Submission,
|
|
12
|
+
team: Team,
|
|
13
|
+
problem: Problem,
|
|
14
|
+
displayName: string,
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const rank = computed(() => props.rank);
|
|
18
|
+
const submissions = computed(() => {
|
|
19
|
+
const ss = rank.value.getSubmissions().sort(Submission.compare).reverse();
|
|
20
|
+
|
|
21
|
+
const res: Item[] = [];
|
|
22
|
+
|
|
23
|
+
let cnt = 0;
|
|
24
|
+
const need = 16;
|
|
25
|
+
for (let i = 0; i < ss.length && cnt < need; i++) {
|
|
26
|
+
const s = ss[i];
|
|
27
|
+
const teamId = s.teamId;
|
|
28
|
+
const problemId = s.problemId;
|
|
29
|
+
|
|
30
|
+
const team = rank.value.teamsMap.get(teamId);
|
|
31
|
+
|
|
32
|
+
if (!team) {
|
|
33
|
+
continue;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const problem = rank.value.contest.problemsMap.get(problemId);
|
|
37
|
+
if (!problem) {
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
let displayName = team.name;
|
|
42
|
+
|
|
43
|
+
if (team.organization) {
|
|
44
|
+
displayName = `${team.organization} - ${displayName}`;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
res.push({
|
|
48
|
+
submission: s,
|
|
49
|
+
team,
|
|
50
|
+
problem,
|
|
51
|
+
displayName,
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
++cnt;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return res.reverse();
|
|
58
|
+
});
|
|
59
|
+
</script>
|
|
60
|
+
|
|
61
|
+
<template>
|
|
62
|
+
<div
|
|
63
|
+
absolute fixed z-99
|
|
64
|
+
bottom-4 left-4
|
|
65
|
+
opacity-90
|
|
66
|
+
>
|
|
67
|
+
<div
|
|
68
|
+
flex flex-col
|
|
69
|
+
>
|
|
70
|
+
<div>
|
|
71
|
+
<template
|
|
72
|
+
v-for="s in submissions"
|
|
73
|
+
:key="s.id"
|
|
74
|
+
>
|
|
75
|
+
<div
|
|
76
|
+
w-104
|
|
77
|
+
h-6
|
|
78
|
+
bg-slate-800 text-gray-200
|
|
79
|
+
font-mono
|
|
80
|
+
flex flex-row
|
|
81
|
+
pl-2
|
|
82
|
+
>
|
|
83
|
+
<div
|
|
84
|
+
w-8
|
|
85
|
+
>
|
|
86
|
+
{{ s.team.rank }}
|
|
87
|
+
</div>
|
|
88
|
+
|
|
89
|
+
<div
|
|
90
|
+
pl-2
|
|
91
|
+
w-80
|
|
92
|
+
truncate
|
|
93
|
+
>
|
|
94
|
+
{{ s.displayName }}
|
|
95
|
+
</div>
|
|
96
|
+
|
|
97
|
+
<div
|
|
98
|
+
w-5
|
|
99
|
+
>
|
|
100
|
+
{{ s.team.solvedProblemNum }}
|
|
101
|
+
</div>
|
|
102
|
+
|
|
103
|
+
<div
|
|
104
|
+
w-8
|
|
105
|
+
border-b-4
|
|
106
|
+
flex justify-center
|
|
107
|
+
:style="{
|
|
108
|
+
'border-color': s.problem.balloonColor?.background_color.toString() ?? '#fff',
|
|
109
|
+
}"
|
|
110
|
+
>
|
|
111
|
+
{{ s.problem.label }}
|
|
112
|
+
</div>
|
|
113
|
+
|
|
114
|
+
<div
|
|
115
|
+
w-10
|
|
116
|
+
flex justify-center
|
|
117
|
+
:class="[s.submission.status]"
|
|
118
|
+
opacity-100
|
|
119
|
+
>
|
|
120
|
+
{{ SubmissionStatusToSimpleString[s.submission.status] }}
|
|
121
|
+
</div>
|
|
122
|
+
</div>
|
|
123
|
+
</template>
|
|
124
|
+
</div>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
</template>
|
|
128
|
+
|
|
129
|
+
<style scoped lang="less">
|
|
130
|
+
@import "../../styles/submission-status-background.css";
|
|
131
|
+
</style>
|
|
@@ -40,6 +40,8 @@ const title = computed(() => {
|
|
|
40
40
|
return t("type_menu.options");
|
|
41
41
|
});
|
|
42
42
|
|
|
43
|
+
const enableDynamicSubmissions = ref(rankOptions.value.enableDynamicSubmissions);
|
|
44
|
+
|
|
43
45
|
const orgOptions = computed(() => {
|
|
44
46
|
const res = rank.value.organizations.map((o) => {
|
|
45
47
|
return {
|
|
@@ -93,6 +95,8 @@ function onConfirm() {
|
|
|
93
95
|
localStorage.setItem(localStorageKeyForFilterOrganizations, JSON.stringify(orgSelectedItems.value));
|
|
94
96
|
localStorage.setItem(localStorageKeyForFilterTeams, JSON.stringify(teamsSelectedItems.value));
|
|
95
97
|
|
|
98
|
+
rankOptions.value.enableDynamicSubmissions = enableDynamicSubmissions.value;
|
|
99
|
+
|
|
96
100
|
onCancel();
|
|
97
101
|
}
|
|
98
102
|
</script>
|
|
@@ -150,6 +154,32 @@ function onConfirm() {
|
|
|
150
154
|
</div>
|
|
151
155
|
</div>
|
|
152
156
|
|
|
157
|
+
<div
|
|
158
|
+
flex flex-col
|
|
159
|
+
w-full
|
|
160
|
+
>
|
|
161
|
+
<div
|
|
162
|
+
flex
|
|
163
|
+
mb-2
|
|
164
|
+
>
|
|
165
|
+
Feature
|
|
166
|
+
</div>
|
|
167
|
+
|
|
168
|
+
<div
|
|
169
|
+
flex flex-row
|
|
170
|
+
>
|
|
171
|
+
<label class="relative inline-flex items-center cursor-pointer">
|
|
172
|
+
<input
|
|
173
|
+
v-model="enableDynamicSubmissions"
|
|
174
|
+
type="checkbox"
|
|
175
|
+
class="sr-only peer"
|
|
176
|
+
>
|
|
177
|
+
<div class="w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600" />
|
|
178
|
+
<span class="ml-3 text-sm font-medium text-gray-900 dark:text-gray-300">Dynamic Submissions</span>
|
|
179
|
+
</label>
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
|
|
153
183
|
<div
|
|
154
184
|
mt-2
|
|
155
185
|
w-full
|
package/src/components.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ declare module 'vue' {
|
|
|
20
20
|
CustomBoard: typeof import('./components/CustomBoard.vue')['default']
|
|
21
21
|
CustomCountdown: typeof import('./components/CustomCountdown.vue')['default']
|
|
22
22
|
DataSourceInput: typeof import('./components/DataSourceInput.vue')['default']
|
|
23
|
+
DynamicSubmissionsModal: typeof import('./components/board/DynamicSubmissionsModal.vue')['default']
|
|
23
24
|
Export: typeof import('./components/board/Export.vue')['default']
|
|
24
25
|
Footer: typeof import('./components/Footer.vue')['default']
|
|
25
26
|
GirlIcon: typeof import('./components/icon/GirlIcon.vue')['default']
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
.PENDING {
|
|
2
|
+
background-color: var(--theme-status-pending);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.WAITING {
|
|
6
|
+
background-color: var(--theme-status-waiting);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.PREPARING {
|
|
10
|
+
background-color: var(--theme-status-preparing);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.COMPILING {
|
|
14
|
+
background-color: var(--theme-status-compiling);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.RUNNING {
|
|
18
|
+
background-color: var(--theme-status-running);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.JUDGING {
|
|
22
|
+
background-color: var(--theme-status-running);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.FROZEN {
|
|
26
|
+
background-color: var(--theme-status-pending);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
.ACCEPTED {
|
|
31
|
+
background-color: var(--theme-status-accepted);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.CORRECT {
|
|
35
|
+
background-color: var(--theme-status-accepted);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.PARTIALLY_CORRECT {
|
|
39
|
+
background-color: var(--theme-status-partially-correct);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
.REJECTED {
|
|
44
|
+
background-color: var(--theme-status-wrong-answer);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.WRONG_ANSWER {
|
|
48
|
+
background-color: var(--theme-status-wrong-answer);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
.COMPILATION_ERROR {
|
|
53
|
+
background-color: var(--theme-status-compilation-error);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.PRESENTATION_ERROR {
|
|
57
|
+
background-color: var(--theme-status-compilation-error);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
.RUNTIME_ERROR {
|
|
62
|
+
background-color: var(--theme-status-runtime-error);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.TIME_LIMIT_EXCEEDED {
|
|
66
|
+
background-color: var(--theme-status-time-limit-exceeded);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.MEMORY_LIMIT_EXCEEDED {
|
|
70
|
+
background-color: var(--theme-status-memory-limit-exceeded);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.OUTPUT_LIMIT_EXCEEDED {
|
|
74
|
+
background-color: var(--theme-status-output-limit-exceeded);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.IDLENESS_LIMIT_EXCEEDED {
|
|
78
|
+
background-color: var(--theme-status-output-limit-exceeded);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.HACKED {
|
|
82
|
+
background-color: var(--theme-status-wrong-answer);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.JUDGEMENT_FAILED {
|
|
86
|
+
background-color: var(--theme-status-judgement-failed);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.CONFIGURATION_ERROR {
|
|
90
|
+
background-color: var(--theme-status-configuration-error);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.FILE_ERROR {
|
|
94
|
+
background-color: var(--theme-status-file-error);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.SYSTEM_ERROR {
|
|
98
|
+
background-color: var(--theme-status-system-error);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.CANCELED {
|
|
102
|
+
background-color: var(--theme-status-canceled);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.SKIPPED {
|
|
106
|
+
background-color: var(--theme-status-skipped);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.SECURITY_VIOLATED {
|
|
110
|
+
background-color: var(--theme-status-judgement-failed);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.DENIAL_OF_JUDGEMENT {
|
|
114
|
+
background-color: var(--theme-status-judgement-failed);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.UNKNOWN {
|
|
118
|
+
background-color: var(--theme-status-unknown);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.UNDEFINED {
|
|
122
|
+
background-color: var(--theme-status-undefined);
|
|
123
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.item[data-vss-custom-attr=PENDING]{color:var(--theme-status-pending)!important}.item[data-vss-custom-attr=WAITING]{color:var(--theme-status-waiting)!important}.item[data-vss-custom-attr=PREPARING]{color:var(--theme-status-preparing)!important}.item[data-vss-custom-attr=COMPILING]{color:var(--theme-status-compiling)!important}.item[data-vss-custom-attr=RUNNING],.item[data-vss-custom-attr=JUDGING]{color:var(--theme-status-running)!important}.item[data-vss-custom-attr=FROZEN]{color:var(--theme-status-pending)!important}.item[data-vss-custom-attr=ACCEPTED],.item[data-vss-custom-attr=CORRECT]{color:var(--theme-status-accepted)!important}.item[data-vss-custom-attr=PARTIALLY_CORRECT]{color:var(--theme-status-partially-correct)!important}.item[data-vss-custom-attr=REJECTED],.item[data-vss-custom-attr=WRONG_ANSWER]{color:var(--theme-status-wrong-answer)!important}.item[data-vss-custom-attr=COMPILATION_ERROR],.item[data-vss-custom-attr=PRESENTATION_ERROR]{color:var(--theme-status-compilation-error)!important}.item[data-vss-custom-attr=RUNTIME_ERROR]{color:var(--theme-status-runtime-error)!important}.item[data-vss-custom-attr=TIME_LIMIT_EXCEEDED]{color:var(--theme-status-time-limit-exceeded)!important}.item[data-vss-custom-attr=MEMORY_LIMIT_EXCEEDED]{color:var(--theme-status-memory-limit-exceeded)!important}.item[data-vss-custom-attr=OUTPUT_LIMIT_EXCEEDED],.item[data-vss-custom-attr=IDLENESS_LIMIT_EXCEEDED]{color:var(--theme-status-output-limit-exceeded)!important}.item[data-vss-custom-attr=HACKED]{color:var(--theme-status-wrong-answer)!important}.item[data-vss-custom-attr=JUDGEMENT_FAILED]{color:var(--theme-status-judgement-failed)!important}.item[data-vss-custom-attr=CONFIGURATION_ERROR]{color:var(--theme-status-configuration-error)!important}.item[data-vss-custom-attr=FILE_ERROR]{color:var(--theme-status-file-error)!important}.item[data-vss-custom-attr=SYSTEM_ERROR]{color:var(--theme-status-system-error)!important}.item[data-vss-custom-attr=CANCELED]{color:var(--theme-status-canceled)!important}.item[data-vss-custom-attr=SKIPPED]{color:var(--theme-status-skipped)!important}.item[data-vss-custom-attr=SECURITY_VIOLATED],.item[data-vss-custom-attr=DENIAL_OF_JUDGEMENT]{color:var(--theme-status-judgement-failed)!important}.item[data-vss-custom-attr=UNKNOWN]{color:var(--theme-status-unknown)!important}.item[data-vss-custom-attr=UNDEFINED]{color:var(--theme-status-undefined)!important}.PENDING[data-v-f9153f57]{color:var(--theme-status-pending)}.WAITING[data-v-f9153f57]{color:var(--theme-status-waiting)}.PREPARING[data-v-f9153f57]{color:var(--theme-status-preparing)}.COMPILING[data-v-f9153f57]{color:var(--theme-status-compiling)}.RUNNING[data-v-f9153f57],.JUDGING[data-v-f9153f57]{color:var(--theme-status-running)}.FROZEN[data-v-f9153f57]{color:var(--theme-status-pending)}.ACCEPTED[data-v-f9153f57],.CORRECT[data-v-f9153f57]{color:var(--theme-status-accepted)}.PARTIALLY_CORRECT[data-v-f9153f57]{color:var(--theme-status-partially-correct)}.REJECTED[data-v-f9153f57],.WRONG_ANSWER[data-v-f9153f57]{color:var(--theme-status-wrong-answer)}.COMPILATION_ERROR[data-v-f9153f57],.PRESENTATION_ERROR[data-v-f9153f57]{color:var(--theme-status-compilation-error)}.RUNTIME_ERROR[data-v-f9153f57]{color:var(--theme-status-runtime-error)}.TIME_LIMIT_EXCEEDED[data-v-f9153f57]{color:var(--theme-status-time-limit-exceeded)}.MEMORY_LIMIT_EXCEEDED[data-v-f9153f57]{color:var(--theme-status-memory-limit-exceeded)}.OUTPUT_LIMIT_EXCEEDED[data-v-f9153f57],.IDLENESS_LIMIT_EXCEEDED[data-v-f9153f57]{color:var(--theme-status-output-limit-exceeded)}.HACKED[data-v-f9153f57]{color:var(--theme-status-wrong-answer)}.JUDGEMENT_FAILED[data-v-f9153f57]{color:var(--theme-status-judgement-failed)}.CONFIGURATION_ERROR[data-v-f9153f57]{color:var(--theme-status-configuration-error)}.FILE_ERROR[data-v-f9153f57]{color:var(--theme-status-file-error)}.SYSTEM_ERROR[data-v-f9153f57]{color:var(--theme-status-system-error)}.CANCELED[data-v-f9153f57]{color:var(--theme-status-canceled)}.SKIPPED[data-v-f9153f57]{color:var(--theme-status-skipped)}.SECURITY_VIOLATED[data-v-f9153f57],.DENIAL_OF_JUDGEMENT[data-v-f9153f57]{color:var(--theme-status-judgement-failed)}.UNKNOWN[data-v-f9153f57]{color:var(--theme-status-unknown)}.UNDEFINED[data-v-f9153f57]{color:var(--theme-status-undefined)}table.standings[data-v-e6b57d04]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-e6b57d04]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-e6b57d04]{border:0!important}table[data-v-e6b57d04]{border-collapse:separate!important}td[data-v-e6b57d04]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-e6b57d04]{background-color:#eee}tr.team[data-v-e6b57d04]{height:2.5em}.hover[data-v-e6b57d04]{cursor:pointer}td.stnd[data-v-e6b57d04]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-e6b57d04]{border-color:#fff}td.stndact[data-v-e6b57d04]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-e6b57d04]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-e6b57d04]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-e6b57d04]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-e6b57d04]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-e6b57d04]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-e6b57d04]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-e6b57d04]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-e6b57d04]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-e6b57d04]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-e6b57d04]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-e6b57d04]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-e6b57d04]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-e6b57d04]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-e6b57d04]{color:#fff}th.success[data-v-e6b57d04]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-e6b57d04],td.title[data-v-e6b57d04]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-e6b57d04]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-e6b57d04]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-e6b57d04]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-e6b57d04]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-e6b57d04]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-e6b57d04]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-e6b57d04]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-e6b57d04]{background-color:#004080}tr.solver[data-v-e6b57d04]{background-color:#f0c0a0}tr.statistics-0[data-v-e6b57d04]{background-color:#95de64}tr.statistics-1[data-v-e6b57d04]{background-color:#b7eb8f}td.o00[data-v-e6b57d04]{background-color:#004080}td.stand00[data-v-e6b57d04]{background-color:#e0e0ff}td.stand01[data-v-e6b57d04]{background-color:#e8e8ff}td.stand10[data-v-e6b57d04]{background-color:#f8f8f8}td.stand11[data-v-e6b57d04]{background-color:#f2f2f2}tr.filter-team[data-v-e6b57d04]{background-color:#ffffe0}tr.cfres01[data-v-e6b57d04]{background-color:#ffffb0}table.matches[data-v-e6b57d04]{table-layout:fixed}td.match[data-v-e6b57d04]{height:6em;width:2em}.coderTextRed[data-v-e6b57d04],.coderTextYellow[data-v-e6b57d04],.coderTextViolet[data-v-e6b57d04],.coderTextBlue[data-v-e6b57d04],.coderTextGreen[data-v-e6b57d04],.coderTextGray[data-v-e6b57d04],.coderTextOrange[data-v-e6b57d04]{font-weight:700;background-color:transparent}.coderTextRed[data-v-e6b57d04]:link,.coderTextYellow[data-v-e6b57d04]:link,.coderTextViolet[data-v-e6b57d04]:link,.coderTextBlue[data-v-e6b57d04]:link,.coderTextGreen[data-v-e6b57d04]:link,.coderTextGray[data-v-e6b57d04]:link,.coderTextOrange[data-v-e6b57d04]:link,.coderTextWhite[data-v-e6b57d04]:link,.coderTextBlack[data-v-e6b57d04]:link,.coderTextRed[data-v-e6b57d04]:visited,.coderTextYellow[data-v-e6b57d04]:visited,.coderTextViolet[data-v-e6b57d04]:visited,.coderTextBlue[data-v-e6b57d04]:visited,.coderTextGreen[data-v-e6b57d04]:visited,.coderTextGray[data-v-e6b57d04]:visited,.coderTextOrange[data-v-e6b57d04]:visited,.coderTextWhite[data-v-e6b57d04]:visited,.coderTextBlack[data-v-e6b57d04]:visited{text-decoration:none}.coderTextRed[data-v-e6b57d04]:hover,.coderTextYellow[data-v-e6b57d04]:hover,.coderTextViolet[data-v-e6b57d04]:hover,.coderTextBlue[data-v-e6b57d04]:hover,.coderTextGreen[data-v-e6b57d04]:hover,.coderTextGray[data-v-e6b57d04]:hover,.coderTextOrange[data-v-e6b57d04]:hover,.coderTextWhite[data-v-e6b57d04]:hover,.coderTextBlack[data-v-e6b57d04]:hover,.coderTextRed[data-v-e6b57d04]:active,.coderTextYellow[data-v-e6b57d04]:active,.coderTextViolet[data-v-e6b57d04]:active,.coderTextBlue[data-v-e6b57d04]:active,.coderTextGreen[data-v-e6b57d04]:active,.coderTextGray[data-v-e6b57d04]:active,.coderTextOrange[data-v-e6b57d04]:active,.coderTextWhite[data-v-e6b57d04]:active,.coderTextBlack[data-v-e6b57d04]:active{text-decoration:underline}.coderTextOrange[data-v-e6b57d04],.coderTextOrange[data-v-e6b57d04]:link,.coderTextOrange[data-v-e6b57d04]:visited,.coderTextOrange[data-v-e6b57d04]:hover,.coderTextOrange[data-v-e6b57d04]:active{color:#f90}.coderTextRed[data-v-e6b57d04],.coderTextRed[data-v-e6b57d04]:link,.coderTextRed[data-v-e6b57d04]:visited,.coderTextRed[data-v-e6b57d04]:hover,.coderTextRed[data-v-e6b57d04]:active{color:#e00}.coderTextYellow[data-v-e6b57d04],.coderTextYellow[data-v-e6b57d04]:link,.coderTextYellow[data-v-e6b57d04]:visited,.coderTextYellow[data-v-e6b57d04]:hover,.coderTextYellow[data-v-e6b57d04]:active{color:#dc0}.coderTextViolet[data-v-e6b57d04],.coderTextViolet[data-v-e6b57d04]:link,.coderTextViolet[data-v-e6b57d04]:visited,.coderTextViolet[data-v-e6b57d04]:hover,.coderTextViolet[data-v-e6b57d04]:active{color:#a0a}.coderTextBlue[data-v-e6b57d04],.coderTextBlue[data-v-e6b57d04]:link,.coderTextBlue[data-v-e6b57d04]:visited,.coderTextBlue[data-v-e6b57d04]:hover,.coderTextBlue[data-v-e6b57d04]:active{color:#66f}.coderTextGreen[data-v-e6b57d04],.coderTextGreen[data-v-e6b57d04]:link,.coderTextGreen[data-v-e6b57d04]:visited,.coderTextGreen[data-v-e6b57d04]:hover,.coderTextGreen[data-v-e6b57d04]:active{color:#00a900}.coderTextGray[data-v-e6b57d04],.coderTextGray[data-v-e6b57d04]:link,.coderTextGray[data-v-e6b57d04]:visited,.coderTextGray[data-v-e6b57d04]:hover,.coderTextGray[data-v-e6b57d04]:active{color:#999}.coderTextWhite[data-v-e6b57d04],.coderTextWhite[data-v-e6b57d04]:link,.coderTextWhite[data-v-e6b57d04]:visited,.coderTextWhite[data-v-e6b57d04]:hover,.coderTextWhite[data-v-e6b57d04]:active{color:#fff}.coderTextBlack[data-v-e6b57d04],.coderTextBlack[data-v-e6b57d04]:link,.coderTextBlack[data-v-e6b57d04]:visited,.coderTextBlack[data-v-e6b57d04]:hover,.coderTextBlack[data-v-e6b57d04]:active{color:#000}s[data-v-e6b57d04]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-e6b57d04]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-e6b57d04]{text-align:justify}a[data-v-e6b57d04]{color:#004080}td.topmenu a[data-v-e6b57d04]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-e6b57d04]:hover{color:silver}td.topmenu[data-v-e6b57d04]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-e6b57d04]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-e6b57d04]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-e6b57d04]:hover{color:silver}td.menuleft[data-v-e6b57d04]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-e6b57d04]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-e6b57d04]{height:25px;width:190px}td.newsselectcontainer form[data-v-e6b57d04]{margin:0}td.newsselectcontainer select[data-v-e6b57d04]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-e6b57d04]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-e6b57d04]{border:1px solid #004080}.memorial[data-v-e6b57d04]{padding:0 8px;border:2px solid #000000}.menu[data-v-e6b57d04]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-e6b57d04]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-e6b57d04]{width:15em}.menu ul li[data-v-e6b57d04]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-e6b57d04]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-e6b57d04],.menu a[data-v-e6b57d04]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-e6b57d04],.menu ul ul a[data-v-e6b57d04]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-e6b57d04],.menu ul table ul a[data-v-e6b57d04]:visited{width:14em;width:12em}.menu table[data-v-e6b57d04]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-e6b57d04]{left:-1px}.menu ul ul table ul.left[data-v-e6b57d04]{margin-left:2px}.menu li[data-v-e6b57d04]:hover,* html .menu a[data-v-e6b57d04]:hover{position:relative}.menu ul ul ul a[data-v-e6b57d04],.menu ul ul ul a[data-v-e6b57d04]:visited,.menu ul ul ul ul a[data-v-e6b57d04],.menu ul ul ul ul a[data-v-e6b57d04]:visited,.menu ul :hover a.sub1[data-v-e6b57d04],.menu ul ul :hover a.sub2[data-v-e6b57d04]{background:#004080}.menu a[data-v-e6b57d04]:hover{color:silver;background:#014181}.menu :hover>a[data-v-e6b57d04]{color:silver;background:#014181}.menu ul ul a[data-v-e6b57d04]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-e6b57d04]{color:silver;background:#014181}.menu ul ul ul a[data-v-e6b57d04]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-e6b57d04]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-e6b57d04]:hover{color:silver;background:#014181}.menu ul ul[data-v-e6b57d04]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-e6b57d04]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-e6b57d04]{left:-14em}.menu ul li:hover ul[data-v-e6b57d04],.menu ul a:hover ul[data-v-e6b57d04]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-e6b57d04],.menu ul :hover ul :hover ul ul[data-v-e6b57d04]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-e6b57d04],.menu ul :hover ul :hover ul :hover ul[data-v-e6b57d04]{visibility:visible}.lmenu[data-v-e6b57d04]{height:150px;font-size:90%}.lmenu ul[data-v-e6b57d04]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-e6b57d04]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-e6b57d04]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-e6b57d04]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-e6b57d04],.lmenu a[data-v-e6b57d04]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-e6b57d04],* html .menu a[data-v-e6b57d04]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-e6b57d04]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-e6b57d04]:hover{position:relative}.lmenu a[data-v-e6b57d04]:active,.lmenu a[data-v-e6b57d04]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-e6b57d04]{color:silver;background:#014181}.lmenu li ul[data-v-e6b57d04]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-e6b57d04]{visibility:visible}.lmenu ul a:hover ul ul[data-v-e6b57d04],.lmenu ul a:hover ul a:hover ul ul[data-v-e6b57d04],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-e6b57d04]{visibility:hidden}.lmenu ul a:hover ul[data-v-e6b57d04],.lmenu ul a:hover ul a:hover ul[data-v-e6b57d04],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-e6b57d04],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-e6b57d04]{visibility:visible}table.standings[data-v-dbdd6e30]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-dbdd6e30]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-dbdd6e30]{border:0!important}table[data-v-dbdd6e30]{border-collapse:separate!important}td[data-v-dbdd6e30]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-dbdd6e30]{background-color:#eee}tr.team[data-v-dbdd6e30]{height:2.5em}.hover[data-v-dbdd6e30]{cursor:pointer}td.stnd[data-v-dbdd6e30]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-dbdd6e30]{border-color:#fff}td.stndact[data-v-dbdd6e30]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-dbdd6e30]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-dbdd6e30]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-dbdd6e30]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-dbdd6e30]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-dbdd6e30]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-dbdd6e30]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-dbdd6e30]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-dbdd6e30]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-dbdd6e30]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-dbdd6e30]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-dbdd6e30]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-dbdd6e30]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-dbdd6e30]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-dbdd6e30]{color:#fff}th.success[data-v-dbdd6e30]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-dbdd6e30],td.title[data-v-dbdd6e30]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-dbdd6e30]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-dbdd6e30]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-dbdd6e30]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-dbdd6e30]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-dbdd6e30]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-dbdd6e30]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-dbdd6e30]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-dbdd6e30]{background-color:#004080}tr.solver[data-v-dbdd6e30]{background-color:#f0c0a0}tr.statistics-0[data-v-dbdd6e30]{background-color:#95de64}tr.statistics-1[data-v-dbdd6e30]{background-color:#b7eb8f}td.o00[data-v-dbdd6e30]{background-color:#004080}td.stand00[data-v-dbdd6e30]{background-color:#e0e0ff}td.stand01[data-v-dbdd6e30]{background-color:#e8e8ff}td.stand10[data-v-dbdd6e30]{background-color:#f8f8f8}td.stand11[data-v-dbdd6e30]{background-color:#f2f2f2}tr.filter-team[data-v-dbdd6e30]{background-color:#ffffe0}tr.cfres01[data-v-dbdd6e30]{background-color:#ffffb0}table.matches[data-v-dbdd6e30]{table-layout:fixed}td.match[data-v-dbdd6e30]{height:6em;width:2em}.coderTextRed[data-v-dbdd6e30],.coderTextYellow[data-v-dbdd6e30],.coderTextViolet[data-v-dbdd6e30],.coderTextBlue[data-v-dbdd6e30],.coderTextGreen[data-v-dbdd6e30],.coderTextGray[data-v-dbdd6e30],.coderTextOrange[data-v-dbdd6e30]{font-weight:700;background-color:transparent}.coderTextRed[data-v-dbdd6e30]:link,.coderTextYellow[data-v-dbdd6e30]:link,.coderTextViolet[data-v-dbdd6e30]:link,.coderTextBlue[data-v-dbdd6e30]:link,.coderTextGreen[data-v-dbdd6e30]:link,.coderTextGray[data-v-dbdd6e30]:link,.coderTextOrange[data-v-dbdd6e30]:link,.coderTextWhite[data-v-dbdd6e30]:link,.coderTextBlack[data-v-dbdd6e30]:link,.coderTextRed[data-v-dbdd6e30]:visited,.coderTextYellow[data-v-dbdd6e30]:visited,.coderTextViolet[data-v-dbdd6e30]:visited,.coderTextBlue[data-v-dbdd6e30]:visited,.coderTextGreen[data-v-dbdd6e30]:visited,.coderTextGray[data-v-dbdd6e30]:visited,.coderTextOrange[data-v-dbdd6e30]:visited,.coderTextWhite[data-v-dbdd6e30]:visited,.coderTextBlack[data-v-dbdd6e30]:visited{text-decoration:none}.coderTextRed[data-v-dbdd6e30]:hover,.coderTextYellow[data-v-dbdd6e30]:hover,.coderTextViolet[data-v-dbdd6e30]:hover,.coderTextBlue[data-v-dbdd6e30]:hover,.coderTextGreen[data-v-dbdd6e30]:hover,.coderTextGray[data-v-dbdd6e30]:hover,.coderTextOrange[data-v-dbdd6e30]:hover,.coderTextWhite[data-v-dbdd6e30]:hover,.coderTextBlack[data-v-dbdd6e30]:hover,.coderTextRed[data-v-dbdd6e30]:active,.coderTextYellow[data-v-dbdd6e30]:active,.coderTextViolet[data-v-dbdd6e30]:active,.coderTextBlue[data-v-dbdd6e30]:active,.coderTextGreen[data-v-dbdd6e30]:active,.coderTextGray[data-v-dbdd6e30]:active,.coderTextOrange[data-v-dbdd6e30]:active,.coderTextWhite[data-v-dbdd6e30]:active,.coderTextBlack[data-v-dbdd6e30]:active{text-decoration:underline}.coderTextOrange[data-v-dbdd6e30],.coderTextOrange[data-v-dbdd6e30]:link,.coderTextOrange[data-v-dbdd6e30]:visited,.coderTextOrange[data-v-dbdd6e30]:hover,.coderTextOrange[data-v-dbdd6e30]:active{color:#f90}.coderTextRed[data-v-dbdd6e30],.coderTextRed[data-v-dbdd6e30]:link,.coderTextRed[data-v-dbdd6e30]:visited,.coderTextRed[data-v-dbdd6e30]:hover,.coderTextRed[data-v-dbdd6e30]:active{color:#e00}.coderTextYellow[data-v-dbdd6e30],.coderTextYellow[data-v-dbdd6e30]:link,.coderTextYellow[data-v-dbdd6e30]:visited,.coderTextYellow[data-v-dbdd6e30]:hover,.coderTextYellow[data-v-dbdd6e30]:active{color:#dc0}.coderTextViolet[data-v-dbdd6e30],.coderTextViolet[data-v-dbdd6e30]:link,.coderTextViolet[data-v-dbdd6e30]:visited,.coderTextViolet[data-v-dbdd6e30]:hover,.coderTextViolet[data-v-dbdd6e30]:active{color:#a0a}.coderTextBlue[data-v-dbdd6e30],.coderTextBlue[data-v-dbdd6e30]:link,.coderTextBlue[data-v-dbdd6e30]:visited,.coderTextBlue[data-v-dbdd6e30]:hover,.coderTextBlue[data-v-dbdd6e30]:active{color:#66f}.coderTextGreen[data-v-dbdd6e30],.coderTextGreen[data-v-dbdd6e30]:link,.coderTextGreen[data-v-dbdd6e30]:visited,.coderTextGreen[data-v-dbdd6e30]:hover,.coderTextGreen[data-v-dbdd6e30]:active{color:#00a900}.coderTextGray[data-v-dbdd6e30],.coderTextGray[data-v-dbdd6e30]:link,.coderTextGray[data-v-dbdd6e30]:visited,.coderTextGray[data-v-dbdd6e30]:hover,.coderTextGray[data-v-dbdd6e30]:active{color:#999}.coderTextWhite[data-v-dbdd6e30],.coderTextWhite[data-v-dbdd6e30]:link,.coderTextWhite[data-v-dbdd6e30]:visited,.coderTextWhite[data-v-dbdd6e30]:hover,.coderTextWhite[data-v-dbdd6e30]:active{color:#fff}.coderTextBlack[data-v-dbdd6e30],.coderTextBlack[data-v-dbdd6e30]:link,.coderTextBlack[data-v-dbdd6e30]:visited,.coderTextBlack[data-v-dbdd6e30]:hover,.coderTextBlack[data-v-dbdd6e30]:active{color:#000}s[data-v-dbdd6e30]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-dbdd6e30]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-dbdd6e30]{text-align:justify}a[data-v-dbdd6e30]{color:#004080}td.topmenu a[data-v-dbdd6e30]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-dbdd6e30]:hover{color:silver}td.topmenu[data-v-dbdd6e30]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-dbdd6e30]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-dbdd6e30]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-dbdd6e30]:hover{color:silver}td.menuleft[data-v-dbdd6e30]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-dbdd6e30]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-dbdd6e30]{height:25px;width:190px}td.newsselectcontainer form[data-v-dbdd6e30]{margin:0}td.newsselectcontainer select[data-v-dbdd6e30]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-dbdd6e30]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-dbdd6e30]{border:1px solid #004080}.memorial[data-v-dbdd6e30]{padding:0 8px;border:2px solid #000000}.menu[data-v-dbdd6e30]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-dbdd6e30]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-dbdd6e30]{width:15em}.menu ul li[data-v-dbdd6e30]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-dbdd6e30]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-dbdd6e30],.menu a[data-v-dbdd6e30]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-dbdd6e30],.menu ul ul a[data-v-dbdd6e30]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-dbdd6e30],.menu ul table ul a[data-v-dbdd6e30]:visited{width:14em;width:12em}.menu table[data-v-dbdd6e30]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-dbdd6e30]{left:-1px}.menu ul ul table ul.left[data-v-dbdd6e30]{margin-left:2px}.menu li[data-v-dbdd6e30]:hover,* html .menu a[data-v-dbdd6e30]:hover{position:relative}.menu ul ul ul a[data-v-dbdd6e30],.menu ul ul ul a[data-v-dbdd6e30]:visited,.menu ul ul ul ul a[data-v-dbdd6e30],.menu ul ul ul ul a[data-v-dbdd6e30]:visited,.menu ul :hover a.sub1[data-v-dbdd6e30],.menu ul ul :hover a.sub2[data-v-dbdd6e30]{background:#004080}.menu a[data-v-dbdd6e30]:hover{color:silver;background:#014181}.menu :hover>a[data-v-dbdd6e30]{color:silver;background:#014181}.menu ul ul a[data-v-dbdd6e30]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-dbdd6e30]{color:silver;background:#014181}.menu ul ul ul a[data-v-dbdd6e30]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-dbdd6e30]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-dbdd6e30]:hover{color:silver;background:#014181}.menu ul ul[data-v-dbdd6e30]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-dbdd6e30]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-dbdd6e30]{left:-14em}.menu ul li:hover ul[data-v-dbdd6e30],.menu ul a:hover ul[data-v-dbdd6e30]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-dbdd6e30],.menu ul :hover ul :hover ul ul[data-v-dbdd6e30]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-dbdd6e30],.menu ul :hover ul :hover ul :hover ul[data-v-dbdd6e30]{visibility:visible}.lmenu[data-v-dbdd6e30]{height:150px;font-size:90%}.lmenu ul[data-v-dbdd6e30]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-dbdd6e30]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-dbdd6e30]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-dbdd6e30]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-dbdd6e30],.lmenu a[data-v-dbdd6e30]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-dbdd6e30],* html .menu a[data-v-dbdd6e30]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-dbdd6e30]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-dbdd6e30]:hover{position:relative}.lmenu a[data-v-dbdd6e30]:active,.lmenu a[data-v-dbdd6e30]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-dbdd6e30]{color:silver;background:#014181}.lmenu li ul[data-v-dbdd6e30]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-dbdd6e30]{visibility:visible}.lmenu ul a:hover ul ul[data-v-dbdd6e30],.lmenu ul a:hover ul a:hover ul ul[data-v-dbdd6e30],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-dbdd6e30]{visibility:hidden}.lmenu ul a:hover ul[data-v-dbdd6e30],.lmenu ul a:hover ul a:hover ul[data-v-dbdd6e30],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-dbdd6e30],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-dbdd6e30]{visibility:visible}table.standings[data-v-30762cf0]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-30762cf0]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-30762cf0]{border:0!important}table[data-v-30762cf0]{border-collapse:separate!important}td[data-v-30762cf0]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-30762cf0]{background-color:#eee}tr.team[data-v-30762cf0]{height:2.5em}.hover[data-v-30762cf0]{cursor:pointer}td.stnd[data-v-30762cf0]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-30762cf0]{border-color:#fff}td.stndact[data-v-30762cf0]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-30762cf0]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-30762cf0]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-30762cf0]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-30762cf0]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-30762cf0]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-30762cf0]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-30762cf0]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-30762cf0]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-30762cf0]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-30762cf0]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-30762cf0]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-30762cf0]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-30762cf0]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-30762cf0]{color:#fff}th.success[data-v-30762cf0]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-30762cf0],td.title[data-v-30762cf0]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-30762cf0]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-30762cf0]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-30762cf0]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-30762cf0]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-30762cf0]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-30762cf0]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-30762cf0]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-30762cf0]{background-color:#004080}tr.solver[data-v-30762cf0]{background-color:#f0c0a0}tr.statistics-0[data-v-30762cf0]{background-color:#95de64}tr.statistics-1[data-v-30762cf0]{background-color:#b7eb8f}td.o00[data-v-30762cf0]{background-color:#004080}td.stand00[data-v-30762cf0]{background-color:#e0e0ff}td.stand01[data-v-30762cf0]{background-color:#e8e8ff}td.stand10[data-v-30762cf0]{background-color:#f8f8f8}td.stand11[data-v-30762cf0]{background-color:#f2f2f2}tr.filter-team[data-v-30762cf0]{background-color:#ffffe0}tr.cfres01[data-v-30762cf0]{background-color:#ffffb0}table.matches[data-v-30762cf0]{table-layout:fixed}td.match[data-v-30762cf0]{height:6em;width:2em}.coderTextRed[data-v-30762cf0],.coderTextYellow[data-v-30762cf0],.coderTextViolet[data-v-30762cf0],.coderTextBlue[data-v-30762cf0],.coderTextGreen[data-v-30762cf0],.coderTextGray[data-v-30762cf0],.coderTextOrange[data-v-30762cf0]{font-weight:700;background-color:transparent}.coderTextRed[data-v-30762cf0]:link,.coderTextYellow[data-v-30762cf0]:link,.coderTextViolet[data-v-30762cf0]:link,.coderTextBlue[data-v-30762cf0]:link,.coderTextGreen[data-v-30762cf0]:link,.coderTextGray[data-v-30762cf0]:link,.coderTextOrange[data-v-30762cf0]:link,.coderTextWhite[data-v-30762cf0]:link,.coderTextBlack[data-v-30762cf0]:link,.coderTextRed[data-v-30762cf0]:visited,.coderTextYellow[data-v-30762cf0]:visited,.coderTextViolet[data-v-30762cf0]:visited,.coderTextBlue[data-v-30762cf0]:visited,.coderTextGreen[data-v-30762cf0]:visited,.coderTextGray[data-v-30762cf0]:visited,.coderTextOrange[data-v-30762cf0]:visited,.coderTextWhite[data-v-30762cf0]:visited,.coderTextBlack[data-v-30762cf0]:visited{text-decoration:none}.coderTextRed[data-v-30762cf0]:hover,.coderTextYellow[data-v-30762cf0]:hover,.coderTextViolet[data-v-30762cf0]:hover,.coderTextBlue[data-v-30762cf0]:hover,.coderTextGreen[data-v-30762cf0]:hover,.coderTextGray[data-v-30762cf0]:hover,.coderTextOrange[data-v-30762cf0]:hover,.coderTextWhite[data-v-30762cf0]:hover,.coderTextBlack[data-v-30762cf0]:hover,.coderTextRed[data-v-30762cf0]:active,.coderTextYellow[data-v-30762cf0]:active,.coderTextViolet[data-v-30762cf0]:active,.coderTextBlue[data-v-30762cf0]:active,.coderTextGreen[data-v-30762cf0]:active,.coderTextGray[data-v-30762cf0]:active,.coderTextOrange[data-v-30762cf0]:active,.coderTextWhite[data-v-30762cf0]:active,.coderTextBlack[data-v-30762cf0]:active{text-decoration:underline}.coderTextOrange[data-v-30762cf0],.coderTextOrange[data-v-30762cf0]:link,.coderTextOrange[data-v-30762cf0]:visited,.coderTextOrange[data-v-30762cf0]:hover,.coderTextOrange[data-v-30762cf0]:active{color:#f90}.coderTextRed[data-v-30762cf0],.coderTextRed[data-v-30762cf0]:link,.coderTextRed[data-v-30762cf0]:visited,.coderTextRed[data-v-30762cf0]:hover,.coderTextRed[data-v-30762cf0]:active{color:#e00}.coderTextYellow[data-v-30762cf0],.coderTextYellow[data-v-30762cf0]:link,.coderTextYellow[data-v-30762cf0]:visited,.coderTextYellow[data-v-30762cf0]:hover,.coderTextYellow[data-v-30762cf0]:active{color:#dc0}.coderTextViolet[data-v-30762cf0],.coderTextViolet[data-v-30762cf0]:link,.coderTextViolet[data-v-30762cf0]:visited,.coderTextViolet[data-v-30762cf0]:hover,.coderTextViolet[data-v-30762cf0]:active{color:#a0a}.coderTextBlue[data-v-30762cf0],.coderTextBlue[data-v-30762cf0]:link,.coderTextBlue[data-v-30762cf0]:visited,.coderTextBlue[data-v-30762cf0]:hover,.coderTextBlue[data-v-30762cf0]:active{color:#66f}.coderTextGreen[data-v-30762cf0],.coderTextGreen[data-v-30762cf0]:link,.coderTextGreen[data-v-30762cf0]:visited,.coderTextGreen[data-v-30762cf0]:hover,.coderTextGreen[data-v-30762cf0]:active{color:#00a900}.coderTextGray[data-v-30762cf0],.coderTextGray[data-v-30762cf0]:link,.coderTextGray[data-v-30762cf0]:visited,.coderTextGray[data-v-30762cf0]:hover,.coderTextGray[data-v-30762cf0]:active{color:#999}.coderTextWhite[data-v-30762cf0],.coderTextWhite[data-v-30762cf0]:link,.coderTextWhite[data-v-30762cf0]:visited,.coderTextWhite[data-v-30762cf0]:hover,.coderTextWhite[data-v-30762cf0]:active{color:#fff}.coderTextBlack[data-v-30762cf0],.coderTextBlack[data-v-30762cf0]:link,.coderTextBlack[data-v-30762cf0]:visited,.coderTextBlack[data-v-30762cf0]:hover,.coderTextBlack[data-v-30762cf0]:active{color:#000}s[data-v-30762cf0]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-30762cf0]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-30762cf0]{text-align:justify}a[data-v-30762cf0]{color:#004080}td.topmenu a[data-v-30762cf0]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-30762cf0]:hover{color:silver}td.topmenu[data-v-30762cf0]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-30762cf0]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-30762cf0]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-30762cf0]:hover{color:silver}td.menuleft[data-v-30762cf0]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-30762cf0]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-30762cf0]{height:25px;width:190px}td.newsselectcontainer form[data-v-30762cf0]{margin:0}td.newsselectcontainer select[data-v-30762cf0]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-30762cf0]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-30762cf0]{border:1px solid #004080}.memorial[data-v-30762cf0]{padding:0 8px;border:2px solid #000000}.menu[data-v-30762cf0]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-30762cf0]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-30762cf0]{width:15em}.menu ul li[data-v-30762cf0]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-30762cf0]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-30762cf0],.menu a[data-v-30762cf0]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-30762cf0],.menu ul ul a[data-v-30762cf0]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-30762cf0],.menu ul table ul a[data-v-30762cf0]:visited{width:14em;width:12em}.menu table[data-v-30762cf0]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-30762cf0]{left:-1px}.menu ul ul table ul.left[data-v-30762cf0]{margin-left:2px}.menu li[data-v-30762cf0]:hover,* html .menu a[data-v-30762cf0]:hover{position:relative}.menu ul ul ul a[data-v-30762cf0],.menu ul ul ul a[data-v-30762cf0]:visited,.menu ul ul ul ul a[data-v-30762cf0],.menu ul ul ul ul a[data-v-30762cf0]:visited,.menu ul :hover a.sub1[data-v-30762cf0],.menu ul ul :hover a.sub2[data-v-30762cf0]{background:#004080}.menu a[data-v-30762cf0]:hover{color:silver;background:#014181}.menu :hover>a[data-v-30762cf0]{color:silver;background:#014181}.menu ul ul a[data-v-30762cf0]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-30762cf0]{color:silver;background:#014181}.menu ul ul ul a[data-v-30762cf0]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-30762cf0]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-30762cf0]:hover{color:silver;background:#014181}.menu ul ul[data-v-30762cf0]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-30762cf0]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-30762cf0]{left:-14em}.menu ul li:hover ul[data-v-30762cf0],.menu ul a:hover ul[data-v-30762cf0]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-30762cf0],.menu ul :hover ul :hover ul ul[data-v-30762cf0]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-30762cf0],.menu ul :hover ul :hover ul :hover ul[data-v-30762cf0]{visibility:visible}.lmenu[data-v-30762cf0]{height:150px;font-size:90%}.lmenu ul[data-v-30762cf0]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-30762cf0]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-30762cf0]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-30762cf0]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-30762cf0],.lmenu a[data-v-30762cf0]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-30762cf0],* html .menu a[data-v-30762cf0]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-30762cf0]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-30762cf0]:hover{position:relative}.lmenu a[data-v-30762cf0]:active,.lmenu a[data-v-30762cf0]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-30762cf0]{color:silver;background:#014181}.lmenu li ul[data-v-30762cf0]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-30762cf0]{visibility:visible}.lmenu ul a:hover ul ul[data-v-30762cf0],.lmenu ul a:hover ul a:hover ul ul[data-v-30762cf0],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-30762cf0]{visibility:hidden}.lmenu ul a:hover ul[data-v-30762cf0],.lmenu ul a:hover ul a:hover ul[data-v-30762cf0],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-30762cf0],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-30762cf0]{visibility:visible}table.standings[data-v-5d478db8]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-5d478db8]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-5d478db8]{border:0!important}table[data-v-5d478db8]{border-collapse:separate!important}td[data-v-5d478db8]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-5d478db8]{background-color:#eee}tr.team[data-v-5d478db8]{height:2.5em}.hover[data-v-5d478db8]{cursor:pointer}td.stnd[data-v-5d478db8]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-5d478db8]{border-color:#fff}td.stndact[data-v-5d478db8]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-5d478db8]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-5d478db8]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-5d478db8]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-5d478db8]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-5d478db8]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-5d478db8]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-5d478db8]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-5d478db8]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-5d478db8]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-5d478db8]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-5d478db8]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-5d478db8]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-5d478db8]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-5d478db8]{color:#fff}th.success[data-v-5d478db8]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-5d478db8],td.title[data-v-5d478db8]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-5d478db8]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-5d478db8]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-5d478db8]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-5d478db8]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-5d478db8]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-5d478db8]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-5d478db8]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-5d478db8]{background-color:#004080}tr.solver[data-v-5d478db8]{background-color:#f0c0a0}tr.statistics-0[data-v-5d478db8]{background-color:#95de64}tr.statistics-1[data-v-5d478db8]{background-color:#b7eb8f}td.o00[data-v-5d478db8]{background-color:#004080}td.stand00[data-v-5d478db8]{background-color:#e0e0ff}td.stand01[data-v-5d478db8]{background-color:#e8e8ff}td.stand10[data-v-5d478db8]{background-color:#f8f8f8}td.stand11[data-v-5d478db8]{background-color:#f2f2f2}tr.filter-team[data-v-5d478db8]{background-color:#ffffe0}tr.cfres01[data-v-5d478db8]{background-color:#ffffb0}table.matches[data-v-5d478db8]{table-layout:fixed}td.match[data-v-5d478db8]{height:6em;width:2em}.coderTextRed[data-v-5d478db8],.coderTextYellow[data-v-5d478db8],.coderTextViolet[data-v-5d478db8],.coderTextBlue[data-v-5d478db8],.coderTextGreen[data-v-5d478db8],.coderTextGray[data-v-5d478db8],.coderTextOrange[data-v-5d478db8]{font-weight:700;background-color:transparent}.coderTextRed[data-v-5d478db8]:link,.coderTextYellow[data-v-5d478db8]:link,.coderTextViolet[data-v-5d478db8]:link,.coderTextBlue[data-v-5d478db8]:link,.coderTextGreen[data-v-5d478db8]:link,.coderTextGray[data-v-5d478db8]:link,.coderTextOrange[data-v-5d478db8]:link,.coderTextWhite[data-v-5d478db8]:link,.coderTextBlack[data-v-5d478db8]:link,.coderTextRed[data-v-5d478db8]:visited,.coderTextYellow[data-v-5d478db8]:visited,.coderTextViolet[data-v-5d478db8]:visited,.coderTextBlue[data-v-5d478db8]:visited,.coderTextGreen[data-v-5d478db8]:visited,.coderTextGray[data-v-5d478db8]:visited,.coderTextOrange[data-v-5d478db8]:visited,.coderTextWhite[data-v-5d478db8]:visited,.coderTextBlack[data-v-5d478db8]:visited{text-decoration:none}.coderTextRed[data-v-5d478db8]:hover,.coderTextYellow[data-v-5d478db8]:hover,.coderTextViolet[data-v-5d478db8]:hover,.coderTextBlue[data-v-5d478db8]:hover,.coderTextGreen[data-v-5d478db8]:hover,.coderTextGray[data-v-5d478db8]:hover,.coderTextOrange[data-v-5d478db8]:hover,.coderTextWhite[data-v-5d478db8]:hover,.coderTextBlack[data-v-5d478db8]:hover,.coderTextRed[data-v-5d478db8]:active,.coderTextYellow[data-v-5d478db8]:active,.coderTextViolet[data-v-5d478db8]:active,.coderTextBlue[data-v-5d478db8]:active,.coderTextGreen[data-v-5d478db8]:active,.coderTextGray[data-v-5d478db8]:active,.coderTextOrange[data-v-5d478db8]:active,.coderTextWhite[data-v-5d478db8]:active,.coderTextBlack[data-v-5d478db8]:active{text-decoration:underline}.coderTextOrange[data-v-5d478db8],.coderTextOrange[data-v-5d478db8]:link,.coderTextOrange[data-v-5d478db8]:visited,.coderTextOrange[data-v-5d478db8]:hover,.coderTextOrange[data-v-5d478db8]:active{color:#f90}.coderTextRed[data-v-5d478db8],.coderTextRed[data-v-5d478db8]:link,.coderTextRed[data-v-5d478db8]:visited,.coderTextRed[data-v-5d478db8]:hover,.coderTextRed[data-v-5d478db8]:active{color:#e00}.coderTextYellow[data-v-5d478db8],.coderTextYellow[data-v-5d478db8]:link,.coderTextYellow[data-v-5d478db8]:visited,.coderTextYellow[data-v-5d478db8]:hover,.coderTextYellow[data-v-5d478db8]:active{color:#dc0}.coderTextViolet[data-v-5d478db8],.coderTextViolet[data-v-5d478db8]:link,.coderTextViolet[data-v-5d478db8]:visited,.coderTextViolet[data-v-5d478db8]:hover,.coderTextViolet[data-v-5d478db8]:active{color:#a0a}.coderTextBlue[data-v-5d478db8],.coderTextBlue[data-v-5d478db8]:link,.coderTextBlue[data-v-5d478db8]:visited,.coderTextBlue[data-v-5d478db8]:hover,.coderTextBlue[data-v-5d478db8]:active{color:#66f}.coderTextGreen[data-v-5d478db8],.coderTextGreen[data-v-5d478db8]:link,.coderTextGreen[data-v-5d478db8]:visited,.coderTextGreen[data-v-5d478db8]:hover,.coderTextGreen[data-v-5d478db8]:active{color:#00a900}.coderTextGray[data-v-5d478db8],.coderTextGray[data-v-5d478db8]:link,.coderTextGray[data-v-5d478db8]:visited,.coderTextGray[data-v-5d478db8]:hover,.coderTextGray[data-v-5d478db8]:active{color:#999}.coderTextWhite[data-v-5d478db8],.coderTextWhite[data-v-5d478db8]:link,.coderTextWhite[data-v-5d478db8]:visited,.coderTextWhite[data-v-5d478db8]:hover,.coderTextWhite[data-v-5d478db8]:active{color:#fff}.coderTextBlack[data-v-5d478db8],.coderTextBlack[data-v-5d478db8]:link,.coderTextBlack[data-v-5d478db8]:visited,.coderTextBlack[data-v-5d478db8]:hover,.coderTextBlack[data-v-5d478db8]:active{color:#000}s[data-v-5d478db8]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-5d478db8]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-5d478db8]{text-align:justify}a[data-v-5d478db8]{color:#004080}td.topmenu a[data-v-5d478db8]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-5d478db8]:hover{color:silver}td.topmenu[data-v-5d478db8]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-5d478db8]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-5d478db8]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-5d478db8]:hover{color:silver}td.menuleft[data-v-5d478db8]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-5d478db8]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-5d478db8]{height:25px;width:190px}td.newsselectcontainer form[data-v-5d478db8]{margin:0}td.newsselectcontainer select[data-v-5d478db8]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-5d478db8]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-5d478db8]{border:1px solid #004080}.memorial[data-v-5d478db8]{padding:0 8px;border:2px solid #000000}.menu[data-v-5d478db8]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-5d478db8]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-5d478db8]{width:15em}.menu ul li[data-v-5d478db8]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-5d478db8]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-5d478db8],.menu a[data-v-5d478db8]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-5d478db8],.menu ul ul a[data-v-5d478db8]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-5d478db8],.menu ul table ul a[data-v-5d478db8]:visited{width:14em;width:12em}.menu table[data-v-5d478db8]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-5d478db8]{left:-1px}.menu ul ul table ul.left[data-v-5d478db8]{margin-left:2px}.menu li[data-v-5d478db8]:hover,* html .menu a[data-v-5d478db8]:hover{position:relative}.menu ul ul ul a[data-v-5d478db8],.menu ul ul ul a[data-v-5d478db8]:visited,.menu ul ul ul ul a[data-v-5d478db8],.menu ul ul ul ul a[data-v-5d478db8]:visited,.menu ul :hover a.sub1[data-v-5d478db8],.menu ul ul :hover a.sub2[data-v-5d478db8]{background:#004080}.menu a[data-v-5d478db8]:hover{color:silver;background:#014181}.menu :hover>a[data-v-5d478db8]{color:silver;background:#014181}.menu ul ul a[data-v-5d478db8]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-5d478db8]{color:silver;background:#014181}.menu ul ul ul a[data-v-5d478db8]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-5d478db8]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-5d478db8]:hover{color:silver;background:#014181}.menu ul ul[data-v-5d478db8]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-5d478db8]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-5d478db8]{left:-14em}.menu ul li:hover ul[data-v-5d478db8],.menu ul a:hover ul[data-v-5d478db8]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-5d478db8],.menu ul :hover ul :hover ul ul[data-v-5d478db8]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-5d478db8],.menu ul :hover ul :hover ul :hover ul[data-v-5d478db8]{visibility:visible}.lmenu[data-v-5d478db8]{height:150px;font-size:90%}.lmenu ul[data-v-5d478db8]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-5d478db8]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-5d478db8]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-5d478db8]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-5d478db8],.lmenu a[data-v-5d478db8]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-5d478db8],* html .menu a[data-v-5d478db8]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-5d478db8]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-5d478db8]:hover{position:relative}.lmenu a[data-v-5d478db8]:active,.lmenu a[data-v-5d478db8]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-5d478db8]{color:silver;background:#014181}.lmenu li ul[data-v-5d478db8]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-5d478db8]{visibility:visible}.lmenu ul a:hover ul ul[data-v-5d478db8],.lmenu ul a:hover ul a:hover ul ul[data-v-5d478db8],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-5d478db8]{visibility:hidden}.lmenu ul a:hover ul[data-v-5d478db8],.lmenu ul a:hover ul a:hover ul[data-v-5d478db8],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-5d478db8],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-5d478db8]{visibility:visible}table.standings[data-v-49b9fc34]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-49b9fc34]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-49b9fc34]{border:0!important}table[data-v-49b9fc34]{border-collapse:separate!important}td[data-v-49b9fc34]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-49b9fc34]{background-color:#eee}tr.team[data-v-49b9fc34]{height:2.5em}.hover[data-v-49b9fc34]{cursor:pointer}td.stnd[data-v-49b9fc34]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-49b9fc34]{border-color:#fff}td.stndact[data-v-49b9fc34]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-49b9fc34]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-49b9fc34]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-49b9fc34]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-49b9fc34]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-49b9fc34]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-49b9fc34]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-49b9fc34]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-49b9fc34]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-49b9fc34]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-49b9fc34]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-49b9fc34]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-49b9fc34]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-49b9fc34]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-49b9fc34]{color:#fff}th.success[data-v-49b9fc34]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-49b9fc34],td.title[data-v-49b9fc34]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-49b9fc34]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-49b9fc34]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-49b9fc34]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-49b9fc34]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-49b9fc34]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-49b9fc34]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-49b9fc34]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-49b9fc34]{background-color:#004080}tr.solver[data-v-49b9fc34]{background-color:#f0c0a0}tr.statistics-0[data-v-49b9fc34]{background-color:#95de64}tr.statistics-1[data-v-49b9fc34]{background-color:#b7eb8f}td.o00[data-v-49b9fc34]{background-color:#004080}td.stand00[data-v-49b9fc34]{background-color:#e0e0ff}td.stand01[data-v-49b9fc34]{background-color:#e8e8ff}td.stand10[data-v-49b9fc34]{background-color:#f8f8f8}td.stand11[data-v-49b9fc34]{background-color:#f2f2f2}tr.filter-team[data-v-49b9fc34]{background-color:#ffffe0}tr.cfres01[data-v-49b9fc34]{background-color:#ffffb0}table.matches[data-v-49b9fc34]{table-layout:fixed}td.match[data-v-49b9fc34]{height:6em;width:2em}.coderTextRed[data-v-49b9fc34],.coderTextYellow[data-v-49b9fc34],.coderTextViolet[data-v-49b9fc34],.coderTextBlue[data-v-49b9fc34],.coderTextGreen[data-v-49b9fc34],.coderTextGray[data-v-49b9fc34],.coderTextOrange[data-v-49b9fc34]{font-weight:700;background-color:transparent}.coderTextRed[data-v-49b9fc34]:link,.coderTextYellow[data-v-49b9fc34]:link,.coderTextViolet[data-v-49b9fc34]:link,.coderTextBlue[data-v-49b9fc34]:link,.coderTextGreen[data-v-49b9fc34]:link,.coderTextGray[data-v-49b9fc34]:link,.coderTextOrange[data-v-49b9fc34]:link,.coderTextWhite[data-v-49b9fc34]:link,.coderTextBlack[data-v-49b9fc34]:link,.coderTextRed[data-v-49b9fc34]:visited,.coderTextYellow[data-v-49b9fc34]:visited,.coderTextViolet[data-v-49b9fc34]:visited,.coderTextBlue[data-v-49b9fc34]:visited,.coderTextGreen[data-v-49b9fc34]:visited,.coderTextGray[data-v-49b9fc34]:visited,.coderTextOrange[data-v-49b9fc34]:visited,.coderTextWhite[data-v-49b9fc34]:visited,.coderTextBlack[data-v-49b9fc34]:visited{text-decoration:none}.coderTextRed[data-v-49b9fc34]:hover,.coderTextYellow[data-v-49b9fc34]:hover,.coderTextViolet[data-v-49b9fc34]:hover,.coderTextBlue[data-v-49b9fc34]:hover,.coderTextGreen[data-v-49b9fc34]:hover,.coderTextGray[data-v-49b9fc34]:hover,.coderTextOrange[data-v-49b9fc34]:hover,.coderTextWhite[data-v-49b9fc34]:hover,.coderTextBlack[data-v-49b9fc34]:hover,.coderTextRed[data-v-49b9fc34]:active,.coderTextYellow[data-v-49b9fc34]:active,.coderTextViolet[data-v-49b9fc34]:active,.coderTextBlue[data-v-49b9fc34]:active,.coderTextGreen[data-v-49b9fc34]:active,.coderTextGray[data-v-49b9fc34]:active,.coderTextOrange[data-v-49b9fc34]:active,.coderTextWhite[data-v-49b9fc34]:active,.coderTextBlack[data-v-49b9fc34]:active{text-decoration:underline}.coderTextOrange[data-v-49b9fc34],.coderTextOrange[data-v-49b9fc34]:link,.coderTextOrange[data-v-49b9fc34]:visited,.coderTextOrange[data-v-49b9fc34]:hover,.coderTextOrange[data-v-49b9fc34]:active{color:#f90}.coderTextRed[data-v-49b9fc34],.coderTextRed[data-v-49b9fc34]:link,.coderTextRed[data-v-49b9fc34]:visited,.coderTextRed[data-v-49b9fc34]:hover,.coderTextRed[data-v-49b9fc34]:active{color:#e00}.coderTextYellow[data-v-49b9fc34],.coderTextYellow[data-v-49b9fc34]:link,.coderTextYellow[data-v-49b9fc34]:visited,.coderTextYellow[data-v-49b9fc34]:hover,.coderTextYellow[data-v-49b9fc34]:active{color:#dc0}.coderTextViolet[data-v-49b9fc34],.coderTextViolet[data-v-49b9fc34]:link,.coderTextViolet[data-v-49b9fc34]:visited,.coderTextViolet[data-v-49b9fc34]:hover,.coderTextViolet[data-v-49b9fc34]:active{color:#a0a}.coderTextBlue[data-v-49b9fc34],.coderTextBlue[data-v-49b9fc34]:link,.coderTextBlue[data-v-49b9fc34]:visited,.coderTextBlue[data-v-49b9fc34]:hover,.coderTextBlue[data-v-49b9fc34]:active{color:#66f}.coderTextGreen[data-v-49b9fc34],.coderTextGreen[data-v-49b9fc34]:link,.coderTextGreen[data-v-49b9fc34]:visited,.coderTextGreen[data-v-49b9fc34]:hover,.coderTextGreen[data-v-49b9fc34]:active{color:#00a900}.coderTextGray[data-v-49b9fc34],.coderTextGray[data-v-49b9fc34]:link,.coderTextGray[data-v-49b9fc34]:visited,.coderTextGray[data-v-49b9fc34]:hover,.coderTextGray[data-v-49b9fc34]:active{color:#999}.coderTextWhite[data-v-49b9fc34],.coderTextWhite[data-v-49b9fc34]:link,.coderTextWhite[data-v-49b9fc34]:visited,.coderTextWhite[data-v-49b9fc34]:hover,.coderTextWhite[data-v-49b9fc34]:active{color:#fff}.coderTextBlack[data-v-49b9fc34],.coderTextBlack[data-v-49b9fc34]:link,.coderTextBlack[data-v-49b9fc34]:visited,.coderTextBlack[data-v-49b9fc34]:hover,.coderTextBlack[data-v-49b9fc34]:active{color:#000}s[data-v-49b9fc34]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-49b9fc34]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-49b9fc34]{text-align:justify}a[data-v-49b9fc34]{color:#004080}td.topmenu a[data-v-49b9fc34]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-49b9fc34]:hover{color:silver}td.topmenu[data-v-49b9fc34]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-49b9fc34]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-49b9fc34]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-49b9fc34]:hover{color:silver}td.menuleft[data-v-49b9fc34]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-49b9fc34]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-49b9fc34]{height:25px;width:190px}td.newsselectcontainer form[data-v-49b9fc34]{margin:0}td.newsselectcontainer select[data-v-49b9fc34]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-49b9fc34]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-49b9fc34]{border:1px solid #004080}.memorial[data-v-49b9fc34]{padding:0 8px;border:2px solid #000000}.menu[data-v-49b9fc34]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-49b9fc34]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-49b9fc34]{width:15em}.menu ul li[data-v-49b9fc34]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-49b9fc34]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-49b9fc34],.menu a[data-v-49b9fc34]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-49b9fc34],.menu ul ul a[data-v-49b9fc34]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-49b9fc34],.menu ul table ul a[data-v-49b9fc34]:visited{width:14em;width:12em}.menu table[data-v-49b9fc34]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-49b9fc34]{left:-1px}.menu ul ul table ul.left[data-v-49b9fc34]{margin-left:2px}.menu li[data-v-49b9fc34]:hover,* html .menu a[data-v-49b9fc34]:hover{position:relative}.menu ul ul ul a[data-v-49b9fc34],.menu ul ul ul a[data-v-49b9fc34]:visited,.menu ul ul ul ul a[data-v-49b9fc34],.menu ul ul ul ul a[data-v-49b9fc34]:visited,.menu ul :hover a.sub1[data-v-49b9fc34],.menu ul ul :hover a.sub2[data-v-49b9fc34]{background:#004080}.menu a[data-v-49b9fc34]:hover{color:silver;background:#014181}.menu :hover>a[data-v-49b9fc34]{color:silver;background:#014181}.menu ul ul a[data-v-49b9fc34]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-49b9fc34]{color:silver;background:#014181}.menu ul ul ul a[data-v-49b9fc34]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-49b9fc34]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-49b9fc34]:hover{color:silver;background:#014181}.menu ul ul[data-v-49b9fc34]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-49b9fc34]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-49b9fc34]{left:-14em}.menu ul li:hover ul[data-v-49b9fc34],.menu ul a:hover ul[data-v-49b9fc34]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-49b9fc34],.menu ul :hover ul :hover ul ul[data-v-49b9fc34]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-49b9fc34],.menu ul :hover ul :hover ul :hover ul[data-v-49b9fc34]{visibility:visible}.lmenu[data-v-49b9fc34]{height:150px;font-size:90%}.lmenu ul[data-v-49b9fc34]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-49b9fc34]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-49b9fc34]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-49b9fc34]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-49b9fc34],.lmenu a[data-v-49b9fc34]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-49b9fc34],* html .menu a[data-v-49b9fc34]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-49b9fc34]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-49b9fc34]:hover{position:relative}.lmenu a[data-v-49b9fc34]:active,.lmenu a[data-v-49b9fc34]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-49b9fc34]{color:silver;background:#014181}.lmenu li ul[data-v-49b9fc34]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-49b9fc34]{visibility:visible}.lmenu ul a:hover ul ul[data-v-49b9fc34],.lmenu ul a:hover ul a:hover ul ul[data-v-49b9fc34],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-49b9fc34]{visibility:hidden}.lmenu ul a:hover ul[data-v-49b9fc34],.lmenu ul a:hover ul a:hover ul[data-v-49b9fc34],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-49b9fc34],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-49b9fc34]{visibility:visible}.second-level-menu-item[data-v-714a998b]{height:18px;background:#333;position:relative;display:flex;justify-content:center;align-items:center;color:#fff;font-size:14px;font-weight:700;-webkit-transition:.7s;transition:.7s;cursor:pointer;margin:2px 4px!important;padding:4px!important;box-sizing:content-box!important;border-radius:3px}.second-level-menu-item[data-v-714a998b]:hover,.second-level-menu-item-current[data-v-714a998b]{background:#f30}table.standings[data-v-54297ce8]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-54297ce8]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-54297ce8]{border:0!important}table[data-v-54297ce8]{border-collapse:separate!important}td[data-v-54297ce8]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-54297ce8]{background-color:#eee}tr.team[data-v-54297ce8]{height:2.5em}.hover[data-v-54297ce8]{cursor:pointer}td.stnd[data-v-54297ce8]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-54297ce8]{border-color:#fff}td.stndact[data-v-54297ce8]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-54297ce8]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-54297ce8]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-54297ce8]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-54297ce8]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-54297ce8]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-54297ce8]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-54297ce8]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-54297ce8]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-54297ce8]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-54297ce8]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-54297ce8]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-54297ce8]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-54297ce8]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-54297ce8]{color:#fff}th.success[data-v-54297ce8]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-54297ce8],td.title[data-v-54297ce8]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-54297ce8]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-54297ce8]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-54297ce8]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-54297ce8]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-54297ce8]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-54297ce8]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-54297ce8]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-54297ce8]{background-color:#004080}tr.solver[data-v-54297ce8]{background-color:#f0c0a0}tr.statistics-0[data-v-54297ce8]{background-color:#95de64}tr.statistics-1[data-v-54297ce8]{background-color:#b7eb8f}td.o00[data-v-54297ce8]{background-color:#004080}td.stand00[data-v-54297ce8]{background-color:#e0e0ff}td.stand01[data-v-54297ce8]{background-color:#e8e8ff}td.stand10[data-v-54297ce8]{background-color:#f8f8f8}td.stand11[data-v-54297ce8]{background-color:#f2f2f2}tr.filter-team[data-v-54297ce8]{background-color:#ffffe0}tr.cfres01[data-v-54297ce8]{background-color:#ffffb0}table.matches[data-v-54297ce8]{table-layout:fixed}td.match[data-v-54297ce8]{height:6em;width:2em}.coderTextRed[data-v-54297ce8],.coderTextYellow[data-v-54297ce8],.coderTextViolet[data-v-54297ce8],.coderTextBlue[data-v-54297ce8],.coderTextGreen[data-v-54297ce8],.coderTextGray[data-v-54297ce8],.coderTextOrange[data-v-54297ce8]{font-weight:700;background-color:transparent}.coderTextRed[data-v-54297ce8]:link,.coderTextYellow[data-v-54297ce8]:link,.coderTextViolet[data-v-54297ce8]:link,.coderTextBlue[data-v-54297ce8]:link,.coderTextGreen[data-v-54297ce8]:link,.coderTextGray[data-v-54297ce8]:link,.coderTextOrange[data-v-54297ce8]:link,.coderTextWhite[data-v-54297ce8]:link,.coderTextBlack[data-v-54297ce8]:link,.coderTextRed[data-v-54297ce8]:visited,.coderTextYellow[data-v-54297ce8]:visited,.coderTextViolet[data-v-54297ce8]:visited,.coderTextBlue[data-v-54297ce8]:visited,.coderTextGreen[data-v-54297ce8]:visited,.coderTextGray[data-v-54297ce8]:visited,.coderTextOrange[data-v-54297ce8]:visited,.coderTextWhite[data-v-54297ce8]:visited,.coderTextBlack[data-v-54297ce8]:visited{text-decoration:none}.coderTextRed[data-v-54297ce8]:hover,.coderTextYellow[data-v-54297ce8]:hover,.coderTextViolet[data-v-54297ce8]:hover,.coderTextBlue[data-v-54297ce8]:hover,.coderTextGreen[data-v-54297ce8]:hover,.coderTextGray[data-v-54297ce8]:hover,.coderTextOrange[data-v-54297ce8]:hover,.coderTextWhite[data-v-54297ce8]:hover,.coderTextBlack[data-v-54297ce8]:hover,.coderTextRed[data-v-54297ce8]:active,.coderTextYellow[data-v-54297ce8]:active,.coderTextViolet[data-v-54297ce8]:active,.coderTextBlue[data-v-54297ce8]:active,.coderTextGreen[data-v-54297ce8]:active,.coderTextGray[data-v-54297ce8]:active,.coderTextOrange[data-v-54297ce8]:active,.coderTextWhite[data-v-54297ce8]:active,.coderTextBlack[data-v-54297ce8]:active{text-decoration:underline}.coderTextOrange[data-v-54297ce8],.coderTextOrange[data-v-54297ce8]:link,.coderTextOrange[data-v-54297ce8]:visited,.coderTextOrange[data-v-54297ce8]:hover,.coderTextOrange[data-v-54297ce8]:active{color:#f90}.coderTextRed[data-v-54297ce8],.coderTextRed[data-v-54297ce8]:link,.coderTextRed[data-v-54297ce8]:visited,.coderTextRed[data-v-54297ce8]:hover,.coderTextRed[data-v-54297ce8]:active{color:#e00}.coderTextYellow[data-v-54297ce8],.coderTextYellow[data-v-54297ce8]:link,.coderTextYellow[data-v-54297ce8]:visited,.coderTextYellow[data-v-54297ce8]:hover,.coderTextYellow[data-v-54297ce8]:active{color:#dc0}.coderTextViolet[data-v-54297ce8],.coderTextViolet[data-v-54297ce8]:link,.coderTextViolet[data-v-54297ce8]:visited,.coderTextViolet[data-v-54297ce8]:hover,.coderTextViolet[data-v-54297ce8]:active{color:#a0a}.coderTextBlue[data-v-54297ce8],.coderTextBlue[data-v-54297ce8]:link,.coderTextBlue[data-v-54297ce8]:visited,.coderTextBlue[data-v-54297ce8]:hover,.coderTextBlue[data-v-54297ce8]:active{color:#66f}.coderTextGreen[data-v-54297ce8],.coderTextGreen[data-v-54297ce8]:link,.coderTextGreen[data-v-54297ce8]:visited,.coderTextGreen[data-v-54297ce8]:hover,.coderTextGreen[data-v-54297ce8]:active{color:#00a900}.coderTextGray[data-v-54297ce8],.coderTextGray[data-v-54297ce8]:link,.coderTextGray[data-v-54297ce8]:visited,.coderTextGray[data-v-54297ce8]:hover,.coderTextGray[data-v-54297ce8]:active{color:#999}.coderTextWhite[data-v-54297ce8],.coderTextWhite[data-v-54297ce8]:link,.coderTextWhite[data-v-54297ce8]:visited,.coderTextWhite[data-v-54297ce8]:hover,.coderTextWhite[data-v-54297ce8]:active{color:#fff}.coderTextBlack[data-v-54297ce8],.coderTextBlack[data-v-54297ce8]:link,.coderTextBlack[data-v-54297ce8]:visited,.coderTextBlack[data-v-54297ce8]:hover,.coderTextBlack[data-v-54297ce8]:active{color:#000}s[data-v-54297ce8]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-54297ce8]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-54297ce8]{text-align:justify}a[data-v-54297ce8]{color:#004080}td.topmenu a[data-v-54297ce8]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-54297ce8]:hover{color:silver}td.topmenu[data-v-54297ce8]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-54297ce8]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-54297ce8]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-54297ce8]:hover{color:silver}td.menuleft[data-v-54297ce8]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-54297ce8]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-54297ce8]{height:25px;width:190px}td.newsselectcontainer form[data-v-54297ce8]{margin:0}td.newsselectcontainer select[data-v-54297ce8]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-54297ce8]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-54297ce8]{border:1px solid #004080}.memorial[data-v-54297ce8]{padding:0 8px;border:2px solid #000000}.menu[data-v-54297ce8]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-54297ce8]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-54297ce8]{width:15em}.menu ul li[data-v-54297ce8]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-54297ce8]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-54297ce8],.menu a[data-v-54297ce8]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-54297ce8],.menu ul ul a[data-v-54297ce8]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-54297ce8],.menu ul table ul a[data-v-54297ce8]:visited{width:14em;width:12em}.menu table[data-v-54297ce8]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-54297ce8]{left:-1px}.menu ul ul table ul.left[data-v-54297ce8]{margin-left:2px}.menu li[data-v-54297ce8]:hover,* html .menu a[data-v-54297ce8]:hover{position:relative}.menu ul ul ul a[data-v-54297ce8],.menu ul ul ul a[data-v-54297ce8]:visited,.menu ul ul ul ul a[data-v-54297ce8],.menu ul ul ul ul a[data-v-54297ce8]:visited,.menu ul :hover a.sub1[data-v-54297ce8],.menu ul ul :hover a.sub2[data-v-54297ce8]{background:#004080}.menu a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu :hover>a[data-v-54297ce8]{color:silver;background:#014181}.menu ul ul a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-54297ce8]{color:silver;background:#014181}.menu ul ul ul a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-54297ce8]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu ul ul[data-v-54297ce8]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-54297ce8]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-54297ce8]{left:-14em}.menu ul li:hover ul[data-v-54297ce8],.menu ul a:hover ul[data-v-54297ce8]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-54297ce8],.menu ul :hover ul :hover ul ul[data-v-54297ce8]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-54297ce8],.menu ul :hover ul :hover ul :hover ul[data-v-54297ce8]{visibility:visible}.lmenu[data-v-54297ce8]{height:150px;font-size:90%}.lmenu ul[data-v-54297ce8]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-54297ce8]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-54297ce8]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-54297ce8]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-54297ce8],.lmenu a[data-v-54297ce8]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-54297ce8],* html .menu a[data-v-54297ce8]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-54297ce8]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-54297ce8]:hover{position:relative}.lmenu a[data-v-54297ce8]:active,.lmenu a[data-v-54297ce8]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-54297ce8]{color:silver;background:#014181}.lmenu li ul[data-v-54297ce8]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-54297ce8]{visibility:visible}.lmenu ul a:hover ul ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-54297ce8]{visibility:hidden}.lmenu ul a:hover ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-54297ce8]{visibility:visible}.title[data-v-34662be5]{--scroll-bar: 0;font-variant:tabular-nums;line-height:1.5715;box-sizing:border-box;position:relative;overflow:hidden;text-align:center}
|