
    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_955d4fbde2c65a049b6e4f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_01a2fa1e035908d7d2734d4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_175c1ec413070a0f24024313.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_1669330a4a174f24fad97439.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_69db45f0c3d05a29abc3eb6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b929da85e08f3356d21c1e7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_dfca3efb9b4db6a601283e35.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.823730;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_ed3d625b91a216533a653ff3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.823730;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_0f47895f097a7b20a8fdd111.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_746433bf67e6a55489941ad1.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_51d24dc2b99b467b9d90f6a3.woff2')format("woff");}.fff{font-family:fff;line-height:0.982422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cc696f91d764536bd77a3e88.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_946debfa8de7980126651c98.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3116cdd2773a24958466fc1e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2a0d40864a3ce7448fe25a3b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.649414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_caadd418fe6ac101e4a1d668.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c3a574a145b58c9323ade1fc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2ff7c548358a9b9d910ac13e.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_a0e47fae36583b0bd85f61aa.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_4295e45c65404bb5a9f7e034.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.947754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_67ff76cafe367f92f9d7f041.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m4{transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230985,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.287562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287562,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.378121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378121,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-35.280000px;}
.v4{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v8{vertical-align:-22.320000px;}
.v5{vertical-align:-20.880000px;}
.v6{vertical-align:-12.960000px;}
.vb{vertical-align:-5.760000px;}
.v9{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.ve{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.vf{vertical-align:21.016510px;}
.v2{vertical-align:23.760000px;}
.vd{vertical-align:30.240000px;}
.vc{vertical-align:35.280000px;}
.ls13{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.303600px;}
.ls1f{letter-spacing:-0.164400px;}
.ls1e{letter-spacing:-0.053280px;}
.ls2c{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.077698px;}
.ls22{letter-spacing:0.089298px;}
.ls27{letter-spacing:0.103597px;}
.ls7{letter-spacing:0.106560px;}
.ls8{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.ls19{letter-spacing:0.116841px;}
.ls21{letter-spacing:0.119520px;}
.ls23{letter-spacing:0.123858px;}
.ls28{letter-spacing:0.124689px;}
.ls2b{letter-spacing:0.153082px;}
.ls26{letter-spacing:0.155396px;}
.ls24{letter-spacing:0.166175px;}
.ls4{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.383040px;}
.ls18{letter-spacing:0.467365px;}
.lsb{letter-spacing:0.579600px;}
.ls29{letter-spacing:0.666000px;}
.ls2{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.828000px;}
.ls16{letter-spacing:0.924000px;}
.ls1a{letter-spacing:1.080000px;}
.ls20{letter-spacing:2.160000px;}
.lse{letter-spacing:2.460960px;}
.lsc{letter-spacing:2.815920px;}
.ls1d{letter-spacing:3.180960px;}
.ls9{letter-spacing:3.900960px;}
.ls1c{letter-spacing:4.174560px;}
.ls15{letter-spacing:7.380000px;}
.ls12{letter-spacing:10.026720px;}
.lsd{letter-spacing:16.140960px;}
.lsa{letter-spacing:16.559280px;}
.ls1b{letter-spacing:27.597600px;}
.lsf{letter-spacing:33.519600px;}
.ls11{letter-spacing:64.812960px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-59.760000px;}
.ws8{word-spacing:-38.880000px;}
.ws1{word-spacing:-31.105680px;}
.ws4{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.020000px;}
.wsf{word-spacing:-15.864000px;}
.ws1b{word-spacing:-15.768000px;}
.ws1a{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.734480px;}
.ws9{word-spacing:-13.625280px;}
.wsc{word-spacing:-13.147200px;}
.ws17{word-spacing:-12.982800px;}
.ws1f{word-spacing:-11.720721px;}
.ws20{word-spacing:-11.554546px;}
.ws1e{word-spacing:-10.797259px;}
.ws1d{word-spacing:-10.733474px;}
.ws1c{word-spacing:-10.644176px;}
.ws3{word-spacing:-10.440000px;}
.ws15{word-spacing:-9.720000px;}
.ws21{word-spacing:-9.711360px;}
.wsb{word-spacing:-9.187200px;}
.ws13{word-spacing:-8.237300px;}
.ws11{word-spacing:-8.120459px;}
.ws12{word-spacing:-5.413639px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:3.322080px;}
.ws16{word-spacing:3.412080px;}
.ws18{word-spacing:3.650400px;}
._28{margin-left:-5.077920px;}
._29{margin-left:-4.011600px;}
._19{margin-left:-2.163600px;}
._1{margin-left:-1.095120px;}
._0{width:1.075680px;}
._6{width:2.980560px;}
._c{width:4.078560px;}
._7{width:5.139360px;}
._8{width:6.394320px;}
._b{width:7.529760px;}
._5{width:8.904240px;}
._2{width:10.398240px;}
._3{width:11.982720px;}
._f{width:13.802880px;}
._d{width:16.673040px;}
._e{width:17.713920px;}
._14{width:18.764640px;}
._18{width:19.900080px;}
._10{width:20.916000px;}
._9{width:22.230720px;}
._13{width:23.246640px;}
._4{width:24.860160px;}
._12{width:25.876080px;}
._a{width:27.848160px;}
._11{width:28.983600px;}
._23{width:31.446000px;}
._16{width:33.226560px;}
._17{width:34.481520px;}
._20{width:36.334080px;}
._27{width:38.306160px;}
._22{width:42.353280px;}
._15{width:44.153280px;}
._26{width:49.003200px;}
._25{width:50.198400px;}
._2c{width:59.115360px;}
._21{width:84.146400px;}
._1f{width:117.069840px;}
._2a{width:131.219040px;}
._24{width:143.603280px;}
._2b{width:201.060000px;}
._1e{width:849.240000px;}
._1c{width:1001.160000px;}
._1a{width:1039.320000px;}
._1b{width:1080.360000px;}
._1d{width:1125.000000px;}
._2d{width:2177.040000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:19.473522px;}
.fs15{font-size:27.708743px;}
.fsc{font-size:29.210283px;}
.fsf{font-size:35.909175px;}
.fs10{font-size:38.288404px;}
.fs6{font-size:38.880000px;}
.fse{font-size:39.024938px;}
.fs14{font-size:41.563114px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:46.966463px;}
.fs13{font-size:50.983385px;}
.fsb{font-size:54.000000px;}
.fs12{font-size:55.419332px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y232{bottom:-32.735304px;}
.y231{bottom:-17.219876px;}
.y1dc{bottom:-3.784193px;}
.y230{bottom:-1.317514px;}
.y0{bottom:0.000000px;}
.y22d{bottom:1.359986px;}
.y1d4{bottom:1.557723px;}
.y1d2{bottom:1.557756px;}
.y1b4{bottom:1.557890px;}
.y1c8{bottom:1.577359px;}
.y1c6{bottom:1.577374px;}
.y1bd{bottom:1.655253px;}
.y1b9{bottom:1.655266px;}
.y1bb{bottom:1.655269px;}
.y221{bottom:2.037911px;}
.y223{bottom:2.037914px;}
.y21b{bottom:2.037917px;}
.y21d{bottom:2.037918px;}
.y217{bottom:2.037924px;}
.y219{bottom:2.037925px;}
.y229{bottom:2.165480px;}
.y22b{bottom:2.165482px;}
.y227{bottom:2.165486px;}
.y225{bottom:2.165492px;}
.y25e{bottom:2.208742px;}
.y25a{bottom:2.208743px;}
.y258{bottom:2.208748px;}
.y269{bottom:2.212204px;}
.y265{bottom:2.212205px;}
.y263{bottom:2.212210px;}
.y248{bottom:2.215667px;}
.y241{bottom:2.215670px;}
.y246{bottom:2.215672px;}
.y23f{bottom:2.215675px;}
.y215{bottom:2.293094px;}
.y27c{bottom:2.350683px;}
.y272{bottom:2.350684px;}
.y270{bottom:2.350689px;}
.y234{bottom:2.481107px;}
.y145{bottom:3.060000px;}
.y175{bottom:3.240000px;}
.y123{bottom:3.405000px;}
.y1df{bottom:3.420000px;}
.y29a{bottom:3.450000px;}
.y5e{bottom:3.585000px;}
.y5b{bottom:3.600000px;}
.y29d{bottom:3.765000px;}
.y1e2{bottom:3.780000px;}
.y1ab{bottom:4.140000px;}
.y1d8{bottom:4.186655px;}
.y1da{bottom:4.186656px;}
.y1d6{bottom:4.186658px;}
.y1c1{bottom:4.303658px;}
.y1bf{bottom:4.303661px;}
.y14a{bottom:6.660000px;}
.y18d{bottom:7.215000px;}
.y2a{bottom:7.545000px;}
.y24{bottom:8.460000px;}
.y1c4{bottom:8.977311px;}
.y121{bottom:11.685000px;}
.y298{bottom:12.060000px;}
.y59{bottom:14.040000px;}
.y1b1{bottom:14.527254px;}
.y1b6{bottom:14.527256px;}
.y1b3{bottom:14.527258px;}
.y1af{bottom:14.527284px;}
.y25{bottom:17.100000px;}
.y174{bottom:20.520000px;}
.y177{bottom:20.535000px;}
.y122{bottom:20.685000px;}
.y1de{bottom:20.700000px;}
.y5a{bottom:20.880000px;}
.y29c{bottom:21.045000px;}
.y1ec{bottom:21.060000px;}
.y1aa{bottom:22.500000px;}
.y23c{bottom:22.987530px;}
.y238{bottom:22.987532px;}
.y236{bottom:22.987540px;}
.y149{bottom:23.085000px;}
.y26{bottom:23.940000px;}
.y189{bottom:24.120000px;}
.y18e{bottom:24.135000px;}
.y23{bottom:25.740000px;}
.y144{bottom:28.485000px;}
.y244{bottom:33.352693px;}
.y26e{bottom:33.492326px;}
.y173{bottom:37.800000px;}
.y120{bottom:37.965000px;}
.y1e1{bottom:38.160000px;}
.y1eb{bottom:38.340000px;}
.y148{bottom:39.465000px;}
.y188{bottom:41.400000px;}
.y143{bottom:44.865000px;}
.y11f{bottom:55.065000px;}
.y172{bottom:55.080000px;}
.y16e{bottom:55.245000px;}
.y1e6{bottom:55.440000px;}
.y1ea{bottom:55.620000px;}
.y147{bottom:55.845000px;}
.y187{bottom:58.680000px;}
.y142{bottom:61.245000px;}
.y5{bottom:66.525004px;}
.y171{bottom:72.360000px;}
.y16d{bottom:72.525000px;}
.y1e5{bottom:72.720000px;}
.y1e9{bottom:72.900000px;}
.y146{bottom:78.330000px;}
.y140{bottom:83.730000px;}
.y1e8{bottom:90.000000px;}
.y1e4{bottom:90.045000px;}
.y4{bottom:97.125005px;}
.y21{bottom:139.264499px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y22f{bottom:247.335193px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y29{bottom:268.245000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y5d{bottom:273.285000px;}
.y28{bottom:278.310000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y184{bottom:322.590000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y8a{bottom:323.310000px;}
.y198{bottom:324.930000px;}
.y2ce{bottom:330.510000px;}
.y57{bottom:330.870000px;}
.y213{bottom:332.310000px;}
.y124{bottom:333.030000px;}
.y16a{bottom:334.830000px;}
.y107{bottom:335.910000px;}
.y2af{bottom:336.810000px;}
.y183{bottom:339.870000px;}
.y89{bottom:340.410000px;}
.y197{bottom:342.210000px;}
.y56{bottom:345.270000px;}
.y11e{bottom:346.545000px;}
.y2cd{bottom:347.610000px;}
.y13e{bottom:347.790000px;}
.yf{bottom:348.133500px;}
.y200{bottom:348.870000px;}
.y212{bottom:349.590000px;}
.y169{bottom:352.110000px;}
.y106{bottom:353.190000px;}
.y2ae{bottom:353.910000px;}
.y182{bottom:356.970000px;}
.yb3{bottom:357.510000px;}
.y196{bottom:359.490000px;}
.y1ad{bottom:360.570000px;}
.yde{bottom:362.370000px;}
.y55{bottom:364.890000px;}
.y13d{bottom:365.070000px;}
.y1ff{bottom:366.150000px;}
.y88{bottom:366.690000px;}
.y211{bottom:366.870000px;}
.y168{bottom:369.390000px;}
.y105{bottom:370.470000px;}
.y2ad{bottom:371.190000px;}
.y181{bottom:374.250000px;}
.y1ac{bottom:374.430000px;}
.yb2{bottom:374.610000px;}
.y54{bottom:382.170000px;}
.ydd{bottom:382.350000px;}
.y2e8{bottom:383.250000px;}
.y1fe{bottom:383.430000px;}
.y87{bottom:383.970000px;}
.y195{bottom:385.410000px;}
.y167{bottom:386.670000px;}
.ye{bottom:386.785499px;}
.y104{bottom:387.570000px;}
.y180{bottom:391.530000px;}
.yb1{bottom:391.890000px;}
.y2ac{bottom:397.470000px;}
.y13c{bottom:399.450000px;}
.y1fd{bottom:400.710000px;}
.y86{bottom:401.250000px;}
.y53{bottom:401.790000px;}
.y194{bottom:402.690000px;}
.ydc{bottom:403.230000px;}
.y166{bottom:403.770000px;}
.y2e7{bottom:405.030000px;}
.yd{bottom:408.044999px;}
.y2cc{bottom:408.450000px;}
.y17f{bottom:408.810000px;}
.yb0{bottom:409.170000px;}
.y103{bottom:413.850000px;}
.y2ab{bottom:414.750000px;}
.y13b{bottom:416.730000px;}
.y1fc{bottom:417.810000px;}
.y85{bottom:418.530000px;}
.y165{bottom:421.050000px;}
.ydb{bottom:423.030000px;}
.y11d{bottom:424.650000px;}
.y2cb{bottom:425.730000px;}
.y17e{bottom:426.090000px;}
.y2e6{bottom:426.810000px;}
.y52{bottom:428.250000px;}
.y102{bottom:431.130000px;}
.y2aa{bottom:432.030000px;}
.y13a{bottom:434.010000px;}
.y1fb{bottom:435.090000px;}
.yaf{bottom:435.450000px;}
.y210{bottom:435.810000px;}
.y164{bottom:438.330000px;}
.yda{bottom:442.830000px;}
.y2ca{bottom:443.010000px;}
.y17d{bottom:443.190000px;}
.y2e5{bottom:443.910000px;}
.y84{bottom:444.810000px;}
.y51{bottom:445.170000px;}
.y101{bottom:448.410000px;}
.y2a9{bottom:449.355000px;}
.y139{bottom:451.335000px;}
.y1fa{bottom:452.415000px;}
.yae{bottom:452.775000px;}
.y20f{bottom:453.135000px;}
.y193{bottom:455.475000px;}
.y163{bottom:455.655000px;}
.y17c{bottom:460.515000px;}
.y83{bottom:461.955000px;}
.y50{bottom:462.855000px;}
.yd9{bottom:463.755000px;}
.y2c9{bottom:464.655000px;}
.y100{bottom:465.735000px;}
.y138{bottom:468.615000px;}
.yad{bottom:470.055000px;}
.y1f9{bottom:471.315000px;}
.y192{bottom:472.755000px;}
.y162{bottom:472.935000px;}
.y2a8{bottom:475.455000px;}
.y20e{bottom:475.635000px;}
.y22e{bottom:475.740000px;}
.y17b{bottom:477.795000px;}
.y82{bottom:479.235000px;}
.y4f{bottom:480.135000px;}
.y2c8{bottom:481.935000px;}
.yff{bottom:483.015000px;}
.yd8{bottom:483.555000px;}
.y137{bottom:485.715000px;}
.yac{bottom:487.155000px;}
.y291{bottom:489.080112px;}
.y290{bottom:489.080118px;}
.y28f{bottom:489.080123px;}
.y28e{bottom:489.080126px;}
.y28d{bottom:489.080128px;}
.y28c{bottom:489.080132px;}
.y28b{bottom:489.080136px;}
.y28a{bottom:489.080140px;}
.y26d{bottom:489.080147px;}
.y191{bottom:490.035000px;}
.y161{bottom:490.215000px;}
.y2a7{bottom:492.735000px;}
.y17a{bottom:495.075000px;}
.y81{bottom:496.515000px;}
.y4e{bottom:496.875000px;}
.y2c7{bottom:499.215000px;}
.yfe{bottom:500.115000px;}
.yc{bottom:502.864502px;}
.y136{bottom:502.995000px;}
.yd7{bottom:503.535000px;}
.y1f8{bottom:504.075000px;}
.yab{bottom:504.435000px;}
.y2e4{bottom:504.795000px;}
.y160{bottom:507.315000px;}
.y289{bottom:509.849668px;}
.y288{bottom:509.849673px;}
.y287{bottom:509.849678px;}
.y286{bottom:509.849681px;}
.y285{bottom:509.849683px;}
.y284{bottom:509.849687px;}
.y283{bottom:509.849691px;}
.y282{bottom:509.849696px;}
.y2a6{bottom:510.015000px;}
.y179{bottom:512.355000px;}
.y80{bottom:513.795000px;}
.y4d{bottom:514.515000px;}
.yfd{bottom:517.395000px;}
.y135{bottom:520.275000px;}
.y2c6{bottom:520.635000px;}
.yb{bottom:520.864502px;}
.yaa{bottom:521.715000px;}
.y2e3{bottom:522.075000px;}
.y190{bottom:524.595000px;}
.y2a5{bottom:527.295000px;}
.y178{bottom:529.635000px;}
.y281{bottom:530.592681px;}
.y280{bottom:530.592687px;}
.y27f{bottom:530.592692px;}
.y27e{bottom:530.592695px;}
.y27d{bottom:530.592697px;}
.y27b{bottom:530.592701px;}
.y27a{bottom:530.592705px;}
.y279{bottom:530.592709px;}
.yd6{bottom:530.895000px;}
.y7f{bottom:531.075000px;}
.y4c{bottom:531.795000px;}
.y15f{bottom:533.235000px;}
.yfc{bottom:534.675000px;}
.y1f7{bottom:535.395000px;}
.y134{bottom:537.555000px;}
.y2c5{bottom:537.915000px;}
.ya{bottom:538.864499px;}
.ya9{bottom:538.995000px;}
.y2e2{bottom:539.355000px;}
.y18f{bottom:541.695000px;}
.y1a9{bottom:546.555000px;}
.y7e{bottom:548.355000px;}
.y4b{bottom:549.075000px;}
.y15e{bottom:549.615000px;}
.y278{bottom:551.362237px;}
.y277{bottom:551.362242px;}
.y276{bottom:551.362247px;}
.y275{bottom:551.362250px;}
.y274{bottom:551.362252px;}
.y273{bottom:551.362256px;}
.y271{bottom:551.362260px;}
.y26f{bottom:551.362265px;}
.yfb{bottom:551.955000px;}
.y176{bottom:552.120000px;}
.y170{bottom:552.135000px;}
.y2a4{bottom:553.215000px;}
.y18c{bottom:555.180000px;}
.y18b{bottom:555.195000px;}
.ya8{bottom:556.275000px;}
.y9{bottom:556.864499px;}
.yd5{bottom:557.175000px;}
.y2e1{bottom:560.955000px;}
.y1f5{bottom:561.675000px;}
.y133{bottom:563.835000px;}
.y1f6{bottom:564.555000px;}
.y7d{bottom:565.455000px;}
.y15d{bottom:565.995000px;}
.y4a{bottom:566.355000px;}
.yfa{bottom:569.235000px;}
.y26c{bottom:569.891893px;}
.y26b{bottom:569.891899px;}
.y26a{bottom:569.891904px;}
.y268{bottom:569.891906px;}
.y267{bottom:569.891909px;}
.y266{bottom:569.891912px;}
.y264{bottom:569.891917px;}
.y262{bottom:569.891921px;}
.y243{bottom:569.891927px;}
.ya7{bottom:573.555000px;}
.yd4{bottom:574.455000px;}
.y2e0{bottom:578.235000px;}
.y2a3{bottom:579.495000px;}
.y132{bottom:581.115000px;}
.y2c4{bottom:581.655000px;}
.y15c{bottom:582.555000px;}
.y7c{bottom:582.735000px;}
.y49{bottom:583.455000px;}
.yf9{bottom:586.515000px;}
.y1f4{bottom:588.855000px;}
.y261{bottom:590.661448px;}
.y260{bottom:590.661454px;}
.y25f{bottom:590.661459px;}
.y25d{bottom:590.661462px;}
.y25c{bottom:590.661464px;}
.y25b{bottom:590.661468px;}
.y259{bottom:590.661472px;}
.y257{bottom:590.661476px;}
.yd3{bottom:591.735000px;}
.y2df{bottom:595.515000px;}
.y15b{bottom:598.935000px;}
.ya6{bottom:599.655000px;}
.y7b{bottom:600.015000px;}
.y48{bottom:600.735000px;}
.yf8{bottom:603.615000px;}
.y1a8{bottom:604.155000px;}
.y1f3{bottom:605.955000px;}
.y131{bottom:607.215000px;}
.y11c{bottom:608.295000px;}
.yd2{bottom:609.015000px;}
.y256{bottom:611.403308px;}
.y255{bottom:611.403314px;}
.y254{bottom:611.403319px;}
.y253{bottom:611.403321px;}
.y252{bottom:611.403324px;}
.y251{bottom:611.403327px;}
.y250{bottom:611.403332px;}
.y24f{bottom:611.403336px;}
.y15a{bottom:615.315000px;}
.y2c3{bottom:616.215000px;}
.ya5{bottom:616.935000px;}
.y2de{bottom:617.295000px;}
.y47{bottom:618.015000px;}
.yf7{bottom:620.895000px;}
.y1a7{bottom:621.435000px;}
.y1f2{bottom:623.235000px;}
.y130{bottom:624.495000px;}
.y11b{bottom:625.575000px;}
.y7a{bottom:625.935000px;}
.yd1{bottom:626.295000px;}
.y18a{bottom:627.735000px;}
.y159{bottom:631.695000px;}
.y24e{bottom:632.175171px;}
.y24d{bottom:632.175177px;}
.y24c{bottom:632.175182px;}
.y24b{bottom:632.175185px;}
.y24a{bottom:632.175187px;}
.y249{bottom:632.175191px;}
.y247{bottom:632.175195px;}
.y245{bottom:632.175199px;}
.y2c2{bottom:633.495000px;}
.ya4{bottom:634.215000px;}
.y2dd{bottom:634.575000px;}
.y46{bottom:635.295000px;}
.yf6{bottom:638.175000px;}
.y16f{bottom:638.355000px;}
.y1a6{bottom:638.715000px;}
.y1f1{bottom:640.515000px;}
.y12f{bottom:641.775000px;}
.y11a{bottom:642.675000px;}
.yd0{bottom:643.395000px;}
.y8{bottom:645.510000px;}
.y2c1{bottom:650.775000px;}
.ya3{bottom:651.495000px;}
.y79{bottom:652.215000px;}
.y45{bottom:652.575000px;}
.y242{bottom:652.912415px;}
.y240{bottom:652.912421px;}
.y23d{bottom:652.912426px;}
.y23b{bottom:652.912428px;}
.y23a{bottom:652.912431px;}
.y239{bottom:652.912434px;}
.y237{bottom:652.912439px;}
.y235{bottom:652.912443px;}
.yf5{bottom:655.455000px;}
.y1a5{bottom:655.995000px;}
.y2dc{bottom:656.175000px;}
.y158{bottom:657.075000px;}
.y1f0{bottom:657.795000px;}
.y12e{bottom:659.055000px;}
.y119{bottom:659.955000px;}
.ycf{bottom:660.675000px;}
.y7{bottom:666.771000px;}
.y2c0{bottom:667.875000px;}
.ya2{bottom:668.775000px;}
.y44{bottom:669.855000px;}
.y1a4{bottom:673.275000px;}
.y157{bottom:673.455000px;}
.y23e{bottom:673.684278px;}
.y1ef{bottom:675.075000px;}
.y12d{bottom:676.335000px;}
.y118{bottom:677.235000px;}
.yce{bottom:677.955000px;}
.y78{bottom:678.675000px;}
.yf4{bottom:681.735000px;}
.y2bf{bottom:685.185000px;}
.y43{bottom:686.985000px;}
.y156{bottom:689.865000px;}
.y1a3{bottom:690.405000px;}
.y2db{bottom:690.765000px;}
.y1ee{bottom:692.205000px;}
.y12c{bottom:693.465000px;}
.y233{bottom:694.433062px;}
.y117{bottom:694.545000px;}
.ya1{bottom:694.905000px;}
.ycd{bottom:695.265000px;}
.y77{bottom:695.985000px;}
.yf3{bottom:699.045000px;}
.y2be{bottom:702.465000px;}
.y42{bottom:704.265000px;}
.y155{bottom:706.245000px;}
.ya0{bottom:712.185000px;}
.ycc{bottom:712.545000px;}
.y76{bottom:713.265000px;}
.yf2{bottom:716.145000px;}
.y20d{bottom:716.325000px;}
.y1a2{bottom:716.685000px;}
.y1ed{bottom:718.485000px;}
.y12b{bottom:719.745000px;}
.y116{bottom:720.825000px;}
.y41{bottom:721.545000px;}
.y154{bottom:722.625000px;}
.y6{bottom:726.298500px;}
.y2bd{bottom:728.745000px;}
.y9f{bottom:729.465000px;}
.ycb{bottom:729.825000px;}
.y75{bottom:730.545000px;}
.y1e7{bottom:732.705000px;}
.y1a1{bottom:733.965000px;}
.y2a2{bottom:735.765000px;}
.y12a{bottom:736.665000px;}
.y115{bottom:738.105000px;}
.y40{bottom:738.825000px;}
.y153{bottom:739.005000px;}
.y20c{bottom:742.965000px;}
.yf1{bottom:743.505000px;}
.y2bc{bottom:746.025000px;}
.y9e{bottom:746.745000px;}
.yca{bottom:746.925000px;}
.y74{bottom:747.825000px;}
.y1a0{bottom:751.245000px;}
.y2da{bottom:751.605000px;}
.y3{bottom:752.599495px;}
.y2a1{bottom:753.045000px;}
.y129{bottom:753.945000px;}
.y114{bottom:755.205000px;}
.y3f{bottom:756.105000px;}
.y20b{bottom:760.245000px;}
.yf0{bottom:760.785000px;}
.y2bb{bottom:763.305000px;}
.y9d{bottom:764.025000px;}
.yc9{bottom:764.205000px;}
.y152{bottom:764.385000px;}
.y73{bottom:765.105000px;}
.y128{bottom:767.985000px;}
.y19f{bottom:768.525000px;}
.y2d9{bottom:768.705000px;}
.y2a0{bottom:770.325000px;}
.y113{bottom:772.485000px;}
.y3e{bottom:773.385000px;}
.y20a{bottom:777.525000px;}
.y151{bottom:780.765000px;}
.yc8{bottom:781.485000px;}
.y72{bottom:782.205000px;}
.y19e{bottom:785.805000px;}
.yef{bottom:788.145000px;}
.y2ba{bottom:789.405000px;}
.y9c{bottom:790.305000px;}
.y3d{bottom:790.485000px;}
.y209{bottom:794.805000px;}
.y29f{bottom:796.605000px;}
.y150{bottom:797.145000px;}
.yc7{bottom:798.765000px;}
.y186{bottom:801.825000px;}
.y19d{bottom:802.905000px;}
.yee{bottom:805.425000px;}
.y2b9{bottom:806.685000px;}
.y9b{bottom:807.405000px;}
.y3c{bottom:807.765000px;}
.y71{bottom:808.485000px;}
.y29e{bottom:810.825000px;}
.y208{bottom:811.905000px;}
.y16c{bottom:812.640000px;}
.y14f{bottom:813.525000px;}
.yc6{bottom:816.045000px;}
.y19c{bottom:820.185000px;}
.y2b8{bottom:823.965000px;}
.y9a{bottom:824.685000px;}
.y3b{bottom:825.045000px;}
.y70{bottom:825.765000px;}
.y207{bottom:829.185000px;}
.y2d8{bottom:829.545000px;}
.y14e{bottom:829.905000px;}
.yed{bottom:832.605000px;}
.yc3{bottom:833.145000px;}
.y112{bottom:833.325000px;}
.yc5{bottom:833.685000px;}
.y1e3{bottom:837.105000px;}
.yc4{bottom:838.905000px;}
.y2b7{bottom:841.245000px;}
.y3a{bottom:841.965000px;}
.y19b{bottom:842.685000px;}
.y1db{bottom:842.760000px;}
.y6f{bottom:843.045000px;}
.y206{bottom:846.465000px;}
.y2d7{bottom:846.825000px;}
.y1d9{bottom:849.316167px;}
.y1d7{bottom:849.316179px;}
.y1d5{bottom:849.316189px;}
.y1d3{bottom:849.316202px;}
.y1d1{bottom:849.316211px;}
.yec{bottom:849.885000px;}
.y111{bottom:850.605000px;}
.yc2{bottom:851.325000px;}
.y14d{bottom:855.285000px;}
.y2b6{bottom:858.525000px;}
.y39{bottom:859.245000px;}
.y6e{bottom:860.325000px;}
.y1d0{bottom:862.265897px;}
.y1cf{bottom:862.265908px;}
.y1ce{bottom:862.265919px;}
.y1cd{bottom:862.265932px;}
.y1cc{bottom:862.265940px;}
.y1c3{bottom:862.265960px;}
.y205{bottom:863.745000px;}
.yc1{bottom:868.605000px;}
.y14c{bottom:871.665000px;}
.y185{bottom:874.365000px;}
.y38{bottom:876.345000px;}
.y99{bottom:876.525000px;}
.y1cb{bottom:877.085248px;}
.y1ca{bottom:877.085259px;}
.y1c9{bottom:877.085269px;}
.y1c7{bottom:877.085282px;}
.y1c5{bottom:877.085291px;}
.yeb{bottom:877.245000px;}
.y6d{bottom:877.605000px;}
.y2{bottom:879.369000px;}
.y29b{bottom:880.500000px;}
.y204{bottom:881.025000px;}
.y2b5{bottom:884.805000px;}
.yc0{bottom:885.705000px;}
.y14b{bottom:888.045000px;}
.y1c2{bottom:890.054613px;}
.y1c0{bottom:890.054625px;}
.y1be{bottom:890.054635px;}
.y1bc{bottom:890.054648px;}
.y1ba{bottom:890.054656px;}
.y1b8{bottom:890.054676px;}
.y2d6{bottom:890.205000px;}
.y98{bottom:893.805000px;}
.yea{bottom:894.525000px;}
.y6c{bottom:894.705000px;}
.y37{bottom:895.965000px;}
.y203{bottom:898.125000px;}
.y16b{bottom:899.025000px;}
.y2b4{bottom:901.905000px;}
.y110{bottom:902.625000px;}
.ybf{bottom:902.985000px;}
.y1b7{bottom:904.971331px;}
.y1b5{bottom:904.971342px;}
.y1b2{bottom:904.971352px;}
.y1b0{bottom:904.971366px;}
.y1ae{bottom:904.971374px;}
.y2d5{bottom:907.485000px;}
.y141{bottom:910.005000px;}
.y13f{bottom:910.020000px;}
.y97{bottom:910.905000px;}
.y6b{bottom:911.985000px;}
.y36{bottom:913.605000px;}
.y299{bottom:915.780000px;}
.y2b3{bottom:919.230000px;}
.ybe{bottom:920.310000px;}
.y202{bottom:920.670000px;}
.y22c{bottom:920.700000px;}
.ye9{bottom:921.930000px;}
.y10f{bottom:924.810000px;}
.y96{bottom:928.230000px;}
.y6a{bottom:929.310000px;}
.y35{bottom:930.750000px;}
.y297{bottom:933.810000px;}
.y22a{bottom:935.181072px;}
.y228{bottom:935.181090px;}
.y226{bottom:935.181108px;}
.y224{bottom:935.181130px;}
.y19a{bottom:936.150000px;}
.y2b2{bottom:936.510000px;}
.ybd{bottom:937.590000px;}
.ye8{bottom:939.030000px;}
.y127{bottom:940.290000px;}
.y1e0{bottom:941.370000px;}
.y10e{bottom:942.090000px;}
.y95{bottom:945.510000px;}
.y34{bottom:948.030000px;}
.y222{bottom:952.276312px;}
.y220{bottom:952.276329px;}
.y21f{bottom:952.276347px;}
.y21e{bottom:952.276370px;}
.y2b1{bottom:953.790000px;}
.ybc{bottom:954.870000px;}
.y69{bottom:955.590000px;}
.y10d{bottom:959.370000px;}
.y94{bottom:962.790000px;}
.y2d4{bottom:963.870000px;}
.y33{bottom:964.950000px;}
.ye7{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.y21c{bottom:971.383944px;}
.y21a{bottom:971.383962px;}
.y218{bottom:971.383980px;}
.y216{bottom:971.384002px;}
.ybb{bottom:971.970000px;}
.y296{bottom:972.510000px;}
.y68{bottom:972.870000px;}
.y10c{bottom:976.470000px;}
.y93{bottom:980.070000px;}
.y2d3{bottom:980.970000px;}
.y32{bottom:982.050000px;}
.ye6{bottom:983.670000px;}
.yba{bottom:989.250000px;}
.y67{bottom:989.970000px;}
.y214{bottom:990.517090px;}
.y10b{bottom:993.750000px;}
.y92{bottom:997.170000px;}
.y295{bottom:998.970000px;}
.y31{bottom:1001.670000px;}
.y2d2{bottom:1002.750000px;}
.ye5{bottom:1004.010000px;}
.yb9{bottom:1006.530000px;}
.y66{bottom:1007.250000px;}
.y201{bottom:1014.090000px;}
.y91{bottom:1014.450000px;}
.y294{bottom:1016.250000px;}
.y30{bottom:1019.310000px;}
.y10a{bottom:1019.670000px;}
.y2d1{bottom:1020.030000px;}
.ye4{bottom:1024.350000px;}
.y65{bottom:1024.530000px;}
.y126{bottom:1031.730000px;}
.yb8{bottom:1032.450000px;}
.y293{bottom:1033.530000px;}
.y90{bottom:1040.730000px;}
.y64{bottom:1041.810000px;}
.y2f{bottom:1043.790000px;}
.ye3{bottom:1045.410000px;}
.y109{bottom:1045.950000px;}
.y125{bottom:1049.010000px;}
.y1dd{bottom:1049.730000px;}
.y292{bottom:1050.810000px;}
.y2e{bottom:1055.490000px;}
.y8f{bottom:1058.010000px;}
.y63{bottom:1059.090000px;}
.ye2{bottom:1065.210000px;}
.y199{bottom:1066.290000px;}
.y108{bottom:1068.090000px;}
.y8e{bottom:1075.290000px;}
.y2d{bottom:1075.830000px;}
.y62{bottom:1076.370000px;}
.y2d0{bottom:1080.870000px;}
.y2b0{bottom:1083.570000px;}
.yb7{bottom:1085.370000px;}
.ye1{bottom:1086.090000px;}
.y8d{bottom:1092.570000px;}
.y61{bottom:1093.470000px;}
.y2c{bottom:1093.830000px;}
.y2cf{bottom:1097.970000px;}
.yb6{bottom:1102.470000px;}
.ye0{bottom:1105.890000px;}
.y8c{bottom:1109.670000px;}
.y60{bottom:1110.750000px;}
.y2b{bottom:1119.390000px;}
.yb5{bottom:1119.750000px;}
.ydf{bottom:1125.690000px;}
.y8b{bottom:1126.950000px;}
.y5f{bottom:1136.670000px;}
.yb4{bottom:1137.030000px;}
.y27{bottom:1144.950000px;}
.y5c{bottom:1155.060000px;}
.y22{bottom:1162.800000px;}
.y58{bottom:1172.700000px;}
.h45{height:12.949901px;}
.h47{height:12.949902px;}
.h48{height:12.949903px;}
.h46{height:12.949905px;}
.h44{height:12.949929px;}
.h40{height:12.969374px;}
.h42{height:12.969375px;}
.h43{height:12.969376px;}
.h41{height:12.969378px;}
.h3f{height:12.969385px;}
.h39{height:13.066742px;}
.h3c{height:13.066743px;}
.h3d{height:13.066744px;}
.h3a{height:13.066746px;}
.h37{height:13.066751px;}
.h38{height:13.066753px;}
.h54{height:16.942176px;}
.h55{height:16.942179px;}
.h52{height:16.942234px;}
.h56{height:17.095258px;}
.h57{height:17.095261px;}
.h77{height:17.301000px;}
.h5d{height:18.386486px;}
.h67{height:18.391179px;}
.h66{height:18.391181px;}
.h68{height:18.391183px;}
.h65{height:18.391184px;}
.h62{height:18.391188px;}
.h6b{height:18.418875px;}
.h6a{height:18.418876px;}
.h63{height:18.418878px;}
.h69{height:18.418879px;}
.h6f{height:18.529658px;}
.h6e{height:18.529660px;}
.h70{height:18.529662px;}
.h6d{height:18.529663px;}
.h74{height:18.557354px;}
.h72{height:18.557356px;}
.h75{height:18.557357px;}
.h71{height:18.557359px;}
.h1b{height:21.780000px;}
.h31{height:25.938740px;}
.h34{height:25.938741px;}
.h36{height:25.938742px;}
.h32{height:25.938744px;}
.h2f{height:25.938769px;}
.hf{height:26.100000px;}
.h4a{height:27.265023px;}
.h3e{height:27.788733px;}
.h30{height:30.465413px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h4b{height:34.545000px;}
.h1a{height:34.560000px;}
.h35{height:35.110152px;}
.h33{height:35.188046px;}
.h59{height:35.660571px;}
.h2d{height:36.705000px;}
.h19{height:37.771172px;}
.h3b{height:38.300843px;}
.h5c{height:38.710529px;}
.h61{height:39.160735px;}
.h60{height:39.160737px;}
.h5f{height:39.160744px;}
.h53{height:39.933609px;}
.h14{height:40.964766px;}
.h22{height:42.086250px;}
.h17{height:42.806602px;}
.h5e{height:43.349029px;}
.hc{height:43.506914px;}
.h7a{height:43.681992px;}
.hb{height:44.460000px;}
.h2e{height:45.170156px;}
.h7{height:45.960000px;}
.h1d{height:46.388672px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h73{height:49.915862px;}
.h76{height:50.031262px;}
.h4c{height:51.645000px;}
.h5b{height:54.391043px;}
.h2{height:55.152000px;}
.h15{height:58.621992px;}
.h12{height:58.651172px;}
.h79{height:59.038594px;}
.h16{height:60.226875px;}
.h10{height:60.300703px;}
.h1e{height:62.327813px;}
.hd{height:63.824414px;}
.h1c{height:66.383789px;}
.h13{height:66.757500px;}
.h11{height:67.992539px;}
.h78{height:68.940000px;}
.he{height:70.664062px;}
.h2c{height:72.535500px;}
.h2b{height:72.540000px;}
.h51{height:72.562500px;}
.h21{height:77.925000px;}
.h1f{height:77.931000px;}
.h20{height:77.940000px;}
.h5{height:78.132000px;}
.h64{height:80.673306px;}
.h6c{height:80.811785px;}
.h4f{height:83.828672px;}
.h28{height:86.205000px;}
.h29{height:86.215500px;}
.h2a{height:86.220000px;}
.h25{height:86.385000px;}
.h26{height:86.395500px;}
.h27{height:86.400000px;}
.h58{height:86.759325px;}
.h49{height:90.000000px;}
.h50{height:96.623789px;}
.h4e{height:103.500000px;}
.h4d{height:103.522500px;}
.h4{height:119.055004px;}
.h5a{height:237.240000px;}
.h23{height:240.495000px;}
.h24{height:240.510000px;}
.h18{height:1262.684910px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2b{width:4.500000px;}
.w2c{width:4.680000px;}
.wc{width:20.520000px;}
.w8{width:20.880000px;}
.w3a{width:29.211175px;}
.w3b{width:36.737607px;}
.w39{width:48.002200px;}
.w37{width:55.042437px;}
.w43{width:57.225000px;}
.w38{width:57.244177px;}
.w1f{width:58.641725px;}
.w19{width:58.641726px;}
.w32{width:59.307941px;}
.w31{width:59.896105px;}
.w2f{width:61.656928px;}
.w3f{width:61.724427px;}
.w42{width:62.301000px;}
.w44{width:65.505000px;}
.w21{width:66.122889px;}
.w1b{width:66.122891px;}
.w6{width:66.405000px;}
.w7{width:66.990000px;}
.w3d{width:67.228241px;}
.w30{width:73.284472px;}
.w22{width:73.662960px;}
.w1c{width:73.662962px;}
.w3e{width:74.012586px;}
.wa{width:75.585000px;}
.w20{width:86.740271px;}
.w1a{width:86.740272px;}
.w40{width:89.501534px;}
.w27{width:91.620000px;}
.w46{width:109.965000px;}
.w28{width:113.976000px;}
.w1d{width:119.757534px;}
.w23{width:119.757536px;}
.w26{width:124.221000px;}
.w1e{width:135.694279px;}
.w3c{width:142.777246px;}
.w36{width:151.221693px;}
.w15{width:189.555000px;}
.w17{width:189.600000px;}
.w16{width:189.750000px;}
.w2d{width:192.465000px;}
.w29{width:209.895000px;}
.w45{width:229.020000px;}
.wf{width:250.215000px;}
.w14{width:250.230000px;}
.w24{width:255.299636px;}
.w18{width:255.299638px;}
.w2e{width:261.482183px;}
.w10{width:266.280000px;}
.w11{width:266.295000px;}
.wd{width:269.700000px;}
.we{width:269.715000px;}
.w33{width:277.916561px;}
.w13{width:287.880000px;}
.w12{width:287.895000px;}
.w41{width:339.720000px;}
.w5{width:441.810000px;}
.wb{width:493.515000px;}
.w35{width:529.451846px;}
.w34{width:552.599447px;}
.w25{width:560.179173px;}
.w2{width:637.794021px;}
.w2a{width:691.665000px;}
.w4{width:892.500000px;}
.w9{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x54{left:-1.965000px;}
.x0{left:0.000000px;}
.x5e{left:2.495639px;}
.x42{left:3.681677px;}
.x66{left:5.245793px;}
.x45{left:7.068818px;}
.x6{left:8.085000px;}
.x70{left:9.345000px;}
.x35{left:10.620000px;}
.x1d{left:12.045000px;}
.x1a{left:13.125000px;}
.x2e{left:14.220000px;}
.x69{left:15.364201px;}
.x33{left:16.725000px;}
.x3a{left:18.360000px;}
.x5d{left:20.114961px;}
.x28{left:21.405000px;}
.x2b{left:23.025000px;}
.x32{left:26.085000px;}
.x23{left:28.245000px;}
.x6c{left:30.856348px;}
.x38{left:32.025000px;}
.x48{left:33.429613px;}
.x4b{left:34.755016px;}
.x1c{left:36.345000px;}
.x2d{left:37.440000px;}
.x2c{left:40.680000px;}
.x6b{left:41.987663px;}
.x51{left:43.545000px;}
.x29{left:44.625000px;}
.x6a{left:46.721671px;}
.x49{left:48.475392px;}
.x1b{left:51.285000px;}
.x25{left:56.685000px;}
.x3d{left:58.305000px;}
.x4a{left:61.557612px;}
.x1e{left:66.225000px;}
.x6d{left:68.099341px;}
.x24{left:72.390000px;}
.x39{left:82.110000px;}
.x2f{left:87.480000px;}
.x34{left:96.690000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x12{left:120.270000px;}
.x30{left:125.130000px;}
.x5{left:162.045000px;}
.x9{left:170.130000px;}
.x41{left:172.898063px;}
.xe{left:176.250000px;}
.x4c{left:179.130000px;}
.x5f{left:181.876367px;}
.x61{left:182.901003px;}
.x73{left:190.650000px;}
.x4d{left:193.170000px;}
.x18{left:197.130000px;}
.x4{left:203.484001px;}
.x60{left:217.151279px;}
.xb{left:231.510000px;}
.x20{left:236.010000px;}
.x11{left:237.645000px;}
.x57{left:243.255000px;}
.x68{left:244.624362px;}
.xc{left:248.835000px;}
.xf{left:255.495000px;}
.x22{left:266.820000px;}
.x6e{left:269.175000px;}
.x3b{left:282.315000px;}
.x27{left:289.335000px;}
.x47{left:292.655599px;}
.x4e{left:300.495000px;}
.x13{left:311.100000px;}
.x62{left:336.302044px;}
.x3e{left:351.615000px;}
.x15{left:362.595000px;}
.x21{left:370.335000px;}
.x10{left:386.175000px;}
.x4f{left:392.835000px;}
.x72{left:412.680000px;}
.x2a{left:426.705000px;}
.x37{left:431.205000px;}
.x26{left:443.085000px;}
.x31{left:444.705000px;}
.xd{left:446.505000px;}
.x59{left:447.730061px;}
.x36{left:451.545000px;}
.x3{left:454.959000px;}
.x43{left:492.442931px;}
.x63{left:499.795904px;}
.x50{left:507.540000px;}
.x5a{left:511.883436px;}
.x6f{left:523.380000px;}
.x64{left:530.023183px;}
.x3f{left:541.380000px;}
.x65{left:567.916569px;}
.x44{left:582.005818px;}
.x5b{left:586.344227px;}
.x14{left:595.410000px;}
.x7{left:603.870000px;}
.x17{left:609.270000px;}
.x16{left:626.550000px;}
.x67{left:636.165180px;}
.x71{left:644.550000px;}
.x5c{left:647.557273px;}
.x46{left:650.926779px;}
.x8{left:670.290000px;}
.x52{left:685.207500px;}
.x53{left:691.515000px;}
.x55{left:695.835000px;}
.x56{left:700.335000px;}
.xa{left:701.955000px;}
.x1f{left:705.210000px;}
.x19{left:714.390000px;}
.x40{left:718.890000px;}
.x58{left:722.850000px;}
.x3c{left:730.260000px;}
@media print{
.va{vertical-align:-31.360000pt;}
.v4{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v8{vertical-align:-19.840000pt;}
.v5{vertical-align:-18.560000pt;}
.v6{vertical-align:-11.520000pt;}
.vb{vertical-align:-5.120000pt;}
.v9{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.ve{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.vf{vertical-align:18.681342pt;}
.v2{vertical-align:21.120000pt;}
.vd{vertical-align:26.880000pt;}
.vc{vertical-align:31.360000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.269867pt;}
.ls1f{letter-spacing:-0.146133pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls2c{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.069065pt;}
.ls22{letter-spacing:0.079376pt;}
.ls27{letter-spacing:0.092086pt;}
.ls7{letter-spacing:0.094720pt;}
.ls8{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.ls19{letter-spacing:0.103859pt;}
.ls21{letter-spacing:0.106240pt;}
.ls23{letter-spacing:0.110096pt;}
.ls28{letter-spacing:0.110835pt;}
.ls2b{letter-spacing:0.136073pt;}
.ls26{letter-spacing:0.138130pt;}
.ls24{letter-spacing:0.147711pt;}
.ls4{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.340480pt;}
.ls18{letter-spacing:0.415435pt;}
.lsb{letter-spacing:0.515200pt;}
.ls29{letter-spacing:0.592000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.821333pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls20{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.187520pt;}
.lsc{letter-spacing:2.503040pt;}
.ls1d{letter-spacing:2.827520pt;}
.ls9{letter-spacing:3.467520pt;}
.ls1c{letter-spacing:3.710720pt;}
.ls15{letter-spacing:6.560000pt;}
.ls12{letter-spacing:8.912640pt;}
.lsd{letter-spacing:14.347520pt;}
.lsa{letter-spacing:14.719360pt;}
.ls1b{letter-spacing:24.531200pt;}
.lsf{letter-spacing:29.795200pt;}
.ls11{letter-spacing:57.611520pt;}
.wsd{word-spacing:-53.120000pt;}
.ws8{word-spacing:-34.560000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws4{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.240000pt;}
.wsf{word-spacing:-14.101333pt;}
.ws1b{word-spacing:-14.016000pt;}
.ws1a{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws9{word-spacing:-12.111360pt;}
.wsc{word-spacing:-11.686400pt;}
.ws17{word-spacing:-11.540267pt;}
.ws1f{word-spacing:-10.418418pt;}
.ws20{word-spacing:-10.270707pt;}
.ws1e{word-spacing:-9.597563pt;}
.ws1d{word-spacing:-9.540866pt;}
.ws1c{word-spacing:-9.461490pt;}
.ws3{word-spacing:-9.280000pt;}
.ws15{word-spacing:-8.640000pt;}
.ws21{word-spacing:-8.632320pt;}
.wsb{word-spacing:-8.166400pt;}
.ws13{word-spacing:-7.322044pt;}
.ws11{word-spacing:-7.218186pt;}
.ws12{word-spacing:-4.812124pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:2.952960pt;}
.ws16{word-spacing:3.032960pt;}
.ws18{word-spacing:3.244800pt;}
._28{margin-left:-4.513707pt;}
._29{margin-left:-3.565867pt;}
._19{margin-left:-1.923200pt;}
._1{margin-left:-0.973440pt;}
._0{width:0.956160pt;}
._6{width:2.649387pt;}
._c{width:3.625387pt;}
._7{width:4.568320pt;}
._8{width:5.683840pt;}
._b{width:6.693120pt;}
._5{width:7.914880pt;}
._2{width:9.242880pt;}
._3{width:10.651307pt;}
._f{width:12.269227pt;}
._d{width:14.820480pt;}
._e{width:15.745707pt;}
._14{width:16.679680pt;}
._18{width:17.688960pt;}
._10{width:18.592000pt;}
._9{width:19.760640pt;}
._13{width:20.663680pt;}
._4{width:22.097920pt;}
._12{width:23.000960pt;}
._a{width:24.753920pt;}
._11{width:25.763200pt;}
._23{width:27.952000pt;}
._16{width:29.534720pt;}
._17{width:30.650240pt;}
._20{width:32.296960pt;}
._27{width:34.049920pt;}
._22{width:37.647360pt;}
._15{width:39.247360pt;}
._26{width:43.558400pt;}
._25{width:44.620800pt;}
._2c{width:52.546987pt;}
._21{width:74.796800pt;}
._1f{width:104.062080pt;}
._2a{width:116.639147pt;}
._24{width:127.647360pt;}
._2b{width:178.720000pt;}
._1e{width:754.880000pt;}
._1c{width:889.920000pt;}
._1a{width:923.840000pt;}
._1b{width:960.320000pt;}
._1d{width:1000.000000pt;}
._2d{width:1935.146667pt;}
.fsd{font-size:17.309797pt;}
.fs15{font-size:24.629993pt;}
.fsc{font-size:25.964696pt;}
.fsf{font-size:31.919266pt;}
.fs10{font-size:34.034137pt;}
.fs6{font-size:34.560000pt;}
.fse{font-size:34.688834pt;}
.fs14{font-size:36.944990pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:41.747967pt;}
.fs13{font-size:45.318564pt;}
.fsb{font-size:48.000000pt;}
.fs12{font-size:49.261628pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y232{bottom:-29.098048pt;}
.y231{bottom:-15.306556pt;}
.y1dc{bottom:-3.363727pt;}
.y230{bottom:-1.171124pt;}
.y0{bottom:0.000000pt;}
.y22d{bottom:1.208876pt;}
.y1d4{bottom:1.384642pt;}
.y1d2{bottom:1.384672pt;}
.y1b4{bottom:1.384791pt;}
.y1c8{bottom:1.402097pt;}
.y1c6{bottom:1.402111pt;}
.y1bd{bottom:1.471336pt;}
.y1b9{bottom:1.471348pt;}
.y1bb{bottom:1.471350pt;}
.y221{bottom:1.811477pt;}
.y223{bottom:1.811479pt;}
.y21b{bottom:1.811481pt;}
.y21d{bottom:1.811483pt;}
.y217{bottom:1.811488pt;}
.y219{bottom:1.811489pt;}
.y229{bottom:1.924871pt;}
.y22b{bottom:1.924873pt;}
.y227{bottom:1.924876pt;}
.y225{bottom:1.924882pt;}
.y25e{bottom:1.963326pt;}
.y25a{bottom:1.963328pt;}
.y258{bottom:1.963331pt;}
.y269{bottom:1.966404pt;}
.y265{bottom:1.966405pt;}
.y263{bottom:1.966409pt;}
.y248{bottom:1.969482pt;}
.y241{bottom:1.969484pt;}
.y246{bottom:1.969486pt;}
.y23f{bottom:1.969488pt;}
.y215{bottom:2.038306pt;}
.y27c{bottom:2.089496pt;}
.y272{bottom:2.089497pt;}
.y270{bottom:2.089501pt;}
.y234{bottom:2.205428pt;}
.y145{bottom:2.720000pt;}
.y175{bottom:2.880000pt;}
.y123{bottom:3.026667pt;}
.y1df{bottom:3.040000pt;}
.y29a{bottom:3.066667pt;}
.y5e{bottom:3.186667pt;}
.y5b{bottom:3.200000pt;}
.y29d{bottom:3.346667pt;}
.y1e2{bottom:3.360000pt;}
.y1ab{bottom:3.680000pt;}
.y1d8{bottom:3.721471pt;}
.y1da{bottom:3.721472pt;}
.y1d6{bottom:3.721473pt;}
.y1c1{bottom:3.825474pt;}
.y1bf{bottom:3.825476pt;}
.y14a{bottom:5.920000pt;}
.y18d{bottom:6.413333pt;}
.y2a{bottom:6.706667pt;}
.y24{bottom:7.520000pt;}
.y1c4{bottom:7.979832pt;}
.y121{bottom:10.386667pt;}
.y298{bottom:10.720000pt;}
.y59{bottom:12.480000pt;}
.y1b1{bottom:12.913114pt;}
.y1b6{bottom:12.913117pt;}
.y1b3{bottom:12.913118pt;}
.y1af{bottom:12.913141pt;}
.y25{bottom:15.200000pt;}
.y174{bottom:18.240000pt;}
.y177{bottom:18.253333pt;}
.y122{bottom:18.386667pt;}
.y1de{bottom:18.400000pt;}
.y5a{bottom:18.560000pt;}
.y29c{bottom:18.706667pt;}
.y1ec{bottom:18.720000pt;}
.y1aa{bottom:20.000000pt;}
.y23c{bottom:20.433360pt;}
.y238{bottom:20.433362pt;}
.y236{bottom:20.433369pt;}
.y149{bottom:20.520000pt;}
.y26{bottom:21.280000pt;}
.y189{bottom:21.440000pt;}
.y18e{bottom:21.453333pt;}
.y23{bottom:22.880000pt;}
.y144{bottom:25.320000pt;}
.y244{bottom:29.646838pt;}
.y26e{bottom:29.770956pt;}
.y173{bottom:33.600000pt;}
.y120{bottom:33.746667pt;}
.y1e1{bottom:33.920000pt;}
.y1eb{bottom:34.080000pt;}
.y148{bottom:35.080000pt;}
.y188{bottom:36.800000pt;}
.y143{bottom:39.880000pt;}
.y11f{bottom:48.946667pt;}
.y172{bottom:48.960000pt;}
.y16e{bottom:49.106667pt;}
.y1e6{bottom:49.280000pt;}
.y1ea{bottom:49.440000pt;}
.y147{bottom:49.640000pt;}
.y187{bottom:52.160000pt;}
.y142{bottom:54.440000pt;}
.y5{bottom:59.133337pt;}
.y171{bottom:64.320000pt;}
.y16d{bottom:64.466667pt;}
.y1e5{bottom:64.640000pt;}
.y1e9{bottom:64.800000pt;}
.y146{bottom:69.626667pt;}
.y140{bottom:74.426667pt;}
.y1e8{bottom:80.000000pt;}
.y1e4{bottom:80.040000pt;}
.y4{bottom:86.333337pt;}
.y21{bottom:123.790666pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y22f{bottom:219.853505pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y29{bottom:238.440000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y5d{bottom:242.920000pt;}
.y28{bottom:247.386667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y184{bottom:286.746667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y8a{bottom:287.386667pt;}
.y198{bottom:288.826667pt;}
.y2ce{bottom:293.786667pt;}
.y57{bottom:294.106667pt;}
.y213{bottom:295.386667pt;}
.y124{bottom:296.026667pt;}
.y16a{bottom:297.626667pt;}
.y107{bottom:298.586667pt;}
.y2af{bottom:299.386667pt;}
.y183{bottom:302.106667pt;}
.y89{bottom:302.586667pt;}
.y197{bottom:304.186667pt;}
.y56{bottom:306.906667pt;}
.y11e{bottom:308.040000pt;}
.y2cd{bottom:308.986667pt;}
.y13e{bottom:309.146667pt;}
.yf{bottom:309.452000pt;}
.y200{bottom:310.106667pt;}
.y212{bottom:310.746667pt;}
.y169{bottom:312.986667pt;}
.y106{bottom:313.946667pt;}
.y2ae{bottom:314.586667pt;}
.y182{bottom:317.306667pt;}
.yb3{bottom:317.786667pt;}
.y196{bottom:319.546667pt;}
.y1ad{bottom:320.506667pt;}
.yde{bottom:322.106667pt;}
.y55{bottom:324.346667pt;}
.y13d{bottom:324.506667pt;}
.y1ff{bottom:325.466667pt;}
.y88{bottom:325.946667pt;}
.y211{bottom:326.106667pt;}
.y168{bottom:328.346667pt;}
.y105{bottom:329.306667pt;}
.y2ad{bottom:329.946667pt;}
.y181{bottom:332.666667pt;}
.y1ac{bottom:332.826667pt;}
.yb2{bottom:332.986667pt;}
.y54{bottom:339.706667pt;}
.ydd{bottom:339.866667pt;}
.y2e8{bottom:340.666667pt;}
.y1fe{bottom:340.826667pt;}
.y87{bottom:341.306667pt;}
.y195{bottom:342.586667pt;}
.y167{bottom:343.706667pt;}
.ye{bottom:343.809333pt;}
.y104{bottom:344.506667pt;}
.y180{bottom:348.026667pt;}
.yb1{bottom:348.346667pt;}
.y2ac{bottom:353.306667pt;}
.y13c{bottom:355.066667pt;}
.y1fd{bottom:356.186667pt;}
.y86{bottom:356.666667pt;}
.y53{bottom:357.146667pt;}
.y194{bottom:357.946667pt;}
.ydc{bottom:358.426667pt;}
.y166{bottom:358.906667pt;}
.y2e7{bottom:360.026667pt;}
.yd{bottom:362.706666pt;}
.y2cc{bottom:363.066667pt;}
.y17f{bottom:363.386667pt;}
.yb0{bottom:363.706667pt;}
.y103{bottom:367.866667pt;}
.y2ab{bottom:368.666667pt;}
.y13b{bottom:370.426667pt;}
.y1fc{bottom:371.386667pt;}
.y85{bottom:372.026667pt;}
.y165{bottom:374.266667pt;}
.ydb{bottom:376.026667pt;}
.y11d{bottom:377.466667pt;}
.y2cb{bottom:378.426667pt;}
.y17e{bottom:378.746667pt;}
.y2e6{bottom:379.386667pt;}
.y52{bottom:380.666667pt;}
.y102{bottom:383.226667pt;}
.y2aa{bottom:384.026667pt;}
.y13a{bottom:385.786667pt;}
.y1fb{bottom:386.746667pt;}
.yaf{bottom:387.066667pt;}
.y210{bottom:387.386667pt;}
.y164{bottom:389.626667pt;}
.yda{bottom:393.626667pt;}
.y2ca{bottom:393.786667pt;}
.y17d{bottom:393.946667pt;}
.y2e5{bottom:394.586667pt;}
.y84{bottom:395.386667pt;}
.y51{bottom:395.706667pt;}
.y101{bottom:398.586667pt;}
.y2a9{bottom:399.426667pt;}
.y139{bottom:401.186667pt;}
.y1fa{bottom:402.146667pt;}
.yae{bottom:402.466667pt;}
.y20f{bottom:402.786667pt;}
.y193{bottom:404.866667pt;}
.y163{bottom:405.026667pt;}
.y17c{bottom:409.346667pt;}
.y83{bottom:410.626667pt;}
.y50{bottom:411.426667pt;}
.yd9{bottom:412.226667pt;}
.y2c9{bottom:413.026667pt;}
.y100{bottom:413.986667pt;}
.y138{bottom:416.546667pt;}
.yad{bottom:417.826667pt;}
.y1f9{bottom:418.946667pt;}
.y192{bottom:420.226667pt;}
.y162{bottom:420.386667pt;}
.y2a8{bottom:422.626667pt;}
.y20e{bottom:422.786667pt;}
.y22e{bottom:422.880000pt;}
.y17b{bottom:424.706667pt;}
.y82{bottom:425.986667pt;}
.y4f{bottom:426.786667pt;}
.y2c8{bottom:428.386667pt;}
.yff{bottom:429.346667pt;}
.yd8{bottom:429.826667pt;}
.y137{bottom:431.746667pt;}
.yac{bottom:433.026667pt;}
.y291{bottom:434.737878pt;}
.y290{bottom:434.737883pt;}
.y28f{bottom:434.737887pt;}
.y28e{bottom:434.737890pt;}
.y28d{bottom:434.737892pt;}
.y28c{bottom:434.737895pt;}
.y28b{bottom:434.737899pt;}
.y28a{bottom:434.737902pt;}
.y26d{bottom:434.737908pt;}
.y191{bottom:435.586667pt;}
.y161{bottom:435.746667pt;}
.y2a7{bottom:437.986667pt;}
.y17a{bottom:440.066667pt;}
.y81{bottom:441.346667pt;}
.y4e{bottom:441.666667pt;}
.y2c7{bottom:443.746667pt;}
.yfe{bottom:444.546667pt;}
.yc{bottom:446.990669pt;}
.y136{bottom:447.106667pt;}
.yd7{bottom:447.586667pt;}
.y1f8{bottom:448.066667pt;}
.yab{bottom:448.386667pt;}
.y2e4{bottom:448.706667pt;}
.y160{bottom:450.946667pt;}
.y289{bottom:453.199705pt;}
.y288{bottom:453.199710pt;}
.y287{bottom:453.199714pt;}
.y286{bottom:453.199717pt;}
.y285{bottom:453.199719pt;}
.y284{bottom:453.199722pt;}
.y283{bottom:453.199726pt;}
.y282{bottom:453.199729pt;}
.y2a6{bottom:453.346667pt;}
.y179{bottom:455.426667pt;}
.y80{bottom:456.706667pt;}
.y4d{bottom:457.346667pt;}
.yfd{bottom:459.906667pt;}
.y135{bottom:462.466667pt;}
.y2c6{bottom:462.786667pt;}
.yb{bottom:462.990669pt;}
.yaa{bottom:463.746667pt;}
.y2e3{bottom:464.066667pt;}
.y190{bottom:466.306667pt;}
.y2a5{bottom:468.706667pt;}
.y178{bottom:470.786667pt;}
.y281{bottom:471.637939pt;}
.y280{bottom:471.637944pt;}
.y27f{bottom:471.637948pt;}
.y27e{bottom:471.637951pt;}
.y27d{bottom:471.637953pt;}
.y27b{bottom:471.637956pt;}
.y27a{bottom:471.637960pt;}
.y279{bottom:471.637964pt;}
.yd6{bottom:471.906667pt;}
.y7f{bottom:472.066667pt;}
.y4c{bottom:472.706667pt;}
.y15f{bottom:473.986667pt;}
.yfc{bottom:475.266667pt;}
.y1f7{bottom:475.906667pt;}
.y134{bottom:477.826667pt;}
.y2c5{bottom:478.146667pt;}
.ya{bottom:478.990666pt;}
.ya9{bottom:479.106667pt;}
.y2e2{bottom:479.426667pt;}
.y18f{bottom:481.506667pt;}
.y1a9{bottom:485.826667pt;}
.y7e{bottom:487.426667pt;}
.y4b{bottom:488.066667pt;}
.y15e{bottom:488.546667pt;}
.y278{bottom:490.099766pt;}
.y277{bottom:490.099771pt;}
.y276{bottom:490.099776pt;}
.y275{bottom:490.099778pt;}
.y274{bottom:490.099780pt;}
.y273{bottom:490.099783pt;}
.y271{bottom:490.099787pt;}
.y26f{bottom:490.099791pt;}
.yfb{bottom:490.626667pt;}
.y176{bottom:490.773333pt;}
.y170{bottom:490.786667pt;}
.y2a4{bottom:491.746667pt;}
.y18c{bottom:493.493333pt;}
.y18b{bottom:493.506667pt;}
.ya8{bottom:494.466667pt;}
.y9{bottom:494.990666pt;}
.yd5{bottom:495.266667pt;}
.y2e1{bottom:498.626667pt;}
.y1f5{bottom:499.266667pt;}
.y133{bottom:501.186667pt;}
.y1f6{bottom:501.826667pt;}
.y7d{bottom:502.626667pt;}
.y15d{bottom:503.106667pt;}
.y4a{bottom:503.426667pt;}
.yfa{bottom:505.986667pt;}
.y26c{bottom:506.570572pt;}
.y26b{bottom:506.570577pt;}
.y26a{bottom:506.570581pt;}
.y268{bottom:506.570583pt;}
.y267{bottom:506.570585pt;}
.y266{bottom:506.570589pt;}
.y264{bottom:506.570592pt;}
.y262{bottom:506.570596pt;}
.y243{bottom:506.570602pt;}
.ya7{bottom:509.826667pt;}
.yd4{bottom:510.626667pt;}
.y2e0{bottom:513.986667pt;}
.y2a3{bottom:515.106667pt;}
.y132{bottom:516.546667pt;}
.y2c4{bottom:517.026667pt;}
.y15c{bottom:517.826667pt;}
.y7c{bottom:517.986667pt;}
.y49{bottom:518.626667pt;}
.yf9{bottom:521.346667pt;}
.y1f4{bottom:523.426667pt;}
.y261{bottom:525.032399pt;}
.y260{bottom:525.032404pt;}
.y25f{bottom:525.032408pt;}
.y25d{bottom:525.032410pt;}
.y25c{bottom:525.032412pt;}
.y25b{bottom:525.032416pt;}
.y259{bottom:525.032420pt;}
.y257{bottom:525.032423pt;}
.yd3{bottom:525.986667pt;}
.y2df{bottom:529.346667pt;}
.y15b{bottom:532.386667pt;}
.ya6{bottom:533.026667pt;}
.y7b{bottom:533.346667pt;}
.y48{bottom:533.986667pt;}
.yf8{bottom:536.546667pt;}
.y1a8{bottom:537.026667pt;}
.y1f3{bottom:538.626667pt;}
.y131{bottom:539.746667pt;}
.y11c{bottom:540.706667pt;}
.yd2{bottom:541.346667pt;}
.y256{bottom:543.469607pt;}
.y255{bottom:543.469612pt;}
.y254{bottom:543.469617pt;}
.y253{bottom:543.469619pt;}
.y252{bottom:543.469621pt;}
.y251{bottom:543.469624pt;}
.y250{bottom:543.469628pt;}
.y24f{bottom:543.469632pt;}
.y15a{bottom:546.946667pt;}
.y2c3{bottom:547.746667pt;}
.ya5{bottom:548.386667pt;}
.y2de{bottom:548.706667pt;}
.y47{bottom:549.346667pt;}
.yf7{bottom:551.906667pt;}
.y1a7{bottom:552.386667pt;}
.y1f2{bottom:553.986667pt;}
.y130{bottom:555.106667pt;}
.y11b{bottom:556.066667pt;}
.y7a{bottom:556.386667pt;}
.yd1{bottom:556.706667pt;}
.y18a{bottom:557.986667pt;}
.y159{bottom:561.506667pt;}
.y24e{bottom:561.933486pt;}
.y24d{bottom:561.933491pt;}
.y24c{bottom:561.933495pt;}
.y24b{bottom:561.933498pt;}
.y24a{bottom:561.933500pt;}
.y249{bottom:561.933503pt;}
.y247{bottom:561.933507pt;}
.y245{bottom:561.933510pt;}
.y2c2{bottom:563.106667pt;}
.ya4{bottom:563.746667pt;}
.y2dd{bottom:564.066667pt;}
.y46{bottom:564.706667pt;}
.yf6{bottom:567.266667pt;}
.y16f{bottom:567.426667pt;}
.y1a6{bottom:567.746667pt;}
.y1f1{bottom:569.346667pt;}
.y12f{bottom:570.466667pt;}
.y11a{bottom:571.266667pt;}
.yd0{bottom:571.906667pt;}
.y8{bottom:573.786667pt;}
.y2c1{bottom:578.466667pt;}
.ya3{bottom:579.106667pt;}
.y79{bottom:579.746667pt;}
.y45{bottom:580.066667pt;}
.y242{bottom:580.366591pt;}
.y240{bottom:580.366596pt;}
.y23d{bottom:580.366601pt;}
.y23b{bottom:580.366603pt;}
.y23a{bottom:580.366605pt;}
.y239{bottom:580.366608pt;}
.y237{bottom:580.366612pt;}
.y235{bottom:580.366616pt;}
.yf5{bottom:582.626667pt;}
.y1a5{bottom:583.106667pt;}
.y2dc{bottom:583.266667pt;}
.y158{bottom:584.066667pt;}
.y1f0{bottom:584.706667pt;}
.y12e{bottom:585.826667pt;}
.y119{bottom:586.626667pt;}
.ycf{bottom:587.266667pt;}
.y7{bottom:592.685334pt;}
.y2c0{bottom:593.666667pt;}
.ya2{bottom:594.466667pt;}
.y44{bottom:595.426667pt;}
.y1a4{bottom:598.466667pt;}
.y157{bottom:598.626667pt;}
.y23e{bottom:598.830470pt;}
.y1ef{bottom:600.066667pt;}
.y12d{bottom:601.186667pt;}
.y118{bottom:601.986667pt;}
.yce{bottom:602.626667pt;}
.y78{bottom:603.266667pt;}
.yf4{bottom:605.986667pt;}
.y2bf{bottom:609.053333pt;}
.y43{bottom:610.653333pt;}
.y156{bottom:613.213333pt;}
.y1a3{bottom:613.693333pt;}
.y2db{bottom:614.013333pt;}
.y1ee{bottom:615.293333pt;}
.y12c{bottom:616.413333pt;}
.y233{bottom:617.273833pt;}
.y117{bottom:617.373333pt;}
.ya1{bottom:617.693333pt;}
.ycd{bottom:618.013333pt;}
.y77{bottom:618.653333pt;}
.yf3{bottom:621.373333pt;}
.y2be{bottom:624.413333pt;}
.y42{bottom:626.013333pt;}
.y155{bottom:627.773333pt;}
.ya0{bottom:633.053333pt;}
.ycc{bottom:633.373333pt;}
.y76{bottom:634.013333pt;}
.yf2{bottom:636.573333pt;}
.y20d{bottom:636.733333pt;}
.y1a2{bottom:637.053333pt;}
.y1ed{bottom:638.653333pt;}
.y12b{bottom:639.773333pt;}
.y116{bottom:640.733333pt;}
.y41{bottom:641.373333pt;}
.y154{bottom:642.333333pt;}
.y6{bottom:645.598667pt;}
.y2bd{bottom:647.773333pt;}
.y9f{bottom:648.413333pt;}
.ycb{bottom:648.733333pt;}
.y75{bottom:649.373333pt;}
.y1e7{bottom:651.293333pt;}
.y1a1{bottom:652.413333pt;}
.y2a2{bottom:654.013333pt;}
.y12a{bottom:654.813333pt;}
.y115{bottom:656.093333pt;}
.y40{bottom:656.733333pt;}
.y153{bottom:656.893333pt;}
.y20c{bottom:660.413333pt;}
.yf1{bottom:660.893333pt;}
.y2bc{bottom:663.133333pt;}
.y9e{bottom:663.773333pt;}
.yca{bottom:663.933333pt;}
.y74{bottom:664.733333pt;}
.y1a0{bottom:667.773333pt;}
.y2da{bottom:668.093333pt;}
.y3{bottom:668.977329pt;}
.y2a1{bottom:669.373333pt;}
.y129{bottom:670.173333pt;}
.y114{bottom:671.293333pt;}
.y3f{bottom:672.093333pt;}
.y20b{bottom:675.773333pt;}
.yf0{bottom:676.253333pt;}
.y2bb{bottom:678.493333pt;}
.y9d{bottom:679.133333pt;}
.yc9{bottom:679.293333pt;}
.y152{bottom:679.453333pt;}
.y73{bottom:680.093333pt;}
.y128{bottom:682.653333pt;}
.y19f{bottom:683.133333pt;}
.y2d9{bottom:683.293333pt;}
.y2a0{bottom:684.733333pt;}
.y113{bottom:686.653333pt;}
.y3e{bottom:687.453333pt;}
.y20a{bottom:691.133333pt;}
.y151{bottom:694.013333pt;}
.yc8{bottom:694.653333pt;}
.y72{bottom:695.293333pt;}
.y19e{bottom:698.493333pt;}
.yef{bottom:700.573333pt;}
.y2ba{bottom:701.693333pt;}
.y9c{bottom:702.493333pt;}
.y3d{bottom:702.653333pt;}
.y209{bottom:706.493333pt;}
.y29f{bottom:708.093333pt;}
.y150{bottom:708.573333pt;}
.yc7{bottom:710.013333pt;}
.y186{bottom:712.733333pt;}
.y19d{bottom:713.693333pt;}
.yee{bottom:715.933333pt;}
.y2b9{bottom:717.053333pt;}
.y9b{bottom:717.693333pt;}
.y3c{bottom:718.013333pt;}
.y71{bottom:718.653333pt;}
.y29e{bottom:720.733333pt;}
.y208{bottom:721.693333pt;}
.y16c{bottom:722.346667pt;}
.y14f{bottom:723.133333pt;}
.yc6{bottom:725.373333pt;}
.y19c{bottom:729.053333pt;}
.y2b8{bottom:732.413333pt;}
.y9a{bottom:733.053333pt;}
.y3b{bottom:733.373333pt;}
.y70{bottom:734.013333pt;}
.y207{bottom:737.053333pt;}
.y2d8{bottom:737.373333pt;}
.y14e{bottom:737.693333pt;}
.yed{bottom:740.093333pt;}
.yc3{bottom:740.573333pt;}
.y112{bottom:740.733333pt;}
.yc5{bottom:741.053333pt;}
.y1e3{bottom:744.093333pt;}
.yc4{bottom:745.693333pt;}
.y2b7{bottom:747.773333pt;}
.y3a{bottom:748.413333pt;}
.y19b{bottom:749.053333pt;}
.y1db{bottom:749.120000pt;}
.y6f{bottom:749.373333pt;}
.y206{bottom:752.413333pt;}
.y2d7{bottom:752.733333pt;}
.y1d9{bottom:754.947704pt;}
.y1d7{bottom:754.947714pt;}
.y1d5{bottom:754.947723pt;}
.y1d3{bottom:754.947735pt;}
.y1d1{bottom:754.947743pt;}
.yec{bottom:755.453333pt;}
.y111{bottom:756.093333pt;}
.yc2{bottom:756.733333pt;}
.y14d{bottom:760.253333pt;}
.y2b6{bottom:763.133333pt;}
.y39{bottom:763.773333pt;}
.y6e{bottom:764.733333pt;}
.y1d0{bottom:766.458575pt;}
.y1cf{bottom:766.458585pt;}
.y1ce{bottom:766.458594pt;}
.y1cd{bottom:766.458606pt;}
.y1cc{bottom:766.458614pt;}
.y1c3{bottom:766.458631pt;}
.y205{bottom:767.773333pt;}
.yc1{bottom:772.093333pt;}
.y14c{bottom:774.813333pt;}
.y185{bottom:777.213333pt;}
.y38{bottom:778.973333pt;}
.y99{bottom:779.133333pt;}
.y1cb{bottom:779.631331pt;}
.y1ca{bottom:779.631341pt;}
.y1c9{bottom:779.631350pt;}
.y1c7{bottom:779.631362pt;}
.y1c5{bottom:779.631370pt;}
.yeb{bottom:779.773333pt;}
.y6d{bottom:780.093333pt;}
.y2{bottom:781.661334pt;}
.y29b{bottom:782.666667pt;}
.y204{bottom:783.133333pt;}
.y2b5{bottom:786.493333pt;}
.yc0{bottom:787.293333pt;}
.y14b{bottom:789.373333pt;}
.y1c2{bottom:791.159656pt;}
.y1c0{bottom:791.159666pt;}
.y1be{bottom:791.159675pt;}
.y1bc{bottom:791.159687pt;}
.y1ba{bottom:791.159695pt;}
.y1b8{bottom:791.159712pt;}
.y2d6{bottom:791.293333pt;}
.y98{bottom:794.493333pt;}
.yea{bottom:795.133333pt;}
.y6c{bottom:795.293333pt;}
.y37{bottom:796.413333pt;}
.y203{bottom:798.333333pt;}
.y16b{bottom:799.133333pt;}
.y2b4{bottom:801.693333pt;}
.y110{bottom:802.333333pt;}
.ybf{bottom:802.653333pt;}
.y1b7{bottom:804.418961pt;}
.y1b5{bottom:804.418971pt;}
.y1b2{bottom:804.418980pt;}
.y1b0{bottom:804.418992pt;}
.y1ae{bottom:804.418999pt;}
.y2d5{bottom:806.653333pt;}
.y141{bottom:808.893333pt;}
.y13f{bottom:808.906667pt;}
.y97{bottom:809.693333pt;}
.y6b{bottom:810.653333pt;}
.y36{bottom:812.093333pt;}
.y299{bottom:814.026667pt;}
.y2b3{bottom:817.093333pt;}
.ybe{bottom:818.053333pt;}
.y202{bottom:818.373333pt;}
.y22c{bottom:818.400000pt;}
.ye9{bottom:819.493333pt;}
.y10f{bottom:822.053333pt;}
.y96{bottom:825.093333pt;}
.y6a{bottom:826.053333pt;}
.y35{bottom:827.333333pt;}
.y297{bottom:830.053333pt;}
.y22a{bottom:831.272064pt;}
.y228{bottom:831.272080pt;}
.y226{bottom:831.272096pt;}
.y224{bottom:831.272115pt;}
.y19a{bottom:832.133333pt;}
.y2b2{bottom:832.453333pt;}
.ybd{bottom:833.413333pt;}
.ye8{bottom:834.693333pt;}
.y127{bottom:835.813333pt;}
.y1e0{bottom:836.773333pt;}
.y10e{bottom:837.413333pt;}
.y95{bottom:840.453333pt;}
.y34{bottom:842.693333pt;}
.y222{bottom:846.467833pt;}
.y220{bottom:846.467848pt;}
.y21f{bottom:846.467864pt;}
.y21e{bottom:846.467884pt;}
.y2b1{bottom:847.813333pt;}
.ybc{bottom:848.773333pt;}
.y69{bottom:849.413333pt;}
.y10d{bottom:852.773333pt;}
.y94{bottom:855.813333pt;}
.y2d4{bottom:856.773333pt;}
.y33{bottom:857.733333pt;}
.ye7{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.y21c{bottom:863.452395pt;}
.y21a{bottom:863.452411pt;}
.y218{bottom:863.452427pt;}
.y216{bottom:863.452446pt;}
.ybb{bottom:863.973333pt;}
.y296{bottom:864.453333pt;}
.y68{bottom:864.773333pt;}
.y10c{bottom:867.973333pt;}
.y93{bottom:871.173333pt;}
.y2d3{bottom:871.973333pt;}
.y32{bottom:872.933333pt;}
.ye6{bottom:874.373333pt;}
.yba{bottom:879.333333pt;}
.y67{bottom:879.973333pt;}
.y214{bottom:880.459636pt;}
.y10b{bottom:883.333333pt;}
.y92{bottom:886.373333pt;}
.y295{bottom:887.973333pt;}
.y31{bottom:890.373333pt;}
.y2d2{bottom:891.333333pt;}
.ye5{bottom:892.453333pt;}
.yb9{bottom:894.693333pt;}
.y66{bottom:895.333333pt;}
.y201{bottom:901.413333pt;}
.y91{bottom:901.733333pt;}
.y294{bottom:903.333333pt;}
.y30{bottom:906.053333pt;}
.y10a{bottom:906.373333pt;}
.y2d1{bottom:906.693333pt;}
.ye4{bottom:910.533333pt;}
.y65{bottom:910.693333pt;}
.y126{bottom:917.093333pt;}
.yb8{bottom:917.733333pt;}
.y293{bottom:918.693333pt;}
.y90{bottom:925.093333pt;}
.y64{bottom:926.053333pt;}
.y2f{bottom:927.813333pt;}
.ye3{bottom:929.253333pt;}
.y109{bottom:929.733333pt;}
.y125{bottom:932.453333pt;}
.y1dd{bottom:933.093333pt;}
.y292{bottom:934.053333pt;}
.y2e{bottom:938.213333pt;}
.y8f{bottom:940.453333pt;}
.y63{bottom:941.413333pt;}
.ye2{bottom:946.853333pt;}
.y199{bottom:947.813333pt;}
.y108{bottom:949.413333pt;}
.y8e{bottom:955.813333pt;}
.y2d{bottom:956.293333pt;}
.y62{bottom:956.773333pt;}
.y2d0{bottom:960.773333pt;}
.y2b0{bottom:963.173333pt;}
.yb7{bottom:964.773333pt;}
.ye1{bottom:965.413333pt;}
.y8d{bottom:971.173333pt;}
.y61{bottom:971.973333pt;}
.y2c{bottom:972.293333pt;}
.y2cf{bottom:975.973333pt;}
.yb6{bottom:979.973333pt;}
.ye0{bottom:983.013333pt;}
.y8c{bottom:986.373333pt;}
.y60{bottom:987.333333pt;}
.y2b{bottom:995.013333pt;}
.yb5{bottom:995.333333pt;}
.ydf{bottom:1000.613333pt;}
.y8b{bottom:1001.733333pt;}
.y5f{bottom:1010.373333pt;}
.yb4{bottom:1010.693333pt;}
.y27{bottom:1017.733333pt;}
.y5c{bottom:1026.720000pt;}
.y22{bottom:1033.600000pt;}
.y58{bottom:1042.400000pt;}
.h45{height:11.511023pt;}
.h47{height:11.511024pt;}
.h48{height:11.511025pt;}
.h46{height:11.511026pt;}
.h44{height:11.511048pt;}
.h40{height:11.528333pt;}
.h42{height:11.528334pt;}
.h43{height:11.528335pt;}
.h41{height:11.528336pt;}
.h3f{height:11.528343pt;}
.h39{height:11.614882pt;}
.h3c{height:11.614883pt;}
.h3d{height:11.614884pt;}
.h3a{height:11.614885pt;}
.h37{height:11.614890pt;}
.h38{height:11.614892pt;}
.h54{height:15.059712pt;}
.h55{height:15.059715pt;}
.h52{height:15.059764pt;}
.h56{height:15.195785pt;}
.h57{height:15.195788pt;}
.h77{height:15.378667pt;}
.h5d{height:16.343543pt;}
.h67{height:16.347715pt;}
.h66{height:16.347717pt;}
.h68{height:16.347718pt;}
.h65{height:16.347719pt;}
.h62{height:16.347722pt;}
.h6b{height:16.372333pt;}
.h6a{height:16.372335pt;}
.h63{height:16.372336pt;}
.h69{height:16.372337pt;}
.h6f{height:16.470807pt;}
.h6e{height:16.470809pt;}
.h70{height:16.470810pt;}
.h6d{height:16.470811pt;}
.h74{height:16.495426pt;}
.h72{height:16.495428pt;}
.h75{height:16.495429pt;}
.h71{height:16.495430pt;}
.h1b{height:19.360000pt;}
.h31{height:23.056658pt;}
.h34{height:23.056659pt;}
.h36{height:23.056660pt;}
.h32{height:23.056661pt;}
.h2f{height:23.056683pt;}
.hf{height:23.200000pt;}
.h4a{height:24.235576pt;}
.h3e{height:24.701096pt;}
.h30{height:27.080367pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h4b{height:30.706667pt;}
.h1a{height:30.720000pt;}
.h35{height:31.209024pt;}
.h33{height:31.278263pt;}
.h59{height:31.698286pt;}
.h2d{height:32.626667pt;}
.h19{height:33.574375pt;}
.h3b{height:34.045194pt;}
.h5c{height:34.409359pt;}
.h61{height:34.809542pt;}
.h60{height:34.809544pt;}
.h5f{height:34.809550pt;}
.h53{height:35.496542pt;}
.h14{height:36.413125pt;}
.h22{height:37.410000pt;}
.h17{height:38.050313pt;}
.h5e{height:38.532470pt;}
.hc{height:38.672812pt;}
.h7a{height:38.828437pt;}
.hb{height:39.520000pt;}
.h2e{height:40.151250pt;}
.h7{height:40.853333pt;}
.h1d{height:41.234375pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h73{height:44.369655pt;}
.h76{height:44.472233pt;}
.h4c{height:45.906667pt;}
.h5b{height:48.347594pt;}
.h2{height:49.024000pt;}
.h15{height:52.108438pt;}
.h12{height:52.134375pt;}
.h79{height:52.478750pt;}
.h16{height:53.535000pt;}
.h10{height:53.600625pt;}
.h1e{height:55.402500pt;}
.hd{height:56.732813pt;}
.h1c{height:59.007812pt;}
.h13{height:59.340000pt;}
.h11{height:60.437812pt;}
.h78{height:61.280000pt;}
.he{height:62.812500pt;}
.h2c{height:64.476000pt;}
.h2b{height:64.480000pt;}
.h51{height:64.500000pt;}
.h21{height:69.266667pt;}
.h1f{height:69.272000pt;}
.h20{height:69.280000pt;}
.h5{height:69.450667pt;}
.h64{height:71.709605pt;}
.h6c{height:71.832698pt;}
.h4f{height:74.514375pt;}
.h28{height:76.626667pt;}
.h29{height:76.636000pt;}
.h2a{height:76.640000pt;}
.h25{height:76.786667pt;}
.h26{height:76.796000pt;}
.h27{height:76.800000pt;}
.h58{height:77.119400pt;}
.h49{height:80.000000pt;}
.h50{height:85.887813pt;}
.h4e{height:92.000000pt;}
.h4d{height:92.020000pt;}
.h4{height:105.826671pt;}
.h5a{height:210.880000pt;}
.h23{height:213.773333pt;}
.h24{height:213.786667pt;}
.h18{height:1122.386587pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2b{width:4.000000pt;}
.w2c{width:4.160000pt;}
.wc{width:18.240000pt;}
.w8{width:18.560000pt;}
.w3a{width:25.965489pt;}
.w3b{width:32.655651pt;}
.w39{width:42.668622pt;}
.w37{width:48.926611pt;}
.w43{width:50.866667pt;}
.w38{width:50.883713pt;}
.w1f{width:52.125978pt;}
.w19{width:52.125979pt;}
.w32{width:52.718170pt;}
.w31{width:53.240982pt;}
.w2f{width:54.806158pt;}
.w3f{width:54.866157pt;}
.w42{width:55.378667pt;}
.w44{width:58.226667pt;}
.w21{width:58.775901pt;}
.w1b{width:58.775903pt;}
.w6{width:59.026667pt;}
.w7{width:59.546667pt;}
.w3d{width:59.758436pt;}
.w30{width:65.141753pt;}
.w22{width:65.478187pt;}
.w1c{width:65.478188pt;}
.w3e{width:65.788965pt;}
.wa{width:67.186667pt;}
.w20{width:77.102463pt;}
.w1a{width:77.102464pt;}
.w40{width:79.556919pt;}
.w27{width:81.440000pt;}
.w46{width:97.746667pt;}
.w28{width:101.312000pt;}
.w1d{width:106.451142pt;}
.w23{width:106.451143pt;}
.w26{width:110.418667pt;}
.w1e{width:120.617137pt;}
.w3c{width:126.913107pt;}
.w36{width:134.419283pt;}
.w15{width:168.493333pt;}
.w17{width:168.533333pt;}
.w16{width:168.666667pt;}
.w2d{width:171.080000pt;}
.w29{width:186.573333pt;}
.w45{width:203.573333pt;}
.wf{width:222.413333pt;}
.w14{width:222.426667pt;}
.w24{width:226.933010pt;}
.w18{width:226.933011pt;}
.w2e{width:232.428607pt;}
.w10{width:236.693333pt;}
.w11{width:236.706667pt;}
.wd{width:239.733333pt;}
.we{width:239.746667pt;}
.w33{width:247.036943pt;}
.w13{width:255.893333pt;}
.w12{width:255.906667pt;}
.w41{width:301.973333pt;}
.w5{width:392.720000pt;}
.wb{width:438.680000pt;}
.w35{width:470.623863pt;}
.w34{width:491.199509pt;}
.w25{width:497.937043pt;}
.w2{width:566.928019pt;}
.w2a{width:614.813333pt;}
.w4{width:793.333333pt;}
.w9{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x54{left:-1.746667pt;}
.x0{left:0.000000pt;}
.x5e{left:2.218346pt;}
.x42{left:3.272601pt;}
.x66{left:4.662927pt;}
.x45{left:6.283394pt;}
.x6{left:7.186667pt;}
.x70{left:8.306667pt;}
.x35{left:9.440000pt;}
.x1d{left:10.706667pt;}
.x1a{left:11.666667pt;}
.x2e{left:12.640000pt;}
.x69{left:13.657068pt;}
.x33{left:14.866667pt;}
.x3a{left:16.320000pt;}
.x5d{left:17.879965pt;}
.x28{left:19.026667pt;}
.x2b{left:20.466667pt;}
.x32{left:23.186667pt;}
.x23{left:25.106667pt;}
.x6c{left:27.427865pt;}
.x38{left:28.466667pt;}
.x48{left:29.715211pt;}
.x4b{left:30.893347pt;}
.x1c{left:32.306667pt;}
.x2d{left:33.280000pt;}
.x2c{left:36.160000pt;}
.x6b{left:37.322367pt;}
.x51{left:38.706667pt;}
.x29{left:39.666667pt;}
.x6a{left:41.530374pt;}
.x49{left:43.089238pt;}
.x1b{left:45.586667pt;}
.x25{left:50.386667pt;}
.x3d{left:51.826667pt;}
.x4a{left:54.717877pt;}
.x1e{left:58.866667pt;}
.x6d{left:60.532747pt;}
.x24{left:64.346667pt;}
.x39{left:72.986667pt;}
.x2f{left:77.760000pt;}
.x34{left:85.946667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x12{left:106.906667pt;}
.x30{left:111.226667pt;}
.x5{left:144.040000pt;}
.x9{left:151.226667pt;}
.x41{left:153.687167pt;}
.xe{left:156.666667pt;}
.x4c{left:159.226667pt;}
.x5f{left:161.667882pt;}
.x61{left:162.578670pt;}
.x73{left:169.466667pt;}
.x4d{left:171.706667pt;}
.x18{left:175.226667pt;}
.x4{left:180.874667pt;}
.x60{left:193.023359pt;}
.xb{left:205.786667pt;}
.x20{left:209.786667pt;}
.x11{left:211.240000pt;}
.x57{left:216.226667pt;}
.x68{left:217.443877pt;}
.xc{left:221.186667pt;}
.xf{left:227.106667pt;}
.x22{left:237.173333pt;}
.x6e{left:239.266667pt;}
.x3b{left:250.946667pt;}
.x27{left:257.186667pt;}
.x47{left:260.138310pt;}
.x4e{left:267.106667pt;}
.x13{left:276.533333pt;}
.x62{left:298.935150pt;}
.x3e{left:312.546667pt;}
.x15{left:322.306667pt;}
.x21{left:329.186667pt;}
.x10{left:343.266667pt;}
.x4f{left:349.186667pt;}
.x72{left:366.826667pt;}
.x2a{left:379.293333pt;}
.x37{left:383.293333pt;}
.x26{left:393.853333pt;}
.x31{left:395.293333pt;}
.xd{left:396.893333pt;}
.x59{left:397.982276pt;}
.x36{left:401.373333pt;}
.x3{left:404.408000pt;}
.x43{left:437.727050pt;}
.x63{left:444.263026pt;}
.x50{left:451.146667pt;}
.x5a{left:455.007499pt;}
.x6f{left:465.226667pt;}
.x64{left:471.131718pt;}
.x3f{left:481.226667pt;}
.x65{left:504.814728pt;}
.x44{left:517.338505pt;}
.x5b{left:521.194868pt;}
.x14{left:529.253333pt;}
.x7{left:536.773333pt;}
.x17{left:541.573333pt;}
.x16{left:556.933333pt;}
.x67{left:565.480160pt;}
.x71{left:572.933333pt;}
.x5c{left:575.606465pt;}
.x46{left:578.601581pt;}
.x8{left:595.813333pt;}
.x52{left:609.073333pt;}
.x53{left:614.680000pt;}
.x55{left:618.520000pt;}
.x56{left:622.520000pt;}
.xa{left:623.960000pt;}
.x1f{left:626.853333pt;}
.x19{left:635.013333pt;}
.x40{left:639.013333pt;}
.x58{left:642.533333pt;}
.x3c{left:649.120000pt;}
}




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