
    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_895b9c02c32de7509a155bc3.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5495b192cdc8f8b2ed6951c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_52e75f713ef1ae7db6ee8ae9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_965c0be384e7ff1cd879bc67.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.142090;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_9b225d620b2b21ef9bfd4bfc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_54c39b2a4d5d40727ffc8d7b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904785;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_ff15381f9c293aaf574752d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.684000;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_55e87214b36e4611b511e71f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.m7{transform:matrix(0.125840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.177707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177707,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.182311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182311,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.182457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182457,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.183049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183049,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);}
.m8{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m4{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,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);}
.v8{vertical-align:-25.201029px;}
.v2{vertical-align:-18.000000px;}
.v6{vertical-align:-13.680000px;}
.vc{vertical-align:-11.161725px;}
.ve{vertical-align:-9.358200px;}
.v3{vertical-align:-2.876400px;}
.v10{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.880000px;}
.v7{vertical-align:13.320000px;}
.vd{vertical-align:14.400000px;}
.v1{vertical-align:18.000000px;}
.va{vertical-align:21.239776px;}
.v4{vertical-align:24.119471px;}
.v9{vertical-align:34.563673px;}
.v5{vertical-align:48.600071px;}
.vb{vertical-align:56.520000px;}
.ls4c{letter-spacing:-0.361800px;}
.ls6d{letter-spacing:-0.356400px;}
.ls30{letter-spacing:-0.340200px;}
.ls50{letter-spacing:-0.307800px;}
.ls28{letter-spacing:-0.297000px;}
.ls49{letter-spacing:-0.280800px;}
.ls60{letter-spacing:-0.270000px;}
.ls31{letter-spacing:-0.243000px;}
.ls2f{letter-spacing:-0.178200px;}
.ls36{letter-spacing:-0.167400px;}
.ls5f{letter-spacing:-0.151200px;}
.ls65{letter-spacing:-0.144000px;}
.ls5c{letter-spacing:-0.140400px;}
.ls4a{letter-spacing:-0.129600px;}
.ls48{letter-spacing:-0.118800px;}
.ls62{letter-spacing:-0.113400px;}
.ls6c{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:-0.097200px;}
.ls2e{letter-spacing:-0.086400px;}
.ls4d{letter-spacing:-0.081000px;}
.ls5e{letter-spacing:-0.079200px;}
.ls35{letter-spacing:-0.075600px;}
.ls61{letter-spacing:-0.064800px;}
.ls63{letter-spacing:-0.054000px;}
.ls26{letter-spacing:-0.048600px;}
.ls2d{letter-spacing:-0.043200px;}
.ls22{letter-spacing:-0.037800px;}
.ls51{letter-spacing:-0.028800px;}
.ls23{letter-spacing:-0.027000px;}
.ls29{letter-spacing:-0.021600px;}
.ls25{letter-spacing:-0.016200px;}
.ls37{letter-spacing:-0.010800px;}
.ls27{letter-spacing:-0.005400px;}
.ls24{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.010800px;}
.ls53{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.016200px;}
.ls13{letter-spacing:0.019800px;}
.ls0{letter-spacing:0.021600px;}
.ls20{letter-spacing:0.025200px;}
.lsd{letter-spacing:0.027000px;}
.lsc{letter-spacing:0.032400px;}
.ls1b{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.037800px;}
.ls3{letter-spacing:0.043200px;}
.ls4{letter-spacing:0.048600px;}
.ls8{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.059400px;}
.ls19{letter-spacing:0.064800px;}
.ls14{letter-spacing:0.070200px;}
.ls46{letter-spacing:0.072000px;}
.lse{letter-spacing:0.075600px;}
.ls6e{letter-spacing:0.079200px;}
.ls9{letter-spacing:0.081000px;}
.ls15{letter-spacing:0.086400px;}
.lsa{letter-spacing:0.091800px;}
.lsb{letter-spacing:0.097200px;}
.ls7{letter-spacing:0.102600px;}
.ls18{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.113400px;}
.lsf{letter-spacing:0.118800px;}
.ls6b{letter-spacing:0.124200px;}
.ls58{letter-spacing:0.126000px;}
.ls59{letter-spacing:0.127800px;}
.ls11{letter-spacing:0.129600px;}
.ls3a{letter-spacing:0.135000px;}
.ls5d{letter-spacing:0.136800px;}
.ls3b{letter-spacing:0.142200px;}
.ls3c{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.145800px;}
.ls1d{letter-spacing:0.151200px;}
.ls17{letter-spacing:0.156600px;}
.ls41{letter-spacing:0.167400px;}
.ls1f{letter-spacing:0.172800px;}
.ls1a{letter-spacing:0.178200px;}
.ls4f{letter-spacing:1.258200px;}
.ls4b{letter-spacing:3.780000px;}
.ls38{letter-spacing:4.860000px;}
.ls33{letter-spacing:7.738200px;}
.ls32{letter-spacing:8.100000px;}
.ls2b{letter-spacing:8.461800px;}
.ls47{letter-spacing:8.818200px;}
.ls34{letter-spacing:9.541800px;}
.ls68{letter-spacing:14.580000px;}
.ls67{letter-spacing:14.941800px;}
.ls64{letter-spacing:16.740000px;}
.ls57{letter-spacing:33.354000px;}
.ls3f{letter-spacing:34.616534px;}
.ls5b{letter-spacing:40.094584px;}
.ls66{letter-spacing:54.540000px;}
.ls52{letter-spacing:68.148000px;}
.ls4e{letter-spacing:71.820000px;}
.ls39{letter-spacing:82.872920px;}
.ls54{letter-spacing:93.481913px;}
.ls1c{letter-spacing:100.903200px;}
.ls69{letter-spacing:102.060000px;}
.ls3e{letter-spacing:121.498366px;}
.ls6a{letter-spacing:129.060000px;}
.ls3d{letter-spacing:157.579207px;}
.ls21{letter-spacing:176.657075px;}
.ls43{letter-spacing:205.080600px;}
.ls40{letter-spacing:273.154663px;}
.ls16{letter-spacing:310.625100px;}
.ls2c{letter-spacing:429.718935px;}
.ls56{letter-spacing:514.598178px;}
.ls55{letter-spacing:647.271882px;}
.ls45{letter-spacing:656.880600px;}
.ls5a{letter-spacing:942.061165px;}
.ls44{letter-spacing:968.941800px;}
.ls42{letter-spacing:978.658200px;}
.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;}
}
.ws16{word-spacing:-54.000000px;}
.ws29{word-spacing:-53.935200px;}
.ws24{word-spacing:-53.691000px;}
.ws17{word-spacing:-31.331932px;}
.ws2a{word-spacing:-31.294433px;}
.ws26{word-spacing:-31.152658px;}
.ws14{word-spacing:-29.646000px;}
.ws2f{word-spacing:-29.633812px;}
.ws33{word-spacing:-29.625248px;}
.ws19{word-spacing:-29.610425px;}
.ws25{word-spacing:-29.603507px;}
.ws11{word-spacing:-22.949298px;}
.ws15{word-spacing:-14.999700px;}
.ws1e{word-spacing:-13.618800px;}
.ws18{word-spacing:-13.591800px;}
.ws3d{word-spacing:-13.575600px;}
.ws3f{word-spacing:-13.537800px;}
.ws30{word-spacing:-13.532400px;}
.ws1{word-spacing:-13.500000px;}
.ws2e{word-spacing:-13.494450px;}
.ws32{word-spacing:-13.490550px;}
.ws38{word-spacing:-13.483800px;}
.ws1c{word-spacing:-13.480650px;}
.ws5{word-spacing:-13.456800px;}
.ws1f{word-spacing:-13.381200px;}
.ws21{word-spacing:-10.499700px;}
.ws2d{word-spacing:-10.495500px;}
.ws31{word-spacing:-10.492800px;}
.wse{word-spacing:-10.450500px;}
.ws35{word-spacing:-9.136800px;}
.ws40{word-spacing:-9.079200px;}
.ws0{word-spacing:-9.000000px;}
.ws2c{word-spacing:-8.971200px;}
.ws36{word-spacing:-8.920800px;}
.ws3b{word-spacing:-8.892000px;}
.ws39{word-spacing:-8.856000px;}
.ws6{word-spacing:-0.054000px;}
.ws13{word-spacing:0.000000px;}
.ws1b{word-spacing:0.898640px;}
.ws37{word-spacing:8.181000px;}
.ws3c{word-spacing:19.656000px;}
.ws1a{word-spacing:25.207241px;}
.ws20{word-spacing:32.149800px;}
.ws3a{word-spacing:58.109400px;}
.ws3{word-spacing:87.659544px;}
.ws3e{word-spacing:88.554600px;}
.ws1d{word-spacing:144.019070px;}
.wsf{word-spacing:148.108236px;}
.ws12{word-spacing:148.708701px;}
.ws10{word-spacing:337.201556px;}
.ws34{word-spacing:361.114200px;}
.ws2{word-spacing:361.372861px;}
.wsd{word-spacing:400.010519px;}
.wsc{word-spacing:443.611149px;}
.ws27{word-spacing:473.633238px;}
.ws22{word-spacing:516.257076px;}
.ws8{word-spacing:576.287863px;}
.wsb{word-spacing:623.808884px;}
.wsa{word-spacing:626.220288px;}
.ws28{word-spacing:644.182792px;}
.ws7{word-spacing:703.621440px;}
.ws9{word-spacing:723.687598px;}
.ws4{word-spacing:769.780358px;}
.ws2b{word-spacing:777.742275px;}
.ws23{word-spacing:782.059734px;}
._77{margin-left:-603.583215px;}
._70{margin-left:-403.255308px;}
._7e{margin-left:-399.665513px;}
._21{margin-left:-386.956512px;}
._31{margin-left:-375.840000px;}
._6e{margin-left:-346.911047px;}
._60{margin-left:-337.911365px;}
._22{margin-left:-331.561872px;}
._6c{margin-left:-312.199591px;}
._63{margin-left:-305.432073px;}
._8c{margin-left:-297.378000px;}
._19{margin-left:-291.379714px;}
._6b{margin-left:-283.182146px;}
._7a{margin-left:-274.918184px;}
._76{margin-left:-270.405900px;}
._85{margin-left:-264.344629px;}
._5e{margin-left:-259.084827px;}
._5b{margin-left:-257.779800px;}
._30{margin-left:-256.364640px;}
._3b{margin-left:-254.836122px;}
._64{margin-left:-246.394360px;}
._6a{margin-left:-242.774225px;}
._5a{margin-left:-237.367800px;}
._18{margin-left:-225.036418px;}
._81{margin-left:-223.316954px;}
._5f{margin-left:-215.334511px;}
._6f{margin-left:-212.629989px;}
._82{margin-left:-210.351487px;}
._8b{margin-left:-206.998491px;}
._33{margin-left:-201.679503px;}
._8a{margin-left:-193.785228px;}
._84{margin-left:-191.630085px;}
._66{margin-left:-190.313170px;}
._7f{margin-left:-181.997756px;}
._50{margin-left:-180.937800px;}
._35{margin-left:-175.166888px;}
._53{margin-left:-172.907747px;}
._79{margin-left:-171.036369px;}
._49{margin-left:-168.604200px;}
._4a{margin-left:-165.061800px;}
._75{margin-left:-163.407475px;}
._83{margin-left:-159.394026px;}
._4f{margin-left:-157.534200px;}
._55{margin-left:-154.671586px;}
._62{margin-left:-151.883787px;}
._25{margin-left:-149.964332px;}
._7c{margin-left:-145.413550px;}
._61{margin-left:-143.903862px;}
._40{margin-left:-139.917744px;}
._2b{margin-left:-136.412724px;}
._2a{margin-left:-135.204676px;}
._1a{margin-left:-133.235685px;}
._36{margin-left:-130.745845px;}
._5d{margin-left:-129.339812px;}
._23{margin-left:-127.079856px;}
._87{margin-left:-125.980152px;}
._1b{margin-left:-124.629049px;}
._73{margin-left:-122.485186px;}
._17{margin-left:-119.815218px;}
._28{margin-left:-118.646372px;}
._2d{margin-left:-116.595376px;}
._67{margin-left:-115.154120px;}
._7b{margin-left:-113.849976px;}
._14{margin-left:-111.266601px;}
._72{margin-left:-109.950318px;}
._38{margin-left:-107.382000px;}
._7d{margin-left:-103.630041px;}
._24{margin-left:-102.485381px;}
._5c{margin-left:-100.980000px;}
._4c{margin-left:-99.343800px;}
._42{margin-left:-98.037349px;}
._15{margin-left:-96.618750px;}
._29{margin-left:-95.285418px;}
._26{margin-left:-93.685426px;}
._37{margin-left:-92.504224px;}
._32{margin-left:-91.099997px;}
._2e{margin-left:-90.006220px;}
._52{margin-left:-88.414200px;}
._2c{margin-left:-87.394213px;}
._39{margin-left:-85.422381px;}
._68{margin-left:-84.138737px;}
._27{margin-left:-82.816899px;}
._88{margin-left:-81.331828px;}
._34{margin-left:-80.251938px;}
._3a{margin-left:-78.195572px;}
._51{margin-left:-74.017800px;}
._4b{margin-left:-71.144118px;}
._13{margin-left:-69.616318px;}
._4d{margin-left:-67.662000px;}
._4e{margin-left:-64.051800px;}
._3f{margin-left:-62.539972px;}
._12{margin-left:-59.307375px;}
._41{margin-left:-56.496255px;}
._86{margin-left:-40.520216px;}
._74{margin-left:-37.011542px;}
._65{margin-left:-35.138569px;}
._a2{margin-left:-17.452800px;}
._a3{margin-left:-15.849000px;}
._a7{margin-left:-10.665000px;}
._d{margin-left:-9.444600px;}
._c{margin-left:-8.235000px;}
._3e{margin-left:-7.068600px;}
._45{margin-left:-4.402800px;}
._58{margin-left:-3.022200px;}
._1{margin-left:-1.144800px;}
._0{width:1.036800px;}
._3c{width:2.073600px;}
._9{width:3.385800px;}
._5{width:5.140800px;}
._8{width:6.993000px;}
._4{width:8.170200px;}
._3{width:9.207000px;}
._2{width:10.605600px;}
._20{width:12.049200px;}
._7{width:14.612400px;}
._6{width:15.616800px;}
._47{width:17.193600px;}
._2f{width:18.592200px;}
._3d{width:19.618200px;}
._1f{width:20.682000px;}
._a9{width:21.756600px;}
._59{width:22.766400px;}
._b{width:23.905800px;}
._44{width:25.358400px;}
._78{width:26.551800px;}
._46{width:27.842400px;}
._48{width:29.694600px;}
._f{width:31.444200px;}
._10{width:33.080400px;}
._1e{width:34.614000px;}
._1d{width:35.958600px;}
._e{width:37.951200px;}
._11{width:41.634000px;}
._a{width:44.841600px;}
._9b{width:46.207800px;}
._9e{width:50.144400px;}
._9f{width:51.462000px;}
._43{width:59.798009px;}
._a4{width:61.815600px;}
._a8{width:68.574600px;}
._1c{width:71.803800px;}
._a5{width:88.916400px;}
._9a{width:96.198417px;}
._a6{width:101.784600px;}
._99{width:107.638200px;}
._98{width:113.756400px;}
._16{width:116.172783px;}
._54{width:148.572000px;}
._aa{width:162.199800px;}
._57{width:198.855000px;}
._56{width:199.924200px;}
._9d{width:258.984000px;}
._a0{width:263.898000px;}
._89{width:323.499037px;}
._8e{width:386.591400px;}
._8d{width:422.031600px;}
._96{width:428.068800px;}
._a1{width:458.271000px;}
._90{width:502.507800px;}
._97{width:519.269400px;}
._71{width:531.759552px;}
._92{width:561.956400px;}
._93{width:567.772200px;}
._8f{width:573.528600px;}
._95{width:579.760200px;}
._91{width:582.341400px;}
._94{width:608.202000px;}
._80{width:631.543789px;}
._69{width:661.159484px;}
._9c{width:883.564200px;}
._6d{width:902.880000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.793600px;}
.fsa{font-size:35.829600px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fsb{font-size:41.802000px;}
.fs4{font-size:41.869800px;}
.fs13{font-size:41.940000px;}
.fs10{font-size:41.949600px;}
.fs20{font-size:41.971200px;}
.fs1b{font-size:41.982000px;}
.fsd{font-size:41.998800px;}
.fs6{font-size:53.691000px;}
.fsc{font-size:53.745600px;}
.fs3{font-size:53.832600px;}
.fs12{font-size:53.922600px;}
.fs11{font-size:53.935200px;}
.fs21{font-size:53.962200px;}
.fs1c{font-size:53.977800px;}
.fs0{font-size:54.000000px;}
.fs18{font-size:56.744368px;}
.fs15{font-size:56.894270px;}
.fs19{font-size:57.002611px;}
.fsf{font-size:57.070914px;}
.fs9{font-size:57.105000px;}
.fse{font-size:59.998800px;}
.fs22{font-size:71.949000px;}
.fs1d{font-size:71.970600px;}
.fs1f{font-size:73.635600px;}
.fs8{font-size:73.638600px;}
.fs1a{font-size:73.657800px;}
.fs2{font-size:73.833600px;}
.fs14{font-size:75.516000px;}
.fs1e{font-size:77.968200px;}
.fs17{font-size:77.998800px;}
.fs16{font-size:106.686600px;}
.y0{bottom:0.000000px;}
.y99{bottom:2.970450px;}
.y4e{bottom:3.150450px;}
.y14a{bottom:3.240450px;}
.y46{bottom:3.960450px;}
.yc6{bottom:5.850450px;}
.y45{bottom:86.160000px;}
.ybc{bottom:86.340150px;}
.y47{bottom:86.700450px;}
.y143{bottom:93.721050px;}
.y73{bottom:95.700600px;}
.y1b7{bottom:97.409550px;}
.ybb{bottom:101.820600px;}
.yfd{bottom:104.520150px;}
.y44{bottom:106.680000px;}
.y142{bottom:109.290450px;}
.y72{bottom:111.181050px;}
.y1b6{bottom:112.890000px;}
.y185{bottom:113.700900px;}
.yba{bottom:117.390150px;}
.yfc{bottom:120.000600px;}
.y43{bottom:122.249550px;}
.y141{bottom:124.770900px;}
.y71{bottom:126.750600px;}
.y1b5{bottom:128.459550px;}
.y183{bottom:129.270000px;}
.yb9{bottom:132.870450px;}
.y184{bottom:133.770450px;}
.yfb{bottom:135.570150px;}
.y42{bottom:137.730000px;}
.y140{bottom:140.340450px;}
.y70{bottom:142.231050px;}
.y1b4{bottom:143.940000px;}
.y182{bottom:144.750900px;}
.yb8{bottom:148.440000px;}
.yfa{bottom:151.050600px;}
.y41{bottom:153.299550px;}
.y13f{bottom:155.820900px;}
.y6f{bottom:157.800600px;}
.y1b3{bottom:159.509550px;}
.y181{bottom:160.320450px;}
.yb7{bottom:163.920150px;}
.yf9{bottom:166.620150px;}
.y40{bottom:168.780000px;}
.y13e{bottom:171.390000px;}
.y6e{bottom:173.281050px;}
.y1b2{bottom:174.990000px;}
.y180{bottom:175.800900px;}
.yb6{bottom:179.400600px;}
.yf8{bottom:182.100600px;}
.y3f{bottom:184.349550px;}
.y13d{bottom:186.870450px;}
.y6d{bottom:188.850600px;}
.y1b1{bottom:190.559550px;}
.y17f{bottom:191.370450px;}
.yb5{bottom:194.970150px;}
.yf7{bottom:197.670150px;}
.y3e{bottom:199.830000px;}
.y13c{bottom:202.440000px;}
.y6c{bottom:204.331050px;}
.y1b0{bottom:206.040000px;}
.y17e{bottom:206.850900px;}
.yb4{bottom:210.450600px;}
.yf6{bottom:213.150600px;}
.y3d{bottom:215.399550px;}
.y13b{bottom:217.920450px;}
.y6b{bottom:219.900600px;}
.y1af{bottom:221.609550px;}
.y17d{bottom:222.420450px;}
.yb3{bottom:226.020150px;}
.yf5{bottom:228.720150px;}
.y3c{bottom:230.880000px;}
.y13a{bottom:233.490000px;}
.y6a{bottom:235.381050px;}
.y1ae{bottom:237.090000px;}
.y17c{bottom:237.900900px;}
.yb2{bottom:241.500600px;}
.yf4{bottom:244.200600px;}
.y3b{bottom:247.350450px;}
.y139{bottom:248.970450px;}
.y69{bottom:250.950600px;}
.y1ad{bottom:252.659550px;}
.y17b{bottom:253.470450px;}
.yb1{bottom:257.070150px;}
.yf3{bottom:259.770150px;}
.y138{bottom:264.540000px;}
.y68{bottom:266.431050px;}
.y3a{bottom:267.330900px;}
.y1ac{bottom:268.140000px;}
.y17a{bottom:268.950900px;}
.yb0{bottom:272.550600px;}
.yf2{bottom:275.250600px;}
.y137{bottom:280.020450px;}
.y67{bottom:282.000600px;}
.y39{bottom:282.900000px;}
.y1ab{bottom:283.709550px;}
.y179{bottom:284.520450px;}
.yaf{bottom:288.120150px;}
.yf1{bottom:290.820150px;}
.y136{bottom:295.590000px;}
.y66{bottom:297.481050px;}
.y38{bottom:298.380450px;}
.y1aa{bottom:299.190000px;}
.y178{bottom:300.000900px;}
.yae{bottom:303.600600px;}
.yf0{bottom:306.300600px;}
.y135{bottom:311.070450px;}
.y65{bottom:313.050600px;}
.y37{bottom:314.309250px;}
.y1a9{bottom:314.759550px;}
.y177{bottom:315.570450px;}
.yad{bottom:319.170150px;}
.yef{bottom:321.870150px;}
.y134{bottom:326.640000px;}
.y64{bottom:328.531050px;}
.y1a8{bottom:330.240000px;}
.y36{bottom:330.599700px;}
.y176{bottom:331.050900px;}
.yac{bottom:334.650600px;}
.yee{bottom:337.350600px;}
.y133{bottom:342.120450px;}
.y63{bottom:344.100600px;}
.y1a7{bottom:345.809550px;}
.y35{bottom:346.080150px;}
.y175{bottom:346.620450px;}
.yab{bottom:350.220150px;}
.yed{bottom:352.920150px;}
.y132{bottom:357.600900px;}
.y62{bottom:359.581050px;}
.y1a6{bottom:361.290000px;}
.y34{bottom:361.649700px;}
.y174{bottom:362.100900px;}
.yaa{bottom:365.700600px;}
.yec{bottom:368.400600px;}
.y131{bottom:373.170450px;}
.y61{bottom:375.150600px;}
.y1a5{bottom:376.770450px;}
.y33{bottom:377.130150px;}
.y173{bottom:377.670450px;}
.ya9{bottom:381.270150px;}
.yeb{bottom:383.970150px;}
.y130{bottom:388.650900px;}
.y60{bottom:390.631050px;}
.y1a4{bottom:392.340000px;}
.y32{bottom:392.699700px;}
.y172{bottom:393.150900px;}
.ya8{bottom:396.750600px;}
.yea{bottom:399.450600px;}
.y12f{bottom:404.220450px;}
.y5f{bottom:406.200600px;}
.y1a3{bottom:407.820450px;}
.y31{bottom:408.180150px;}
.y171{bottom:408.720450px;}
.ya7{bottom:412.320150px;}
.ye9{bottom:415.020150px;}
.y12e{bottom:419.700900px;}
.y5e{bottom:421.681050px;}
.y1a2{bottom:423.390000px;}
.y30{bottom:423.749700px;}
.y170{bottom:424.200900px;}
.ya0{bottom:430.410600px;}
.ye8{bottom:430.500000px;}
.y9f{bottom:430.501162px;}
.y12c{bottom:436.170018px;}
.y12a{bottom:436.170450px;}
.y5d{bottom:437.250000px;}
.ya3{bottom:437.610789px;}
.y1a1{bottom:438.870450px;}
.y2f{bottom:439.230150px;}
.y16f{bottom:439.770450px;}
.ya2{bottom:441.030656px;}
.ya6{bottom:441.030701px;}
.y9e{bottom:441.120600px;}
.ye7{bottom:446.069550px;}
.y12d{bottom:448.050398px;}
.y129{bottom:448.590600px;}
.ya1{bottom:449.670405px;}
.ya5{bottom:449.670450px;}
.ya4{bottom:449.670558px;}
.y12b{bottom:451.470450px;}
.y5c{bottom:452.730450px;}
.y1a0{bottom:454.440000px;}
.y16e{bottom:455.250900px;}
.y2d{bottom:455.880582px;}
.ye6{bottom:461.550000px;}
.y9d{bottom:466.860000px;}
.y2a{bottom:467.940450px;}
.y2c{bottom:468.030600px;}
.y2b{bottom:468.120600px;}
.y5b{bottom:468.300000px;}
.y19f{bottom:469.920450px;}
.y16d{bottom:470.820450px;}
.y2e{bottom:476.400223px;}
.ye5{bottom:477.119550px;}
.y128{bottom:480.270450px;}
.y9c{bottom:482.340450px;}
.y5a{bottom:483.780450px;}
.y19e{bottom:485.490000px;}
.ye4{bottom:492.600000px;}
.y29{bottom:493.770000px;}
.y127{bottom:495.750900px;}
.y16c{bottom:496.020600px;}
.y9b{bottom:497.910000px;}
.y59{bottom:499.350000px;}
.y19d{bottom:500.970450px;}
.ye3{bottom:508.169550px;}
.y28{bottom:509.250450px;}
.y124{bottom:512.040600px;}
.y9a{bottom:513.390450px;}
.y58{bottom:514.830450px;}
.y19c{bottom:516.540000px;}
.y121{bottom:518.070450px;}
.y16b{bottom:521.310450px;}
.ye2{bottom:523.650000px;}
.y126{bottom:524.550387px;}
.y123{bottom:524.550450px;}
.y120{bottom:524.730450px;}
.y27{bottom:524.820000px;}
.y97{bottom:529.770450px;}
.y98{bottom:530.130000px;}
.y57{bottom:530.400000px;}
.y19b{bottom:532.020450px;}
.y96{bottom:533.100450px;}
.y125{bottom:533.100698px;}
.y95{bottom:533.100900px;}
.y122{bottom:539.130549px;}
.ye1{bottom:539.219550px;}
.y26{bottom:540.300450px;}
.y56{bottom:545.880450px;}
.y16a{bottom:546.600450px;}
.y19a{bottom:547.590000px;}
.y94{bottom:554.430900px;}
.ye0{bottom:554.700000px;}
.y11f{bottom:554.790900px;}
.y25{bottom:555.870000px;}
.y1d6{bottom:555.870450px;}
.y55{bottom:561.360900px;}
.y199{bottom:563.070450px;}
.y93{bottom:569.911350px;}
.ydf{bottom:570.269550px;}
.y11e{bottom:570.360450px;}
.y24{bottom:571.350450px;}
.y1d5{bottom:571.350900px;}
.y169{bottom:571.890450px;}
.y54{bottom:576.930450px;}
.y198{bottom:578.640000px;}
.y92{bottom:585.480900px;}
.yde{bottom:585.750000px;}
.y23{bottom:586.920000px;}
.y112{bottom:586.920450px;}
.y115{bottom:590.340450px;}
.y111{bottom:590.430450px;}
.y52{bottom:593.400189px;}
.y197{bottom:594.120450px;}
.y53{bottom:596.730450px;}
.y168{bottom:597.180450px;}
.y4d{bottom:599.880000px;}
.y50{bottom:600.330450px;}
.ydd{bottom:601.319550px;}
.y22{bottom:602.400900px;}
.y51{bottom:602.940450px;}
.y4f{bottom:603.030450px;}
.y90{bottom:603.750450px;}
.y8e{bottom:603.750900px;}
.y8c{bottom:608.070878px;}
.y196{bottom:609.690000px;}
.y11b{bottom:610.680634px;}
.y113{bottom:613.469867px;}
.y11d{bottom:613.470450px;}
.ydc{bottom:616.800000px;}
.y8b{bottom:617.790450px;}
.y21{bottom:617.970450px;}
.y91{bottom:618.240000px;}
.y119{bottom:620.130798px;}
.y167{bottom:622.381350px;}
.y8d{bottom:624.540707px;}
.y195{bottom:625.170450px;}
.y114{bottom:625.349723px;}
.y8f{bottom:626.430450px;}
.y116{bottom:628.680881px;}
.y117{bottom:628.680988px;}
.ydb{bottom:632.280900px;}
.y11a{bottom:633.000455px;}
.y20{bottom:633.450900px;}
.y194{bottom:640.740000px;}
.y8a{bottom:641.460450px;}
.y11c{bottom:641.820427px;}
.y118{bottom:642.810037px;}
.y166{bottom:647.400900px;}
.yda{bottom:647.850450px;}
.y1f{bottom:649.020450px;}
.y193{bottom:652.980450px;}
.y89{bottom:657.030000px;}
.y110{bottom:660.809550px;}
.y165{bottom:663.240450px;}
.yd8{bottom:664.230450px;}
.y1e{bottom:664.500900px;}
.yd9{bottom:667.560450px;}
.yd7{bottom:667.560900px;}
.y88{bottom:672.510450px;}
.y10f{bottom:676.290000px;}
.y164{bottom:678.720900px;}
.y1d{bottom:680.069550px;}
.y4c{bottom:680.070000px;}
.y1d4{bottom:680.070450px;}
.y87{bottom:688.080000px;}
.y10e{bottom:691.859550px;}
.yd5{bottom:693.120000px;}
.yd6{bottom:693.120450px;}
.y163{bottom:694.290450px;}
.y1c{bottom:695.550000px;}
.y1d3{bottom:695.550900px;}
.y4b{bottom:695.551350px;}
.y86{bottom:703.560450px;}
.y10d{bottom:707.340000px;}
.y161{bottom:709.590000px;}
.y1b{bottom:711.119550px;}
.y1d2{bottom:711.120450px;}
.y4a{bottom:711.120900px;}
.y162{bottom:712.830450px;}
.yd4{bottom:718.590450px;}
.yd2{bottom:718.590900px;}
.yd3{bottom:718.680450px;}
.y85{bottom:719.130000px;}
.y10c{bottom:722.909550px;}
.y1a{bottom:726.600000px;}
.y1d1{bottom:726.600900px;}
.y49{bottom:726.601350px;}
.y160{bottom:733.080900px;}
.y84{bottom:734.610450px;}
.yd1{bottom:735.330900px;}
.y10b{bottom:738.390000px;}
.y19{bottom:742.169550px;}
.y1d0{bottom:742.170450px;}
.y48{bottom:742.170900px;}
.y15e{bottom:750.000000px;}
.y83{bottom:750.180000px;}
.yc9{bottom:751.800450px;}
.ycb{bottom:751.800841px;}
.y15f{bottom:752.520450px;}
.y10a{bottom:753.870000px;}
.yce{bottom:756.480000px;}
.y18{bottom:757.650000px;}
.y1cf{bottom:757.650900px;}
.yc5{bottom:761.430000px;}
.ycc{bottom:763.681251px;}
.yc8{bottom:764.220450px;}
.y82{bottom:765.660450px;}
.yd0{bottom:767.099100px;}
.yca{bottom:767.100450px;}
.yc7{bottom:767.280450px;}
.y15c{bottom:770.160000px;}
.y109{bottom:770.430450px;}
.y15d{bottom:772.680450px;}
.ycd{bottom:773.130591px;}
.y17{bottom:773.219550px;}
.y1ce{bottom:773.220450px;}
.ycf{bottom:775.559550px;}
.y81{bottom:781.230000px;}
.y108{bottom:786.899100px;}
.y16{bottom:788.700000px;}
.y1cd{bottom:788.700900px;}
.y15b{bottom:793.560450px;}
.yc4{bottom:795.810450px;}
.y80{bottom:796.710450px;}
.y107{bottom:803.369100px;}
.y15{bottom:804.269550px;}
.y1cc{bottom:804.270450px;}
.y159{bottom:810.480000px;}
.yc3{bottom:811.380000px;}
.y7f{bottom:812.280000px;}
.y15a{bottom:813.000450px;}
.y14{bottom:819.750000px;}
.y1cb{bottom:819.750900px;}
.y106{bottom:819.929550px;}
.yc2{bottom:826.860450px;}
.y7e{bottom:827.760450px;}
.y158{bottom:832.350000px;}
.y1ca{bottom:835.318200px;}
.y13{bottom:835.319550px;}
.y105{bottom:835.410000px;}
.yc1{bottom:842.430000px;}
.y7d{bottom:843.330000px;}
.y157{bottom:847.830900px;}
.y1c9{bottom:850.798650px;}
.y12{bottom:850.800000px;}
.y104{bottom:850.979550px;}
.yc0{bottom:857.910450px;}
.y7c{bottom:858.810450px;}
.y1c8{bottom:866.368200px;}
.y11{bottom:866.369550px;}
.y103{bottom:866.460000px;}
.y156{bottom:866.460900px;}
.ybf{bottom:873.480000px;}
.y7b{bottom:874.380000px;}
.y1c7{bottom:881.848650px;}
.y10{bottom:881.850000px;}
.y102{bottom:882.029550px;}
.y155{bottom:886.619550px;}
.ybe{bottom:888.960900px;}
.y7a{bottom:889.860450px;}
.y1c6{bottom:897.418200px;}
.yf{bottom:897.419550px;}
.y101{bottom:897.510000px;}
.y192{bottom:901.020900px;}
.y153{bottom:903.540000px;}
.ybd{bottom:904.530450px;}
.y79{bottom:905.430000px;}
.y154{bottom:906.060450px;}
.y1c5{bottom:912.898650px;}
.ye{bottom:912.900000px;}
.y100{bottom:913.079550px;}
.y191{bottom:916.590450px;}
.y78{bottom:920.910450px;}
.y151{bottom:923.790000px;}
.y152{bottom:926.310450px;}
.y1c4{bottom:928.468200px;}
.yd{bottom:928.469550px;}
.yff{bottom:928.560000px;}
.y190{bottom:934.320450px;}
.y77{bottom:936.480000px;}
.yfe{bottom:940.800450px;}
.y1c3{bottom:943.948650px;}
.yc{bottom:943.950000px;}
.y150{bottom:947.190450px;}
.y76{bottom:951.960450px;}
.y18f{bottom:954.750450px;}
.y1c2{bottom:959.429100px;}
.yb{bottom:959.430450px;}
.y14e{bottom:964.110000px;}
.y14f{bottom:966.630450px;}
.y75{bottom:967.260000px;}
.y1c1{bottom:974.998650px;}
.ya{bottom:975.000000px;}
.y18e{bottom:975.180450px;}
.y74{bottom:979.770450px;}
.y14d{bottom:985.980000px;}
.y1c0{bottom:990.479100px;}
.y9{bottom:990.480450px;}
.y18d{bottom:994.080450px;}
.y14c{bottom:1001.460450px;}
.y1bf{bottom:1006.048650px;}
.y8{bottom:1006.050000px;}
.y18c{bottom:1012.980450px;}
.y149{bottom:1016.850000px;}
.y14b{bottom:1020.090450px;}
.y1be{bottom:1021.529100px;}
.y7{bottom:1026.030450px;}
.y18b{bottom:1031.880450px;}
.y1bd{bottom:1037.098650px;}
.y148{bottom:1040.250900px;}
.y6{bottom:1041.600450px;}
.y18a{bottom:1050.779550px;}
.y1bc{bottom:1052.579100px;}
.y5{bottom:1052.580450px;}
.y147{bottom:1060.410450px;}
.y4{bottom:1067.880000px;}
.y1bb{bottom:1068.148650px;}
.y189{bottom:1068.150000px;}
.y146{bottom:1080.571050px;}
.y3{bottom:1083.360450px;}
.y1ba{bottom:1083.629100px;}
.y188{bottom:1083.630450px;}
.y2{bottom:1098.930000px;}
.y1b9{bottom:1099.198650px;}
.y187{bottom:1099.200000px;}
.y145{bottom:1099.201050px;}
.y1{bottom:1114.410450px;}
.y1b8{bottom:1114.679100px;}
.y186{bottom:1114.680450px;}
.y144{bottom:1114.681500px;}
.hf{height:14.760000px;}
.h46{height:15.300000px;}
.h1e{height:16.470000px;}
.hd{height:17.280000px;}
.h11{height:24.877779px;}
.h3{height:25.013672px;}
.h12{height:29.024631px;}
.h20{height:29.120449px;}
.h1d{height:29.127115px;}
.h3c{height:29.142113px;}
.h34{height:29.149611px;}
.h2b{height:29.161276px;}
.h37{height:29.170110px;}
.h2c{height:29.181783px;}
.h27{height:31.140000px;}
.h1{height:36.597656px;}
.h9{height:37.377909px;}
.h7{height:37.404194px;}
.h23{height:37.440399px;}
.h35{height:37.478726px;}
.h19{height:37.494141px;}
.h40{height:37.494243px;}
.h4a{height:37.518708px;}
.h4{height:37.520508px;}
.h41{height:37.520760px;}
.h45{height:37.521108px;}
.h26{height:37.521708px;}
.hb{height:37.522308px;}
.h15{height:37.522908px;}
.h5{height:37.524108px;}
.ha{height:37.525308px;}
.h3e{height:38.876644px;}
.h16{height:38.902209px;}
.h48{height:40.400508px;}
.h18{height:41.688619px;}
.h49{height:43.011872px;}
.h2{height:43.013672px;}
.h47{height:43.015472px;}
.h32{height:43.016072px;}
.h4b{height:43.017272px;}
.h4c{height:43.022672px;}
.h14{height:49.782912px;}
.h1f{height:49.946861px;}
.h3d{height:49.956776px;}
.h1c{height:49.958532px;}
.h36{height:49.971774px;}
.h3f{height:49.983542px;}
.h38{height:49.997992px;}
.h17{height:50.018555px;}
.h2d{height:50.305061px;}
.h24{height:50.360225px;}
.h44{height:51.200715px;}
.h3a{height:51.920508px;}
.h2e{height:52.560579px;}
.h25{height:52.699429px;}
.h30{height:52.799781px;}
.h1a{height:52.863048px;}
.h10{height:52.894622px;}
.h1b{height:53.265798px;}
.h2f{height:53.303583px;}
.h39{height:61.057843px;}
.hc{height:63.052337px;}
.h31{height:66.621783px;}
.h3b{height:68.206413px;}
.he{height:68.209192px;}
.h33{height:68.226976px;}
.h6{height:68.389814px;}
.h22{height:69.948170px;}
.h42{height:72.219568px;}
.h29{height:72.247912px;}
.h13{height:76.880965px;}
.h2a{height:85.681276px;}
.h43{height:85.690110px;}
.h8{height:98.463568px;}
.h28{height:98.820547px;}
.h21{height:104.511843px;}
.h0{height:1263.000000px;}
.w2{width:3.510000px;}
.w1{width:4.500000px;}
.w6{width:5.490000px;}
.w7{width:8.370000px;}
.w4{width:9.630000px;}
.w3{width:10.710000px;}
.w8{width:36.450000px;}
.w5{width:62.640000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x60{left:27.720000px;}
.x8{left:106.381350px;}
.x66{left:113.040000px;}
.x1{left:119.520000px;}
.x7{left:127.711350px;}
.x2e{left:137.249716px;}
.x2a{left:141.930000px;}
.x50{left:143.100000px;}
.x2d{left:148.050253px;}
.x6{left:152.011350px;}
.xd{left:155.518072px;}
.x31{left:158.490457px;}
.x4d{left:164.430000px;}
.x57{left:168.210000px;}
.x5{left:171.000000px;}
.x4f{left:174.961069px;}
.x55{left:179.820000px;}
.x56{left:184.770000px;}
.x4a{left:186.210000px;}
.x2f{left:187.920000px;}
.x58{left:189.989665px;}
.x45{left:195.480000px;}
.x2b{left:197.819233px;}
.xb{left:203.940080px;}
.xc{left:205.018494px;}
.x30{left:207.720637px;}
.x4c{left:209.970059px;}
.xf{left:211.320000px;}
.x22{left:216.180000px;}
.x53{left:219.959996px;}
.x2c{left:222.300325px;}
.x21{left:232.109550px;}
.x4{left:233.461350px;}
.x49{left:236.340579px;}
.x2{left:238.590000px;}
.x9{left:245.880000px;}
.x52{left:248.220000px;}
.x1f{left:256.860000px;}
.x10{left:258.480000px;}
.x54{left:260.640749px;}
.x1d{left:262.889550px;}
.x1e{left:264.059885px;}
.x47{left:266.490378px;}
.x11{left:268.380000px;}
.x4e{left:272.341068px;}
.x51{left:274.320000px;}
.x25{left:288.360000px;}
.x24{left:293.760000px;}
.x20{left:300.330450px;}
.x13{left:311.220000px;}
.x12{left:317.340000px;}
.xa{left:319.590000px;}
.x23{left:325.710000px;}
.xe{left:331.650000px;}
.x4b{left:345.150000px;}
.x48{left:351.540000px;}
.x29{left:360.000000px;}
.x46{left:362.880000px;}
.x28{left:366.300000px;}
.x27{left:372.600000px;}
.x26{left:383.400000px;}
.x1c{left:419.310000px;}
.x3{left:435.870900px;}
.x14{left:473.490000px;}
.x64{left:475.200000px;}
.x63{left:476.369550px;}
.x5c{left:477.990000px;}
.x5d{left:481.770000px;}
.x59{left:483.210000px;}
.x5b{left:491.040000px;}
.x5f{left:492.480000px;}
.x15{left:494.820450px;}
.x5e{left:506.969550px;}
.x61{left:508.680000px;}
.x3c{left:519.659550px;}
.x3b{left:525.690000px;}
.x62{left:527.490000px;}
.x1a{left:529.650669px;}
.x65{left:537.930000px;}
.x43{left:544.050000px;}
.x42{left:551.160000px;}
.x1b{left:559.710000px;}
.x5a{left:562.229550px;}
.x16{left:571.050000px;}
.x3a{left:574.290000px;}
.x38{left:591.300000px;}
.x19{left:593.730000px;}
.x36{left:601.379635px;}
.x18{left:602.460000px;}
.x34{left:605.070000px;}
.x17{left:609.570000px;}
.x32{left:616.680000px;}
.x35{left:633.420000px;}
.x3d{left:642.870000px;}
.x37{left:649.979596px;}
.x39{left:651.239880px;}
.x33{left:657.900000px;}
.x3f{left:662.130000px;}
.x3e{left:664.290000px;}
.x44{left:753.120000px;}
.x41{left:754.650000px;}
.x40{left:756.180000px;}
@media print{
.v8{vertical-align:-22.400914pt;}
.v2{vertical-align:-16.000000pt;}
.v6{vertical-align:-12.160000pt;}
.vc{vertical-align:-9.921534pt;}
.ve{vertical-align:-8.318400pt;}
.v3{vertical-align:-2.556800pt;}
.v10{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:2.560000pt;}
.v7{vertical-align:11.840000pt;}
.vd{vertical-align:12.800000pt;}
.v1{vertical-align:16.000000pt;}
.va{vertical-align:18.879801pt;}
.v4{vertical-align:21.439530pt;}
.v9{vertical-align:30.723265pt;}
.v5{vertical-align:43.200063pt;}
.vb{vertical-align:50.240000pt;}
.ls4c{letter-spacing:-0.321600pt;}
.ls6d{letter-spacing:-0.316800pt;}
.ls30{letter-spacing:-0.302400pt;}
.ls50{letter-spacing:-0.273600pt;}
.ls28{letter-spacing:-0.264000pt;}
.ls49{letter-spacing:-0.249600pt;}
.ls60{letter-spacing:-0.240000pt;}
.ls31{letter-spacing:-0.216000pt;}
.ls2f{letter-spacing:-0.158400pt;}
.ls36{letter-spacing:-0.148800pt;}
.ls5f{letter-spacing:-0.134400pt;}
.ls65{letter-spacing:-0.128000pt;}
.ls5c{letter-spacing:-0.124800pt;}
.ls4a{letter-spacing:-0.115200pt;}
.ls48{letter-spacing:-0.105600pt;}
.ls62{letter-spacing:-0.100800pt;}
.ls6c{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:-0.086400pt;}
.ls2e{letter-spacing:-0.076800pt;}
.ls4d{letter-spacing:-0.072000pt;}
.ls5e{letter-spacing:-0.070400pt;}
.ls35{letter-spacing:-0.067200pt;}
.ls61{letter-spacing:-0.057600pt;}
.ls63{letter-spacing:-0.048000pt;}
.ls26{letter-spacing:-0.043200pt;}
.ls2d{letter-spacing:-0.038400pt;}
.ls22{letter-spacing:-0.033600pt;}
.ls51{letter-spacing:-0.025600pt;}
.ls23{letter-spacing:-0.024000pt;}
.ls29{letter-spacing:-0.019200pt;}
.ls25{letter-spacing:-0.014400pt;}
.ls37{letter-spacing:-0.009600pt;}
.ls27{letter-spacing:-0.004800pt;}
.ls24{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.009600pt;}
.ls53{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.014400pt;}
.ls13{letter-spacing:0.017600pt;}
.ls0{letter-spacing:0.019200pt;}
.ls20{letter-spacing:0.022400pt;}
.lsd{letter-spacing:0.024000pt;}
.lsc{letter-spacing:0.028800pt;}
.ls1b{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.033600pt;}
.ls3{letter-spacing:0.038400pt;}
.ls4{letter-spacing:0.043200pt;}
.ls8{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.052800pt;}
.ls19{letter-spacing:0.057600pt;}
.ls14{letter-spacing:0.062400pt;}
.ls46{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.067200pt;}
.ls6e{letter-spacing:0.070400pt;}
.ls9{letter-spacing:0.072000pt;}
.ls15{letter-spacing:0.076800pt;}
.lsa{letter-spacing:0.081600pt;}
.lsb{letter-spacing:0.086400pt;}
.ls7{letter-spacing:0.091200pt;}
.ls18{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.100800pt;}
.lsf{letter-spacing:0.105600pt;}
.ls6b{letter-spacing:0.110400pt;}
.ls58{letter-spacing:0.112000pt;}
.ls59{letter-spacing:0.113600pt;}
.ls11{letter-spacing:0.115200pt;}
.ls3a{letter-spacing:0.120000pt;}
.ls5d{letter-spacing:0.121600pt;}
.ls3b{letter-spacing:0.126400pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.129600pt;}
.ls1d{letter-spacing:0.134400pt;}
.ls17{letter-spacing:0.139200pt;}
.ls41{letter-spacing:0.148800pt;}
.ls1f{letter-spacing:0.153600pt;}
.ls1a{letter-spacing:0.158400pt;}
.ls4f{letter-spacing:1.118400pt;}
.ls4b{letter-spacing:3.360000pt;}
.ls38{letter-spacing:4.320000pt;}
.ls33{letter-spacing:6.878400pt;}
.ls32{letter-spacing:7.200000pt;}
.ls2b{letter-spacing:7.521600pt;}
.ls47{letter-spacing:7.838400pt;}
.ls34{letter-spacing:8.481600pt;}
.ls68{letter-spacing:12.960000pt;}
.ls67{letter-spacing:13.281600pt;}
.ls64{letter-spacing:14.880000pt;}
.ls57{letter-spacing:29.648000pt;}
.ls3f{letter-spacing:30.770253pt;}
.ls5b{letter-spacing:35.639630pt;}
.ls66{letter-spacing:48.480000pt;}
.ls52{letter-spacing:60.576000pt;}
.ls4e{letter-spacing:63.840000pt;}
.ls39{letter-spacing:73.664818pt;}
.ls54{letter-spacing:83.095033pt;}
.ls1c{letter-spacing:89.691733pt;}
.ls69{letter-spacing:90.720000pt;}
.ls3e{letter-spacing:107.998547pt;}
.ls6a{letter-spacing:114.720000pt;}
.ls3d{letter-spacing:140.070406pt;}
.ls21{letter-spacing:157.028511pt;}
.ls43{letter-spacing:182.293867pt;}
.ls40{letter-spacing:242.804145pt;}
.ls16{letter-spacing:276.111200pt;}
.ls2c{letter-spacing:381.972387pt;}
.ls56{letter-spacing:457.420603pt;}
.ls55{letter-spacing:575.352784pt;}
.ls45{letter-spacing:583.893867pt;}
.ls5a{letter-spacing:837.387702pt;}
.ls44{letter-spacing:861.281600pt;}
.ls42{letter-spacing:869.918400pt;}
.ws16{word-spacing:-48.000000pt;}
.ws29{word-spacing:-47.942400pt;}
.ws24{word-spacing:-47.725333pt;}
.ws17{word-spacing:-27.850606pt;}
.ws2a{word-spacing:-27.817274pt;}
.ws26{word-spacing:-27.691251pt;}
.ws14{word-spacing:-26.352000pt;}
.ws2f{word-spacing:-26.341166pt;}
.ws33{word-spacing:-26.333554pt;}
.ws19{word-spacing:-26.320378pt;}
.ws25{word-spacing:-26.314229pt;}
.ws11{word-spacing:-20.399376pt;}
.ws15{word-spacing:-13.333067pt;}
.ws1e{word-spacing:-12.105600pt;}
.ws18{word-spacing:-12.081600pt;}
.ws3d{word-spacing:-12.067200pt;}
.ws3f{word-spacing:-12.033600pt;}
.ws30{word-spacing:-12.028800pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2e{word-spacing:-11.995067pt;}
.ws32{word-spacing:-11.991600pt;}
.ws38{word-spacing:-11.985600pt;}
.ws1c{word-spacing:-11.982800pt;}
.ws5{word-spacing:-11.961600pt;}
.ws1f{word-spacing:-11.894400pt;}
.ws21{word-spacing:-9.333067pt;}
.ws2d{word-spacing:-9.329333pt;}
.ws31{word-spacing:-9.326933pt;}
.wse{word-spacing:-9.289333pt;}
.ws35{word-spacing:-8.121600pt;}
.ws40{word-spacing:-8.070400pt;}
.ws0{word-spacing:-8.000000pt;}
.ws2c{word-spacing:-7.974400pt;}
.ws36{word-spacing:-7.929600pt;}
.ws3b{word-spacing:-7.904000pt;}
.ws39{word-spacing:-7.872000pt;}
.ws6{word-spacing:-0.048000pt;}
.ws13{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.798791pt;}
.ws37{word-spacing:7.272000pt;}
.ws3c{word-spacing:17.472000pt;}
.ws1a{word-spacing:22.406436pt;}
.ws20{word-spacing:28.577600pt;}
.ws3a{word-spacing:51.652800pt;}
.ws3{word-spacing:77.919595pt;}
.ws3e{word-spacing:78.715200pt;}
.ws1d{word-spacing:128.016952pt;}
.wsf{word-spacing:131.651765pt;}
.ws12{word-spacing:132.185512pt;}
.ws10{word-spacing:299.734717pt;}
.ws34{word-spacing:320.990400pt;}
.ws2{word-spacing:321.220320pt;}
.wsd{word-spacing:355.564906pt;}
.wsc{word-spacing:394.321022pt;}
.ws27{word-spacing:421.007323pt;}
.ws22{word-spacing:458.895178pt;}
.ws8{word-spacing:512.255878pt;}
.wsb{word-spacing:554.496785pt;}
.wsa{word-spacing:556.640256pt;}
.ws28{word-spacing:572.606926pt;}
.ws7{word-spacing:625.441280pt;}
.ws9{word-spacing:643.277865pt;}
.ws4{word-spacing:684.249207pt;}
.ws2b{word-spacing:691.326466pt;}
.ws23{word-spacing:695.164208pt;}
._77{margin-left:-536.518414pt;}
._70{margin-left:-358.449162pt;}
._7e{margin-left:-355.258234pt;}
._21{margin-left:-343.961344pt;}
._31{margin-left:-334.080000pt;}
._6e{margin-left:-308.365375pt;}
._60{margin-left:-300.365658pt;}
._22{margin-left:-294.721664pt;}
._6c{margin-left:-277.510747pt;}
._63{margin-left:-271.495176pt;}
._8c{margin-left:-264.336000pt;}
._19{margin-left:-259.004190pt;}
._6b{margin-left:-251.717463pt;}
._7a{margin-left:-244.371719pt;}
._76{margin-left:-240.360800pt;}
._85{margin-left:-234.973004pt;}
._5e{margin-left:-230.297624pt;}
._5b{margin-left:-229.137600pt;}
._30{margin-left:-227.879680pt;}
._3b{margin-left:-226.520997pt;}
._64{margin-left:-219.017209pt;}
._6a{margin-left:-215.799311pt;}
._5a{margin-left:-210.993600pt;}
._18{margin-left:-200.032371pt;}
._81{margin-left:-198.503959pt;}
._5f{margin-left:-191.408454pt;}
._6f{margin-left:-189.004435pt;}
._82{margin-left:-186.979099pt;}
._8b{margin-left:-183.998659pt;}
._33{margin-left:-179.270670pt;}
._8a{margin-left:-172.253536pt;}
._84{margin-left:-170.337853pt;}
._66{margin-left:-169.167262pt;}
._7f{margin-left:-161.775784pt;}
._50{margin-left:-160.833600pt;}
._35{margin-left:-155.703900pt;}
._53{margin-left:-153.695775pt;}
._79{margin-left:-152.032328pt;}
._49{margin-left:-149.870400pt;}
._4a{margin-left:-146.721600pt;}
._75{margin-left:-145.251089pt;}
._83{margin-left:-141.683579pt;}
._4f{margin-left:-140.030400pt;}
._55{margin-left:-137.485854pt;}
._62{margin-left:-135.007811pt;}
._25{margin-left:-133.301629pt;}
._7c{margin-left:-129.256489pt;}
._61{margin-left:-127.914544pt;}
._40{margin-left:-124.371328pt;}
._2b{margin-left:-121.255754pt;}
._2a{margin-left:-120.181934pt;}
._1a{margin-left:-118.431720pt;}
._36{margin-left:-116.218529pt;}
._5d{margin-left:-114.968721pt;}
._23{margin-left:-112.959872pt;}
._87{margin-left:-111.982357pt;}
._1b{margin-left:-110.781376pt;}
._73{margin-left:-108.875721pt;}
._17{margin-left:-106.502416pt;}
._28{margin-left:-105.463442pt;}
._2d{margin-left:-103.640334pt;}
._67{margin-left:-102.359217pt;}
._7b{margin-left:-101.199978pt;}
._14{margin-left:-98.903645pt;}
._72{margin-left:-97.733616pt;}
._38{margin-left:-95.450667pt;}
._7d{margin-left:-92.115592pt;}
._24{margin-left:-91.098116pt;}
._5c{margin-left:-89.760000pt;}
._4c{margin-left:-88.305600pt;}
._42{margin-left:-87.144310pt;}
._15{margin-left:-85.883334pt;}
._29{margin-left:-84.698149pt;}
._26{margin-left:-83.275934pt;}
._37{margin-left:-82.225977pt;}
._32{margin-left:-80.977776pt;}
._2e{margin-left:-80.005529pt;}
._52{margin-left:-78.590400pt;}
._2c{margin-left:-77.683745pt;}
._39{margin-left:-75.931005pt;}
._68{margin-left:-74.789988pt;}
._27{margin-left:-73.615021pt;}
._88{margin-left:-72.294958pt;}
._34{margin-left:-71.335056pt;}
._3a{margin-left:-69.507175pt;}
._51{margin-left:-65.793600pt;}
._4b{margin-left:-63.239216pt;}
._13{margin-left:-61.881172pt;}
._4d{margin-left:-60.144000pt;}
._4e{margin-left:-56.934933pt;}
._3f{margin-left:-55.591086pt;}
._12{margin-left:-52.717667pt;}
._41{margin-left:-50.218893pt;}
._86{margin-left:-36.017970pt;}
._74{margin-left:-32.899149pt;}
._65{margin-left:-31.234284pt;}
._a2{margin-left:-15.513600pt;}
._a3{margin-left:-14.088000pt;}
._a7{margin-left:-9.480000pt;}
._d{margin-left:-8.395200pt;}
._c{margin-left:-7.320000pt;}
._3e{margin-left:-6.283200pt;}
._45{margin-left:-3.913600pt;}
._58{margin-left:-2.686400pt;}
._1{margin-left:-1.017600pt;}
._0{width:0.921600pt;}
._3c{width:1.843200pt;}
._9{width:3.009600pt;}
._5{width:4.569600pt;}
._8{width:6.216000pt;}
._4{width:7.262400pt;}
._3{width:8.184000pt;}
._2{width:9.427200pt;}
._20{width:10.710400pt;}
._7{width:12.988800pt;}
._6{width:13.881600pt;}
._47{width:15.283200pt;}
._2f{width:16.526400pt;}
._3d{width:17.438400pt;}
._1f{width:18.384000pt;}
._a9{width:19.339200pt;}
._59{width:20.236800pt;}
._b{width:21.249600pt;}
._44{width:22.540800pt;}
._78{width:23.601600pt;}
._46{width:24.748800pt;}
._48{width:26.395200pt;}
._f{width:27.950400pt;}
._10{width:29.404800pt;}
._1e{width:30.768000pt;}
._1d{width:31.963200pt;}
._e{width:33.734400pt;}
._11{width:37.008000pt;}
._a{width:39.859200pt;}
._9b{width:41.073600pt;}
._9e{width:44.572800pt;}
._9f{width:45.744000pt;}
._43{width:53.153786pt;}
._a4{width:54.947200pt;}
._a8{width:60.955200pt;}
._1c{width:63.825600pt;}
._a5{width:79.036800pt;}
._9a{width:85.509704pt;}
._a6{width:90.475200pt;}
._99{width:95.678400pt;}
._98{width:101.116800pt;}
._16{width:103.264696pt;}
._54{width:132.064000pt;}
._aa{width:144.177600pt;}
._57{width:176.760000pt;}
._56{width:177.710400pt;}
._9d{width:230.208000pt;}
._a0{width:234.576000pt;}
._89{width:287.554699pt;}
._8e{width:343.636800pt;}
._8d{width:375.139200pt;}
._96{width:380.505600pt;}
._a1{width:407.352000pt;}
._90{width:446.673600pt;}
._97{width:461.572800pt;}
._71{width:472.675157pt;}
._92{width:499.516800pt;}
._93{width:504.686400pt;}
._8f{width:509.803200pt;}
._95{width:515.342400pt;}
._91{width:517.636800pt;}
._94{width:540.624000pt;}
._80{width:561.372257pt;}
._69{width:587.697319pt;}
._9c{width:785.390400pt;}
._6d{width:802.560000pt;}
.fs7{font-size:31.816533pt;}
.fsa{font-size:31.848533pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fsb{font-size:37.157333pt;}
.fs4{font-size:37.217600pt;}
.fs13{font-size:37.280000pt;}
.fs10{font-size:37.288533pt;}
.fs20{font-size:37.307733pt;}
.fs1b{font-size:37.317333pt;}
.fsd{font-size:37.332267pt;}
.fs6{font-size:47.725333pt;}
.fsc{font-size:47.773867pt;}
.fs3{font-size:47.851200pt;}
.fs12{font-size:47.931200pt;}
.fs11{font-size:47.942400pt;}
.fs21{font-size:47.966400pt;}
.fs1c{font-size:47.980267pt;}
.fs0{font-size:48.000000pt;}
.fs18{font-size:50.439438pt;}
.fs15{font-size:50.572684pt;}
.fs19{font-size:50.668987pt;}
.fsf{font-size:50.729701pt;}
.fs9{font-size:50.760000pt;}
.fse{font-size:53.332267pt;}
.fs22{font-size:63.954667pt;}
.fs1d{font-size:63.973867pt;}
.fs1f{font-size:65.453867pt;}
.fs8{font-size:65.456533pt;}
.fs1a{font-size:65.473600pt;}
.fs2{font-size:65.629867pt;}
.fs14{font-size:67.125333pt;}
.fs1e{font-size:69.305067pt;}
.fs17{font-size:69.332267pt;}
.fs16{font-size:94.832533pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:2.640400pt;}
.y4e{bottom:2.800400pt;}
.y14a{bottom:2.880400pt;}
.y46{bottom:3.520400pt;}
.yc6{bottom:5.200400pt;}
.y45{bottom:76.586667pt;}
.ybc{bottom:76.746800pt;}
.y47{bottom:77.067067pt;}
.y143{bottom:83.307600pt;}
.y73{bottom:85.067200pt;}
.y1b7{bottom:86.586267pt;}
.ybb{bottom:90.507200pt;}
.yfd{bottom:92.906800pt;}
.y44{bottom:94.826667pt;}
.y142{bottom:97.147067pt;}
.y72{bottom:98.827600pt;}
.y1b6{bottom:100.346667pt;}
.y185{bottom:101.067467pt;}
.yba{bottom:104.346800pt;}
.yfc{bottom:106.667200pt;}
.y43{bottom:108.666267pt;}
.y141{bottom:110.907467pt;}
.y71{bottom:112.667200pt;}
.y1b5{bottom:114.186267pt;}
.y183{bottom:114.906667pt;}
.yb9{bottom:118.107067pt;}
.y184{bottom:118.907067pt;}
.yfb{bottom:120.506800pt;}
.y42{bottom:122.426667pt;}
.y140{bottom:124.747067pt;}
.y70{bottom:126.427600pt;}
.y1b4{bottom:127.946667pt;}
.y182{bottom:128.667467pt;}
.yb8{bottom:131.946667pt;}
.yfa{bottom:134.267200pt;}
.y41{bottom:136.266267pt;}
.y13f{bottom:138.507467pt;}
.y6f{bottom:140.267200pt;}
.y1b3{bottom:141.786267pt;}
.y181{bottom:142.507067pt;}
.yb7{bottom:145.706800pt;}
.yf9{bottom:148.106800pt;}
.y40{bottom:150.026667pt;}
.y13e{bottom:152.346667pt;}
.y6e{bottom:154.027600pt;}
.y1b2{bottom:155.546667pt;}
.y180{bottom:156.267467pt;}
.yb6{bottom:159.467200pt;}
.yf8{bottom:161.867200pt;}
.y3f{bottom:163.866267pt;}
.y13d{bottom:166.107067pt;}
.y6d{bottom:167.867200pt;}
.y1b1{bottom:169.386267pt;}
.y17f{bottom:170.107067pt;}
.yb5{bottom:173.306800pt;}
.yf7{bottom:175.706800pt;}
.y3e{bottom:177.626667pt;}
.y13c{bottom:179.946667pt;}
.y6c{bottom:181.627600pt;}
.y1b0{bottom:183.146667pt;}
.y17e{bottom:183.867467pt;}
.yb4{bottom:187.067200pt;}
.yf6{bottom:189.467200pt;}
.y3d{bottom:191.466267pt;}
.y13b{bottom:193.707067pt;}
.y6b{bottom:195.467200pt;}
.y1af{bottom:196.986267pt;}
.y17d{bottom:197.707067pt;}
.yb3{bottom:200.906800pt;}
.yf5{bottom:203.306800pt;}
.y3c{bottom:205.226667pt;}
.y13a{bottom:207.546667pt;}
.y6a{bottom:209.227600pt;}
.y1ae{bottom:210.746667pt;}
.y17c{bottom:211.467467pt;}
.yb2{bottom:214.667200pt;}
.yf4{bottom:217.067200pt;}
.y3b{bottom:219.867067pt;}
.y139{bottom:221.307067pt;}
.y69{bottom:223.067200pt;}
.y1ad{bottom:224.586267pt;}
.y17b{bottom:225.307067pt;}
.yb1{bottom:228.506800pt;}
.yf3{bottom:230.906800pt;}
.y138{bottom:235.146667pt;}
.y68{bottom:236.827600pt;}
.y3a{bottom:237.627467pt;}
.y1ac{bottom:238.346667pt;}
.y17a{bottom:239.067467pt;}
.yb0{bottom:242.267200pt;}
.yf2{bottom:244.667200pt;}
.y137{bottom:248.907067pt;}
.y67{bottom:250.667200pt;}
.y39{bottom:251.466667pt;}
.y1ab{bottom:252.186267pt;}
.y179{bottom:252.907067pt;}
.yaf{bottom:256.106800pt;}
.yf1{bottom:258.506800pt;}
.y136{bottom:262.746667pt;}
.y66{bottom:264.427600pt;}
.y38{bottom:265.227067pt;}
.y1aa{bottom:265.946667pt;}
.y178{bottom:266.667467pt;}
.yae{bottom:269.867200pt;}
.yf0{bottom:272.267200pt;}
.y135{bottom:276.507067pt;}
.y65{bottom:278.267200pt;}
.y37{bottom:279.386000pt;}
.y1a9{bottom:279.786267pt;}
.y177{bottom:280.507067pt;}
.yad{bottom:283.706800pt;}
.yef{bottom:286.106800pt;}
.y134{bottom:290.346667pt;}
.y64{bottom:292.027600pt;}
.y1a8{bottom:293.546667pt;}
.y36{bottom:293.866400pt;}
.y176{bottom:294.267467pt;}
.yac{bottom:297.467200pt;}
.yee{bottom:299.867200pt;}
.y133{bottom:304.107067pt;}
.y63{bottom:305.867200pt;}
.y1a7{bottom:307.386267pt;}
.y35{bottom:307.626800pt;}
.y175{bottom:308.107067pt;}
.yab{bottom:311.306800pt;}
.yed{bottom:313.706800pt;}
.y132{bottom:317.867467pt;}
.y62{bottom:319.627600pt;}
.y1a6{bottom:321.146667pt;}
.y34{bottom:321.466400pt;}
.y174{bottom:321.867467pt;}
.yaa{bottom:325.067200pt;}
.yec{bottom:327.467200pt;}
.y131{bottom:331.707067pt;}
.y61{bottom:333.467200pt;}
.y1a5{bottom:334.907067pt;}
.y33{bottom:335.226800pt;}
.y173{bottom:335.707067pt;}
.ya9{bottom:338.906800pt;}
.yeb{bottom:341.306800pt;}
.y130{bottom:345.467467pt;}
.y60{bottom:347.227600pt;}
.y1a4{bottom:348.746667pt;}
.y32{bottom:349.066400pt;}
.y172{bottom:349.467467pt;}
.ya8{bottom:352.667200pt;}
.yea{bottom:355.067200pt;}
.y12f{bottom:359.307067pt;}
.y5f{bottom:361.067200pt;}
.y1a3{bottom:362.507067pt;}
.y31{bottom:362.826800pt;}
.y171{bottom:363.307067pt;}
.ya7{bottom:366.506800pt;}
.ye9{bottom:368.906800pt;}
.y12e{bottom:373.067467pt;}
.y5e{bottom:374.827600pt;}
.y1a2{bottom:376.346667pt;}
.y30{bottom:376.666400pt;}
.y170{bottom:377.067467pt;}
.ya0{bottom:382.587200pt;}
.ye8{bottom:382.666667pt;}
.y9f{bottom:382.667700pt;}
.y12c{bottom:387.706683pt;}
.y12a{bottom:387.707067pt;}
.y5d{bottom:388.666667pt;}
.ya3{bottom:388.987368pt;}
.y1a1{bottom:390.107067pt;}
.y2f{bottom:390.426800pt;}
.y16f{bottom:390.907067pt;}
.ya2{bottom:392.027250pt;}
.ya6{bottom:392.027290pt;}
.y9e{bottom:392.107200pt;}
.ye7{bottom:396.506267pt;}
.y12d{bottom:398.267021pt;}
.y129{bottom:398.747200pt;}
.ya1{bottom:399.707026pt;}
.ya5{bottom:399.707067pt;}
.ya4{bottom:399.707163pt;}
.y12b{bottom:401.307067pt;}
.y5c{bottom:402.427067pt;}
.y1a0{bottom:403.946667pt;}
.y16e{bottom:404.667467pt;}
.y2d{bottom:405.227184pt;}
.ye6{bottom:410.266667pt;}
.y9d{bottom:414.986667pt;}
.y2a{bottom:415.947067pt;}
.y2c{bottom:416.027200pt;}
.y2b{bottom:416.107200pt;}
.y5b{bottom:416.266667pt;}
.y19f{bottom:417.707067pt;}
.y16d{bottom:418.507067pt;}
.y2e{bottom:423.466865pt;}
.ye5{bottom:424.106267pt;}
.y128{bottom:426.907067pt;}
.y9c{bottom:428.747067pt;}
.y5a{bottom:430.027067pt;}
.y19e{bottom:431.546667pt;}
.ye4{bottom:437.866667pt;}
.y29{bottom:438.906667pt;}
.y127{bottom:440.667467pt;}
.y16c{bottom:440.907200pt;}
.y9b{bottom:442.586667pt;}
.y59{bottom:443.866667pt;}
.y19d{bottom:445.307067pt;}
.ye3{bottom:451.706267pt;}
.y28{bottom:452.667067pt;}
.y124{bottom:455.147200pt;}
.y9a{bottom:456.347067pt;}
.y58{bottom:457.627067pt;}
.y19c{bottom:459.146667pt;}
.y121{bottom:460.507067pt;}
.y16b{bottom:463.387067pt;}
.ye2{bottom:465.466667pt;}
.y126{bottom:466.267011pt;}
.y123{bottom:466.267067pt;}
.y120{bottom:466.427067pt;}
.y27{bottom:466.506667pt;}
.y97{bottom:470.907067pt;}
.y98{bottom:471.226667pt;}
.y57{bottom:471.466667pt;}
.y19b{bottom:472.907067pt;}
.y96{bottom:473.867067pt;}
.y125{bottom:473.867287pt;}
.y95{bottom:473.867467pt;}
.y122{bottom:479.227155pt;}
.ye1{bottom:479.306267pt;}
.y26{bottom:480.267067pt;}
.y56{bottom:485.227067pt;}
.y16a{bottom:485.867067pt;}
.y19a{bottom:486.746667pt;}
.y94{bottom:492.827467pt;}
.ye0{bottom:493.066667pt;}
.y11f{bottom:493.147467pt;}
.y25{bottom:494.106667pt;}
.y1d6{bottom:494.107067pt;}
.y55{bottom:498.987467pt;}
.y199{bottom:500.507067pt;}
.y93{bottom:506.587867pt;}
.ydf{bottom:506.906267pt;}
.y11e{bottom:506.987067pt;}
.y24{bottom:507.867067pt;}
.y1d5{bottom:507.867467pt;}
.y169{bottom:508.347067pt;}
.y54{bottom:512.827067pt;}
.y198{bottom:514.346667pt;}
.y92{bottom:520.427467pt;}
.yde{bottom:520.666667pt;}
.y23{bottom:521.706667pt;}
.y112{bottom:521.707067pt;}
.y115{bottom:524.747067pt;}
.y111{bottom:524.827067pt;}
.y52{bottom:527.466834pt;}
.y197{bottom:528.107067pt;}
.y53{bottom:530.427067pt;}
.y168{bottom:530.827067pt;}
.y4d{bottom:533.226667pt;}
.y50{bottom:533.627067pt;}
.ydd{bottom:534.506267pt;}
.y22{bottom:535.467467pt;}
.y51{bottom:535.947067pt;}
.y4f{bottom:536.027067pt;}
.y90{bottom:536.667067pt;}
.y8e{bottom:536.667467pt;}
.y8c{bottom:540.507447pt;}
.y196{bottom:541.946667pt;}
.y11b{bottom:542.827231pt;}
.y113{bottom:545.306548pt;}
.y11d{bottom:545.307067pt;}
.ydc{bottom:548.266667pt;}
.y8b{bottom:549.147067pt;}
.y21{bottom:549.307067pt;}
.y91{bottom:549.546667pt;}
.y119{bottom:551.227376pt;}
.y167{bottom:553.227867pt;}
.y8d{bottom:555.147295pt;}
.y195{bottom:555.707067pt;}
.y114{bottom:555.866421pt;}
.y8f{bottom:556.827067pt;}
.y116{bottom:558.827450pt;}
.y117{bottom:558.827545pt;}
.ydb{bottom:562.027467pt;}
.y11a{bottom:562.667071pt;}
.y20{bottom:563.067467pt;}
.y194{bottom:569.546667pt;}
.y8a{bottom:570.187067pt;}
.y11c{bottom:570.507046pt;}
.y118{bottom:571.386700pt;}
.y166{bottom:575.467467pt;}
.yda{bottom:575.867067pt;}
.y1f{bottom:576.907067pt;}
.y193{bottom:580.427067pt;}
.y89{bottom:584.026667pt;}
.y110{bottom:587.386267pt;}
.y165{bottom:589.547067pt;}
.yd8{bottom:590.427067pt;}
.y1e{bottom:590.667467pt;}
.yd9{bottom:593.387067pt;}
.yd7{bottom:593.387467pt;}
.y88{bottom:597.787067pt;}
.y10f{bottom:601.146667pt;}
.y164{bottom:603.307467pt;}
.y1d{bottom:604.506267pt;}
.y4c{bottom:604.506667pt;}
.y1d4{bottom:604.507067pt;}
.y87{bottom:611.626667pt;}
.y10e{bottom:614.986267pt;}
.yd5{bottom:616.106667pt;}
.yd6{bottom:616.107067pt;}
.y163{bottom:617.147067pt;}
.y1c{bottom:618.266667pt;}
.y1d3{bottom:618.267467pt;}
.y4b{bottom:618.267867pt;}
.y86{bottom:625.387067pt;}
.y10d{bottom:628.746667pt;}
.y161{bottom:630.746667pt;}
.y1b{bottom:632.106267pt;}
.y1d2{bottom:632.107067pt;}
.y4a{bottom:632.107467pt;}
.y162{bottom:633.627067pt;}
.yd4{bottom:638.747067pt;}
.yd2{bottom:638.747467pt;}
.yd3{bottom:638.827067pt;}
.y85{bottom:639.226667pt;}
.y10c{bottom:642.586267pt;}
.y1a{bottom:645.866667pt;}
.y1d1{bottom:645.867467pt;}
.y49{bottom:645.867867pt;}
.y160{bottom:651.627467pt;}
.y84{bottom:652.987067pt;}
.yd1{bottom:653.627467pt;}
.y10b{bottom:656.346667pt;}
.y19{bottom:659.706267pt;}
.y1d0{bottom:659.707067pt;}
.y48{bottom:659.707467pt;}
.y15e{bottom:666.666667pt;}
.y83{bottom:666.826667pt;}
.yc9{bottom:668.267067pt;}
.ycb{bottom:668.267414pt;}
.y15f{bottom:668.907067pt;}
.y10a{bottom:670.106667pt;}
.yce{bottom:672.426667pt;}
.y18{bottom:673.466667pt;}
.y1cf{bottom:673.467467pt;}
.yc5{bottom:676.826667pt;}
.ycc{bottom:678.827779pt;}
.yc8{bottom:679.307067pt;}
.y82{bottom:680.587067pt;}
.yd0{bottom:681.865867pt;}
.yca{bottom:681.867067pt;}
.yc7{bottom:682.027067pt;}
.y15c{bottom:684.586667pt;}
.y109{bottom:684.827067pt;}
.y15d{bottom:686.827067pt;}
.ycd{bottom:687.227192pt;}
.y17{bottom:687.306267pt;}
.y1ce{bottom:687.307067pt;}
.ycf{bottom:689.386267pt;}
.y81{bottom:694.426667pt;}
.y108{bottom:699.465867pt;}
.y16{bottom:701.066667pt;}
.y1cd{bottom:701.067467pt;}
.y15b{bottom:705.387067pt;}
.yc4{bottom:707.387067pt;}
.y80{bottom:708.187067pt;}
.y107{bottom:714.105867pt;}
.y15{bottom:714.906267pt;}
.y1cc{bottom:714.907067pt;}
.y159{bottom:720.426667pt;}
.yc3{bottom:721.226667pt;}
.y7f{bottom:722.026667pt;}
.y15a{bottom:722.667067pt;}
.y14{bottom:728.666667pt;}
.y1cb{bottom:728.667467pt;}
.y106{bottom:728.826267pt;}
.yc2{bottom:734.987067pt;}
.y7e{bottom:735.787067pt;}
.y158{bottom:739.866667pt;}
.y1ca{bottom:742.505067pt;}
.y13{bottom:742.506267pt;}
.y105{bottom:742.586667pt;}
.yc1{bottom:748.826667pt;}
.y7d{bottom:749.626667pt;}
.y157{bottom:753.627467pt;}
.y1c9{bottom:756.265467pt;}
.y12{bottom:756.266667pt;}
.y104{bottom:756.426267pt;}
.yc0{bottom:762.587067pt;}
.y7c{bottom:763.387067pt;}
.y1c8{bottom:770.105067pt;}
.y11{bottom:770.106267pt;}
.y103{bottom:770.186667pt;}
.y156{bottom:770.187467pt;}
.ybf{bottom:776.426667pt;}
.y7b{bottom:777.226667pt;}
.y1c7{bottom:783.865467pt;}
.y10{bottom:783.866667pt;}
.y102{bottom:784.026267pt;}
.y155{bottom:788.106267pt;}
.ybe{bottom:790.187467pt;}
.y7a{bottom:790.987067pt;}
.y1c6{bottom:797.705067pt;}
.yf{bottom:797.706267pt;}
.y101{bottom:797.786667pt;}
.y192{bottom:800.907467pt;}
.y153{bottom:803.146667pt;}
.ybd{bottom:804.027067pt;}
.y79{bottom:804.826667pt;}
.y154{bottom:805.387067pt;}
.y1c5{bottom:811.465467pt;}
.ye{bottom:811.466667pt;}
.y100{bottom:811.626267pt;}
.y191{bottom:814.747067pt;}
.y78{bottom:818.587067pt;}
.y151{bottom:821.146667pt;}
.y152{bottom:823.387067pt;}
.y1c4{bottom:825.305067pt;}
.yd{bottom:825.306267pt;}
.yff{bottom:825.386667pt;}
.y190{bottom:830.507067pt;}
.y77{bottom:832.426667pt;}
.yfe{bottom:836.267067pt;}
.y1c3{bottom:839.065467pt;}
.yc{bottom:839.066667pt;}
.y150{bottom:841.947067pt;}
.y76{bottom:846.187067pt;}
.y18f{bottom:848.667067pt;}
.y1c2{bottom:852.825867pt;}
.yb{bottom:852.827067pt;}
.y14e{bottom:856.986667pt;}
.y14f{bottom:859.227067pt;}
.y75{bottom:859.786667pt;}
.y1c1{bottom:866.665467pt;}
.ya{bottom:866.666667pt;}
.y18e{bottom:866.827067pt;}
.y74{bottom:870.907067pt;}
.y14d{bottom:876.426667pt;}
.y1c0{bottom:880.425867pt;}
.y9{bottom:880.427067pt;}
.y18d{bottom:883.627067pt;}
.y14c{bottom:890.187067pt;}
.y1bf{bottom:894.265467pt;}
.y8{bottom:894.266667pt;}
.y18c{bottom:900.427067pt;}
.y149{bottom:903.866667pt;}
.y14b{bottom:906.747067pt;}
.y1be{bottom:908.025867pt;}
.y7{bottom:912.027067pt;}
.y18b{bottom:917.227067pt;}
.y1bd{bottom:921.865467pt;}
.y148{bottom:924.667467pt;}
.y6{bottom:925.867067pt;}
.y18a{bottom:934.026267pt;}
.y1bc{bottom:935.625867pt;}
.y5{bottom:935.627067pt;}
.y147{bottom:942.587067pt;}
.y4{bottom:949.226667pt;}
.y1bb{bottom:949.465467pt;}
.y189{bottom:949.466667pt;}
.y146{bottom:960.507600pt;}
.y3{bottom:962.987067pt;}
.y1ba{bottom:963.225867pt;}
.y188{bottom:963.227067pt;}
.y2{bottom:976.826667pt;}
.y1b9{bottom:977.065467pt;}
.y187{bottom:977.066667pt;}
.y145{bottom:977.067600pt;}
.y1{bottom:990.587067pt;}
.y1b8{bottom:990.825867pt;}
.y186{bottom:990.827067pt;}
.y144{bottom:990.828000pt;}
.hf{height:13.120000pt;}
.h46{height:13.600000pt;}
.h1e{height:14.640000pt;}
.hd{height:15.360000pt;}
.h11{height:22.113581pt;}
.h3{height:22.234375pt;}
.h12{height:25.799672pt;}
.h20{height:25.884844pt;}
.h1d{height:25.890769pt;}
.h3c{height:25.904100pt;}
.h34{height:25.910766pt;}
.h2b{height:25.921134pt;}
.h37{height:25.928987pt;}
.h2c{height:25.939363pt;}
.h27{height:27.680000pt;}
.h1{height:32.531250pt;}
.h9{height:33.224808pt;}
.h7{height:33.248173pt;}
.h23{height:33.280355pt;}
.h35{height:33.314423pt;}
.h19{height:33.328125pt;}
.h40{height:33.328216pt;}
.h4a{height:33.349962pt;}
.h4{height:33.351562pt;}
.h41{height:33.351786pt;}
.h45{height:33.352096pt;}
.h26{height:33.352629pt;}
.hb{height:33.353163pt;}
.h15{height:33.353696pt;}
.h5{height:33.354763pt;}
.ha{height:33.355829pt;}
.h3e{height:34.557017pt;}
.h16{height:34.579741pt;}
.h48{height:35.911563pt;}
.h18{height:37.056551pt;}
.h49{height:38.232775pt;}
.h2{height:38.234375pt;}
.h47{height:38.235975pt;}
.h32{height:38.236508pt;}
.h4b{height:38.237575pt;}
.h4c{height:38.242375pt;}
.h14{height:44.251477pt;}
.h1f{height:44.397210pt;}
.h3d{height:44.406023pt;}
.h1c{height:44.407584pt;}
.h36{height:44.419355pt;}
.h3f{height:44.429815pt;}
.h38{height:44.442659pt;}
.h17{height:44.460938pt;}
.h2d{height:44.715610pt;}
.h24{height:44.764644pt;}
.h44{height:45.511747pt;}
.h3a{height:46.151563pt;}
.h2e{height:46.720514pt;}
.h25{height:46.843937pt;}
.h30{height:46.933139pt;}
.h1a{height:46.989376pt;}
.h10{height:47.017441pt;}
.h1b{height:47.347376pt;}
.h2f{height:47.380963pt;}
.h39{height:54.273638pt;}
.hc{height:56.046522pt;}
.h31{height:59.219363pt;}
.h3b{height:60.627922pt;}
.he{height:60.630392pt;}
.h33{height:60.646201pt;}
.h6{height:60.790946pt;}
.h22{height:62.176151pt;}
.h42{height:64.195172pt;}
.h29{height:64.220366pt;}
.h13{height:68.338635pt;}
.h2a{height:76.161134pt;}
.h43{height:76.168987pt;}
.h8{height:87.523172pt;}
.h28{height:87.840486pt;}
.h21{height:92.899416pt;}
.h0{height:1122.666667pt;}
.w2{width:3.120000pt;}
.w1{width:4.000000pt;}
.w6{width:4.880000pt;}
.w7{width:7.440000pt;}
.w4{width:8.560000pt;}
.w3{width:9.520000pt;}
.w8{width:32.400000pt;}
.w5{width:55.680000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x60{left:24.640000pt;}
.x8{left:94.561200pt;}
.x66{left:100.480000pt;}
.x1{left:106.240000pt;}
.x7{left:113.521200pt;}
.x2e{left:121.999748pt;}
.x2a{left:126.160000pt;}
.x50{left:127.200000pt;}
.x2d{left:131.600225pt;}
.x6{left:135.121200pt;}
.xd{left:138.238286pt;}
.x31{left:140.880407pt;}
.x4d{left:146.160000pt;}
.x57{left:149.520000pt;}
.x5{left:152.000000pt;}
.x4f{left:155.520950pt;}
.x55{left:159.840000pt;}
.x56{left:164.240000pt;}
.x4a{left:165.520000pt;}
.x2f{left:167.040000pt;}
.x58{left:168.879702pt;}
.x45{left:173.760000pt;}
.x2b{left:175.839318pt;}
.xb{left:181.280071pt;}
.xc{left:182.238661pt;}
.x30{left:184.640566pt;}
.x4c{left:186.640053pt;}
.xf{left:187.840000pt;}
.x22{left:192.160000pt;}
.x53{left:195.519996pt;}
.x2c{left:197.600289pt;}
.x21{left:206.319600pt;}
.x4{left:207.521200pt;}
.x49{left:210.080515pt;}
.x2{left:212.080000pt;}
.x9{left:218.560000pt;}
.x52{left:220.640000pt;}
.x1f{left:228.320000pt;}
.x10{left:229.760000pt;}
.x54{left:231.680666pt;}
.x1d{left:233.679600pt;}
.x1e{left:234.719898pt;}
.x47{left:236.880336pt;}
.x11{left:238.560000pt;}
.x4e{left:242.080950pt;}
.x51{left:243.840000pt;}
.x25{left:256.320000pt;}
.x24{left:261.120000pt;}
.x20{left:266.960400pt;}
.x13{left:276.640000pt;}
.x12{left:282.080000pt;}
.xa{left:284.080000pt;}
.x23{left:289.520000pt;}
.xe{left:294.800000pt;}
.x4b{left:306.800000pt;}
.x48{left:312.480000pt;}
.x29{left:320.000000pt;}
.x46{left:322.560000pt;}
.x28{left:325.600000pt;}
.x27{left:331.200000pt;}
.x26{left:340.800000pt;}
.x1c{left:372.720000pt;}
.x3{left:387.440800pt;}
.x14{left:420.880000pt;}
.x64{left:422.400000pt;}
.x63{left:423.439600pt;}
.x5c{left:424.880000pt;}
.x5d{left:428.240000pt;}
.x59{left:429.520000pt;}
.x5b{left:436.480000pt;}
.x5f{left:437.760000pt;}
.x15{left:439.840400pt;}
.x5e{left:450.639600pt;}
.x61{left:452.160000pt;}
.x3c{left:461.919600pt;}
.x3b{left:467.280000pt;}
.x62{left:468.880000pt;}
.x1a{left:470.800595pt;}
.x65{left:478.160000pt;}
.x43{left:483.600000pt;}
.x42{left:489.920000pt;}
.x1b{left:497.520000pt;}
.x5a{left:499.759600pt;}
.x16{left:507.600000pt;}
.x3a{left:510.480000pt;}
.x38{left:525.600000pt;}
.x19{left:527.760000pt;}
.x36{left:534.559675pt;}
.x18{left:535.520000pt;}
.x34{left:537.840000pt;}
.x17{left:541.840000pt;}
.x32{left:548.160000pt;}
.x35{left:563.040000pt;}
.x3d{left:571.440000pt;}
.x37{left:577.759641pt;}
.x39{left:578.879893pt;}
.x33{left:584.800000pt;}
.x3f{left:588.560000pt;}
.x3e{left:590.480000pt;}
.x44{left:669.440000pt;}
.x41{left:670.800000pt;}
.x40{left:672.160000pt;}
}




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