
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_778cb5efe945b4bcefb72f17.woff')format("woff");}.ff1{font-family:ff1;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_78d4104a56c058c471d08bf2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.812000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6068f23be1f0ffe6dc65dfc4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.992188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_807986c100237b88e64c5201.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bb8737aefa2c44373362e58b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c7cd76a5e856c49aa7deb204.woff')format("woff");}.ff6{font-family:ff6;line-height:0.912308;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cd6dbfc4057e3303665b890a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c18da825d04ebcf6f907f10e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0ea86ac7d17b827c8906f13e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bb8737aefa2c44373362e58b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bb8737aefa2c44373362e58b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bb8737aefa2c44373362e58b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_727d92edf31cab93174edab4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2e044459013b117f4426a5e9.woff')format("woff");}.ffe{font-family:ffe;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_474ed3211e0451579da2fe59.woff')format("woff");}.fff{font-family:fff;line-height:0.781000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_37f8a3cc1b28992c12647d26.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912308;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b49d2dc271e85ea8a0f1f630.woff')format("woff");}.ff11{font-family:ff11;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9aef7b30cbf16aa9be2dbe10.woff')format("woff");}.ff12{font-family:ff12;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2dfce15e62920d1ca846c2ca.woff')format("woff");}.ff13{font-family:ff13;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_646e2108513b8047b3f0da72.woff')format("woff");}.ff14{font-family:ff14;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_bb8737aefa2c44373362e58b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_474ed3211e0451579da2fe59.woff')format("woff");}.ff16{font-family:ff16;line-height:0.781000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_37f8a3cc1b28992c12647d26.woff')format("woff");}.ff17{font-family:ff17;line-height:0.912308;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_2dfce15e62920d1ca846c2ca.woff')format("woff");}.ff18{font-family:ff18;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_646e2108513b8047b3f0da72.woff')format("woff");}.ff19{font-family:ff19;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_bb8737aefa2c44373362e58b.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_474ed3211e0451579da2fe59.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.781000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_37f8a3cc1b28992c12647d26.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.912308;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8e158c71ed8f70a2eeef70d8.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v3{vertical-align:19.980000px;}
.v2{vertical-align:32.400000px;}
.lsa{letter-spacing:-1.650000px;}
.ls9{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.009000px;}
.ls5{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.ls7{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls6{letter-spacing:28.800000px;}
.ls4{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-98.766600px;}
.wsb{word-spacing:-92.160000px;}
.ws14{word-spacing:-72.479400px;}
.wsa{word-spacing:-36.180000px;}
.ws5{word-spacing:-25.812000px;}
.ws96{word-spacing:-20.016000px;}
.ws29{word-spacing:-16.680000px;}
.ws15{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.520000px;}
.ws1e{word-spacing:-14.400000px;}
.ws6{word-spacing:-12.960000px;}
.ws10{word-spacing:-10.560000px;}
.ws11{word-spacing:-9.570000px;}
.wsf{word-spacing:-7.656000px;}
.ws4e{word-spacing:-7.080000px;}
.ws44{word-spacing:-6.000000px;}
.ws7b{word-spacing:-5.880000px;}
.ws91{word-spacing:-5.238000px;}
.ws45{word-spacing:-4.980000px;}
.ws35{word-spacing:-4.500000px;}
.wse{word-spacing:-4.290000px;}
.ws97{word-spacing:-3.960000px;}
.ws12{word-spacing:-3.894000px;}
.wsd{word-spacing:-3.696000px;}
.ws7c{word-spacing:-3.300000px;}
.ws5f{word-spacing:-2.880000px;}
.ws63{word-spacing:-2.700000px;}
.ws1b{word-spacing:-2.646000px;}
.ws2b{word-spacing:-2.580000px;}
.ws4b{word-spacing:-2.400000px;}
.ws1{word-spacing:-2.220000px;}
.ws7d{word-spacing:-2.160000px;}
.ws19{word-spacing:-2.106000px;}
.ws2{word-spacing:-1.998000px;}
.ws61{word-spacing:-1.920000px;}
.ws71{word-spacing:-1.620000px;}
.ws82{word-spacing:-1.500000px;}
.ws3{word-spacing:-0.972000px;}
.ws75{word-spacing:-0.960000px;}
.ws88{word-spacing:-0.840000px;}
.ws94{word-spacing:-0.756000px;}
.ws3b{word-spacing:-0.540000px;}
.ws90{word-spacing:-0.324000px;}
.ws5e{word-spacing:-0.270000px;}
.ws8a{word-spacing:-0.180000px;}
.ws57{word-spacing:-0.162000px;}
.ws84{word-spacing:-0.108000px;}
.ws5d{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws80{word-spacing:0.300000px;}
.ws47{word-spacing:0.780000px;}
.ws27{word-spacing:1.020000px;}
.ws86{word-spacing:1.140000px;}
.ws3d{word-spacing:1.380000px;}
.ws1d{word-spacing:1.620000px;}
.ws98{word-spacing:1.650000px;}
.ws2f{word-spacing:1.800000px;}
.ws46{word-spacing:1.860000px;}
.ws89{word-spacing:2.100000px;}
.ws3c{word-spacing:2.160000px;}
.ws24{word-spacing:2.340000px;}
.ws31{word-spacing:2.460000px;}
.ws56{word-spacing:2.760000px;}
.ws95{word-spacing:2.916000px;}
.ws43{word-spacing:3.060000px;}
.ws6c{word-spacing:3.480000px;}
.ws67{word-spacing:4.020000px;}
.ws93{word-spacing:4.104000px;}
.ws68{word-spacing:4.560000px;}
.ws4c{word-spacing:4.920000px;}
.ws8b{word-spacing:5.160000px;}
.ws41{word-spacing:5.220000px;}
.ws6e{word-spacing:5.280000px;}
.ws30{word-spacing:5.640000px;}
.ws1c{word-spacing:5.832000px;}
.ws32{word-spacing:5.940000px;}
.ws51{word-spacing:6.120000px;}
.ws64{word-spacing:6.180000px;}
.ws18{word-spacing:6.264000px;}
.ws65{word-spacing:6.360000px;}
.ws6a{word-spacing:6.480000px;}
.ws8d{word-spacing:6.720000px;}
.ws76{word-spacing:6.900000px;}
.ws23{word-spacing:6.960000px;}
.ws53{word-spacing:7.080000px;}
.ws17{word-spacing:7.452000px;}
.ws22{word-spacing:7.680000px;}
.ws85{word-spacing:7.728000px;}
.ws6b{word-spacing:8.220000px;}
.ws2c{word-spacing:8.340000px;}
.ws6d{word-spacing:8.580000px;}
.ws52{word-spacing:8.880000px;}
.ws62{word-spacing:9.000000px;}
.ws16{word-spacing:9.018000px;}
.ws36{word-spacing:9.060000px;}
.ws7f{word-spacing:9.360000px;}
.ws3f{word-spacing:9.420000px;}
.ws6f{word-spacing:9.540000px;}
.ws4a{word-spacing:9.720000px;}
.ws8f{word-spacing:9.936000px;}
.ws20{word-spacing:10.020000px;}
.ws77{word-spacing:10.080000px;}
.ws55{word-spacing:10.380000px;}
.ws87{word-spacing:10.440000px;}
.ws33{word-spacing:10.560000px;}
.ws1f{word-spacing:10.920000px;}
.ws92{word-spacing:10.962000px;}
.ws39{word-spacing:11.160000px;}
.ws37{word-spacing:11.220000px;}
.ws4d{word-spacing:11.520000px;}
.ws2e{word-spacing:11.640000px;}
.ws4f{word-spacing:12.600000px;}
.ws72{word-spacing:12.660000px;}
.ws34{word-spacing:12.780000px;}
.ws74{word-spacing:12.960000px;}
.ws26{word-spacing:13.080000px;}
.ws60{word-spacing:13.380000px;}
.ws38{word-spacing:13.740000px;}
.ws73{word-spacing:14.280000px;}
.ws70{word-spacing:14.400000px;}
.ws66{word-spacing:14.880000px;}
.ws7e{word-spacing:15.120000px;}
.ws3e{word-spacing:15.600000px;}
.ws7a{word-spacing:15.960000px;}
.ws21{word-spacing:17.400000px;}
.ws50{word-spacing:18.060000px;}
.ws69{word-spacing:18.300000px;}
.ws83{word-spacing:18.360000px;}
.ws7{word-spacing:20.574000px;}
.ws78{word-spacing:21.120000px;}
.ws40{word-spacing:21.480000px;}
.ws79{word-spacing:21.960000px;}
.ws8e{word-spacing:22.440000px;}
.ws49{word-spacing:22.680000px;}
.ws2a{word-spacing:24.540000px;}
.ws3a{word-spacing:25.200000px;}
.ws54{word-spacing:25.260000px;}
.ws42{word-spacing:26.880000px;}
.ws1a{word-spacing:29.052000px;}
.ws2d{word-spacing:29.100000px;}
.ws8c{word-spacing:30.060000px;}
.ws81{word-spacing:36.420000px;}
.ws25{word-spacing:37.260000px;}
.ws59{word-spacing:57.480000px;}
.ws8{word-spacing:81.017400px;}
.ws5a{word-spacing:84.480000px;}
.ws28{word-spacing:92.554800px;}
.ws4{word-spacing:101.888400px;}
.ws5b{word-spacing:102.462000px;}
.ws13{word-spacing:107.243400px;}
.ws58{word-spacing:186.540000px;}
.ws48{word-spacing:329.007000px;}
.ws5c{word-spacing:432.043200px;}
._11{margin-left:-2067.594000px;}
._37{margin-left:-1881.991200px;}
._2c{margin-left:-1734.116400px;}
._2e{margin-left:-1721.301600px;}
._3e{margin-left:-1718.930400px;}
._41{margin-left:-1698.882600px;}
._35{margin-left:-1598.005800px;}
._39{margin-left:-1535.939400px;}
._26{margin-left:-1473.912000px;}
._30{margin-left:-1406.215800px;}
._28{margin-left:-1347.900600px;}
._9{margin-left:-1344.464400px;}
._31{margin-left:-1314.651000px;}
._18{margin-left:-1272.573000px;}
._f{margin-left:-1238.490600px;}
._33{margin-left:-1212.406200px;}
._2a{margin-left:-1194.616200px;}
._13{margin-left:-1134.312600px;}
._d{margin-left:-1121.347800px;}
._2b{margin-left:-1086.210000px;}
._1d{margin-left:-1068.892800px;}
._15{margin-left:-1065.258000px;}
._3c{margin-left:-1057.346400px;}
._a{margin-left:-1053.270000px;}
._1f{margin-left:-1029.294000px;}
._b{margin-left:-998.220000px;}
._16{margin-left:-951.156000px;}
._36{margin-left:-937.644000px;}
._24{margin-left:-927.258600px;}
._12{margin-left:-924.264000px;}
._22{margin-left:-915.300000px;}
._19{margin-left:-897.210000px;}
._40{margin-left:-882.744000px;}
._80{margin-left:-880.344000px;}
._21{margin-left:-878.310000px;}
._14{margin-left:-861.192000px;}
._3d{margin-left:-858.276000px;}
._1b{margin-left:-851.532000px;}
._32{margin-left:-840.294000px;}
._1c{margin-left:-838.662000px;}
._e{margin-left:-813.078000px;}
._17{margin-left:-796.932000px;}
._23{margin-left:-786.240000px;}
._1e{margin-left:-781.908000px;}
._20{margin-left:-775.644000px;}
._34{margin-left:-767.508000px;}
._42{margin-left:-762.156000px;}
._25{margin-left:-724.668000px;}
._3b{margin-left:-705.240000px;}
._2d{margin-left:-696.222000px;}
._8{margin-left:-693.252000px;}
._81{margin-left:-672.223200px;}
._7c{margin-left:-648.144000px;}
._3f{margin-left:-609.336000px;}
._7{margin-left:-571.860000px;}
._7f{margin-left:-567.961800px;}
._43{margin-left:-563.239800px;}
._7d{margin-left:-504.180600px;}
._1a{margin-left:-479.364000px;}
._2f{margin-left:-441.126000px;}
._10{margin-left:-399.114000px;}
._29{margin-left:-389.346000px;}
._3a{margin-left:-378.162000px;}
._38{margin-left:-366.120000px;}
._7e{margin-left:-360.000000px;}
._27{margin-left:-264.060000px;}
._4d{margin-left:-14.839800px;}
._3{margin-left:-12.834000px;}
._44{margin-left:-10.800000px;}
._4{margin-left:-9.672000px;}
._4b{margin-left:-8.294400px;}
._c{margin-left:-6.993000px;}
._45{margin-left:-5.940600px;}
._4a{margin-left:-4.897200px;}
._0{margin-left:-3.720000px;}
._5{margin-left:-2.442000px;}
._6{margin-left:-1.043400px;}
._49{width:1.015200px;}
._1{width:2.418000px;}
._4c{width:3.590400px;}
._2{width:4.817400px;}
._52{width:5.934600px;}
._50{width:7.169400px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._51{width:12.523800px;}
._53{width:14.473200px;}
._54{width:15.519600px;}
._4f{width:19.547400px;}
._46{width:20.593200px;}
._4e{width:29.030400px;}
._7b{width:33.880200px;}
._58{width:59.762400px;}
._7a{width:71.280000px;}
._6c{width:79.008000px;}
._79{width:91.373400px;}
._5d{width:113.983200px;}
._5c{width:119.857200px;}
._6f{width:178.554000px;}
._57{width:185.043000px;}
._77{width:229.584000px;}
._5a{width:259.941000px;}
._59{width:288.074400px;}
._70{width:292.554000px;}
._74{width:302.614800px;}
._73{width:325.650000px;}
._6b{width:339.738600px;}
._76{width:388.728000px;}
._75{width:418.638000px;}
._68{width:420.043200px;}
._6d{width:421.562400px;}
._62{width:447.055200px;}
._6a{width:454.397400px;}
._65{width:465.037200px;}
._55{width:467.463000px;}
._5b{width:468.474600px;}
._71{width:475.662000px;}
._67{width:476.926800px;}
._5f{width:481.409400px;}
._6e{width:491.612400px;}
._5e{width:497.893800px;}
._61{width:508.423800px;}
._64{width:517.414800px;}
._78{width:542.860800px;}
._72{width:574.758000px;}
._56{width:647.526000px;}
._69{width:761.588400px;}
._66{width:827.793000px;}
._60{width:848.987400px;}
._63{width:856.854600px;}
.fc0{color:rgb(213,185,16);}
.fc2{color:rgb(217,182,26);}
.fc3{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc6{color:rgb(48,169,64);}
.fc5{color:rgb(61,123,199);}
.fcb{color:rgb(5,99,193);}
.fc1{color:rgb(0,60,120);}
.fc7{color:transparent;}
.fc8{color:rgb(210,32,39);}
.fcd{color:rgb(105,198,71);}
.fca{color:rgb(90,198,243);}
.fc9{color:rgb(47,92,179);}
.fcc{color:rgb(246,131,19);}
.fsc{font-size:34.980000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.fsb{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs1{font-size:186.000000px;}
.fs9{font-size:288.000000px;}
.fs0{font-size:300.000000px;}
.fs2{font-size:401.280000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.957000px;}
.y5{bottom:83.368950px;}
.y6{bottom:83.904450px;}
.y35{bottom:84.471900px;}
.y9f{bottom:85.007400px;}
.y5b{bottom:127.558950px;}
.y9a{bottom:127.559100px;}
.y1d3{bottom:127.559250px;}
.y34{bottom:133.155900px;}
.y5f{bottom:135.315750px;}
.ydb{bottom:139.596900px;}
.y22a{bottom:141.959100px;}
.y99{bottom:142.600050px;}
.y5a{bottom:148.011000px;}
.y255{bottom:149.719050px;}
.y5e{bottom:151.515750px;}
.y33{bottom:152.407800px;}
.y152{bottom:155.613150px;}
.y19f{bottom:156.803100px;}
.yda{bottom:157.596900px;}
.y98{bottom:160.600050px;}
.y14e{bottom:163.713150px;}
.y10e{bottom:163.807050px;}
.y1d2{bottom:164.294850px;}
.y254{bottom:165.919050px;}
.y5d{bottom:167.715750px;}
.y59{bottom:168.463050px;}
.y32{bottom:171.659850px;}
.y150{bottom:171.813150px;}
.y19e{bottom:174.803100px;}
.yd9{bottom:175.596900px;}
.y229{bottom:176.773650px;}
.y97{bottom:178.600050px;}
.y14d{bottom:179.913150px;}
.y10d{bottom:181.807050px;}
.y253{bottom:182.119050px;}
.y1d1{bottom:182.294850px;}
.y5c{bottom:183.915750px;}
.y14f{bottom:188.013150px;}
.y58{bottom:188.914950px;}
.y31{bottom:190.911750px;}
.y19d{bottom:192.803100px;}
.y228{bottom:192.973650px;}
.yd8{bottom:193.596900px;}
.y14c{bottom:196.113150px;}
.y96{bottom:196.600050px;}
.y252{bottom:198.318900px;}
.y10c{bottom:199.807050px;}
.y1d0{bottom:200.294850px;}
.y21f{bottom:201.073650px;}
.y151{bottom:204.213150px;}
.y227{bottom:209.173650px;}
.y57{bottom:209.366850px;}
.y30{bottom:210.163800px;}
.yd7{bottom:211.596900px;}
.y251{bottom:214.518900px;}
.y95{bottom:214.600050px;}
.y21d{bottom:217.273650px;}
.y10b{bottom:217.807050px;}
.y1cf{bottom:218.294850px;}
.y226{bottom:225.373650px;}
.y14b{bottom:226.041450px;}
.y2f{bottom:229.415700px;}
.yd6{bottom:229.596900px;}
.y56{bottom:229.818900px;}
.y19c{bottom:230.606100px;}
.y250{bottom:230.719050px;}
.y94{bottom:232.600050px;}
.y21c{bottom:233.473650px;}
.y147{bottom:234.141450px;}
.y10a{bottom:235.807050px;}
.y1ce{bottom:236.294850px;}
.y225{bottom:241.573650px;}
.y14a{bottom:242.241450px;}
.y8e{bottom:244.855350px;}
.y24f{bottom:246.919050px;}
.yd5{bottom:247.596900px;}
.y2e{bottom:248.667600px;}
.y21b{bottom:249.673650px;}
.y55{bottom:250.270800px;}
.y145{bottom:250.341450px;}
.y93{bottom:250.600050px;}
.y109{bottom:253.807050px;}
.y257{bottom:253.855950px;}
.y1cd{bottom:254.294850px;}
.y19b{bottom:255.290400px;}
.y224{bottom:257.773650px;}
.y149{bottom:258.441450px;}
.y24e{bottom:263.119050px;}
.y8d{bottom:265.307400px;}
.yd4{bottom:265.596900px;}
.y21a{bottom:265.873650px;}
.y146{bottom:266.541450px;}
.y2d{bottom:267.919650px;}
.y92{bottom:268.600050px;}
.y54{bottom:270.722850px;}
.y108{bottom:271.807050px;}
.y256{bottom:271.855950px;}
.y1cc{bottom:272.294850px;}
.y223{bottom:273.973650px;}
.y148{bottom:274.641450px;}
.y24d{bottom:279.318900px;}
.y19a{bottom:279.974700px;}
.y219{bottom:282.073650px;}
.yd3{bottom:283.596900px;}
.y8c{bottom:285.759300px;}
.y2c{bottom:287.171700px;}
.y222{bottom:290.173650px;}
.y1cb{bottom:290.294850px;}
.y53{bottom:291.174750px;}
.y91{bottom:295.104000px;}
.y24c{bottom:295.518900px;}
.y144{bottom:296.469900px;}
.y21e{bottom:298.273650px;}
.y107{bottom:298.311000px;}
.yd2{bottom:301.596900px;}
.y140{bottom:304.569900px;}
.y199{bottom:304.659000px;}
.y26e{bottom:305.730000px;}
.y8b{bottom:306.211200px;}
.y221{bottom:306.373650px;}
.y2b{bottom:306.423600px;}
.y1ca{bottom:308.294850px;}
.y52{bottom:311.626800px;}
.y24b{bottom:311.719050px;}
.y143{bottom:312.669900px;}
.y90{bottom:313.104000px;}
.yd1{bottom:319.596900px;}
.y13e{bottom:320.769900px;}
.y220{bottom:322.573650px;}
.y26d{bottom:325.530000px;}
.y2a{bottom:325.675500px;}
.y1c9{bottom:326.294850px;}
.y8a{bottom:326.663250px;}
.y24a{bottom:327.919050px;}
.y142{bottom:328.869900px;}
.y198{bottom:329.343300px;}
.y51{bottom:332.078700px;}
.y13f{bottom:336.969900px;}
.y106{bottom:337.911000px;}
.y8f{bottom:339.607950px;}
.y249{bottom:344.119050px;}
.y1c8{bottom:344.294850px;}
.y218{bottom:344.402100px;}
.y29{bottom:344.927550px;}
.y141{bottom:345.069900px;}
.y26c{bottom:345.330000px;}
.yd0{bottom:346.100850px;}
.y89{bottom:347.115150px;}
.y50{bottom:352.530600px;}
.y197{bottom:354.027600px;}
.y105{bottom:355.911000px;}
.y248{bottom:360.318900px;}
.y214{bottom:360.602100px;}
.y1c7{bottom:362.294850px;}
.y28{bottom:364.179450px;}
.y26b{bottom:365.130000px;}
.y13b{bottom:366.898200px;}
.y88{bottom:367.567200px;}
.y216{bottom:368.702100px;}
.y4f{bottom:372.982650px;}
.y13d{bottom:374.998200px;}
.y247{bottom:376.518900px;}
.y213{bottom:376.802100px;}
.y196{bottom:377.658900px;}
.y1c6{bottom:380.294850px;}
.y104{bottom:382.414950px;}
.y139{bottom:383.098200px;}
.y27{bottom:383.431500px;}
.y20d{bottom:384.902100px;}
.y26a{bottom:384.930000px;}
.y87{bottom:388.019100px;}
.ycf{bottom:389.902500px;}
.y13c{bottom:391.198200px;}
.y246{bottom:392.719050px;}
.y212{bottom:393.002100px;}
.y4e{bottom:393.434550px;}
.y1c5{bottom:398.294850px;}
.y13a{bottom:399.298200px;}
.y20c{bottom:401.102100px;}
.y26{bottom:402.683400px;}
.yce{bottom:407.902500px;}
.y86{bottom:408.471150px;}
.y245{bottom:408.919050px;}
.y211{bottom:409.202100px;}
.y195{bottom:413.658900px;}
.y4d{bottom:413.886600px;}
.y1c4{bottom:416.294850px;}
.y20b{bottom:417.302100px;}
.y138{bottom:421.501650px;}
.y25{bottom:421.935450px;}
.y103{bottom:422.014950px;}
.y244{bottom:425.119050px;}
.y210{bottom:425.402100px;}
.ycd{bottom:425.902500px;}
.y85{bottom:428.923050px;}
.y194{bottom:431.658900px;}
.y263{bottom:432.045300px;}
.y20a{bottom:433.502100px;}
.y1c3{bottom:434.294850px;}
.y4c{bottom:434.338500px;}
.y102{bottom:440.014950px;}
.y24{bottom:441.187350px;}
.y243{bottom:441.318900px;}
.y20f{bottom:441.602100px;}
.y84{bottom:449.375100px;}
.y193{bottom:449.658900px;}
.y215{bottom:449.702100px;}
.y262{bottom:451.845300px;}
.y1c2{bottom:452.294850px;}
.ycc{bottom:452.406450px;}
.y4b{bottom:454.790550px;}
.y137{bottom:457.501650px;}
.y242{bottom:457.519050px;}
.y20e{bottom:457.802100px;}
.y101{bottom:458.014950px;}
.y23{bottom:460.439400px;}
.y192{bottom:467.658900px;}
.y83{bottom:469.827000px;}
.y1c1{bottom:470.294850px;}
.ycb{bottom:470.406450px;}
.y261{bottom:471.645300px;}
.y241{bottom:473.719050px;}
.y217{bottom:474.002100px;}
.y4a{bottom:475.242450px;}
.y136{bottom:475.501650px;}
.y100{bottom:476.014950px;}
.y22{bottom:479.691300px;}
.y1c0{bottom:488.294850px;}
.yca{bottom:488.406450px;}
.y240{bottom:489.919050px;}
.y82{bottom:490.279050px;}
.y135{bottom:493.501650px;}
.yff{bottom:494.014950px;}
.y49{bottom:495.694500px;}
.y203{bottom:495.830400px;}
.y21{bottom:498.943200px;}
.y1ff{bottom:503.930550px;}
.y191{bottom:504.034050px;}
.y23f{bottom:506.119050px;}
.y1bf{bottom:506.294850px;}
.yc9{bottom:506.406450px;}
.y81{bottom:510.730950px;}
.y134{bottom:511.501650px;}
.yfe{bottom:512.014950px;}
.y209{bottom:512.030400px;}
.y202{bottom:512.030550px;}
.y18d{bottom:512.134050px;}
.y48{bottom:516.146400px;}
.y20{bottom:518.195250px;}
.y269{bottom:518.760750px;}
.y1fe{bottom:520.130550px;}
.y190{bottom:520.234050px;}
.y23e{bottom:522.318900px;}
.yc8{bottom:524.406450px;}
.y208{bottom:528.230400px;}
.y1f9{bottom:528.230550px;}
.y18b{bottom:528.334050px;}
.y133{bottom:529.501650px;}
.yfd{bottom:530.014950px;}
.y80{bottom:531.182850px;}
.y1be{bottom:532.798800px;}
.y1fd{bottom:536.330550px;}
.y18f{bottom:536.434050px;}
.y47{bottom:536.598450px;}
.y1f{bottom:537.447300px;}
.y23d{bottom:538.519050px;}
.y268{bottom:538.560750px;}
.y207{bottom:544.430400px;}
.y1f8{bottom:544.430550px;}
.y18c{bottom:544.534050px;}
.y132{bottom:547.501650px;}
.yfc{bottom:548.014950px;}
.y7f{bottom:551.634900px;}
.y1fc{bottom:552.530550px;}
.y18e{bottom:552.634050px;}
.yc7{bottom:553.670550px;}
.y23c{bottom:554.719050px;}
.y1e{bottom:556.699200px;}
.y46{bottom:557.050350px;}
.y267{bottom:558.360600px;}
.y206{bottom:560.630400px;}
.y1f7{bottom:560.630550px;}
.y131{bottom:565.501650px;}
.yfb{bottom:566.014950px;}
.y1fb{bottom:568.730550px;}
.y23b{bottom:570.919050px;}
.yc6{bottom:571.670550px;}
.y7e{bottom:572.086800px;}
.y1bd{bottom:572.398800px;}
.y18a{bottom:574.462350px;}
.y1d{bottom:575.951100px;}
.y205{bottom:576.830400px;}
.y201{bottom:576.830550px;}
.y45{bottom:577.502400px;}
.y266{bottom:578.160750px;}
.y188{bottom:582.562350px;}
.y130{bottom:583.501650px;}
.yfa{bottom:584.014950px;}
.y1fa{bottom:584.930550px;}
.y23a{bottom:587.119050px;}
.y1bc{bottom:590.398800px;}
.y185{bottom:590.662350px;}
.y204{bottom:593.030400px;}
.y200{bottom:593.030550px;}
.y1c{bottom:595.203150px;}
.y44{bottom:597.954300px;}
.y265{bottom:597.960600px;}
.yc5{bottom:598.174500px;}
.y187{bottom:598.762350px;}
.y12f{bottom:601.501650px;}
.yf9{bottom:602.014950px;}
.y239{bottom:603.318900px;}
.y184{bottom:606.862350px;}
.y1bb{bottom:608.398800px;}
.y1b{bottom:614.455050px;}
.y1f6{bottom:614.858850px;}
.y186{bottom:614.962350px;}
.yc4{bottom:616.174500px;}
.y264{bottom:617.760750px;}
.y43{bottom:618.406200px;}
.y12e{bottom:619.501650px;}
.y238{bottom:619.519050px;}
.yf8{bottom:620.014950px;}
.y189{bottom:623.062350px;}
.y7d{bottom:624.187350px;}
.y1ba{bottom:626.398800px;}
.y1f4{bottom:631.058850px;}
.y1a{bottom:633.707100px;}
.yc3{bottom:634.174500px;}
.y237{bottom:635.719050px;}
.y12d{bottom:637.501650px;}
.yf7{bottom:638.014950px;}
.y42{bottom:638.858250px;}
.y1ed{bottom:639.158850px;}
.y7c{bottom:643.439250px;}
.y1b9{bottom:644.398800px;}
.y183{bottom:644.890800px;}
.y1f3{bottom:647.258850px;}
.y236{bottom:651.919050px;}
.yc2{bottom:652.174500px;}
.y19{bottom:652.959000px;}
.y180{bottom:652.990650px;}
.y1eb{bottom:655.358850px;}
.y12c{bottom:655.501650px;}
.yf6{bottom:656.014950px;}
.y2{bottom:657.200850px;}
.y41{bottom:659.310150px;}
.y17e{bottom:661.090650px;}
.y1b8{bottom:662.398800px;}
.y260{bottom:662.461950px;}
.y7b{bottom:662.691300px;}
.y1f2{bottom:663.458850px;}
.y17d{bottom:669.190650px;}
.y1ea{bottom:671.558850px;}
.y18{bottom:672.211050px;}
.y12b{bottom:673.501650px;}
.yf5{bottom:674.014950px;}
.y182{bottom:677.290800px;}
.y1f1{bottom:679.658850px;}
.y40{bottom:679.762200px;}
.y1b7{bottom:680.398800px;}
.yc1{bottom:680.471100px;}
.y7a{bottom:681.943200px;}
.y25f{bottom:682.261950px;}
.y17f{bottom:685.390800px;}
.y235{bottom:686.119050px;}
.y1e9{bottom:687.758850px;}
.y17{bottom:691.462950px;}
.y12a{bottom:691.501650px;}
.yf4{bottom:692.014950px;}
.y181{bottom:693.490650px;}
.y1f0{bottom:695.858850px;}
.y1b6{bottom:698.398800px;}
.yc0{bottom:698.471100px;}
.y3f{bottom:700.214100px;}
.y79{bottom:701.195250px;}
.y25e{bottom:702.061950px;}
.y1e8{bottom:703.958850px;}
.y234{bottom:704.119050px;}
.y129{bottom:709.501650px;}
.yf3{bottom:710.014950px;}
.y16{bottom:710.714850px;}
.y1ef{bottom:712.058850px;}
.y17c{bottom:715.319100px;}
.y1ec{bottom:720.158850px;}
.y78{bottom:720.447150px;}
.y3e{bottom:720.666150px;}
.y25d{bottom:721.861950px;}
.y233{bottom:722.119050px;}
.y17a{bottom:723.419100px;}
.ybf{bottom:724.975050px;}
.y128{bottom:727.501650px;}
.yf2{bottom:728.014950px;}
.y1ee{bottom:728.258850px;}
.y15{bottom:729.966900px;}
.y177{bottom:731.519100px;}
.y1b5{bottom:734.773800px;}
.y176{bottom:739.619100px;}
.y77{bottom:739.699200px;}
.y232{bottom:740.119050px;}
.y3d{bottom:741.118050px;}
.ybe{bottom:742.975050px;}
.y1f5{bottom:744.458850px;}
.y127{bottom:745.501650px;}
.yf1{bottom:746.014950px;}
.y4{bottom:746.266650px;}
.y178{bottom:747.719100px;}
.y14{bottom:749.218800px;}
.y179{bottom:755.819100px;}
.y1b4{bottom:756.602100px;}
.y259{bottom:757.857000px;}
.y231{bottom:758.119050px;}
.y76{bottom:758.951100px;}
.yb1{bottom:760.489950px;}
.ybd{bottom:760.975050px;}
.y3c{bottom:761.570100px;}
.y126{bottom:763.501650px;}
.y17b{bottom:763.919100px;}
.yf0{bottom:764.014950px;}
.y1e7{bottom:766.287300px;}
.y13{bottom:768.470850px;}
.y3{bottom:772.562400px;}
.y1e1{bottom:774.387300px;}
.yb0{bottom:774.890100px;}
.y230{bottom:776.119050px;}
.y75{bottom:778.203150px;}
.y1b3{bottom:778.430550px;}
.ybc{bottom:778.975050px;}
.y125{bottom:781.501650px;}
.yef{bottom:782.014950px;}
.y3b{bottom:782.022000px;}
.y1e6{bottom:782.487300px;}
.y258{bottom:784.857000px;}
.y175{bottom:785.747400px;}
.y12{bottom:787.722900px;}
.y1df{bottom:790.587300px;}
.yaf{bottom:791.390100px;}
.y173{bottom:793.847400px;}
.y22f{bottom:794.119050px;}
.y74{bottom:797.455050px;}
.y1e5{bottom:798.687300px;}
.y124{bottom:799.501650px;}
.yee{bottom:800.014950px;}
.y1b2{bottom:800.258850px;}
.y170{bottom:801.947550px;}
.y3a{bottom:802.474050px;}
.y1de{bottom:806.787300px;}
.y11{bottom:806.974800px;}
.y16f{bottom:810.047400px;}
.y22e{bottom:812.119050px;}
.y1d9{bottom:814.887300px;}
.yae{bottom:816.393900px;}
.y73{bottom:816.707100px;}
.y123{bottom:817.501650px;}
.yed{bottom:818.014950px;}
.y171{bottom:818.147400px;}
.y1b1{bottom:822.087300px;}
.y39{bottom:822.925950px;}
.y1dd{bottom:822.987300px;}
.y10{bottom:826.226700px;}
.y172{bottom:826.247400px;}
.y22d{bottom:830.119050px;}
.yad{bottom:830.794050px;}
.y1d8{bottom:831.087300px;}
.y25c{bottom:833.229900px;}
.y174{bottom:834.347400px;}
.y122{bottom:835.501650px;}
.y72{bottom:835.959000px;}
.yec{bottom:836.014950px;}
.y1dc{bottom:839.187300px;}
.y38{bottom:843.378000px;}
.y1b0{bottom:843.915600px;}
.yf{bottom:845.478750px;}
.y1d7{bottom:847.287300px;}
.yac{bottom:847.294050px;}
.y22c{bottom:848.119050px;}
.y121{bottom:853.501650px;}
.y71{bottom:855.210900px;}
.y1db{bottom:855.387300px;}
.y16e{bottom:856.175850px;}
.ybb{bottom:858.037500px;}
.yeb{bottom:862.518900px;}
.y25b{bottom:863.334000px;}
.y1e4{bottom:863.487300px;}
.y37{bottom:863.829900px;}
.y16a{bottom:864.275850px;}
.y1af{bottom:866.119050px;}
.y120{bottom:871.501650px;}
.y1da{bottom:871.587300px;}
.yab{bottom:872.298000px;}
.y16d{bottom:872.375850px;}
.yc{bottom:874.342950px;}
.y70{bottom:874.462950px;}
.yba{bottom:877.837500px;}
.y1e3{bottom:879.687300px;}
.y167{bottom:880.475850px;}
.y22b{bottom:884.119050px;}
.y36{bottom:884.281800px;}
.yaa{bottom:886.698000px;}
.y1e0{bottom:887.787300px;}
.y166{bottom:888.575850px;}
.yb{bottom:892.342950px;}
.y25a{bottom:893.437800px;}
.y6f{bottom:893.714850px;}
.y1e2{bottom:895.887300px;}
.y168{bottom:896.675850px;}
.yb9{bottom:897.637500px;}
.yea{bottom:902.118900px;}
.y1ae{bottom:902.119050px;}
.ya9{bottom:903.198000px;}
.y16c{bottom:904.775850px;}
.y11f{bottom:908.251650px;}
.y169{bottom:912.875850px;}
.yb8{bottom:917.437500px;}
.y1d5{bottom:917.715600px;}
.ya{bottom:918.846900px;}
.ya8{bottom:919.698000px;}
.ye9{bottom:920.118900px;}
.y1ad{bottom:920.119050px;}
.y16b{bottom:920.975850px;}
.y11e{bottom:924.451650px;}
.y1d4{bottom:925.815600px;}
.y6e{bottom:933.495300px;}
.y1d6{bottom:933.915600px;}
.y9{bottom:936.846900px;}
.ye8{bottom:938.118900px;}
.y1ac{bottom:938.119050px;}
.y165{bottom:942.804150px;}
.ya7{bottom:944.701950px;}
.y11d{bottom:946.279950px;}
.y6d{bottom:952.747350px;}
.y11b{bottom:954.379950px;}
.yb7{bottom:955.237500px;}
.ye7{bottom:956.118900px;}
.y1ab{bottom:956.119050px;}
.ye{bottom:957.566700px;}
.y163{bottom:959.004150px;}
.ya6{bottom:959.101800px;}
.y11a{bottom:962.479950px;}
.y8{bottom:963.350850px;}
.y6c{bottom:971.999250px;}
.ye6{bottom:974.118900px;}
.y1aa{bottom:974.119050px;}
.yb6{bottom:975.037500px;}
.y161{bottom:975.204300px;}
.y11c{bottom:978.679950px;}
.yd{bottom:979.166700px;}
.y7{bottom:981.350850px;}
.ya5{bottom:984.105900px;}
.y6b{bottom:991.251300px;}
.y162{bottom:991.404300px;}
.ye5{bottom:992.118900px;}
.y1a9{bottom:992.119050px;}
.yb5{bottom:994.837500px;}
.ya4{bottom:998.505900px;}
.y119{bottom:1000.508400px;}
.y164{bottom:1007.604150px;}
.ye4{bottom:1010.118900px;}
.y1a8{bottom:1010.119050px;}
.y6a{bottom:1010.503200px;}
.ya3{bottom:1015.005900px;}
.y118{bottom:1016.708250px;}
.ye3{bottom:1028.118900px;}
.y1a7{bottom:1028.119050px;}
.y15e{bottom:1029.432600px;}
.y69{bottom:1029.755100px;}
.y160{bottom:1037.532600px;}
.y117{bottom:1038.536700px;}
.ya2{bottom:1040.009850px;}
.y15d{bottom:1045.632600px;}
.ye2{bottom:1046.118900px;}
.y1a6{bottom:1046.119050px;}
.y116{bottom:1046.636700px;}
.y68{bottom:1049.007150px;}
.yb4{bottom:1050.637500px;}
.y159{bottom:1053.732600px;}
.ya1{bottom:1054.409850px;}
.y15c{bottom:1061.832600px;}
.ye1{bottom:1064.118900px;}
.y1a5{bottom:1064.119050px;}
.y67{bottom:1068.259050px;}
.y158{bottom:1069.932600px;}
.y113{bottom:1076.565150px;}
.y15b{bottom:1078.032600px;}
.ye0{bottom:1082.118900px;}
.y1a4{bottom:1082.119050px;}
.y115{bottom:1084.665000px;}
.y15f{bottom:1086.132600px;}
.y66{bottom:1087.511100px;}
.y111{bottom:1092.765150px;}
.yb3{bottom:1093.837500px;}
.y15a{bottom:1094.232600px;}
.ydf{bottom:1100.118900px;}
.y1a3{bottom:1100.119050px;}
.y114{bottom:1100.865000px;}
.y65{bottom:1106.763000px;}
.y112{bottom:1108.965150px;}
.ya0{bottom:1109.035500px;}
.y155{bottom:1116.435900px;}
.yde{bottom:1118.118900px;}
.y1a2{bottom:1118.119050px;}
.y157{bottom:1124.535900px;}
.y64{bottom:1126.015050px;}
.y110{bottom:1130.793450px;}
.y153{bottom:1132.635900px;}
.ydd{bottom:1136.118900px;}
.y1a1{bottom:1136.119050px;}
.yb2{bottom:1137.037500px;}
.y156{bottom:1140.735900px;}
.y63{bottom:1145.267100px;}
.y154{bottom:1148.835900px;}
.y10f{bottom:1153.371900px;}
.ydc{bottom:1154.118900px;}
.y1a0{bottom:1154.119050px;}
.y62{bottom:1164.518850px;}
.y61{bottom:1183.770900px;}
.y9e{bottom:1186.917600px;}
.y9b{bottom:1201.511100px;}
.y60{bottom:1203.022950px;}
.y9d{bottom:1203.117600px;}
.y9c{bottom:1219.317600px;}
.h14{height:34.945312px;}
.h21{height:34.992188px;}
.h7{height:39.312000px;}
.ha{height:39.313477px;}
.hb{height:39.366211px;}
.h6{height:39.474000px;}
.hc{height:41.454000px;}
.hd{height:42.213867px;}
.h8{height:43.681641px;}
.h1a{height:43.740234px;}
.h15{height:46.116211px;}
.h1c{height:46.904297px;}
.h19{height:48.049805px;}
.he{height:48.114258px;}
.hf{height:51.594727px;}
.h1d{height:51.972656px;}
.h9{height:52.417969px;}
.h24{height:52.488281px;}
.h11{height:52.560000px;}
.h13{height:57.169922px;}
.h23{height:60.996094px;}
.h1b{height:62.367188px;}
.h5{height:69.984375px;}
.h22{height:71.713477px;}
.h1e{height:71.766211px;}
.h20{height:71.766811px;}
.h18{height:100.617188px;}
.h1f{height:104.165611px;}
.h17{height:124.734375px;}
.h3{height:131.688000px;}
.h10{height:155.917969px;}
.h16{height:155.918569px;}
.h12{height:201.234375px;}
.h2{height:215.625000px;}
.h4{height:313.695937px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:16.751850px;}
.x4{left:22.124700px;}
.x2{left:46.743600px;}
.xb{left:68.031450px;}
.x1e{left:72.776850px;}
.x3b{left:74.406450px;}
.x41{left:81.906150px;}
.x50{left:88.116150px;}
.x53{left:93.945150px;}
.x52{left:94.968300px;}
.x7{left:97.795200px;}
.xc{left:104.598450px;}
.xd{left:106.299150px;}
.x6{left:108.374100px;}
.x1a{left:109.479750px;}
.x1d{left:110.551200px;}
.x23{left:127.558950px;}
.x5{left:142.368300px;}
.x40{left:150.256350px;}
.x54{left:168.038400px;}
.x3f{left:169.510200px;}
.x3c{left:173.556450px;}
.x4f{left:178.582650px;}
.x47{left:186.156450px;}
.x34{left:188.911800px;}
.x57{left:198.173850px;}
.x35{left:202.049250px;}
.x2f{left:203.320200px;}
.x1f{left:208.346400px;}
.x33{left:213.298050px;}
.x1c{left:215.016000px;}
.x27{left:218.675550px;}
.x42{left:225.899100px;}
.x28{left:231.813000px;}
.x26{left:243.061950px;}
.x24{left:252.069600px;}
.x4d{left:253.582200px;}
.x4a{left:256.507650px;}
.x19{left:280.629900px;}
.x51{left:299.518350px;}
.x55{left:315.243300px;}
.x3d{left:317.556450px;}
.x37{left:330.900600px;}
.x4b{left:338.333850px;}
.x38{left:341.760600px;}
.x4e{left:343.725000px;}
.x36{left:346.276050px;}
.x30{left:347.320200px;}
.x48{left:352.656450px;}
.x43{left:356.854200px;}
.x2a{left:360.664500px;}
.x56{left:369.487800px;}
.x2b{left:371.524500px;}
.x29{left:376.039800px;}
.x44{left:424.729950px;}
.x4c{left:431.956950px;}
.x9{left:455.679750px;}
.x3e{left:456.756450px;}
.x39{left:482.547750px;}
.x31{left:486.520200px;}
.x25{left:493.621200px;}
.xa{left:511.976100px;}
.x2c{left:524.311950px;}
.x49{left:561.307050px;}
.x45{left:565.141650px;}
.x46{left:569.156100px;}
.x12{left:581.778450px;}
.xe{left:596.738100px;}
.x3a{left:599.394000px;}
.x11{left:605.154750px;}
.x14{left:611.128800px;}
.x13{left:612.957600px;}
.x17{left:615.692850px;}
.xf{left:617.239800px;}
.x16{left:618.444150px;}
.x8{left:621.432750px;}
.x32{left:626.620200px;}
.x2d{left:629.157900px;}
.x10{left:634.041900px;}
.x15{left:652.837950px;}
.x20{left:667.093350px;}
.x21{left:668.288400px;}
.x22{left:679.668600px;}
.x2e{left:696.677550px;}
.x1{left:724.371150px;}
.x1b{left:776.033700px;}
.x18{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v3{vertical-align:17.760000pt;}
.v2{vertical-align:28.800000pt;}
.lsa{letter-spacing:-1.466667pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.008000pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.ls7{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls6{letter-spacing:25.600000pt;}
.ls4{letter-spacing:32.000000pt;}
.ws9{word-spacing:-87.792533pt;}
.wsb{word-spacing:-81.920000pt;}
.ws14{word-spacing:-64.426133pt;}
.wsa{word-spacing:-32.160000pt;}
.ws5{word-spacing:-22.944000pt;}
.ws96{word-spacing:-17.792000pt;}
.ws29{word-spacing:-14.826667pt;}
.ws15{word-spacing:-13.344000pt;}
.wsc{word-spacing:-12.906667pt;}
.ws1e{word-spacing:-12.800000pt;}
.ws6{word-spacing:-11.520000pt;}
.ws10{word-spacing:-9.386667pt;}
.ws11{word-spacing:-8.506667pt;}
.wsf{word-spacing:-6.805333pt;}
.ws4e{word-spacing:-6.293333pt;}
.ws44{word-spacing:-5.333333pt;}
.ws7b{word-spacing:-5.226667pt;}
.ws91{word-spacing:-4.656000pt;}
.ws45{word-spacing:-4.426667pt;}
.ws35{word-spacing:-4.000000pt;}
.wse{word-spacing:-3.813333pt;}
.ws97{word-spacing:-3.520000pt;}
.ws12{word-spacing:-3.461333pt;}
.wsd{word-spacing:-3.285333pt;}
.ws7c{word-spacing:-2.933333pt;}
.ws5f{word-spacing:-2.560000pt;}
.ws63{word-spacing:-2.400000pt;}
.ws1b{word-spacing:-2.352000pt;}
.ws2b{word-spacing:-2.293333pt;}
.ws4b{word-spacing:-2.133333pt;}
.ws1{word-spacing:-1.973333pt;}
.ws7d{word-spacing:-1.920000pt;}
.ws19{word-spacing:-1.872000pt;}
.ws2{word-spacing:-1.776000pt;}
.ws61{word-spacing:-1.706667pt;}
.ws71{word-spacing:-1.440000pt;}
.ws82{word-spacing:-1.333333pt;}
.ws3{word-spacing:-0.864000pt;}
.ws75{word-spacing:-0.853333pt;}
.ws88{word-spacing:-0.746667pt;}
.ws94{word-spacing:-0.672000pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws90{word-spacing:-0.288000pt;}
.ws5e{word-spacing:-0.240000pt;}
.ws8a{word-spacing:-0.160000pt;}
.ws57{word-spacing:-0.144000pt;}
.ws84{word-spacing:-0.096000pt;}
.ws5d{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws80{word-spacing:0.266667pt;}
.ws47{word-spacing:0.693333pt;}
.ws27{word-spacing:0.906667pt;}
.ws86{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.226667pt;}
.ws1d{word-spacing:1.440000pt;}
.ws98{word-spacing:1.466667pt;}
.ws2f{word-spacing:1.600000pt;}
.ws46{word-spacing:1.653333pt;}
.ws89{word-spacing:1.866667pt;}
.ws3c{word-spacing:1.920000pt;}
.ws24{word-spacing:2.080000pt;}
.ws31{word-spacing:2.186667pt;}
.ws56{word-spacing:2.453333pt;}
.ws95{word-spacing:2.592000pt;}
.ws43{word-spacing:2.720000pt;}
.ws6c{word-spacing:3.093333pt;}
.ws67{word-spacing:3.573333pt;}
.ws93{word-spacing:3.648000pt;}
.ws68{word-spacing:4.053333pt;}
.ws4c{word-spacing:4.373333pt;}
.ws8b{word-spacing:4.586667pt;}
.ws41{word-spacing:4.640000pt;}
.ws6e{word-spacing:4.693333pt;}
.ws30{word-spacing:5.013333pt;}
.ws1c{word-spacing:5.184000pt;}
.ws32{word-spacing:5.280000pt;}
.ws51{word-spacing:5.440000pt;}
.ws64{word-spacing:5.493333pt;}
.ws18{word-spacing:5.568000pt;}
.ws65{word-spacing:5.653333pt;}
.ws6a{word-spacing:5.760000pt;}
.ws8d{word-spacing:5.973333pt;}
.ws76{word-spacing:6.133333pt;}
.ws23{word-spacing:6.186667pt;}
.ws53{word-spacing:6.293333pt;}
.ws17{word-spacing:6.624000pt;}
.ws22{word-spacing:6.826667pt;}
.ws85{word-spacing:6.869333pt;}
.ws6b{word-spacing:7.306667pt;}
.ws2c{word-spacing:7.413333pt;}
.ws6d{word-spacing:7.626667pt;}
.ws52{word-spacing:7.893333pt;}
.ws62{word-spacing:8.000000pt;}
.ws16{word-spacing:8.016000pt;}
.ws36{word-spacing:8.053333pt;}
.ws7f{word-spacing:8.320000pt;}
.ws3f{word-spacing:8.373333pt;}
.ws6f{word-spacing:8.480000pt;}
.ws4a{word-spacing:8.640000pt;}
.ws8f{word-spacing:8.832000pt;}
.ws20{word-spacing:8.906667pt;}
.ws77{word-spacing:8.960000pt;}
.ws55{word-spacing:9.226667pt;}
.ws87{word-spacing:9.280000pt;}
.ws33{word-spacing:9.386667pt;}
.ws1f{word-spacing:9.706667pt;}
.ws92{word-spacing:9.744000pt;}
.ws39{word-spacing:9.920000pt;}
.ws37{word-spacing:9.973333pt;}
.ws4d{word-spacing:10.240000pt;}
.ws2e{word-spacing:10.346667pt;}
.ws4f{word-spacing:11.200000pt;}
.ws72{word-spacing:11.253333pt;}
.ws34{word-spacing:11.360000pt;}
.ws74{word-spacing:11.520000pt;}
.ws26{word-spacing:11.626667pt;}
.ws60{word-spacing:11.893333pt;}
.ws38{word-spacing:12.213333pt;}
.ws73{word-spacing:12.693333pt;}
.ws70{word-spacing:12.800000pt;}
.ws66{word-spacing:13.226667pt;}
.ws7e{word-spacing:13.440000pt;}
.ws3e{word-spacing:13.866667pt;}
.ws7a{word-spacing:14.186667pt;}
.ws21{word-spacing:15.466667pt;}
.ws50{word-spacing:16.053333pt;}
.ws69{word-spacing:16.266667pt;}
.ws83{word-spacing:16.320000pt;}
.ws7{word-spacing:18.288000pt;}
.ws78{word-spacing:18.773333pt;}
.ws40{word-spacing:19.093333pt;}
.ws79{word-spacing:19.520000pt;}
.ws8e{word-spacing:19.946667pt;}
.ws49{word-spacing:20.160000pt;}
.ws2a{word-spacing:21.813333pt;}
.ws3a{word-spacing:22.400000pt;}
.ws54{word-spacing:22.453333pt;}
.ws42{word-spacing:23.893333pt;}
.ws1a{word-spacing:25.824000pt;}
.ws2d{word-spacing:25.866667pt;}
.ws8c{word-spacing:26.720000pt;}
.ws81{word-spacing:32.373333pt;}
.ws25{word-spacing:33.120000pt;}
.ws59{word-spacing:51.093333pt;}
.ws8{word-spacing:72.015467pt;}
.ws5a{word-spacing:75.093333pt;}
.ws28{word-spacing:82.270933pt;}
.ws4{word-spacing:90.567467pt;}
.ws5b{word-spacing:91.077333pt;}
.ws13{word-spacing:95.327467pt;}
.ws58{word-spacing:165.813333pt;}
.ws48{word-spacing:292.450667pt;}
.ws5c{word-spacing:384.038400pt;}
._11{margin-left:-1837.861333pt;}
._37{margin-left:-1672.881067pt;}
._2c{margin-left:-1541.436800pt;}
._2e{margin-left:-1530.045867pt;}
._3e{margin-left:-1527.938133pt;}
._41{margin-left:-1510.117867pt;}
._35{margin-left:-1420.449600pt;}
._39{margin-left:-1365.279467pt;}
._26{margin-left:-1310.144000pt;}
._30{margin-left:-1249.969600pt;}
._28{margin-left:-1198.133867pt;}
._9{margin-left:-1195.079467pt;}
._31{margin-left:-1168.578667pt;}
._18{margin-left:-1131.176000pt;}
._f{margin-left:-1100.880533pt;}
._33{margin-left:-1077.694400pt;}
._2a{margin-left:-1061.881067pt;}
._13{margin-left:-1008.277867pt;}
._d{margin-left:-996.753600pt;}
._2b{margin-left:-965.520000pt;}
._1d{margin-left:-950.126933pt;}
._15{margin-left:-946.896000pt;}
._3c{margin-left:-939.863467pt;}
._a{margin-left:-936.240000pt;}
._1f{margin-left:-914.928000pt;}
._b{margin-left:-887.306667pt;}
._16{margin-left:-845.472000pt;}
._36{margin-left:-833.461333pt;}
._24{margin-left:-824.229867pt;}
._12{margin-left:-821.568000pt;}
._22{margin-left:-813.600000pt;}
._19{margin-left:-797.520000pt;}
._40{margin-left:-784.661333pt;}
._80{margin-left:-782.528000pt;}
._21{margin-left:-780.720000pt;}
._14{margin-left:-765.504000pt;}
._3d{margin-left:-762.912000pt;}
._1b{margin-left:-756.917333pt;}
._32{margin-left:-746.928000pt;}
._1c{margin-left:-745.477333pt;}
._e{margin-left:-722.736000pt;}
._17{margin-left:-708.384000pt;}
._23{margin-left:-698.880000pt;}
._1e{margin-left:-695.029333pt;}
._20{margin-left:-689.461333pt;}
._34{margin-left:-682.229333pt;}
._42{margin-left:-677.472000pt;}
._25{margin-left:-644.149333pt;}
._3b{margin-left:-626.880000pt;}
._2d{margin-left:-618.864000pt;}
._8{margin-left:-616.224000pt;}
._81{margin-left:-597.531733pt;}
._7c{margin-left:-576.128000pt;}
._3f{margin-left:-541.632000pt;}
._7{margin-left:-508.320000pt;}
._7f{margin-left:-504.854933pt;}
._43{margin-left:-500.657600pt;}
._7d{margin-left:-448.160533pt;}
._1a{margin-left:-426.101333pt;}
._2f{margin-left:-392.112000pt;}
._10{margin-left:-354.768000pt;}
._29{margin-left:-346.085333pt;}
._3a{margin-left:-336.144000pt;}
._38{margin-left:-325.440000pt;}
._7e{margin-left:-320.000000pt;}
._27{margin-left:-234.720000pt;}
._4d{margin-left:-13.190933pt;}
._3{margin-left:-11.408000pt;}
._44{margin-left:-9.600000pt;}
._4{margin-left:-8.597333pt;}
._4b{margin-left:-7.372800pt;}
._c{margin-left:-6.216000pt;}
._45{margin-left:-5.280533pt;}
._4a{margin-left:-4.353067pt;}
._0{margin-left:-3.306667pt;}
._5{margin-left:-2.170667pt;}
._6{margin-left:-0.927467pt;}
._49{width:0.902400pt;}
._1{width:2.149333pt;}
._4c{width:3.191467pt;}
._2{width:4.282133pt;}
._52{width:5.275200pt;}
._50{width:6.372800pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._51{width:11.132267pt;}
._53{width:12.865067pt;}
._54{width:13.795200pt;}
._4f{width:17.375467pt;}
._46{width:18.305067pt;}
._4e{width:25.804800pt;}
._7b{width:30.115733pt;}
._58{width:53.122133pt;}
._7a{width:63.360000pt;}
._6c{width:70.229333pt;}
._79{width:81.220800pt;}
._5d{width:101.318400pt;}
._5c{width:106.539733pt;}
._6f{width:158.714667pt;}
._57{width:164.482667pt;}
._77{width:204.074667pt;}
._5a{width:231.058667pt;}
._59{width:256.066133pt;}
._70{width:260.048000pt;}
._74{width:268.990933pt;}
._73{width:289.466667pt;}
._6b{width:301.989867pt;}
._76{width:345.536000pt;}
._75{width:372.122667pt;}
._68{width:373.371733pt;}
._6d{width:374.722133pt;}
._62{width:397.382400pt;}
._6a{width:403.908800pt;}
._65{width:413.366400pt;}
._55{width:415.522667pt;}
._5b{width:416.421867pt;}
._71{width:422.810667pt;}
._67{width:423.934933pt;}
._5f{width:427.919467pt;}
._6e{width:436.988800pt;}
._5e{width:442.572267pt;}
._61{width:451.932267pt;}
._64{width:459.924267pt;}
._78{width:482.542933pt;}
._72{width:510.896000pt;}
._56{width:575.578667pt;}
._69{width:676.967467pt;}
._66{width:735.816000pt;}
._60{width:754.655467pt;}
._63{width:761.648533pt;}
.fsc{font-size:31.093333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.fsb{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs1{font-size:165.333333pt;}
.fs9{font-size:256.000000pt;}
.fs0{font-size:266.666667pt;}
.fs2{font-size:356.693333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.850667pt;}
.y5{bottom:74.105733pt;}
.y6{bottom:74.581733pt;}
.y35{bottom:75.086133pt;}
.y9f{bottom:75.562133pt;}
.y5b{bottom:113.385733pt;}
.y9a{bottom:113.385867pt;}
.y1d3{bottom:113.386000pt;}
.y34{bottom:118.360800pt;}
.y5f{bottom:120.280667pt;}
.ydb{bottom:124.086133pt;}
.y22a{bottom:126.185867pt;}
.y99{bottom:126.755600pt;}
.y5a{bottom:131.565333pt;}
.y255{bottom:133.083600pt;}
.y5e{bottom:134.680667pt;}
.y33{bottom:135.473600pt;}
.y152{bottom:138.322800pt;}
.y19f{bottom:139.380533pt;}
.yda{bottom:140.086133pt;}
.y98{bottom:142.755600pt;}
.y14e{bottom:145.522800pt;}
.y10e{bottom:145.606267pt;}
.y1d2{bottom:146.039867pt;}
.y254{bottom:147.483600pt;}
.y5d{bottom:149.080667pt;}
.y59{bottom:149.744933pt;}
.y32{bottom:152.586533pt;}
.y150{bottom:152.722800pt;}
.y19e{bottom:155.380533pt;}
.yd9{bottom:156.086133pt;}
.y229{bottom:157.132133pt;}
.y97{bottom:158.755600pt;}
.y14d{bottom:159.922800pt;}
.y10d{bottom:161.606267pt;}
.y253{bottom:161.883600pt;}
.y1d1{bottom:162.039867pt;}
.y5c{bottom:163.480667pt;}
.y14f{bottom:167.122800pt;}
.y58{bottom:167.924400pt;}
.y31{bottom:169.699333pt;}
.y19d{bottom:171.380533pt;}
.y228{bottom:171.532133pt;}
.yd8{bottom:172.086133pt;}
.y14c{bottom:174.322800pt;}
.y96{bottom:174.755600pt;}
.y252{bottom:176.283467pt;}
.y10c{bottom:177.606267pt;}
.y1d0{bottom:178.039867pt;}
.y21f{bottom:178.732133pt;}
.y151{bottom:181.522800pt;}
.y227{bottom:185.932133pt;}
.y57{bottom:186.103867pt;}
.y30{bottom:186.812267pt;}
.yd7{bottom:188.086133pt;}
.y251{bottom:190.683467pt;}
.y95{bottom:190.755600pt;}
.y21d{bottom:193.132133pt;}
.y10b{bottom:193.606267pt;}
.y1cf{bottom:194.039867pt;}
.y226{bottom:200.332133pt;}
.y14b{bottom:200.925733pt;}
.y2f{bottom:203.925067pt;}
.yd6{bottom:204.086133pt;}
.y56{bottom:204.283467pt;}
.y19c{bottom:204.983200pt;}
.y250{bottom:205.083600pt;}
.y94{bottom:206.755600pt;}
.y21c{bottom:207.532133pt;}
.y147{bottom:208.125733pt;}
.y10a{bottom:209.606267pt;}
.y1ce{bottom:210.039867pt;}
.y225{bottom:214.732133pt;}
.y14a{bottom:215.325733pt;}
.y8e{bottom:217.649200pt;}
.y24f{bottom:219.483600pt;}
.yd5{bottom:220.086133pt;}
.y2e{bottom:221.037867pt;}
.y21b{bottom:221.932133pt;}
.y55{bottom:222.462933pt;}
.y145{bottom:222.525733pt;}
.y93{bottom:222.755600pt;}
.y109{bottom:225.606267pt;}
.y257{bottom:225.649733pt;}
.y1cd{bottom:226.039867pt;}
.y19b{bottom:226.924800pt;}
.y224{bottom:229.132133pt;}
.y149{bottom:229.725733pt;}
.y24e{bottom:233.883600pt;}
.y8d{bottom:235.828800pt;}
.yd4{bottom:236.086133pt;}
.y21a{bottom:236.332133pt;}
.y146{bottom:236.925733pt;}
.y2d{bottom:238.150800pt;}
.y92{bottom:238.755600pt;}
.y54{bottom:240.642533pt;}
.y108{bottom:241.606267pt;}
.y256{bottom:241.649733pt;}
.y1cc{bottom:242.039867pt;}
.y223{bottom:243.532133pt;}
.y148{bottom:244.125733pt;}
.y24d{bottom:248.283467pt;}
.y19a{bottom:248.866400pt;}
.y219{bottom:250.732133pt;}
.yd3{bottom:252.086133pt;}
.y8c{bottom:254.008267pt;}
.y2c{bottom:255.263733pt;}
.y222{bottom:257.932133pt;}
.y1cb{bottom:258.039867pt;}
.y53{bottom:258.822000pt;}
.y91{bottom:262.314667pt;}
.y24c{bottom:262.683467pt;}
.y144{bottom:263.528800pt;}
.y21e{bottom:265.132133pt;}
.y107{bottom:265.165333pt;}
.yd2{bottom:268.086133pt;}
.y140{bottom:270.728800pt;}
.y199{bottom:270.808000pt;}
.y26e{bottom:271.760000pt;}
.y8b{bottom:272.187733pt;}
.y221{bottom:272.332133pt;}
.y2b{bottom:272.376533pt;}
.y1ca{bottom:274.039867pt;}
.y52{bottom:277.001600pt;}
.y24b{bottom:277.083600pt;}
.y143{bottom:277.928800pt;}
.y90{bottom:278.314667pt;}
.yd1{bottom:284.086133pt;}
.y13e{bottom:285.128800pt;}
.y220{bottom:286.732133pt;}
.y26d{bottom:289.360000pt;}
.y2a{bottom:289.489333pt;}
.y1c9{bottom:290.039867pt;}
.y8a{bottom:290.367333pt;}
.y24a{bottom:291.483600pt;}
.y142{bottom:292.328800pt;}
.y198{bottom:292.749600pt;}
.y51{bottom:295.181067pt;}
.y13f{bottom:299.528800pt;}
.y106{bottom:300.365333pt;}
.y8f{bottom:301.873733pt;}
.y249{bottom:305.883600pt;}
.y1c8{bottom:306.039867pt;}
.y218{bottom:306.135200pt;}
.y29{bottom:306.602267pt;}
.y141{bottom:306.728800pt;}
.y26c{bottom:306.960000pt;}
.yd0{bottom:307.645200pt;}
.y89{bottom:308.546800pt;}
.y50{bottom:313.360533pt;}
.y197{bottom:314.691200pt;}
.y105{bottom:316.365333pt;}
.y248{bottom:320.283467pt;}
.y214{bottom:320.535200pt;}
.y1c7{bottom:322.039867pt;}
.y28{bottom:323.715067pt;}
.y26b{bottom:324.560000pt;}
.y13b{bottom:326.131733pt;}
.y88{bottom:326.726400pt;}
.y216{bottom:327.735200pt;}
.y4f{bottom:331.540133pt;}
.y13d{bottom:333.331733pt;}
.y247{bottom:334.683467pt;}
.y213{bottom:334.935200pt;}
.y196{bottom:335.696800pt;}
.y1c6{bottom:338.039867pt;}
.y104{bottom:339.924400pt;}
.y139{bottom:340.531733pt;}
.y27{bottom:340.828000pt;}
.y20d{bottom:342.135200pt;}
.y26a{bottom:342.160000pt;}
.y87{bottom:344.905867pt;}
.ycf{bottom:346.580000pt;}
.y13c{bottom:347.731733pt;}
.y246{bottom:349.083600pt;}
.y212{bottom:349.335200pt;}
.y4e{bottom:349.719600pt;}
.y1c5{bottom:354.039867pt;}
.y13a{bottom:354.931733pt;}
.y20c{bottom:356.535200pt;}
.y26{bottom:357.940800pt;}
.yce{bottom:362.580000pt;}
.y86{bottom:363.085467pt;}
.y245{bottom:363.483600pt;}
.y211{bottom:363.735200pt;}
.y195{bottom:367.696800pt;}
.y4d{bottom:367.899200pt;}
.y1c4{bottom:370.039867pt;}
.y20b{bottom:370.935200pt;}
.y138{bottom:374.668133pt;}
.y25{bottom:375.053733pt;}
.y103{bottom:375.124400pt;}
.y244{bottom:377.883600pt;}
.y210{bottom:378.135200pt;}
.ycd{bottom:378.580000pt;}
.y85{bottom:381.264933pt;}
.y194{bottom:383.696800pt;}
.y263{bottom:384.040267pt;}
.y20a{bottom:385.335200pt;}
.y1c3{bottom:386.039867pt;}
.y4c{bottom:386.078667pt;}
.y102{bottom:391.124400pt;}
.y24{bottom:392.166533pt;}
.y243{bottom:392.283467pt;}
.y20f{bottom:392.535200pt;}
.y84{bottom:399.444533pt;}
.y193{bottom:399.696800pt;}
.y215{bottom:399.735200pt;}
.y262{bottom:401.640267pt;}
.y1c2{bottom:402.039867pt;}
.ycc{bottom:402.139067pt;}
.y4b{bottom:404.258267pt;}
.y137{bottom:406.668133pt;}
.y242{bottom:406.683600pt;}
.y20e{bottom:406.935200pt;}
.y101{bottom:407.124400pt;}
.y23{bottom:409.279467pt;}
.y192{bottom:415.696800pt;}
.y83{bottom:417.624000pt;}
.y1c1{bottom:418.039867pt;}
.ycb{bottom:418.139067pt;}
.y261{bottom:419.240267pt;}
.y241{bottom:421.083600pt;}
.y217{bottom:421.335200pt;}
.y4a{bottom:422.437733pt;}
.y136{bottom:422.668133pt;}
.y100{bottom:423.124400pt;}
.y22{bottom:426.392267pt;}
.y1c0{bottom:434.039867pt;}
.yca{bottom:434.139067pt;}
.y240{bottom:435.483600pt;}
.y82{bottom:435.803600pt;}
.y135{bottom:438.668133pt;}
.yff{bottom:439.124400pt;}
.y49{bottom:440.617333pt;}
.y203{bottom:440.738133pt;}
.y21{bottom:443.505067pt;}
.y1ff{bottom:447.938267pt;}
.y191{bottom:448.030267pt;}
.y23f{bottom:449.883600pt;}
.y1bf{bottom:450.039867pt;}
.yc9{bottom:450.139067pt;}
.y81{bottom:453.983067pt;}
.y134{bottom:454.668133pt;}
.yfe{bottom:455.124400pt;}
.y209{bottom:455.138133pt;}
.y202{bottom:455.138267pt;}
.y18d{bottom:455.230267pt;}
.y48{bottom:458.796800pt;}
.y20{bottom:460.618000pt;}
.y269{bottom:461.120667pt;}
.y1fe{bottom:462.338267pt;}
.y190{bottom:462.430267pt;}
.y23e{bottom:464.283467pt;}
.yc8{bottom:466.139067pt;}
.y208{bottom:469.538133pt;}
.y1f9{bottom:469.538267pt;}
.y18b{bottom:469.630267pt;}
.y133{bottom:470.668133pt;}
.yfd{bottom:471.124400pt;}
.y80{bottom:472.162533pt;}
.y1be{bottom:473.598933pt;}
.y1fd{bottom:476.738267pt;}
.y18f{bottom:476.830267pt;}
.y47{bottom:476.976400pt;}
.y1f{bottom:477.730933pt;}
.y23d{bottom:478.683600pt;}
.y268{bottom:478.720667pt;}
.y207{bottom:483.938133pt;}
.y1f8{bottom:483.938267pt;}
.y18c{bottom:484.030267pt;}
.y132{bottom:486.668133pt;}
.yfc{bottom:487.124400pt;}
.y7f{bottom:490.342133pt;}
.y1fc{bottom:491.138267pt;}
.y18e{bottom:491.230267pt;}
.yc7{bottom:492.151600pt;}
.y23c{bottom:493.083600pt;}
.y1e{bottom:494.843733pt;}
.y46{bottom:495.155867pt;}
.y267{bottom:496.320533pt;}
.y206{bottom:498.338133pt;}
.y1f7{bottom:498.338267pt;}
.y131{bottom:502.668133pt;}
.yfb{bottom:503.124400pt;}
.y1fb{bottom:505.538267pt;}
.y23b{bottom:507.483600pt;}
.yc6{bottom:508.151600pt;}
.y7e{bottom:508.521600pt;}
.y1bd{bottom:508.798933pt;}
.y18a{bottom:510.633200pt;}
.y1d{bottom:511.956533pt;}
.y205{bottom:512.738133pt;}
.y201{bottom:512.738267pt;}
.y45{bottom:513.335467pt;}
.y266{bottom:513.920667pt;}
.y188{bottom:517.833200pt;}
.y130{bottom:518.668133pt;}
.yfa{bottom:519.124400pt;}
.y1fa{bottom:519.938267pt;}
.y23a{bottom:521.883600pt;}
.y1bc{bottom:524.798933pt;}
.y185{bottom:525.033200pt;}
.y204{bottom:527.138133pt;}
.y200{bottom:527.138267pt;}
.y1c{bottom:529.069467pt;}
.y44{bottom:531.514933pt;}
.y265{bottom:531.520533pt;}
.yc5{bottom:531.710667pt;}
.y187{bottom:532.233200pt;}
.y12f{bottom:534.668133pt;}
.yf9{bottom:535.124400pt;}
.y239{bottom:536.283467pt;}
.y184{bottom:539.433200pt;}
.y1bb{bottom:540.798933pt;}
.y1b{bottom:546.182267pt;}
.y1f6{bottom:546.541200pt;}
.y186{bottom:546.633200pt;}
.yc4{bottom:547.710667pt;}
.y264{bottom:549.120667pt;}
.y43{bottom:549.694400pt;}
.y12e{bottom:550.668133pt;}
.y238{bottom:550.683600pt;}
.yf8{bottom:551.124400pt;}
.y189{bottom:553.833200pt;}
.y7d{bottom:554.833200pt;}
.y1ba{bottom:556.798933pt;}
.y1f4{bottom:560.941200pt;}
.y1a{bottom:563.295200pt;}
.yc3{bottom:563.710667pt;}
.y237{bottom:565.083600pt;}
.y12d{bottom:566.668133pt;}
.yf7{bottom:567.124400pt;}
.y42{bottom:567.874000pt;}
.y1ed{bottom:568.141200pt;}
.y7c{bottom:571.946000pt;}
.y1b9{bottom:572.798933pt;}
.y183{bottom:573.236267pt;}
.y1f3{bottom:575.341200pt;}
.y236{bottom:579.483600pt;}
.yc2{bottom:579.710667pt;}
.y19{bottom:580.408000pt;}
.y180{bottom:580.436133pt;}
.y1eb{bottom:582.541200pt;}
.y12c{bottom:582.668133pt;}
.yf6{bottom:583.124400pt;}
.y2{bottom:584.178533pt;}
.y41{bottom:586.053467pt;}
.y17e{bottom:587.636133pt;}
.y1b8{bottom:588.798933pt;}
.y260{bottom:588.855067pt;}
.y7b{bottom:589.058933pt;}
.y1f2{bottom:589.741200pt;}
.y17d{bottom:594.836133pt;}
.y1ea{bottom:596.941200pt;}
.y18{bottom:597.520933pt;}
.y12b{bottom:598.668133pt;}
.yf5{bottom:599.124400pt;}
.y182{bottom:602.036267pt;}
.y1f1{bottom:604.141200pt;}
.y40{bottom:604.233067pt;}
.y1b7{bottom:604.798933pt;}
.yc1{bottom:604.863200pt;}
.y7a{bottom:606.171733pt;}
.y25f{bottom:606.455067pt;}
.y17f{bottom:609.236267pt;}
.y235{bottom:609.883600pt;}
.y1e9{bottom:611.341200pt;}
.y17{bottom:614.633733pt;}
.y12a{bottom:614.668133pt;}
.yf4{bottom:615.124400pt;}
.y181{bottom:616.436133pt;}
.y1f0{bottom:618.541200pt;}
.y1b6{bottom:620.798933pt;}
.yc0{bottom:620.863200pt;}
.y3f{bottom:622.412533pt;}
.y79{bottom:623.284667pt;}
.y25e{bottom:624.055067pt;}
.y1e8{bottom:625.741200pt;}
.y234{bottom:625.883600pt;}
.y129{bottom:630.668133pt;}
.yf3{bottom:631.124400pt;}
.y16{bottom:631.746533pt;}
.y1ef{bottom:632.941200pt;}
.y17c{bottom:635.839200pt;}
.y1ec{bottom:640.141200pt;}
.y78{bottom:640.397467pt;}
.y3e{bottom:640.592133pt;}
.y25d{bottom:641.655067pt;}
.y233{bottom:641.883600pt;}
.y17a{bottom:643.039200pt;}
.ybf{bottom:644.422267pt;}
.y128{bottom:646.668133pt;}
.yf2{bottom:647.124400pt;}
.y1ee{bottom:647.341200pt;}
.y15{bottom:648.859467pt;}
.y177{bottom:650.239200pt;}
.y1b5{bottom:653.132267pt;}
.y176{bottom:657.439200pt;}
.y77{bottom:657.510400pt;}
.y232{bottom:657.883600pt;}
.y3d{bottom:658.771600pt;}
.ybe{bottom:660.422267pt;}
.y1f5{bottom:661.741200pt;}
.y127{bottom:662.668133pt;}
.yf1{bottom:663.124400pt;}
.y4{bottom:663.348133pt;}
.y178{bottom:664.639200pt;}
.y14{bottom:665.972267pt;}
.y179{bottom:671.839200pt;}
.y1b4{bottom:672.535200pt;}
.y259{bottom:673.650667pt;}
.y231{bottom:673.883600pt;}
.y76{bottom:674.623200pt;}
.yb1{bottom:675.991067pt;}
.ybd{bottom:676.422267pt;}
.y3c{bottom:676.951200pt;}
.y126{bottom:678.668133pt;}
.y17b{bottom:679.039200pt;}
.yf0{bottom:679.124400pt;}
.y1e7{bottom:681.144267pt;}
.y13{bottom:683.085200pt;}
.y3{bottom:686.722133pt;}
.y1e1{bottom:688.344267pt;}
.yb0{bottom:688.791200pt;}
.y230{bottom:689.883600pt;}
.y75{bottom:691.736133pt;}
.y1b3{bottom:691.938267pt;}
.ybc{bottom:692.422267pt;}
.y125{bottom:694.668133pt;}
.yef{bottom:695.124400pt;}
.y3b{bottom:695.130667pt;}
.y1e6{bottom:695.544267pt;}
.y258{bottom:697.650667pt;}
.y175{bottom:698.442133pt;}
.y12{bottom:700.198133pt;}
.y1df{bottom:702.744267pt;}
.yaf{bottom:703.457867pt;}
.y173{bottom:705.642133pt;}
.y22f{bottom:705.883600pt;}
.y74{bottom:708.848933pt;}
.y1e5{bottom:709.944267pt;}
.y124{bottom:710.668133pt;}
.yee{bottom:711.124400pt;}
.y1b2{bottom:711.341200pt;}
.y170{bottom:712.842267pt;}
.y3a{bottom:713.310267pt;}
.y1de{bottom:717.144267pt;}
.y11{bottom:717.310933pt;}
.y16f{bottom:720.042133pt;}
.y22e{bottom:721.883600pt;}
.y1d9{bottom:724.344267pt;}
.yae{bottom:725.683467pt;}
.y73{bottom:725.961867pt;}
.y123{bottom:726.668133pt;}
.yed{bottom:727.124400pt;}
.y171{bottom:727.242133pt;}
.y1b1{bottom:730.744267pt;}
.y39{bottom:731.489733pt;}
.y1dd{bottom:731.544267pt;}
.y10{bottom:734.423733pt;}
.y172{bottom:734.442133pt;}
.y22d{bottom:737.883600pt;}
.yad{bottom:738.483600pt;}
.y1d8{bottom:738.744267pt;}
.y25c{bottom:740.648800pt;}
.y174{bottom:741.642133pt;}
.y122{bottom:742.668133pt;}
.y72{bottom:743.074667pt;}
.yec{bottom:743.124400pt;}
.y1dc{bottom:745.944267pt;}
.y38{bottom:749.669333pt;}
.y1b0{bottom:750.147200pt;}
.yf{bottom:751.536667pt;}
.y1d7{bottom:753.144267pt;}
.yac{bottom:753.150267pt;}
.y22c{bottom:753.883600pt;}
.y121{bottom:758.668133pt;}
.y71{bottom:760.187467pt;}
.y1db{bottom:760.344267pt;}
.y16e{bottom:761.045200pt;}
.ybb{bottom:762.700000pt;}
.yeb{bottom:766.683467pt;}
.y25b{bottom:767.408000pt;}
.y1e4{bottom:767.544267pt;}
.y37{bottom:767.848800pt;}
.y16a{bottom:768.245200pt;}
.y1af{bottom:769.883600pt;}
.y120{bottom:774.668133pt;}
.y1da{bottom:774.744267pt;}
.yab{bottom:775.376000pt;}
.y16d{bottom:775.445200pt;}
.yc{bottom:777.193733pt;}
.y70{bottom:777.300400pt;}
.yba{bottom:780.300000pt;}
.y1e3{bottom:781.944267pt;}
.y167{bottom:782.645200pt;}
.y22b{bottom:785.883600pt;}
.y36{bottom:786.028267pt;}
.yaa{bottom:788.176000pt;}
.y1e0{bottom:789.144267pt;}
.y166{bottom:789.845200pt;}
.yb{bottom:793.193733pt;}
.y25a{bottom:794.166933pt;}
.y6f{bottom:794.413200pt;}
.y1e2{bottom:796.344267pt;}
.y168{bottom:797.045200pt;}
.yb9{bottom:797.900000pt;}
.yea{bottom:801.883467pt;}
.y1ae{bottom:801.883600pt;}
.ya9{bottom:802.842667pt;}
.y16c{bottom:804.245200pt;}
.y11f{bottom:807.334800pt;}
.y169{bottom:811.445200pt;}
.yb8{bottom:815.500000pt;}
.y1d5{bottom:815.747200pt;}
.ya{bottom:816.752800pt;}
.ya8{bottom:817.509333pt;}
.ye9{bottom:817.883467pt;}
.y1ad{bottom:817.883600pt;}
.y16b{bottom:818.645200pt;}
.y11e{bottom:821.734800pt;}
.y1d4{bottom:822.947200pt;}
.y6e{bottom:829.773600pt;}
.y1d6{bottom:830.147200pt;}
.y9{bottom:832.752800pt;}
.ye8{bottom:833.883467pt;}
.y1ac{bottom:833.883600pt;}
.y165{bottom:838.048133pt;}
.ya7{bottom:839.735067pt;}
.y11d{bottom:841.137733pt;}
.y6d{bottom:846.886533pt;}
.y11b{bottom:848.337733pt;}
.yb7{bottom:849.100000pt;}
.ye7{bottom:849.883467pt;}
.y1ab{bottom:849.883600pt;}
.ye{bottom:851.170400pt;}
.y163{bottom:852.448133pt;}
.ya6{bottom:852.534933pt;}
.y11a{bottom:855.537733pt;}
.y8{bottom:856.311867pt;}
.y6c{bottom:863.999333pt;}
.ye6{bottom:865.883467pt;}
.y1aa{bottom:865.883600pt;}
.yb6{bottom:866.700000pt;}
.y161{bottom:866.848267pt;}
.y11c{bottom:869.937733pt;}
.yd{bottom:870.370400pt;}
.y7{bottom:872.311867pt;}
.ya5{bottom:874.760800pt;}
.y6b{bottom:881.112267pt;}
.y162{bottom:881.248267pt;}
.ye5{bottom:881.883467pt;}
.y1a9{bottom:881.883600pt;}
.yb5{bottom:884.300000pt;}
.ya4{bottom:887.560800pt;}
.y119{bottom:889.340800pt;}
.y164{bottom:895.648133pt;}
.ye4{bottom:897.883467pt;}
.y1a8{bottom:897.883600pt;}
.y6a{bottom:898.225067pt;}
.ya3{bottom:902.227467pt;}
.y118{bottom:903.740667pt;}
.ye3{bottom:913.883467pt;}
.y1a7{bottom:913.883600pt;}
.y15e{bottom:915.051200pt;}
.y69{bottom:915.337867pt;}
.y160{bottom:922.251200pt;}
.y117{bottom:923.143733pt;}
.ya2{bottom:924.453200pt;}
.y15d{bottom:929.451200pt;}
.ye2{bottom:929.883467pt;}
.y1a6{bottom:929.883600pt;}
.y116{bottom:930.343733pt;}
.y68{bottom:932.450800pt;}
.yb4{bottom:933.900000pt;}
.y159{bottom:936.651200pt;}
.ya1{bottom:937.253200pt;}
.y15c{bottom:943.851200pt;}
.ye1{bottom:945.883467pt;}
.y1a5{bottom:945.883600pt;}
.y67{bottom:949.563600pt;}
.y158{bottom:951.051200pt;}
.y113{bottom:956.946800pt;}
.y15b{bottom:958.251200pt;}
.ye0{bottom:961.883467pt;}
.y1a4{bottom:961.883600pt;}
.y115{bottom:964.146667pt;}
.y15f{bottom:965.451200pt;}
.y66{bottom:966.676533pt;}
.y111{bottom:971.346800pt;}
.yb3{bottom:972.300000pt;}
.y15a{bottom:972.651200pt;}
.ydf{bottom:977.883467pt;}
.y1a3{bottom:977.883600pt;}
.y114{bottom:978.546667pt;}
.y65{bottom:983.789333pt;}
.y112{bottom:985.746800pt;}
.ya0{bottom:985.809333pt;}
.y155{bottom:992.387467pt;}
.yde{bottom:993.883467pt;}
.y1a2{bottom:993.883600pt;}
.y157{bottom:999.587467pt;}
.y64{bottom:1000.902267pt;}
.y110{bottom:1005.149733pt;}
.y153{bottom:1006.787467pt;}
.ydd{bottom:1009.883467pt;}
.y1a1{bottom:1009.883600pt;}
.yb2{bottom:1010.700000pt;}
.y156{bottom:1013.987467pt;}
.y63{bottom:1018.015200pt;}
.y154{bottom:1021.187467pt;}
.y10f{bottom:1025.219467pt;}
.ydc{bottom:1025.883467pt;}
.y1a0{bottom:1025.883600pt;}
.y62{bottom:1035.127867pt;}
.y61{bottom:1052.240800pt;}
.y9e{bottom:1055.037867pt;}
.y9b{bottom:1068.009867pt;}
.y60{bottom:1069.353733pt;}
.y9d{bottom:1069.437867pt;}
.y9c{bottom:1083.837867pt;}
.h14{height:31.062500pt;}
.h21{height:31.104167pt;}
.h7{height:34.944000pt;}
.ha{height:34.945312pt;}
.hb{height:34.992188pt;}
.h6{height:35.088000pt;}
.hc{height:36.848000pt;}
.hd{height:37.523438pt;}
.h8{height:38.828125pt;}
.h1a{height:38.880208pt;}
.h15{height:40.992188pt;}
.h1c{height:41.692708pt;}
.h19{height:42.710938pt;}
.he{height:42.768229pt;}
.hf{height:45.861979pt;}
.h1d{height:46.197917pt;}
.h9{height:46.593750pt;}
.h24{height:46.656250pt;}
.h11{height:46.720000pt;}
.h13{height:50.817708pt;}
.h23{height:54.218750pt;}
.h1b{height:55.437500pt;}
.h5{height:62.208333pt;}
.h22{height:63.745312pt;}
.h1e{height:63.792187pt;}
.h20{height:63.792721pt;}
.h18{height:89.437500pt;}
.h1f{height:92.591654pt;}
.h17{height:110.875000pt;}
.h3{height:117.056000pt;}
.h10{height:138.593750pt;}
.h16{height:138.594283pt;}
.h12{height:178.875000pt;}
.h2{height:191.666667pt;}
.h4{height:278.840833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:14.890533pt;}
.x4{left:19.666400pt;}
.x2{left:41.549867pt;}
.xb{left:60.472400pt;}
.x1e{left:64.690533pt;}
.x3b{left:66.139067pt;}
.x41{left:72.805467pt;}
.x50{left:78.325467pt;}
.x53{left:83.506800pt;}
.x52{left:84.416267pt;}
.x7{left:86.929067pt;}
.xc{left:92.976400pt;}
.xd{left:94.488133pt;}
.x6{left:96.332533pt;}
.x1a{left:97.315333pt;}
.x1d{left:98.267733pt;}
.x23{left:113.385733pt;}
.x5{left:126.549600pt;}
.x40{left:133.561200pt;}
.x54{left:149.367467pt;}
.x3f{left:150.675733pt;}
.x3c{left:154.272400pt;}
.x4f{left:158.740133pt;}
.x47{left:165.472400pt;}
.x34{left:167.921600pt;}
.x57{left:176.154533pt;}
.x35{left:179.599333pt;}
.x2f{left:180.729067pt;}
.x1f{left:185.196800pt;}
.x33{left:189.598267pt;}
.x1c{left:191.125333pt;}
.x27{left:194.378267pt;}
.x42{left:200.799200pt;}
.x28{left:206.056000pt;}
.x26{left:216.055067pt;}
.x24{left:224.061867pt;}
.x4d{left:225.406400pt;}
.x4a{left:228.006800pt;}
.x19{left:249.448800pt;}
.x51{left:266.238533pt;}
.x55{left:280.216267pt;}
.x3d{left:282.272400pt;}
.x37{left:294.133867pt;}
.x4b{left:300.741200pt;}
.x38{left:303.787200pt;}
.x4e{left:305.533333pt;}
.x36{left:307.800933pt;}
.x30{left:308.729067pt;}
.x48{left:313.472400pt;}
.x43{left:317.203733pt;}
.x2a{left:320.590667pt;}
.x56{left:328.433600pt;}
.x2b{left:330.244000pt;}
.x29{left:334.257600pt;}
.x44{left:377.537733pt;}
.x4c{left:383.961733pt;}
.x9{left:405.048667pt;}
.x3e{left:406.005733pt;}
.x39{left:428.931333pt;}
.x31{left:432.462400pt;}
.x25{left:438.774400pt;}
.xa{left:455.089867pt;}
.x2c{left:466.055067pt;}
.x49{left:498.939600pt;}
.x45{left:502.348133pt;}
.x46{left:505.916533pt;}
.x12{left:517.136400pt;}
.xe{left:530.433867pt;}
.x3a{left:532.794667pt;}
.x11{left:537.915333pt;}
.x14{left:543.225600pt;}
.x13{left:544.851200pt;}
.x17{left:547.282533pt;}
.xf{left:548.657600pt;}
.x16{left:549.728133pt;}
.x8{left:552.384667pt;}
.x32{left:556.995733pt;}
.x2d{left:559.251467pt;}
.x10{left:563.592800pt;}
.x15{left:580.300400pt;}
.x20{left:592.971867pt;}
.x21{left:594.034133pt;}
.x22{left:604.149867pt;}
.x2e{left:619.268933pt;}
.x1{left:643.885467pt;}
.x1b{left:689.807733pt;}
.x18{left:760.123600pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  