
    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_e0205cfba6838da38acb32ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_529917ce74c62474d778f6c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_6279b09250dc646e9afe404c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_ae8afd29448cdadb94b642af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_1bac9d1a9baadece30c46b29.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.180664;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_8c36a96911636d7f65b26022.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_103c89959b5488a078a9d76c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_00d436cbbf5224bbc2b0200b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_a0e9a39f603a07ca84890f2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_632164f2c2bf26f01c4e39f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_d43fc0a99b26be455f2318ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_3d722915b9ca8aa4e15a4c9c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.678223;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_a80d8a5a64802a2f7a6a8358.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.753906;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_2c403c71ffdec742c4231567.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.m8{transform:matrix(0.236667,0.000000,-0.080942,0.236534,0,0);-ms-transform:matrix(0.236667,0.000000,-0.080942,0.236534,0,0);-webkit-transform:matrix(0.236667,0.000000,-0.080942,0.236534,0,0);}
.m5{transform:matrix(0.236669,0.000000,-0.080944,0.236533,0,0);-ms-transform:matrix(0.236669,0.000000,-0.080944,0.236533,0,0);-webkit-transform:matrix(0.236669,0.000000,-0.080944,0.236533,0,0);}
.m6{transform:matrix(0.236669,0.000000,-0.080940,0.236535,0,0);-ms-transform:matrix(0.236669,0.000000,-0.080940,0.236535,0,0);-webkit-transform:matrix(0.236669,0.000000,-0.080940,0.236535,0,0);}
.m4{transform:matrix(0.236670,0.000000,-0.080942,0.236534,0,0);-ms-transform:matrix(0.236670,0.000000,-0.080942,0.236534,0,0);-webkit-transform:matrix(0.236670,0.000000,-0.080942,0.236534,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);}
.m7{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-149.039940px;}
.v1{vertical-align:-117.359953px;}
.ve{vertical-align:-60.479976px;}
.v7{vertical-align:-52.559979px;}
.vd{vertical-align:-27.359989px;}
.v6{vertical-align:-23.039991px;}
.vb{vertical-align:-10.799996px;}
.va{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:4.319998px;}
.v8{vertical-align:5.759998px;}
.v5{vertical-align:17.999993px;}
.v2{vertical-align:28.799988px;}
.v4{vertical-align:55.439978px;}
.v3{vertical-align:62.639975px;}
.v9{vertical-align:120.959952px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.133920px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.359999px;}
.ls6{letter-spacing:20.987992px;}
.lsa{letter-spacing:21.599991px;}
.ls11{letter-spacing:24.119990px;}
.ls4{letter-spacing:24.587990px;}
.ls1d{letter-spacing:24.695990px;}
.ls10{letter-spacing:25.559990px;}
.ls9{letter-spacing:26.027990px;}
.ls13{letter-spacing:26.200070px;}
.ls5{letter-spacing:26.747989px;}
.ls18{letter-spacing:28.943988px;}
.ls1a{letter-spacing:29.087988px;}
.ls14{letter-spacing:29.195988px;}
.ls17{letter-spacing:29.663988px;}
.ls1f{letter-spacing:32.533907px;}
.ls19{letter-spacing:32.543987px;}
.ls16{letter-spacing:35.423986px;}
.lsb{letter-spacing:36.107986px;}
.ls1c{letter-spacing:36.143986px;}
.ls12{letter-spacing:52.919979px;}
.ls1b{letter-spacing:59.405016px;}
.ls15{letter-spacing:65.406934px;}
.ls1{letter-spacing:71.279971px;}
.lsf{letter-spacing:124.199950px;}
.lse{letter-spacing:311.003876px;}
.lsc{letter-spacing:313.883874px;}
.lsd{letter-spacing:331.883867px;}
.ls8{letter-spacing:1607.202077px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-102.377479px;}
.ws25{word-spacing:-89.999964px;}
.ws6{word-spacing:-71.999971px;}
.ws0{word-spacing:-53.999978px;}
.ws35{word-spacing:-48.059981px;}
.wsc{word-spacing:-44.999982px;}
.ws8{word-spacing:-42.299983px;}
.ws4{word-spacing:-41.939983px;}
.ws16{word-spacing:-40.078316px;}
.ws29{word-spacing:-40.039904px;}
.ws1b{word-spacing:-40.031984px;}
.wsa{word-spacing:-39.059984px;}
.ws13{word-spacing:-38.077035px;}
.ws15{word-spacing:-37.919535px;}
.wsf{word-spacing:-36.143986px;}
.ws7{word-spacing:-35.999986px;}
.ws26{word-spacing:-35.963986px;}
.ws1{word-spacing:-32.939987px;}
.ws18{word-spacing:-32.669987px;}
.ws37{word-spacing:-30.419987px;}
.ws9{word-spacing:-30.059988px;}
.wsd{word-spacing:-26.999989px;}
.ws11{word-spacing:-23.939990px;}
.ws17{word-spacing:-23.378843px;}
.ws22{word-spacing:-22.499991px;}
.ws12{word-spacing:-22.211691px;}
.ws21{word-spacing:-19.979992px;}
.ws28{word-spacing:-3.314224px;}
.ws1c{word-spacing:-1.980029px;}
.ws19{word-spacing:-1.763720px;}
.ws34{word-spacing:-1.366772px;}
.ws2b{word-spacing:-1.079999px;}
.ws10{word-spacing:-0.846683px;}
.ws2e{word-spacing:-0.691833px;}
.ws2{word-spacing:-0.539990px;}
.ws31{word-spacing:-0.369273px;}
.ws2a{word-spacing:-0.217749px;}
.ws1d{word-spacing:-0.142735px;}
.ws30{word-spacing:-0.142560px;}
.ws5{word-spacing:-0.001364px;}
.ws3{word-spacing:0.000000px;}
.ws2c{word-spacing:0.009138px;}
.ws2f{word-spacing:0.028167px;}
.ws2d{word-spacing:0.350727px;}
.ws32{word-spacing:0.502251px;}
.ws1e{word-spacing:1.942473px;}
.wse{word-spacing:6.561337px;}
.ws27{word-spacing:106.525363px;}
.ws33{word-spacing:122.860035px;}
.ws24{word-spacing:131.219948px;}
.ws1f{word-spacing:248.238401px;}
.ws20{word-spacing:266.819668px;}
.ws23{word-spacing:301.462658px;}
.ws36{word-spacing:947.726073px;}
.ws14{word-spacing:1060.751185px;}
.wsb{word-spacing:1839.581792px;}
._7a{margin-left:-4340.585862px;}
._28{margin-left:-4047.862498px;}
._14{margin-left:-3897.766959px;}
._16{margin-left:-3682.337795px;}
._1a{margin-left:-3544.168522px;}
._1c{margin-left:-3413.781948px;}
._81{margin-left:-3396.680368px;}
._13{margin-left:-3348.868600px;}
._61{margin-left:-3343.067991px;}
._75{margin-left:-3262.753042px;}
._82{margin-left:-3174.387642px;}
._26{margin-left:-3146.495056px;}
._78{margin-left:-3111.841130px;}
._65{margin-left:-3110.218756px;}
._8c{margin-left:-3106.739044px;}
._7f{margin-left:-3077.106009px;}
._8d{margin-left:-2947.430511px;}
._86{margin-left:-2944.251878px;}
._2{margin-left:-2848.894931px;}
._3{margin-left:-2837.014935px;}
._5d{margin-left:-2824.996740px;}
._2a{margin-left:-2809.927299px;}
._74{margin-left:-2778.668447px;}
._f{margin-left:-2746.467457px;}
._1e{margin-left:-2701.470448px;}
._32{margin-left:-2562.386313px;}
._2e{margin-left:-2459.477003px;}
._c{margin-left:-2404.681734px;}
._87{margin-left:-2372.451667px;}
._85{margin-left:-2318.067480px;}
._8e{margin-left:-2255.476306px;}
._7b{margin-left:-2221.152920px;}
._1f{margin-left:-2212.780915px;}
._72{margin-left:-2054.122578px;}
._77{margin-left:-2005.866245px;}
._1d{margin-left:-1958.467593px;}
._0{margin-left:-1925.855230px;}
._88{margin-left:-1920.239232px;}
._89{margin-left:-1919.231302px;}
._79{margin-left:-1894.004032px;}
._6d{margin-left:-1867.045772px;}
._6b{margin-left:-1853.321825px;}
._62{margin-left:-1772.382819px;}
._5c{margin-left:-1771.297020px;}
._5e{margin-left:-1750.669098px;}
._76{margin-left:-1628.238636px;}
._12{margin-left:-1569.239372px;}
._56{margin-left:-1545.131052px;}
._67{margin-left:-1445.117222px;}
._10{margin-left:-1439.171494px;}
._18{margin-left:-1422.554888px;}
._63{margin-left:-1400.641168px;}
._7d{margin-left:-1388.087515px;}
._7c{margin-left:-1379.303518px;}
._23{margin-left:-1344.821029px;}
._7e{margin-left:-1311.659545px;}
._4f{margin-left:-1294.919482px;}
._55{margin-left:-1121.051221px;}
._d{margin-left:-1072.267561px;}
._21{margin-left:-1042.284758px;}
._22{margin-left:-974.667178px;}
._27{margin-left:-899.999640px;}
._4d{margin-left:-849.779660px;}
._20{margin-left:-814.710281px;}
._53{margin-left:-679.823728px;}
._43{margin-left:-542.062195px;}
._5a{margin-left:-539.999784px;}
._40{margin-left:-479.217869px;}
._3e{margin-left:-455.268568px;}
._19{margin-left:-449.835277px;}
._66{margin-left:-431.999827px;}
._2b{margin-left:-417.487361px;}
._47{margin-left:-406.520170px;}
._44{margin-left:-385.387929px;}
._42{margin-left:-374.608571px;}
._30{margin-left:-372.762571px;}
._2c{margin-left:-367.951381px;}
._45{margin-left:-357.083046px;}
._41{margin-left:-347.842961px;}
._38{margin-left:-339.070666px;}
._3a{margin-left:-331.607567px;}
._3f{margin-left:-317.378364px;}
._36{margin-left:-226.653550px;}
._37{margin-left:-197.764421px;}
._3b{margin-left:-182.402958px;}
._3c{margin-left:-169.041982px;}
._15{margin-left:-139.535944px;}
._39{margin-left:-115.481384px;}
._5f{margin-left:-104.291958px;}
._46{margin-left:-99.644850px;}
._11{margin-left:-89.892034px;}
._6c{margin-left:-83.879966px;}
._e{margin-left:-64.923784px;}
._5b{margin-left:-59.939976px;}
._31{margin-left:-55.666719px;}
._2d{margin-left:-47.375981px;}
._1b{margin-left:-19.016092px;}
._17{margin-left:-16.127994px;}
._29{margin-left:-13.247995px;}
._6a{margin-left:-11.922676px;}
._33{margin-left:-10.762558px;}
._35{margin-left:-9.033920px;}
._6{margin-left:-7.199996px;}
._71{margin-left:-5.953183px;}
._7{margin-left:-4.952103px;}
._5{margin-left:-3.502270px;}
._b{margin-left:-2.369351px;}
._1{margin-left:-1.007929px;}
._8{width:1.085799px;}
._4{width:2.155785px;}
._24{width:3.165202px;}
._58{width:4.586864px;}
._59{width:6.716594px;}
._a{width:20.340355px;}
._25{width:23.820556px;}
._34{width:24.982552px;}
._9{width:26.248341px;}
._2f{width:28.553749px;}
._4c{width:29.962314px;}
._54{width:32.975987px;}
._73{width:37.079915px;}
._4e{width:42.299983px;}
._64{width:47.225737px;}
._68{width:52.842179px;}
._69{width:54.190250px;}
._70{width:58.649888px;}
._50{width:87.467005px;}
._51{width:88.507365px;}
._84{width:96.047962px;}
._83{width:104.111958px;}
._60{width:126.035950px;}
._6e{width:146.921937px;}
._6f{width:237.413425px;}
._52{width:241.559904px;}
._57{width:297.071811px;}
._4b{width:396.917348px;}
._3d{width:669.367885px;}
._8b{width:826.670069px;}
._4a{width:842.898777px;}
._48{width:861.404890px;}
._80{width:894.170315px;}
._49{width:1113.451197px;}
._8a{width:2294.818602px;}
.fc12{color:rgb(255,153,0);}
.fc11{color:rgb(204,51,0);}
.fcf{color:rgb(255,192,0);}
.fce{color:rgb(192,0,0);}
.fcd{color:rgb(0,112,192);}
.fc0{color:rgb(0,176,240);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(255,255,101);}
.fc13{color:rgb(112,48,160);}
.fc3{color:transparent;}
.fcb{color:rgb(255,51,0);}
.fc4{color:rgb(0,0,0);}
.fc10{color:rgb(220,0,0);}
.fc7{color:rgb(255,255,255);}
.fcc{color:rgb(0,176,80);}
.fc5{color:rgb(255,0,0);}
.fc8{color:rgb(146,208,80);}
.fc6{color:rgb(255,150,150);}
.fc9{color:rgb(51,51,204);}
.fca{color:rgb(0,101,204);}
.fsb{font-size:64.079974px;}
.fs18{font-size:71.999971px;}
.fs16{font-size:79.919968px;}
.fsd{font-size:88.846764px;}
.fs17{font-size:89.999964px;}
.fs13{font-size:93.515372px;}
.fsf{font-size:93.904748px;}
.fs2{font-size:95.759962px;}
.fsc{font-size:102.239959px;}
.fsa{font-size:107.999957px;}
.fs8{font-size:120.239952px;}
.fs14{font-size:130.679948px;}
.fs1{font-size:131.759947px;}
.fs15{font-size:138.119365px;}
.fs6{font-size:143.999942px;}
.fs11{font-size:151.678139px;}
.fse{font-size:152.308139px;}
.fs9{font-size:156.239938px;}
.fs12{font-size:160.313264px;}
.fs10{font-size:160.979271px;}
.fs4{font-size:167.759933px;}
.fs5{font-size:179.999928px;}
.fs3{font-size:192.239923px;}
.fs0{font-size:215.999914px;}
.fs7{font-size:359.999856px;}
.yfa{bottom:-190.259745px;}
.y96{bottom:-187.199747px;}
.yc4{bottom:-178.199750px;}
.y42{bottom:-39.959806px;}
.y1a2{bottom:-30.599809px;}
.y14{bottom:-27.899810px;}
.y1b9{bottom:-23.039812px;}
.yea{bottom:-17.819814px;}
.y97{bottom:-15.839815px;}
.y1c1{bottom:-13.499816px;}
.y81{bottom:-12.059817px;}
.y1d7{bottom:-11.339817px;}
.y1f8{bottom:-10.439817px;}
.y173{bottom:-7.379819px;}
.y15f{bottom:-6.839819px;}
.y1cb{bottom:-2.519821px;}
.y0{bottom:0.000000px;}
.ycb{bottom:0.360250px;}
.ya2{bottom:0.360253px;}
.y104{bottom:0.540255px;}
.y67{bottom:2.340178px;}
.yf9{bottom:3.240177px;}
.y24{bottom:3.600177px;}
.y23{bottom:3.960177px;}
.yaf{bottom:4.500177px;}
.y70{bottom:5.220178px;}
.ya4{bottom:5.220185px;}
.y1e4{bottom:5.580181px;}
.yf6{bottom:5.760186px;}
.yb3{bottom:6.480177px;}
.y1ce{bottom:6.480179px;}
.y169{bottom:6.480181px;}
.y8e{bottom:6.480183px;}
.y1be{bottom:6.480188px;}
.y17d{bottom:6.660181px;}
.y17f{bottom:6.840181px;}
.y1fb{bottom:7.020183px;}
.y2f{bottom:7.200177px;}
.yb8{bottom:7.200219px;}
.y2e{bottom:7.560177px;}
.y31{bottom:7.740177px;}
.y1a6{bottom:7.740191px;}
.yfe{bottom:8.280177px;}
.y17{bottom:9.000190px;}
.y2{bottom:9.540175px;}
.y1ad{bottom:9.720040px;}
.y47{bottom:9.720194px;}
.y33{bottom:10.440177px;}
.yb{bottom:11.700175px;}
.ya0{bottom:51.900336px;}
.y9e{bottom:52.260336px;}
.y13a{bottom:52.980336px;}
.ye{bottom:53.160336px;}
.y1da{bottom:54.600335px;}
.y101{bottom:56.220335px;}
.y100{bottom:56.580334px;}
.y1aa{bottom:58.020334px;}
.y12c{bottom:58.740334px;}
.y1bc{bottom:59.640333px;}
.y192{bottom:60.540333px;}
.y106{bottom:62.700332px;}
.y123{bottom:64.500331px;}
.y1b0{bottom:64.680331px;}
.yf4{bottom:65.220331px;}
.y1f{bottom:65.940331px;}
.yc8{bottom:66.660330px;}
.y119{bottom:67.020330px;}
.y1c{bottom:67.200330px;}
.y2c{bottom:67.740330px;}
.y34{bottom:68.820329px;}
.y1b7{bottom:71.880328px;}
.y15{bottom:72.960328px;}
.y137{bottom:73.320328px;}
.y17b{bottom:73.680328px;}
.yd9{bottom:73.860327px;}
.y139{bottom:74.580327px;}
.y1bf{bottom:75.480327px;}
.y9d{bottom:81.060325px;}
.yd{bottom:81.960324px;}
.ye1{bottom:86.820322px;}
.y93{bottom:87.000322px;}
.y12b{bottom:87.540322px;}
.ybf{bottom:89.340321px;}
.y64{bottom:89.880321px;}
.y48{bottom:90.060321px;}
.y63{bottom:90.240321px;}
.y1e8{bottom:90.420321px;}
.y1d9{bottom:90.600321px;}
.y4d{bottom:90.960321px;}
.y105{bottom:95.100319px;}
.y3e{bottom:96.000319px;}
.y138{bottom:96.180319px;}
.y122{bottom:96.900318px;}
.ybb{bottom:97.620318px;}
.yd8{bottom:102.660316px;}
.y1bb{bottom:102.840316px;}
.y191{bottom:103.740316px;}
.yc7{bottom:105.000315px;}
.y136{bottom:105.720315px;}
.y118{bottom:105.900315px;}
.y1cf{bottom:106.440314px;}
.y16d{bottom:108.420314px;}
.y1e{bottom:109.140313px;}
.y9c{bottom:109.860313px;}
.y53{bottom:110.220313px;}
.y1b{bottom:110.400313px;}
.yc{bottom:110.760313px;}
.y2b{bottom:110.940313px;}
.y14d{bottom:112.560312px;}
.y17a{bottom:113.280312px;}
.y1b6{bottom:115.080311px;}
.y1e7{bottom:121.020309px;}
.ye0{bottom:122.820308px;}
.y92{bottom:123.000308px;}
.y80{bottom:124.080307px;}
.y62{bottom:125.880307px;}
.y61{bottom:126.240307px;}
.y7b{bottom:130.740305px;}
.y7f{bottom:131.100305px;}
.yd7{bottom:131.460304px;}
.y14c{bottom:132.900304px;}
.y4f{bottom:135.060303px;}
.y102{bottom:138.480302px;}
.y9b{bottom:138.660302px;}
.y7e{bottom:140.820301px;}
.y52{bottom:142.620300px;}
.yc9{bottom:143.340300px;}
.y16c{bottom:144.420299px;}
.y117{bottom:144.780299px;}
.y1ba{bottom:146.040299px;}
.y4c{bottom:148.920297px;}
.yf3{bottom:149.460297px;}
.y3c{bottom:150.900297px;}
.yc2{bottom:151.620296px;}
.y2a{bottom:154.140295px;}
.yba{bottom:155.760295px;}
.y115{bottom:157.560294px;}
.y114{bottom:157.920294px;}
.y91{bottom:159.000293px;}
.y12a{bottom:159.900293px;}
.y60{bottom:161.880292px;}
.y5f{bottom:162.240292px;}
.ycc{bottom:168.900289px;}
.y1ca{bottom:177.000286px;}
.y1d0{bottom:177.900286px;}
.y4e{bottom:178.260286px;}
.y11d{bottom:182.580284px;}
.yc1{bottom:184.020283px;}
.y113{bottom:190.320281px;}
.yf2{bottom:192.660280px;}
.y40{bottom:195.900279px;}
.y79{bottom:196.080279px;}
.y29{bottom:197.340278px;}
.y5e{bottom:197.880278px;}
.y5d{bottom:198.240278px;}
.y1b4{bottom:198.600278px;}
.y15e{bottom:199.680277px;}
.y18{bottom:202.380276px;}
.y14b{bottom:203.820275px;}
.yb9{bottom:204.360275px;}
.y4b{bottom:208.680274px;}
.ydd{bottom:209.760273px;}
.yff{bottom:211.020273px;}
.y1e6{bottom:212.820272px;}
.y1c9{bottom:213.000272px;}
.y51{bottom:213.540272px;}
.yc0{bottom:216.420270px;}
.y112{bottom:222.720268px;}
.y129{bottom:231.900264px;}
.y19f{bottom:234.060263px;}
.y1b3{bottom:234.600263px;}
.y1a9{bottom:235.680263px;}
.yf1{bottom:235.860263px;}
.y90{bottom:237.480262px;}
.y28{bottom:240.540261px;}
.y49{bottom:243.060260px;}
.y1e5{bottom:243.420260px;}
.y135{bottom:244.680259px;}
.ydc{bottom:245.760259px;}
.y50{bottom:245.940259px;}
.y182{bottom:249.000257px;}
.y190{bottom:252.780256px;}
.y5c{bottom:253.860255px;}
.y111{bottom:255.120255px;}
.y103{bottom:255.480000px;}
.ya1{bottom:258.720000px;}
.y1c8{bottom:258.900253px;}
.y3f{bottom:261.240253px;}
.y7a{bottom:263.940251px;}
.y4a{bottom:264.120251px;}
.y78{bottom:264.660251px;}
.yca{bottom:267.720000px;}
.y149{bottom:273.660248px;}
.y9{bottom:276.720246px;}
.y1ff{bottom:277.620246px;}
.yf0{bottom:279.060245px;}
.y134{bottom:280.680245px;}
.y181{bottom:291.480240px;}
.ya5{bottom:292.920240px;}
.y1c7{bottom:294.900239px;}
.y148{bottom:306.060235px;}
.y1ea{bottom:313.260232px;}
.ydf{bottom:314.700231px;}
.ydb{bottom:316.500230px;}
.y133{bottom:316.680230px;}
.y1fe{bottom:317.220230px;}
.y7d{bottom:318.480230px;}
.y27{bottom:319.380229px;}
.y110{bottom:319.560229px;}
.y10f{bottom:319.920229px;}
.y8{bottom:320.820229px;}
.y5b{bottom:321.180229px;}
.y5a{bottom:321.540228px;}
.yef{bottom:322.260228px;}
.y11c{bottom:328.020226px;}
.y1c6{bottom:330.900225px;}
.y77{bottom:331.080225px;}
.y16b{bottom:332.700224px;}
.y15d{bottom:333.420224px;}
.y3b{bottom:335.940223px;}
.yb7{bottom:337.200000px;}
.y1f2{bottom:337.380222px;}
.ya6{bottom:337.920222px;}
.y147{bottom:338.460222px;}
.y6e{bottom:339.540221px;}
.y14a{bottom:342.240220px;}
.y8c{bottom:342.780220px;}
.y19e{bottom:342.960220px;}
.y183{bottom:343.140220px;}
.yb6{bottom:344.400219px;}
.y1e9{bottom:345.660219px;}
.yde{bottom:347.100218px;}
.yda{bottom:348.900217px;}
.y10e{bottom:352.320216px;}
.y1af{bottom:355.020215px;}
.y1fd{bottom:356.820214px;}
.y1a8{bottom:360.060213px;}
.y7c{bottom:361.680212px;}
.y7{bottom:364.920211px;}
.y3d{bottom:365.280211px;}
.y16a{bottom:368.700210px;}
.y15c{bottom:369.420209px;}
.y1f1{bottom:369.780209px;}
.y18f{bottom:370.140209px;}
.y8f{bottom:378.780205px;}
.y19d{bottom:378.960205px;}
.y1f6{bottom:381.480204px;}
.y10d{bottom:384.720203px;}
.y1f7{bottom:384.900203px;}
.y3a{bottom:386.340202px;}
.yb4{bottom:390.480201px;}
.y9f{bottom:393.900199px;}
.y146{bottom:394.440199px;}
.y76{bottom:395.700199px;}
.y1fc{bottom:396.420198px;}
.y46{bottom:396.600000px;}
.y180{bottom:402.900196px;}
.yb5{bottom:407.400194px;}
.y1a5{bottom:407.940000px;}
.y6{bottom:409.020193px;}
.y16{bottom:409.380000px;}
.y19c{bottom:414.960191px;}
.y1a7{bottom:415.680191px;}
.y1bd{bottom:416.760000px;}
.y10c{bottom:417.120190px;}
.yf5{bottom:422.700000px;}
.ya3{bottom:425.220000px;}
.yf7{bottom:426.120187px;}
.y1c5{bottom:426.300000px;}
.y8d{bottom:427.740000px;}
.y1d8{bottom:428.460000px;}
.y1fa{bottom:428.820000px;}
.y17e{bottom:432.060000px;}
.y17c{bottom:432.240000px;}
.y168{bottom:432.960000px;}
.y1e3{bottom:433.320000px;}
.y1cd{bottom:437.280000px;}
.y32{bottom:439.800000px;}
.yfd{bottom:441.240000px;}
.y30{bottom:442.500000px;}
.y2d{bottom:442.680000px;}
.y6f{bottom:443.400000px;}
.ya{bottom:444.120000px;}
.yb2{bottom:444.300000px;}
.y1{bottom:446.280000px;}
.ye9{bottom:457.260174px;}
.yeb{bottom:458.700174px;}
.y158{bottom:462.480172px;}
.y1cc{bottom:465.900171px;}
.y13f{bottom:468.060170px;}
.y83{bottom:468.780169px;}
.y1e0{bottom:469.500169px;}
.y35{bottom:470.580169px;}
.y154{bottom:472.200168px;}
.y151{bottom:473.280168px;}
.y10b{bottom:474.180167px;}
.y41{bottom:474.720167px;}
.y172{bottom:474.900167px;}
.yd2{bottom:476.160167px;}
.y11a{bottom:477.420166px;}
.y45{bottom:479.940165px;}
.yae{bottom:486.780162px;}
.y37{bottom:487.860162px;}
.y66{bottom:490.740161px;}
.ye8{bottom:496.320158px;}
.y196{bottom:497.040158px;}
.y157{bottom:498.480158px;}
.ye7{bottom:498.660158px;}
.y186{bottom:500.100157px;}
.y13e{bottom:500.460157px;}
.y1c0{bottom:504.780155px;}
.y22{bottom:505.140155px;}
.y153{bottom:508.200154px;}
.yd1{bottom:508.380154px;}
.y150{bottom:509.280153px;}
.y171{bottom:510.900153px;}
.y1f5{bottom:517.380150px;}
.y65{bottom:519.540149px;}
.y1f9{bottom:523.500148px;}
.y36{bottom:523.860147px;}
.ye6{bottom:527.460146px;}
.y73{bottom:528.900145px;}
.yac{bottom:529.980145px;}
.y1df{bottom:530.700145px;}
.y13d{bottom:532.860144px;}
.y156{bottom:534.480143px;}
.y1b2{bottom:536.280142px;}
.y195{bottom:540.240141px;}
.yd0{bottom:540.780141px;}
.y10a{bottom:542.040140px;}
.y163{bottom:542.580140px;}
.y152{bottom:544.200139px;}
.y14f{bottom:545.280139px;}
.y170{bottom:546.900138px;}
.y13{bottom:552.120136px;}
.y87{bottom:553.740136px;}
.y1a0{bottom:558.240134px;}
.ya9{bottom:559.680133px;}
.y1de{bottom:561.300132px;}
.y12f{bottom:562.740132px;}
.y13c{bottom:565.260131px;}
.yce{bottom:565.440131px;}
.ye4{bottom:566.520130px;}
.y1b1{bottom:568.680130px;}
.y155{bottom:570.480129px;}
.y109{bottom:570.840129px;}
.y6d{bottom:573.000128px;}
.y162{bottom:574.980127px;}
.ya8{bottom:576.780126px;}
.y94{bottom:580.920125px;}
.y16f{bottom:582.900124px;}
.yaa{bottom:583.620124px;}
.yc5{bottom:588.480122px;}
.y141{bottom:589.020121px;}
.ycf{bottom:591.360120px;}
.y1dd{bottom:591.900120px;}
.y43{bottom:594.060119px;}
.y185{bottom:596.580118px;}
.y86{bottom:596.940118px;}
.ye3{bottom:597.660118px;}
.y12e{bottom:598.740118px;}
.ye5{bottom:599.100117px;}
.yad{bottom:600.720101px;}
.yab{bottom:600.720117px;}
.y72{bottom:603.240116px;}
.y194{bottom:605.940115px;}
.y161{bottom:607.380114px;}
.yf8{bottom:610.800113px;}
.y1c3{bottom:612.420112px;}
.y82{bottom:612.780112px;}
.y5{bottom:614.580111px;}
.y16e{bottom:618.900109px;}
.y21{bottom:619.800109px;}
.y1a1{bottom:620.700109px;}
.y11b{bottom:623.760107px;}
.y1dc{bottom:628.800105px;}
.y108{bottom:629.880105px;}
.y1e2{bottom:630.060105px;}
.y12d{bottom:634.740103px;}
.ya7{bottom:638.340102px;}
.y160{bottom:639.780101px;}
.y85{bottom:640.140101px;}
.y6b{bottom:640.680101px;}
.y1ae{bottom:642.120100px;}
.y1c2{bottom:648.420098px;}
.y84{bottom:648.780097px;}
.y14e{bottom:648.960097px;}
.y193{bottom:649.140097px;}
.ye2{bottom:649.320097px;}
.y140{bottom:652.020096px;}
.y1ed{bottom:654.900095px;}
.y44{bottom:657.060094px;}
.yc3{bottom:659.400093px;}
.y1db{bottom:661.200093px;}
.y1e1{bottom:662.460092px;}
.y20{bottom:663.000092px;}
.y1d4{bottom:663.900091px;}
.y107{bottom:665.880091px;}
.y1b8{bottom:666.240091px;}
.y71{bottom:667.680090px;}
.y116{bottom:667.860090px;}
.y6a{bottom:671.280088px;}
.y1f4{bottom:674.520087px;}
.y4{bottom:679.380085px;}
.ybd{bottom:688.380082px;}
.y124{bottom:690.900081px;}
.y1d3{bottom:692.160080px;}
.y13b{bottom:698.280078px;}
.yb1{bottom:700.620077px;}
.ycd{bottom:702.780076px;}
.y69{bottom:702.960076px;}
.y56{bottom:704.580075px;}
.y1ec{bottom:706.020075px;}
.ybc{bottom:706.920074px;}
.y1eb{bottom:708.720074px;}
.yee{bottom:711.780072px;}
.yd6{bottom:714.660071px;}
.yb0{bottom:717.360070px;}
.yc6{bottom:722.040068px;}
.y59{bottom:723.660068px;}
.y1d2{bottom:728.160066px;}
.y174{bottom:730.140065px;}
.y10{bottom:730.500065px;}
.y189{bottom:732.660064px;}
.y12{bottom:734.100063px;}
.y18e{bottom:735.540063px;}
.y26{bottom:735.900063px;}
.y1a4{bottom:738.780061px;}
.y68{bottom:738.960061px;}
.y39{bottom:739.500061px;}
.y15b{bottom:739.680061px;}
.y19b{bottom:740.040061px;}
.y176{bottom:741.660060px;}
.y121{bottom:742.020060px;}
.y1a{bottom:742.380060px;}
.y179{bottom:742.560060px;}
.y3{bottom:744.180059px;}
.y95{bottom:744.900059px;}
.y164{bottom:745.260059px;}
.y167{bottom:745.620059px;}
.y1b5{bottom:745.980059px;}
.y55{bottom:747.780058px;}
.y89{bottom:749.040057px;}
.y75{bottom:749.220057px;}
.y198{bottom:750.660057px;}
.y126{bottom:751.920056px;}
.y143{bottom:753.900055px;}
.y131{bottom:754.800055px;}
.y1ab{bottom:754.980055px;}
.y145{bottom:758.580054px;}
.y58{bottom:763.260052px;}
.y128{bottom:763.440052px;}
.y1d1{bottom:763.620052px;}
.yfc{bottom:764.700051px;}
.y1f0{bottom:765.780051px;}
.y18b{bottom:766.500050px;}
.y1d{bottom:768.840049px;}
.yed{bottom:769.920049px;}
.y18d{bottom:771.540048px;}
.y15a{bottom:772.080048px;}
.y120{bottom:774.420047px;}
.y1a3{bottom:774.780047px;}
.y178{bottom:774.960047px;}
.y19a{bottom:776.040047px;}
.y8b{bottom:776.580046px;}
.y166{bottom:778.020046px;}
.yd5{bottom:778.380046px;}
.y1ac{bottom:783.060000px;}
.y188{bottom:783.060044px;}
.y1ee{bottom:786.840042px;}
.y9a{bottom:787.380042px;}
.yf{bottom:788.100042px;}
.yd3{bottom:788.460042px;}
.y1c4{bottom:789.360041px;}
.y11e{bottom:789.540041px;}
.y25{bottom:789.900041px;}
.y1d5{bottom:790.260041px;}
.y187{bottom:790.440041px;}
.y11{bottom:791.700040px;}
.y184{bottom:792.060040px;}
.y88{bottom:792.240040px;}
.y175{bottom:792.780040px;}
.y54{bottom:793.140040px;}
.y38{bottom:793.500040px;}
.y1d6{bottom:793.680040px;}
.y74{bottom:794.580039px;}
.y19{bottom:796.380038px;}
.yfb{bottom:797.100038px;}
.y125{bottom:797.280038px;}
.y197{bottom:797.460038px;}
.y127{bottom:799.440037px;}
.y98{bottom:799.980037px;}
.y130{bottom:800.160037px;}
.y1f3{bottom:801.060037px;}
.y144{bottom:801.780036px;}
.y6c{bottom:802.140036px;}
.y132{bottom:802.320036px;}
.y57{bottom:802.860036px;}
.y142{bottom:804.300035px;}
.y159{bottom:804.480035px;}
.y18a{bottom:805.380035px;}
.ybe{bottom:805.740035px;}
.y11f{bottom:806.820034px;}
.y177{bottom:807.360034px;}
.y18c{bottom:807.540034px;}
.y8a{bottom:808.980033px;}
.y165{bottom:810.420033px;}
.yd4{bottom:810.780033px;}
.y199{bottom:812.040032px;}
.yec{bottom:813.120032px;}
.y99{bottom:819.780029px;}
.y1ef{bottom:823.380028px;}
.h18{height:0.540000px;}
.h37{height:1.980000px;}
.h4{height:2.160000px;}
.h5b{height:2.340000px;}
.h21{height:2.880000px;}
.h10{height:3.600000px;}
.h11{height:3.780000px;}
.h5f{height:4.500000px;}
.h4e{height:5.040000px;}
.h29{height:6.120000px;}
.h12{height:6.480000px;}
.h64{height:9.000000px;}
.h8{height:10.440000px;}
.h24{height:12.060000px;}
.h69{height:12.960000px;}
.h57{height:13.320000px;}
.h59{height:14.040000px;}
.h5a{height:14.220000px;}
.h68{height:15.840000px;}
.h65{height:16.200000px;}
.h6c{height:17.460000px;}
.h66{height:17.820000px;}
.h26{height:18.540000px;}
.h6a{height:19.080000px;}
.h58{height:19.620000px;}
.h62{height:19.980000px;}
.h56{height:20.340000px;}
.h55{height:20.700000px;}
.h2c{height:21.060000px;}
.h28{height:21.240000px;}
.h49{height:23.580000px;}
.h1f{height:24.300000px;}
.h63{height:24.660000px;}
.h35{height:28.620000px;}
.h60{height:29.520000px;}
.h4b{height:32.940000px;}
.hc{height:36.360000px;}
.h9{height:36.900000px;}
.h3d{height:37.080000px;}
.h5d{height:38.340000px;}
.he{height:46.800000px;}
.h1a{height:49.680000px;}
.h5e{height:50.760000px;}
.h1{height:57.600000px;}
.h52{height:70.628878px;}
.h51{height:72.562471px;}
.h50{height:78.046844px;}
.h4a{height:78.626922px;}
.h2f{height:82.296051px;}
.h3a{height:86.620439px;}
.h31{height:86.981107px;}
.h2d{height:87.154858px;}
.h34{height:87.198241px;}
.h4d{height:87.537973px;}
.h47{height:88.330043px;}
.h2a{height:93.983166px;}
.h46{height:94.090040px;}
.h5{height:96.508086px;}
.h5c{height:97.523398px;}
.h1e{height:102.861521px;}
.h20{height:103.038709px;}
.hd{height:104.062458px;}
.h27{height:105.943317px;}
.h25{height:105.996051px;}
.h67{height:106.633082px;}
.h1b{height:108.843706px;}
.h44{height:112.640580px;}
.h1d{height:112.716517px;}
.h19{height:117.950226px;}
.h22{height:118.008937px;}
.h3e{height:121.044854px;}
.h14{height:121.179327px;}
.h45{height:125.406512px;}
.h54{height:125.499325px;}
.h3f{height:127.935759px;}
.h3c{height:128.255222px;}
.h53{height:129.315183px;}
.h3{height:132.789322px;}
.h41{height:136.008930px;}
.h6b{height:137.421508px;}
.h3b{height:140.494839px;}
.h30{height:141.078389px;}
.h1c{height:141.257756px;}
.h23{height:141.328068px;}
.h42{height:142.560000px;}
.hb{height:145.124942px;}
.h39{height:148.493292px;}
.h38{height:148.863799px;}
.h32{height:149.110194px;}
.h2e{height:149.407740px;}
.h33{height:149.482109px;}
.hf{height:150.187440px;}
.h16{height:157.460562px;}
.h40{height:164.283684px;}
.h15{height:164.565286px;}
.h61{height:164.647200px;}
.h7{height:169.070557px;}
.h36{height:171.483681px;}
.h4c{height:173.160000px;}
.h17{height:176.572195px;}
.h43{height:178.560000px;}
.ha{height:181.406177px;}
.h2b{height:187.560000px;}
.h4f{height:190.800000px;}
.h6{height:193.741798px;}
.h48{height:209.289994px;}
.h2{height:217.687413px;}
.h13{height:362.812355px;}
.h0{height:892.500000px;}
.w19{width:10.440000px;}
.w8{width:16.020000px;}
.wf{width:18.000000px;}
.w1b{width:20.160000px;}
.w10{width:21.780000px;}
.w11{width:22.500000px;}
.wc{width:35.280000px;}
.w5{width:35.460000px;}
.w12{width:41.940000px;}
.w15{width:44.460000px;}
.w17{width:55.800000px;}
.w6{width:55.980000px;}
.w20{width:60.120000px;}
.w1f{width:61.740000px;}
.w1d{width:63.539640px;}
.w14{width:83.880000px;}
.w1e{width:86.940000px;}
.w2{width:95.940000px;}
.w18{width:106.560000px;}
.w13{width:122.580000px;}
.w16{width:126.360000px;}
.wd{width:130.680000px;}
.w22{width:133.919640px;}
.w1a{width:138.600000px;}
.w3{width:159.120000px;}
.w1{width:173.880000px;}
.w9{width:211.320000px;}
.w4{width:238.320000px;}
.wb{width:239.040000px;}
.w7{width:318.780000px;}
.wa{width:325.620000px;}
.we{width:383.940000px;}
.w21{width:475.920000px;}
.w1c{width:869.040000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x33{left:1.620521px;}
.xc5{left:4.860661px;}
.x60{left:27.899888px;}
.x88{left:33.119880px;}
.x9b{left:34.200653px;}
.x85{left:100.785860px;}
.x5a{left:102.225859px;}
.xb6{left:107.085857px;}
.xd4{left:108.705857px;}
.x77{left:111.225856px;}
.x63{left:113.205855px;}
.xe5{left:114.465854px;}
.x87{left:116.445960px;}
.x4b{left:118.965852px;}
.x57{left:120.225852px;}
.x104{left:121.305851px;}
.x27{left:122.925851px;}
.x4a{left:125.266450px;}
.xa9{left:127.605849px;}
.x41{left:129.225848px;}
.x5b{left:130.485848px;}
.x5e{left:133.545847px;}
.x8e{left:138.225845px;}
.x1b{left:140.565844px;}
.xa2{left:144.345842px;}
.x18{left:146.145842px;}
.xa5{left:147.225841px;}
.x100{left:148.485841px;}
.x89{left:149.565840px;}
.xf{left:152.086439px;}
.x3d{left:155.686438px;}
.xdd{left:157.306437px;}
.x3e{left:158.566437px;}
.x4d{left:159.826436px;}
.x4c{left:160.906436px;}
.xa4{left:165.226434px;}
.xcd{left:169.726432px;}
.x22{left:171.166432px;}
.xa6{left:174.226430px;}
.x43{left:177.466429px;}
.x1d{left:180.526428px;}
.xa8{left:181.786427px;}
.xc2{left:183.226427px;}
.x23{left:186.466425px;}
.x2b{left:188.266425px;}
.xf3{left:189.706424px;}
.x24{left:191.146424px;}
.x25{left:196.906421px;}
.x9e{left:199.786420px;}
.x13{left:201.226420px;}
.x26{left:205.546418px;}
.xbb{left:206.806417px;}
.x15{left:208.606417px;}
.x12{left:210.946416px;}
.xee{left:212.566415px;}
.xa{left:215.266414px;}
.x19{left:217.426413px;}
.x96{left:219.226412px;}
.xeb{left:224.626410px;}
.xf1{left:227.326409px;}
.xd3{left:232.906407px;}
.xef{left:235.066406px;}
.x99{left:236.685600px;}
.x47{left:237.946405px;}
.x14{left:239.746404px;}
.x2e{left:241.186404px;}
.x16{left:243.706403px;}
.x8c{left:246.226402px;}
.xce{left:250.006400px;}
.x44{left:252.346399px;}
.x8a{left:255.226398px;}
.xab{left:257.026397px;}
.xec{left:259.726396px;}
.x5f{left:264.226394px;}
.x101{left:266.925793px;}
.xb2{left:269.806392px;}
.xa7{left:271.426391px;}
.x86{left:273.226391px;}
.x3c{left:278.266389px;}
.xb1{left:280.606388px;}
.x68{left:282.226387px;}
.xed{left:285.466386px;}
.x5{left:287.086385px;}
.x6{left:288.526385px;}
.xc3{left:291.226384px;}
.x102{left:294.106382px;}
.xd7{left:299.686380px;}
.xe4{left:302.385600px;}
.x3b{left:305.266378px;}
.xe3{left:306.706377px;}
.x103{left:309.946376px;}
.x78{left:311.566375px;}
.x49{left:315.166374px;}
.x59{left:318.406373px;}
.xe8{left:319.486372px;}
.xba{left:327.226369px;}
.x98{left:330.286368px;}
.xc7{left:333.526367px;}
.xf4{left:335.326366px;}
.xe{left:336.586365px;}
.x3f{left:342.886363px;}
.x67{left:345.226362px;}
.x90{left:348.826360px;}
.x35{left:351.526359px;}
.x48{left:355.306358px;}
.x1c{left:356.746357px;}
.x7{left:360.706356px;}
.x84{left:363.406355px;}
.xb4{left:366.286353px;}
.xcf{left:368.086353px;}
.xf7{left:374.926350px;}
.x62{left:377.626349px;}
.xf5{left:379.965600px;}
.xe2{left:382.126347px;}
.x58{left:383.386347px;}
.x1a{left:388.246345px;}
.x4{left:395.806342px;}
.x2a{left:397.246341px;}
.xb9{left:404.986338px;}
.x1{left:406.245600px;}
.x1e{left:409.305600px;}
.xfa{left:413.986334px;}
.xde{left:418.486333px;}
.xc8{left:422.266331px;}
.xf9{left:424.066330px;}
.x9d{left:428.026329px;}
.xaa{left:440.446324px;}
.x9c{left:441.706323px;}
.x54{left:444.225600px;}
.x2f{left:448.006321px;}
.x9{left:450.166320px;}
.xf0{left:451.606319px;}
.x1f{left:453.405600px;}
.xae{left:458.266317px;}
.x17{left:459.706316px;}
.xda{left:462.766315px;}
.x8f{left:464.926314px;}
.xc4{left:471.405600px;}
.xbd{left:472.666311px;}
.xbe{left:476.626309px;}
.x91{left:478.606309px;}
.xbc{left:480.586308px;}
.xb5{left:485.086306px;}
.xcc{left:490.666304px;}
.xff{left:492.826303px;}
.xfd{left:498.406301px;}
.xdf{left:501.466299px;}
.xa0{left:505.606298px;}
.x95{left:514.606294px;}
.x20{left:518.385600px;}
.xfc{left:520.906292px;}
.xfb{left:522.706291px;}
.x40{left:525.586290px;}
.xa1{left:529.186288px;}
.x56{left:534.226286px;}
.x81{left:535.306286px;}
.x10{left:539.086284px;}
.xaf{left:550.426280px;}
.x46{left:555.646278px;}
.xa3{left:569.866272px;}
.x5c{left:579.226268px;}
.x9a{left:583.725600px;}
.x2{left:593.625600px;}
.x5d{left:595.426262px;}
.x6a{left:597.226261px;}
.x2d{left:605.326258px;}
.x8{left:609.826256px;}
.xc9{left:624.226250px;}
.xca{left:642.045600px;}
.x8d{left:646.186242px;}
.xc6{left:655.005600px;}
.x83{left:660.046236px;}
.x64{left:669.226232px;}
.x80{left:674.986230px;}
.x7f{left:681.285600px;}
.x6e{left:683.266745px;}
.xcb{left:687.226225px;}
.x3{left:689.565600px;}
.xf8{left:696.586221px;}
.x76{left:703.066590px;}
.xb8{left:704.866218px;}
.x7e{left:713.145600px;}
.x82{left:714.226214px;}
.x45{left:720.525600px;}
.xe6{left:722.146211px;}
.x55{left:723.226211px;}
.x71{left:724.486401px;}
.x7b{left:731.326207px;}
.x3a{left:734.026206px;}
.x38{left:736.726205px;}
.xb{left:739.066204px;}
.x39{left:745.006202px;}
.x28{left:773.986190px;}
.x97{left:777.226189px;}
.xb0{left:778.486189px;}
.x9f{left:780.466188px;}
.x6d{left:785.686550px;}
.x74{left:788.566185px;}
.x4e{left:791.986183px;}
.x93{left:795.226182px;}
.xf2{left:796.306181px;}
.x69{left:797.566181px;}
.x105{left:801.886179px;}
.x73{left:803.326182px;}
.x61{left:813.225600px;}
.x7a{left:817.906173px;}
.x42{left:819.166172px;}
.x70{left:820.786172px;}
.xc0{left:822.226171px;}
.xdc{left:824.386170px;}
.xc{left:826.906169px;}
.xc1{left:828.886168px;}
.xad{left:829.966168px;}
.x66{left:831.226168px;}
.x7d{left:832.485600px;}
.xd9{left:834.286166px;}
.x21{left:837.165600px;}
.xf6{left:847.606161px;}
.x65{left:849.046160px;}
.xac{left:851.386159px;}
.xd{left:853.006159px;}
.xd8{left:854.086158px;}
.x75{left:860.926156px;}
.xb3{left:864.346154px;}
.xdb{left:866.146154px;}
.x8b{left:867.226153px;}
.x7c{left:868.846152px;}
.xbf{left:873.886150px;}
.xe9{left:876.226150px;}
.xea{left:877.486149px;}
.xe7{left:886.126146px;}
.xe1{left:887.206145px;}
.xd5{left:889.006144px;}
.xd6{left:895.126142px;}
.x36{left:903.406139px;}
.x72{left:906.106138px;}
.xd1{left:910.966136px;}
.xfe{left:912.046135px;}
.xd0{left:916.726133px;}
.xe0{left:918.346133px;}
.x11{left:920.145600px;}
.x4f{left:928.606129px;}
.x6c{left:929.866128px;}
.x2c{left:932.206127px;}
.x79{left:934.186126px;}
.x50{left:936.526125px;}
.xd2{left:939.406124px;}
.x51{left:943.906122px;}
.x32{left:946.785600px;}
.x6f{left:948.586121px;}
.x31{left:953.446119px;}
.x6b{left:961.546115px;}
.x29{left:964.066114px;}
.xb7{left:967.486113px;}
.x34{left:979.186108px;}
.x30{left:982.246107px;}
.x37{left:984.406106px;}
.x92{left:1001.326099px;}
.x52{left:1033.906086px;}
.x94{left:1050.466080px;}
.x53{left:1121.746051px;}
@media print{
.vf{vertical-align:-132.479947pt;}
.v1{vertical-align:-104.319958pt;}
.ve{vertical-align:-53.759978pt;}
.v7{vertical-align:-46.719981pt;}
.vd{vertical-align:-24.319990pt;}
.v6{vertical-align:-20.479992pt;}
.vb{vertical-align:-9.599996pt;}
.va{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:3.839998pt;}
.v8{vertical-align:5.119998pt;}
.v5{vertical-align:15.999994pt;}
.v2{vertical-align:25.599990pt;}
.v4{vertical-align:49.279980pt;}
.v3{vertical-align:55.679978pt;}
.v9{vertical-align:107.519957pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.119040pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.319999pt;}
.ls6{letter-spacing:18.655993pt;}
.lsa{letter-spacing:19.199992pt;}
.ls11{letter-spacing:21.439991pt;}
.ls4{letter-spacing:21.855991pt;}
.ls1d{letter-spacing:21.951991pt;}
.ls10{letter-spacing:22.719991pt;}
.ls9{letter-spacing:23.135991pt;}
.ls13{letter-spacing:23.288951pt;}
.ls5{letter-spacing:23.775990pt;}
.ls18{letter-spacing:25.727990pt;}
.ls1a{letter-spacing:25.855990pt;}
.ls14{letter-spacing:25.951990pt;}
.ls17{letter-spacing:26.367989pt;}
.ls1f{letter-spacing:28.919028pt;}
.ls19{letter-spacing:28.927988pt;}
.ls16{letter-spacing:31.487987pt;}
.lsb{letter-spacing:32.095987pt;}
.ls1c{letter-spacing:32.127987pt;}
.ls12{letter-spacing:47.039981pt;}
.ls1b{letter-spacing:52.804459pt;}
.ls15{letter-spacing:58.139497pt;}
.ls1{letter-spacing:63.359975pt;}
.lsf{letter-spacing:110.399956pt;}
.lse{letter-spacing:276.447889pt;}
.lsc{letter-spacing:279.007888pt;}
.lsd{letter-spacing:295.007882pt;}
.ls8{letter-spacing:1428.624069pt;}
.ws1a{word-spacing:-91.002204pt;}
.ws25{word-spacing:-79.999968pt;}
.ws6{word-spacing:-63.999974pt;}
.ws0{word-spacing:-47.999981pt;}
.ws35{word-spacing:-42.719983pt;}
.wsc{word-spacing:-39.999984pt;}
.ws8{word-spacing:-37.599985pt;}
.ws4{word-spacing:-37.279985pt;}
.ws16{word-spacing:-35.625170pt;}
.ws29{word-spacing:-35.591026pt;}
.ws1b{word-spacing:-35.583986pt;}
.wsa{word-spacing:-34.719986pt;}
.ws13{word-spacing:-33.846253pt;}
.ws15{word-spacing:-33.706253pt;}
.wsf{word-spacing:-32.127987pt;}
.ws7{word-spacing:-31.999987pt;}
.ws26{word-spacing:-31.967987pt;}
.ws1{word-spacing:-29.279988pt;}
.ws18{word-spacing:-29.039988pt;}
.ws37{word-spacing:-27.039989pt;}
.ws9{word-spacing:-26.719989pt;}
.wsd{word-spacing:-23.999990pt;}
.ws11{word-spacing:-21.279991pt;}
.ws17{word-spacing:-20.781194pt;}
.ws22{word-spacing:-19.999992pt;}
.ws12{word-spacing:-19.743725pt;}
.ws21{word-spacing:-17.759993pt;}
.ws28{word-spacing:-2.945977pt;}
.ws1c{word-spacing:-1.760026pt;}
.ws19{word-spacing:-1.567751pt;}
.ws34{word-spacing:-1.214908pt;}
.ws2b{word-spacing:-0.959999pt;}
.ws10{word-spacing:-0.752607pt;}
.ws2e{word-spacing:-0.614962pt;}
.ws2{word-spacing:-0.479991pt;}
.ws31{word-spacing:-0.328243pt;}
.ws2a{word-spacing:-0.193555pt;}
.ws1d{word-spacing:-0.126876pt;}
.ws30{word-spacing:-0.126720pt;}
.ws5{word-spacing:-0.001212pt;}
.ws3{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.008122pt;}
.ws2f{word-spacing:0.025037pt;}
.ws2d{word-spacing:0.311757pt;}
.ws32{word-spacing:0.446445pt;}
.ws1e{word-spacing:1.726642pt;}
.wse{word-spacing:5.832299pt;}
.ws27{word-spacing:94.689211pt;}
.ws33{word-spacing:109.208920pt;}
.ws24{word-spacing:116.639953pt;}
.ws1f{word-spacing:220.656356pt;}
.ws20{word-spacing:237.173038pt;}
.ws23{word-spacing:267.966807pt;}
.ws36{word-spacing:842.423176pt;}
.ws14{word-spacing:942.889942pt;}
.wsb{word-spacing:1635.183815pt;}
._7a{margin-left:-3858.298544pt;}
._28{margin-left:-3598.099998pt;}
._14{margin-left:-3464.681741pt;}
._16{margin-left:-3273.189151pt;}
._1a{margin-left:-3150.372020pt;}
._1c{margin-left:-3034.472842pt;}
._81{margin-left:-3019.271438pt;}
._13{margin-left:-2976.772089pt;}
._61{margin-left:-2971.615992pt;}
._75{margin-left:-2900.224927pt;}
._82{margin-left:-2821.677904pt;}
._26{margin-left:-2796.884494pt;}
._78{margin-left:-2766.081004pt;}
._65{margin-left:-2764.638894pt;}
._8c{margin-left:-2761.545817pt;}
._7f{margin-left:-2735.205341pt;}
._8d{margin-left:-2619.938232pt;}
._86{margin-left:-2617.112781pt;}
._2{margin-left:-2532.351049pt;}
._3{margin-left:-2521.791054pt;}
._5d{margin-left:-2511.108213pt;}
._2a{margin-left:-2497.713155pt;}
._74{margin-left:-2469.927509pt;}
._f{margin-left:-2441.304406pt;}
._1e{margin-left:-2401.307065pt;}
._32{margin-left:-2277.676723pt;}
._2e{margin-left:-2186.201781pt;}
._c{margin-left:-2137.494875pt;}
._87{margin-left:-2108.845926pt;}
._85{margin-left:-2060.504426pt;}
._8e{margin-left:-2004.867827pt;}
._7b{margin-left:-1974.358151pt;}
._1f{margin-left:-1966.916369pt;}
._72{margin-left:-1825.886736pt;}
._77{margin-left:-1782.992217pt;}
._1d{margin-left:-1740.860083pt;}
._0{margin-left:-1711.871315pt;}
._88{margin-left:-1706.879317pt;}
._89{margin-left:-1705.983380pt;}
._79{margin-left:-1683.559140pt;}
._6d{margin-left:-1659.596242pt;}
._6b{margin-left:-1647.397178pt;}
._62{margin-left:-1575.451395pt;}
._5c{margin-left:-1574.486240pt;}
._5e{margin-left:-1556.150310pt;}
._76{margin-left:-1447.323232pt;}
._12{margin-left:-1394.879442pt;}
._56{margin-left:-1373.449824pt;}
._67{margin-left:-1284.548642pt;}
._10{margin-left:-1279.263551pt;}
._18{margin-left:-1264.493234pt;}
._63{margin-left:-1245.014372pt;}
._7d{margin-left:-1233.855569pt;}
._7c{margin-left:-1226.047572pt;}
._23{margin-left:-1195.396470pt;}
._7e{margin-left:-1165.919596pt;}
._4f{margin-left:-1151.039540pt;}
._55{margin-left:-996.489974pt;}
._d{margin-left:-953.126721pt;}
._21{margin-left:-926.475340pt;}
._22{margin-left:-866.370825pt;}
._27{margin-left:-799.999680pt;}
._4d{margin-left:-755.359698pt;}
._20{margin-left:-724.186916pt;}
._53{margin-left:-604.287758pt;}
._43{margin-left:-481.833063pt;}
._5a{margin-left:-479.999808pt;}
._40{margin-left:-425.971439pt;}
._3e{margin-left:-404.683172pt;}
._19{margin-left:-399.853580pt;}
._66{margin-left:-383.999846pt;}
._2b{margin-left:-371.099877pt;}
._47{margin-left:-361.351262pt;}
._44{margin-left:-342.567048pt;}
._42{margin-left:-332.985396pt;}
._30{margin-left:-331.344507pt;}
._2c{margin-left:-327.067894pt;}
._45{margin-left:-317.407152pt;}
._41{margin-left:-309.193743pt;}
._38{margin-left:-301.396148pt;}
._3a{margin-left:-294.762282pt;}
._3f{margin-left:-282.114101pt;}
._36{margin-left:-201.469822pt;}
._37{margin-left:-175.790596pt;}
._3b{margin-left:-162.135962pt;}
._3c{margin-left:-150.259540pt;}
._15{margin-left:-124.031950pt;}
._39{margin-left:-102.650119pt;}
._5f{margin-left:-92.703963pt;}
._46{margin-left:-88.573200pt;}
._11{margin-left:-79.904030pt;}
._6c{margin-left:-74.559970pt;}
._e{margin-left:-57.710030pt;}
._5b{margin-left:-53.279979pt;}
._31{margin-left:-49.481528pt;}
._2d{margin-left:-42.111983pt;}
._1b{margin-left:-16.903193pt;}
._17{margin-left:-14.335994pt;}
._29{margin-left:-11.775995pt;}
._6a{margin-left:-10.597934pt;}
._33{margin-left:-9.566718pt;}
._35{margin-left:-8.030151pt;}
._6{margin-left:-6.399996pt;}
._71{margin-left:-5.291718pt;}
._7{margin-left:-4.401869pt;}
._5{margin-left:-3.113129pt;}
._b{margin-left:-2.106090pt;}
._1{margin-left:-0.895937pt;}
._8{width:0.965155pt;}
._4{width:1.916253pt;}
._24{width:2.813513pt;}
._58{width:4.077212pt;}
._59{width:5.970306pt;}
._a{width:18.080316pt;}
._25{width:21.173828pt;}
._34{width:22.206713pt;}
._9{width:23.331859pt;}
._2f{width:25.381110pt;}
._4c{width:26.633168pt;}
._54{width:29.311988pt;}
._73{width:32.959924pt;}
._4e{width:37.599985pt;}
._64{width:41.978433pt;}
._68{width:46.970826pt;}
._69{width:48.169111pt;}
._70{width:52.133234pt;}
._50{width:77.748449pt;}
._51{width:78.673213pt;}
._84{width:85.375966pt;}
._83{width:92.543963pt;}
._60{width:112.031955pt;}
._6e{width:130.597278pt;}
._6f{width:211.034156pt;}
._52{width:214.719915pt;}
._57{width:264.063832pt;}
._4b{width:352.815420pt;}
._3d{width:594.993676pt;}
._8b{width:734.817839pt;}
._4a{width:749.243357pt;}
._48{width:765.693235pt;}
._80{width:794.818058pt;}
._49{width:989.734397pt;}
._8a{width:2039.838757pt;}
.fsb{font-size:56.959977pt;}
.fs18{font-size:63.999974pt;}
.fs16{font-size:71.039972pt;}
.fsd{font-size:78.974902pt;}
.fs17{font-size:79.999968pt;}
.fs13{font-size:83.124775pt;}
.fsf{font-size:83.470887pt;}
.fs2{font-size:85.119966pt;}
.fsc{font-size:90.879964pt;}
.fsa{font-size:95.999962pt;}
.fs8{font-size:106.879957pt;}
.fs14{font-size:116.159954pt;}
.fs1{font-size:117.119953pt;}
.fs15{font-size:122.772769pt;}
.fs6{font-size:127.999949pt;}
.fs11{font-size:134.825013pt;}
.fse{font-size:135.385013pt;}
.fs9{font-size:138.879944pt;}
.fs12{font-size:142.500679pt;}
.fs10{font-size:143.092685pt;}
.fs4{font-size:149.119940pt;}
.fs5{font-size:159.999936pt;}
.fs3{font-size:170.879932pt;}
.fs0{font-size:191.999923pt;}
.fs7{font-size:319.999872pt;}
.yfa{bottom:-169.119774pt;}
.y96{bottom:-166.399775pt;}
.yc4{bottom:-158.399778pt;}
.y42{bottom:-35.519827pt;}
.y1a2{bottom:-27.199830pt;}
.y14{bottom:-24.799831pt;}
.y1b9{bottom:-20.479833pt;}
.yea{bottom:-15.839835pt;}
.y97{bottom:-14.079836pt;}
.y1c1{bottom:-11.999837pt;}
.y81{bottom:-10.719837pt;}
.y1d7{bottom:-10.079837pt;}
.y1f8{bottom:-9.279838pt;}
.y173{bottom:-6.559839pt;}
.y15f{bottom:-6.079839pt;}
.y1cb{bottom:-2.239840pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:0.320222pt;}
.ya2{bottom:0.320225pt;}
.y104{bottom:0.480226pt;}
.y67{bottom:2.080158pt;}
.yf9{bottom:2.880158pt;}
.y24{bottom:3.200157pt;}
.y23{bottom:3.520157pt;}
.yaf{bottom:4.000157pt;}
.y70{bottom:4.640158pt;}
.ya4{bottom:4.640164pt;}
.y1e4{bottom:4.960161pt;}
.yf6{bottom:5.120165pt;}
.yb3{bottom:5.760157pt;}
.y1ce{bottom:5.760160pt;}
.y169{bottom:5.760161pt;}
.y8e{bottom:5.760163pt;}
.y1be{bottom:5.760167pt;}
.y17d{bottom:5.920161pt;}
.y17f{bottom:6.080161pt;}
.y1fb{bottom:6.240162pt;}
.y2f{bottom:6.400157pt;}
.yb8{bottom:6.400195pt;}
.y2e{bottom:6.720157pt;}
.y31{bottom:6.880157pt;}
.y1a6{bottom:6.880170pt;}
.yfe{bottom:7.360158pt;}
.y17{bottom:8.000169pt;}
.y2{bottom:8.480155pt;}
.y1ad{bottom:8.640035pt;}
.y47{bottom:8.640173pt;}
.y33{bottom:9.280157pt;}
.yb{bottom:10.400155pt;}
.ya0{bottom:46.133632pt;}
.y9e{bottom:46.453632pt;}
.y13a{bottom:47.093632pt;}
.ye{bottom:47.253632pt;}
.y1da{bottom:48.533631pt;}
.y101{bottom:49.973631pt;}
.y100{bottom:50.293631pt;}
.y1aa{bottom:51.573630pt;}
.y12c{bottom:52.213630pt;}
.y1bc{bottom:53.013629pt;}
.y192{bottom:53.813629pt;}
.y106{bottom:55.733628pt;}
.y123{bottom:57.333628pt;}
.y1b0{bottom:57.493628pt;}
.yf4{bottom:57.973627pt;}
.y1f{bottom:58.613627pt;}
.yc8{bottom:59.253627pt;}
.y119{bottom:59.573627pt;}
.y1c{bottom:59.733627pt;}
.y2c{bottom:60.213627pt;}
.y34{bottom:61.173626pt;}
.y1b7{bottom:63.893625pt;}
.y15{bottom:64.853625pt;}
.y137{bottom:65.173625pt;}
.y17b{bottom:65.493624pt;}
.yd9{bottom:65.653624pt;}
.y139{bottom:66.293624pt;}
.y1bf{bottom:67.093624pt;}
.y9d{bottom:72.053622pt;}
.yd{bottom:72.853622pt;}
.ye1{bottom:77.173620pt;}
.y93{bottom:77.333620pt;}
.y12b{bottom:77.813620pt;}
.ybf{bottom:79.413619pt;}
.y64{bottom:79.893619pt;}
.y48{bottom:80.053619pt;}
.y63{bottom:80.213619pt;}
.y1e8{bottom:80.373619pt;}
.y1d9{bottom:80.533618pt;}
.y4d{bottom:80.853618pt;}
.y105{bottom:84.533617pt;}
.y3e{bottom:85.333617pt;}
.y138{bottom:85.493616pt;}
.y122{bottom:86.133616pt;}
.ybb{bottom:86.773616pt;}
.yd8{bottom:91.253614pt;}
.y1bb{bottom:91.413614pt;}
.y191{bottom:92.213614pt;}
.yc7{bottom:93.333613pt;}
.y136{bottom:93.973613pt;}
.y118{bottom:94.133613pt;}
.y1cf{bottom:94.613613pt;}
.y16d{bottom:96.373612pt;}
.y1e{bottom:97.013612pt;}
.y9c{bottom:97.653612pt;}
.y53{bottom:97.973611pt;}
.y1b{bottom:98.133611pt;}
.yc{bottom:98.453611pt;}
.y2b{bottom:98.613611pt;}
.y14d{bottom:100.053611pt;}
.y17a{bottom:100.693610pt;}
.y1b6{bottom:102.293610pt;}
.y1e7{bottom:107.573608pt;}
.ye0{bottom:109.173607pt;}
.y92{bottom:109.333607pt;}
.y80{bottom:110.293607pt;}
.y62{bottom:111.893606pt;}
.y61{bottom:112.213606pt;}
.y7b{bottom:116.213604pt;}
.y7f{bottom:116.533604pt;}
.yd7{bottom:116.853604pt;}
.y14c{bottom:118.133603pt;}
.y4f{bottom:120.053603pt;}
.y102{bottom:123.093601pt;}
.y9b{bottom:123.253601pt;}
.y7e{bottom:125.173601pt;}
.y52{bottom:126.773600pt;}
.yc9{bottom:127.413600pt;}
.y16c{bottom:128.373599pt;}
.y117{bottom:128.693599pt;}
.y1ba{bottom:129.813599pt;}
.y4c{bottom:132.373598pt;}
.yf3{bottom:132.853598pt;}
.y3c{bottom:134.133597pt;}
.yc2{bottom:134.773597pt;}
.y2a{bottom:137.013596pt;}
.yba{bottom:138.453595pt;}
.y115{bottom:140.053595pt;}
.y114{bottom:140.373595pt;}
.y91{bottom:141.333594pt;}
.y12a{bottom:142.133594pt;}
.y60{bottom:143.893593pt;}
.y5f{bottom:144.213593pt;}
.ycc{bottom:150.133591pt;}
.y1ca{bottom:157.333588pt;}
.y1d0{bottom:158.133587pt;}
.y4e{bottom:158.453587pt;}
.y11d{bottom:162.293586pt;}
.yc1{bottom:163.573585pt;}
.y113{bottom:169.173583pt;}
.yf2{bottom:171.253582pt;}
.y40{bottom:174.133581pt;}
.y79{bottom:174.293581pt;}
.y29{bottom:175.413581pt;}
.y5e{bottom:175.893580pt;}
.y5d{bottom:176.213580pt;}
.y1b4{bottom:176.533580pt;}
.y15e{bottom:177.493580pt;}
.y18{bottom:179.893579pt;}
.y14b{bottom:181.173578pt;}
.yb9{bottom:181.653578pt;}
.y4b{bottom:185.493576pt;}
.ydd{bottom:186.453576pt;}
.yff{bottom:187.573576pt;}
.y1e6{bottom:189.173575pt;}
.y1c9{bottom:189.333575pt;}
.y51{bottom:189.813575pt;}
.yc0{bottom:192.373574pt;}
.y112{bottom:197.973571pt;}
.y129{bottom:206.133568pt;}
.y19f{bottom:208.053567pt;}
.y1b3{bottom:208.533567pt;}
.y1a9{bottom:209.493567pt;}
.yf1{bottom:209.653567pt;}
.y90{bottom:211.093566pt;}
.y28{bottom:213.813565pt;}
.y49{bottom:216.053564pt;}
.y1e5{bottom:216.373564pt;}
.y135{bottom:217.493564pt;}
.ydc{bottom:218.453563pt;}
.y50{bottom:218.613563pt;}
.y182{bottom:221.333562pt;}
.y190{bottom:224.693561pt;}
.y5c{bottom:225.653560pt;}
.y111{bottom:226.773560pt;}
.y103{bottom:227.093333pt;}
.ya1{bottom:229.973333pt;}
.y1c8{bottom:230.133559pt;}
.y3f{bottom:232.213558pt;}
.y7a{bottom:234.613557pt;}
.y4a{bottom:234.773557pt;}
.y78{bottom:235.253557pt;}
.yca{bottom:237.973333pt;}
.y149{bottom:243.253553pt;}
.y9{bottom:245.973552pt;}
.y1ff{bottom:246.773552pt;}
.yf0{bottom:248.053551pt;}
.y134{bottom:249.493551pt;}
.y181{bottom:259.093547pt;}
.ya5{bottom:260.373547pt;}
.y1c7{bottom:262.133546pt;}
.y148{bottom:272.053542pt;}
.y1ea{bottom:278.453539pt;}
.ydf{bottom:279.733539pt;}
.ydb{bottom:281.333538pt;}
.y133{bottom:281.493538pt;}
.y1fe{bottom:281.973538pt;}
.y7d{bottom:283.093537pt;}
.y27{bottom:283.893537pt;}
.y110{bottom:284.053537pt;}
.y10f{bottom:284.373537pt;}
.y8{bottom:285.173537pt;}
.y5b{bottom:285.493536pt;}
.y5a{bottom:285.813536pt;}
.yef{bottom:286.453536pt;}
.y11c{bottom:291.573534pt;}
.y1c6{bottom:294.133533pt;}
.y77{bottom:294.293533pt;}
.y16b{bottom:295.733532pt;}
.y15d{bottom:296.373532pt;}
.y3b{bottom:298.613531pt;}
.yb7{bottom:299.733333pt;}
.y1f2{bottom:299.893531pt;}
.ya6{bottom:300.373531pt;}
.y147{bottom:300.853530pt;}
.y6e{bottom:301.813530pt;}
.y14a{bottom:304.213529pt;}
.y8c{bottom:304.693529pt;}
.y19e{bottom:304.853529pt;}
.y183{bottom:305.013529pt;}
.yb6{bottom:306.133528pt;}
.y1e9{bottom:307.253528pt;}
.yde{bottom:308.533527pt;}
.yda{bottom:310.133527pt;}
.y10e{bottom:313.173525pt;}
.y1af{bottom:315.573524pt;}
.y1fd{bottom:317.173524pt;}
.y1a8{bottom:320.053523pt;}
.y7c{bottom:321.493522pt;}
.y7{bottom:324.373521pt;}
.y3d{bottom:324.693521pt;}
.y16a{bottom:327.733520pt;}
.y15c{bottom:328.373519pt;}
.y1f1{bottom:328.693519pt;}
.y18f{bottom:329.013519pt;}
.y8f{bottom:336.693516pt;}
.y19d{bottom:336.853516pt;}
.y1f6{bottom:339.093515pt;}
.y10d{bottom:341.973514pt;}
.y1f7{bottom:342.133514pt;}
.y3a{bottom:343.413513pt;}
.yb4{bottom:347.093512pt;}
.y9f{bottom:350.133511pt;}
.y146{bottom:350.613510pt;}
.y76{bottom:351.733510pt;}
.y1fc{bottom:352.373510pt;}
.y46{bottom:352.533333pt;}
.y180{bottom:358.133507pt;}
.yb5{bottom:362.133506pt;}
.y1a5{bottom:362.613333pt;}
.y6{bottom:363.573505pt;}
.y16{bottom:363.893333pt;}
.y19c{bottom:368.853503pt;}
.y1a7{bottom:369.493503pt;}
.y1bd{bottom:370.453333pt;}
.y10c{bottom:370.773502pt;}
.yf5{bottom:375.733333pt;}
.ya3{bottom:377.973333pt;}
.yf7{bottom:378.773499pt;}
.y1c5{bottom:378.933333pt;}
.y8d{bottom:380.213333pt;}
.y1d8{bottom:380.853333pt;}
.y1fa{bottom:381.173333pt;}
.y17e{bottom:384.053333pt;}
.y17c{bottom:384.213333pt;}
.y168{bottom:384.853333pt;}
.y1e3{bottom:385.173333pt;}
.y1cd{bottom:388.693333pt;}
.y32{bottom:390.933333pt;}
.yfd{bottom:392.213333pt;}
.y30{bottom:393.333333pt;}
.y2d{bottom:393.493333pt;}
.y6f{bottom:394.133333pt;}
.ya{bottom:394.773333pt;}
.yb2{bottom:394.933333pt;}
.y1{bottom:396.693333pt;}
.ye9{bottom:406.453488pt;}
.yeb{bottom:407.733488pt;}
.y158{bottom:411.093486pt;}
.y1cc{bottom:414.133485pt;}
.y13f{bottom:416.053484pt;}
.y83{bottom:416.693484pt;}
.y1e0{bottom:417.333484pt;}
.y35{bottom:418.293483pt;}
.y154{bottom:419.733483pt;}
.y151{bottom:420.693482pt;}
.y10b{bottom:421.493482pt;}
.y41{bottom:421.973482pt;}
.y172{bottom:422.133482pt;}
.yd2{bottom:423.253481pt;}
.y11a{bottom:424.373481pt;}
.y45{bottom:426.613480pt;}
.yae{bottom:432.693478pt;}
.y37{bottom:433.653477pt;}
.y66{bottom:436.213476pt;}
.ye8{bottom:441.173474pt;}
.y196{bottom:441.813474pt;}
.y157{bottom:443.093473pt;}
.ye7{bottom:443.253473pt;}
.y186{bottom:444.533473pt;}
.y13e{bottom:444.853473pt;}
.y1c0{bottom:448.693471pt;}
.y22{bottom:449.013471pt;}
.y153{bottom:451.733470pt;}
.yd1{bottom:451.893470pt;}
.y150{bottom:452.693470pt;}
.y171{bottom:454.133469pt;}
.y1f5{bottom:459.893467pt;}
.y65{bottom:461.813466pt;}
.y1f9{bottom:465.333465pt;}
.y36{bottom:465.653464pt;}
.ye6{bottom:468.853463pt;}
.y73{bottom:470.133463pt;}
.yac{bottom:471.093462pt;}
.y1df{bottom:471.733462pt;}
.y13d{bottom:473.653461pt;}
.y156{bottom:475.093461pt;}
.y1b2{bottom:476.693460pt;}
.y195{bottom:480.213459pt;}
.yd0{bottom:480.693458pt;}
.y10a{bottom:481.813458pt;}
.y163{bottom:482.293458pt;}
.y152{bottom:483.733457pt;}
.y14f{bottom:484.693457pt;}
.y170{bottom:486.133456pt;}
.y13{bottom:490.773454pt;}
.y87{bottom:492.213454pt;}
.y1a0{bottom:496.213452pt;}
.ya9{bottom:497.493452pt;}
.y1de{bottom:498.933451pt;}
.y12f{bottom:500.213451pt;}
.y13c{bottom:502.453450pt;}
.yce{bottom:502.613450pt;}
.ye4{bottom:503.573449pt;}
.y1b1{bottom:505.493448pt;}
.y155{bottom:507.093448pt;}
.y109{bottom:507.413448pt;}
.y6d{bottom:509.333447pt;}
.y162{bottom:511.093446pt;}
.ya8{bottom:512.693446pt;}
.y94{bottom:516.373444pt;}
.y16f{bottom:518.133443pt;}
.yaa{bottom:518.773443pt;}
.yc5{bottom:523.093441pt;}
.y141{bottom:523.573441pt;}
.ycf{bottom:525.653440pt;}
.y1dd{bottom:526.133440pt;}
.y43{bottom:528.053439pt;}
.y185{bottom:530.293439pt;}
.y86{bottom:530.613438pt;}
.ye3{bottom:531.253438pt;}
.y12e{bottom:532.213438pt;}
.ye5{bottom:532.533438pt;}
.yad{bottom:533.973423pt;}
.yab{bottom:533.973437pt;}
.y72{bottom:536.213436pt;}
.y194{bottom:538.613435pt;}
.y161{bottom:539.893435pt;}
.yf8{bottom:542.933433pt;}
.y1c3{bottom:544.373433pt;}
.y82{bottom:544.693433pt;}
.y5{bottom:546.293432pt;}
.y16e{bottom:550.133431pt;}
.y21{bottom:550.933430pt;}
.y1a1{bottom:551.733430pt;}
.y11b{bottom:554.453429pt;}
.y1dc{bottom:558.933427pt;}
.y108{bottom:559.893427pt;}
.y1e2{bottom:560.053427pt;}
.y12d{bottom:564.213425pt;}
.ya7{bottom:567.413424pt;}
.y160{bottom:568.693423pt;}
.y85{bottom:569.013423pt;}
.y6b{bottom:569.493423pt;}
.y1ae{bottom:570.773422pt;}
.y1c2{bottom:576.373420pt;}
.y84{bottom:576.693420pt;}
.y14e{bottom:576.853420pt;}
.y193{bottom:577.013420pt;}
.ye2{bottom:577.173420pt;}
.y140{bottom:579.573419pt;}
.y1ed{bottom:582.133418pt;}
.y44{bottom:584.053417pt;}
.yc3{bottom:586.133416pt;}
.y1db{bottom:587.733416pt;}
.y1e1{bottom:588.853415pt;}
.y20{bottom:589.333415pt;}
.y1d4{bottom:590.133415pt;}
.y107{bottom:591.893414pt;}
.y1b8{bottom:592.213414pt;}
.y71{bottom:593.493413pt;}
.y116{bottom:593.653413pt;}
.y6a{bottom:596.693412pt;}
.y1f4{bottom:599.573411pt;}
.y4{bottom:603.893409pt;}
.ybd{bottom:611.893406pt;}
.y124{bottom:614.133405pt;}
.y1d3{bottom:615.253405pt;}
.y13b{bottom:620.693402pt;}
.yb1{bottom:622.773402pt;}
.ycd{bottom:624.693401pt;}
.y69{bottom:624.853401pt;}
.y56{bottom:626.293400pt;}
.y1ec{bottom:627.573400pt;}
.ybc{bottom:628.373399pt;}
.y1eb{bottom:629.973399pt;}
.yee{bottom:632.693398pt;}
.yd6{bottom:635.253397pt;}
.yb0{bottom:637.653396pt;}
.yc6{bottom:641.813394pt;}
.y59{bottom:643.253393pt;}
.y1d2{bottom:647.253392pt;}
.y174{bottom:649.013391pt;}
.y10{bottom:649.333391pt;}
.y189{bottom:651.253390pt;}
.y12{bottom:652.533390pt;}
.y18e{bottom:653.813389pt;}
.y26{bottom:654.133389pt;}
.y1a4{bottom:656.693388pt;}
.y68{bottom:656.853388pt;}
.y39{bottom:657.333388pt;}
.y15b{bottom:657.493388pt;}
.y19b{bottom:657.813388pt;}
.y176{bottom:659.253387pt;}
.y121{bottom:659.573387pt;}
.y1a{bottom:659.893387pt;}
.y179{bottom:660.053387pt;}
.y3{bottom:661.493386pt;}
.y95{bottom:662.133386pt;}
.y164{bottom:662.453386pt;}
.y167{bottom:662.773386pt;}
.y1b5{bottom:663.093385pt;}
.y55{bottom:664.693385pt;}
.y89{bottom:665.813384pt;}
.y75{bottom:665.973384pt;}
.y198{bottom:667.253384pt;}
.y126{bottom:668.373383pt;}
.y143{bottom:670.133383pt;}
.y131{bottom:670.933382pt;}
.y1ab{bottom:671.093382pt;}
.y145{bottom:674.293381pt;}
.y58{bottom:678.453379pt;}
.y128{bottom:678.613379pt;}
.y1d1{bottom:678.773379pt;}
.yfc{bottom:679.733379pt;}
.y1f0{bottom:680.693378pt;}
.y18b{bottom:681.333378pt;}
.y1d{bottom:683.413377pt;}
.yed{bottom:684.373377pt;}
.y18d{bottom:685.813376pt;}
.y15a{bottom:686.293376pt;}
.y120{bottom:688.373375pt;}
.y1a3{bottom:688.693375pt;}
.y178{bottom:688.853375pt;}
.y19a{bottom:689.813375pt;}
.y8b{bottom:690.293375pt;}
.y166{bottom:691.573374pt;}
.yd5{bottom:691.893374pt;}
.y1ac{bottom:696.053333pt;}
.y188{bottom:696.053372pt;}
.y1ee{bottom:699.413371pt;}
.y9a{bottom:699.893371pt;}
.yf{bottom:700.533370pt;}
.yd3{bottom:700.853370pt;}
.y1c4{bottom:701.653370pt;}
.y11e{bottom:701.813370pt;}
.y25{bottom:702.133370pt;}
.y1d5{bottom:702.453370pt;}
.y187{bottom:702.613370pt;}
.y11{bottom:703.733369pt;}
.y184{bottom:704.053369pt;}
.y88{bottom:704.213369pt;}
.y175{bottom:704.693369pt;}
.y54{bottom:705.013369pt;}
.y38{bottom:705.333369pt;}
.y1d6{bottom:705.493368pt;}
.y74{bottom:706.293368pt;}
.y19{bottom:707.893368pt;}
.yfb{bottom:708.533367pt;}
.y125{bottom:708.693367pt;}
.y197{bottom:708.853367pt;}
.y127{bottom:710.613366pt;}
.y98{bottom:711.093366pt;}
.y130{bottom:711.253366pt;}
.y1f3{bottom:712.053366pt;}
.y144{bottom:712.693366pt;}
.y6c{bottom:713.013365pt;}
.y132{bottom:713.173365pt;}
.y57{bottom:713.653365pt;}
.y142{bottom:714.933365pt;}
.y159{bottom:715.093365pt;}
.y18a{bottom:715.893364pt;}
.ybe{bottom:716.213364pt;}
.y11f{bottom:717.173364pt;}
.y177{bottom:717.653364pt;}
.y18c{bottom:717.813364pt;}
.y8a{bottom:719.093363pt;}
.y165{bottom:720.373363pt;}
.yd4{bottom:720.693362pt;}
.y199{bottom:721.813362pt;}
.yec{bottom:722.773362pt;}
.y99{bottom:728.693359pt;}
.y1ef{bottom:731.893358pt;}
.h18{height:0.480000pt;}
.h37{height:1.760000pt;}
.h4{height:1.920000pt;}
.h5b{height:2.080000pt;}
.h21{height:2.560000pt;}
.h10{height:3.200000pt;}
.h11{height:3.360000pt;}
.h5f{height:4.000000pt;}
.h4e{height:4.480000pt;}
.h29{height:5.440000pt;}
.h12{height:5.760000pt;}
.h64{height:8.000000pt;}
.h8{height:9.280000pt;}
.h24{height:10.720000pt;}
.h69{height:11.520000pt;}
.h57{height:11.840000pt;}
.h59{height:12.480000pt;}
.h5a{height:12.640000pt;}
.h68{height:14.080000pt;}
.h65{height:14.400000pt;}
.h6c{height:15.520000pt;}
.h66{height:15.840000pt;}
.h26{height:16.480000pt;}
.h6a{height:16.960000pt;}
.h58{height:17.440000pt;}
.h62{height:17.760000pt;}
.h56{height:18.080000pt;}
.h55{height:18.400000pt;}
.h2c{height:18.720000pt;}
.h28{height:18.880000pt;}
.h49{height:20.960000pt;}
.h1f{height:21.600000pt;}
.h63{height:21.920000pt;}
.h35{height:25.440000pt;}
.h60{height:26.240000pt;}
.h4b{height:29.280000pt;}
.hc{height:32.320000pt;}
.h9{height:32.800000pt;}
.h3d{height:32.960000pt;}
.h5d{height:34.080000pt;}
.he{height:41.600000pt;}
.h1a{height:44.160000pt;}
.h5e{height:45.120000pt;}
.h1{height:51.200000pt;}
.h52{height:62.781225pt;}
.h51{height:64.499974pt;}
.h50{height:69.374972pt;}
.h4a{height:69.890597pt;}
.h2f{height:73.152045pt;}
.h3a{height:76.995946pt;}
.h31{height:77.316540pt;}
.h2d{height:77.470985pt;}
.h34{height:77.509547pt;}
.h4d{height:77.811531pt;}
.h47{height:78.515594pt;}
.h2a{height:83.540592pt;}
.h46{height:83.635592pt;}
.h5{height:85.784966pt;}
.h5c{height:86.687465pt;}
.h1e{height:91.432463pt;}
.h20{height:91.589963pt;}
.hd{height:92.499963pt;}
.h27{height:94.171837pt;}
.h25{height:94.218712pt;}
.h67{height:94.784962pt;}
.h1b{height:96.749961pt;}
.h44{height:100.124960pt;}
.h1d{height:100.192460pt;}
.h19{height:104.844646pt;}
.h22{height:104.896833pt;}
.h3e{height:107.595426pt;}
.h14{height:107.714957pt;}
.h45{height:111.472455pt;}
.h54{height:111.554955pt;}
.h3f{height:113.720675pt;}
.h3c{height:114.004642pt;}
.h53{height:114.946829pt;}
.h3{height:118.034953pt;}
.h41{height:120.896827pt;}
.h6b{height:122.152451pt;}
.h3b{height:124.884301pt;}
.h30{height:125.403012pt;}
.h1c{height:125.562450pt;}
.h23{height:125.624950pt;}
.h42{height:126.720000pt;}
.hb{height:128.999948pt;}
.h39{height:131.994037pt;}
.h38{height:132.323377pt;}
.h32{height:132.542395pt;}
.h2e{height:132.806880pt;}
.h33{height:132.872986pt;}
.hf{height:133.499947pt;}
.h16{height:139.964944pt;}
.h40{height:146.029942pt;}
.h15{height:146.280254pt;}
.h61{height:146.353066pt;}
.h7{height:150.284940pt;}
.h36{height:152.429939pt;}
.h4c{height:153.920000pt;}
.h17{height:156.953062pt;}
.h43{height:158.720000pt;}
.ha{height:161.249936pt;}
.h2b{height:166.720000pt;}
.h4f{height:169.600000pt;}
.h6{height:172.214931pt;}
.h48{height:186.035551pt;}
.h2{height:193.499923pt;}
.h13{height:322.499871pt;}
.h0{height:793.333333pt;}
.w19{width:9.280000pt;}
.w8{width:14.240000pt;}
.wf{width:16.000000pt;}
.w1b{width:17.920000pt;}
.w10{width:19.360000pt;}
.w11{width:20.000000pt;}
.wc{width:31.360000pt;}
.w5{width:31.520000pt;}
.w12{width:37.280000pt;}
.w15{width:39.520000pt;}
.w17{width:49.600000pt;}
.w6{width:49.760000pt;}
.w20{width:53.440000pt;}
.w1f{width:54.880000pt;}
.w1d{width:56.479680pt;}
.w14{width:74.560000pt;}
.w1e{width:77.280000pt;}
.w2{width:85.280000pt;}
.w18{width:94.720000pt;}
.w13{width:108.960000pt;}
.w16{width:112.320000pt;}
.wd{width:116.160000pt;}
.w22{width:119.039680pt;}
.w1a{width:123.200000pt;}
.w3{width:141.440000pt;}
.w1{width:154.560000pt;}
.w9{width:187.840000pt;}
.w4{width:211.840000pt;}
.wb{width:212.480000pt;}
.w7{width:283.360000pt;}
.wa{width:289.440000pt;}
.we{width:341.280000pt;}
.w21{width:423.040000pt;}
.w1c{width:772.480000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x33{left:1.440463pt;}
.xc5{left:4.320587pt;}
.x60{left:24.799901pt;}
.x88{left:29.439893pt;}
.x9b{left:30.400580pt;}
.x85{left:89.587431pt;}
.x5a{left:90.867430pt;}
.xb6{left:95.187429pt;}
.xd4{left:96.627428pt;}
.x77{left:98.867427pt;}
.x63{left:100.627426pt;}
.xe5{left:101.747426pt;}
.x87{left:103.507520pt;}
.x4b{left:105.747424pt;}
.x57{left:106.867424pt;}
.x104{left:107.827424pt;}
.x27{left:109.267423pt;}
.x4a{left:111.347955pt;}
.xa9{left:113.427421pt;}
.x41{left:114.867421pt;}
.x5b{left:115.987420pt;}
.x5e{left:118.707419pt;}
.x8e{left:122.867418pt;}
.x1b{left:124.947417pt;}
.xa2{left:128.307415pt;}
.x18{left:129.907415pt;}
.xa5{left:130.867414pt;}
.x100{left:131.987414pt;}
.x89{left:132.947413pt;}
.xf{left:135.187946pt;}
.x3d{left:138.387945pt;}
.xdd{left:139.827944pt;}
.x3e{left:140.947944pt;}
.x4d{left:142.067943pt;}
.x4c{left:143.027943pt;}
.xa4{left:146.867941pt;}
.xcd{left:150.867940pt;}
.x22{left:152.147939pt;}
.xa6{left:154.867938pt;}
.x43{left:157.747937pt;}
.x1d{left:160.467936pt;}
.xa8{left:161.587935pt;}
.xc2{left:162.867935pt;}
.x23{left:165.747934pt;}
.x2b{left:167.347933pt;}
.xf3{left:168.627933pt;}
.x24{left:169.907932pt;}
.x25{left:175.027930pt;}
.x9e{left:177.587929pt;}
.x13{left:178.867928pt;}
.x26{left:182.707927pt;}
.xbb{left:183.827926pt;}
.x15{left:185.427926pt;}
.x12{left:187.507925pt;}
.xee{left:188.947924pt;}
.xa{left:191.347923pt;}
.x19{left:193.267923pt;}
.x96{left:194.867922pt;}
.xeb{left:199.667920pt;}
.xf1{left:202.067919pt;}
.xd3{left:207.027917pt;}
.xef{left:208.947916pt;}
.x99{left:210.387200pt;}
.x47{left:211.507915pt;}
.x14{left:213.107915pt;}
.x2e{left:214.387914pt;}
.x16{left:216.627913pt;}
.x8c{left:218.867912pt;}
.xce{left:222.227911pt;}
.x44{left:224.307910pt;}
.x8a{left:226.867909pt;}
.xab{left:228.467909pt;}
.xec{left:230.867908pt;}
.x5f{left:234.867906pt;}
.x101{left:237.267372pt;}
.xb2{left:239.827904pt;}
.xa7{left:241.267903pt;}
.x86{left:242.867903pt;}
.x3c{left:247.347901pt;}
.xb1{left:249.427900pt;}
.x68{left:250.867900pt;}
.xed{left:253.747899pt;}
.x5{left:255.187898pt;}
.x6{left:256.467897pt;}
.xc3{left:258.867896pt;}
.x102{left:261.427895pt;}
.xd7{left:266.387893pt;}
.xe4{left:268.787200pt;}
.x3b{left:271.347891pt;}
.xe3{left:272.627891pt;}
.x103{left:275.507890pt;}
.x78{left:276.947889pt;}
.x49{left:280.147888pt;}
.x59{left:283.027887pt;}
.xe8{left:283.987886pt;}
.xba{left:290.867884pt;}
.x98{left:293.587883pt;}
.xc7{left:296.467881pt;}
.xf4{left:298.067881pt;}
.xe{left:299.187880pt;}
.x3f{left:304.787878pt;}
.x67{left:306.867877pt;}
.x90{left:310.067876pt;}
.x35{left:312.467875pt;}
.x48{left:315.827874pt;}
.x1c{left:317.107873pt;}
.x7{left:320.627872pt;}
.x84{left:323.027871pt;}
.xb4{left:325.587870pt;}
.xcf{left:327.187869pt;}
.xf7{left:333.267867pt;}
.x62{left:335.667866pt;}
.xf5{left:337.747200pt;}
.xe2{left:339.667864pt;}
.x58{left:340.787864pt;}
.x1a{left:345.107862pt;}
.x4{left:351.827859pt;}
.x2a{left:353.107859pt;}
.xb9{left:359.987856pt;}
.x1{left:361.107200pt;}
.x1e{left:363.827200pt;}
.xfa{left:367.987853pt;}
.xde{left:371.987851pt;}
.xc8{left:375.347850pt;}
.xf9{left:376.947849pt;}
.x9d{left:380.467848pt;}
.xaa{left:391.507843pt;}
.x9c{left:392.627843pt;}
.x54{left:394.867200pt;}
.x2f{left:398.227841pt;}
.x9{left:400.147840pt;}
.xf0{left:401.427839pt;}
.x1f{left:403.027200pt;}
.xae{left:407.347837pt;}
.x17{left:408.627837pt;}
.xda{left:411.347835pt;}
.x8f{left:413.267835pt;}
.xc4{left:419.027200pt;}
.xbd{left:420.147832pt;}
.xbe{left:423.667831pt;}
.x91{left:425.427830pt;}
.xbc{left:427.187829pt;}
.xb5{left:431.187828pt;}
.xcc{left:436.147826pt;}
.xff{left:438.067825pt;}
.xfd{left:443.027823pt;}
.xdf{left:445.747822pt;}
.xa0{left:449.427820pt;}
.x95{left:457.427817pt;}
.x20{left:460.787200pt;}
.xfc{left:463.027815pt;}
.xfb{left:464.627814pt;}
.x40{left:467.187813pt;}
.xa1{left:470.387812pt;}
.x56{left:474.867810pt;}
.x81{left:475.827810pt;}
.x10{left:479.187808pt;}
.xaf{left:489.267804pt;}
.x46{left:493.907802pt;}
.xa3{left:506.547797pt;}
.x5c{left:514.867794pt;}
.x9a{left:518.867200pt;}
.x2{left:527.667200pt;}
.x5d{left:529.267788pt;}
.x6a{left:530.867788pt;}
.x2d{left:538.067785pt;}
.x8{left:542.067783pt;}
.xc9{left:554.867778pt;}
.xca{left:570.707200pt;}
.x8d{left:574.387770pt;}
.xc6{left:582.227200pt;}
.x83{left:586.707765pt;}
.x64{left:594.867762pt;}
.x80{left:599.987760pt;}
.x7f{left:605.587200pt;}
.x6e{left:607.348218pt;}
.xcb{left:610.867756pt;}
.x3{left:612.947200pt;}
.xf8{left:619.187752pt;}
.x76{left:624.948080pt;}
.xb8{left:626.547749pt;}
.x7e{left:633.907200pt;}
.x82{left:634.867746pt;}
.x45{left:640.467200pt;}
.xe6{left:641.907743pt;}
.x55{left:642.867743pt;}
.x71{left:643.987912pt;}
.x7b{left:650.067740pt;}
.x3a{left:652.467739pt;}
.x38{left:654.867738pt;}
.xb{left:656.947737pt;}
.x39{left:662.227735pt;}
.x28{left:687.987725pt;}
.x97{left:690.867724pt;}
.xb0{left:691.987723pt;}
.x9f{left:693.747723pt;}
.x6d{left:698.388045pt;}
.x74{left:700.947720pt;}
.x4e{left:703.987718pt;}
.x93{left:706.867717pt;}
.xf2{left:707.827717pt;}
.x69{left:708.947716pt;}
.x105{left:712.787715pt;}
.x73{left:714.067718pt;}
.x61{left:722.867200pt;}
.x7a{left:727.027709pt;}
.x42{left:728.147709pt;}
.x70{left:729.587708pt;}
.xc0{left:730.867708pt;}
.xdc{left:732.787707pt;}
.xc{left:735.027706pt;}
.xc1{left:736.787705pt;}
.xad{left:737.747705pt;}
.x66{left:738.867704pt;}
.x7d{left:739.987200pt;}
.xd9{left:741.587703pt;}
.x21{left:744.147200pt;}
.xf6{left:753.427699pt;}
.x65{left:754.707698pt;}
.xac{left:756.787697pt;}
.xd{left:758.227697pt;}
.xd8{left:759.187696pt;}
.x75{left:765.267694pt;}
.xb3{left:768.307693pt;}
.xdb{left:769.907692pt;}
.x8b{left:770.867692pt;}
.x7c{left:772.307691pt;}
.xbf{left:776.787689pt;}
.xe9{left:778.867688pt;}
.xea{left:779.987688pt;}
.xe7{left:787.667685pt;}
.xe1{left:788.627685pt;}
.xd5{left:790.227684pt;}
.xd6{left:795.667682pt;}
.x36{left:803.027679pt;}
.x72{left:805.427678pt;}
.xd1{left:809.747676pt;}
.xfe{left:810.707676pt;}
.xd0{left:814.867674pt;}
.xe0{left:816.307673pt;}
.x11{left:817.907200pt;}
.x4f{left:825.427670pt;}
.x6c{left:826.547669pt;}
.x2c{left:828.627669pt;}
.x79{left:830.387668pt;}
.x50{left:832.467667pt;}
.xd2{left:835.027666pt;}
.x51{left:839.027664pt;}
.x32{left:841.587200pt;}
.x6f{left:843.187663pt;}
.x31{left:847.507661pt;}
.x6b{left:854.707658pt;}
.x29{left:856.947657pt;}
.xb7{left:859.987656pt;}
.x34{left:870.387652pt;}
.x30{left:873.107651pt;}
.x37{left:875.027650pt;}
.x92{left:890.067644pt;}
.x52{left:919.027632pt;}
.x94{left:933.747627pt;}
.x53{left:997.107601pt;}
}




    .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; }
  