
    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_2d5d5f8c98229032774b6c81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_62435e737690b5626d4db22d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_fbe14730429754c6d04cdcbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f53e16d6873cbfde279c2022.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_d9a1493a0532acad40a95cff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.244000;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_857c458db746036c585b5e12.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_d56eb3f60431c27b296aaee4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_60af48749a144cdbad635d81.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_a86e119a3770b1ea0a9476d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.705000;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_4a5942b96874d2515e8b00cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_c622029bc618fcf7774c6b52.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.049000;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_3e698fc5e9f740019b9f5b03.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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_f4981401d1a121d6103677ec.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.710000;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_ca763228c5bac90f40261840.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.872000;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_bcb18669aa17291f260dc83f.woff2')format("woff");}.fff{font-family:fff;line-height:3.000000;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_0fede573d6ca3064b1026dd5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d4e947d61b2146a888fe8fb1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ve{vertical-align:-14.944183px;}
.v2{vertical-align:-10.803024px;}
.v1{vertical-align:-9.002520px;}
.v3{vertical-align:-5.941663px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.821630px;}
.vd{vertical-align:9.002520px;}
.v6{vertical-align:14.824150px;}
.vf{vertical-align:17.224822px;}
.v4{vertical-align:21.726082px;}
.v5{vertical-align:25.087022px;}
.vc{vertical-align:43.632214px;}
.v8{vertical-align:50.594162px;}
.vb{vertical-align:52.634734px;}
.va{vertical-align:56.775893px;}
.v9{vertical-align:102.268627px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.001993px;}
.ls3c{letter-spacing:0.007346px;}
.ls16{letter-spacing:0.009531px;}
.ls1c{letter-spacing:0.009711px;}
.ls4c{letter-spacing:0.010491px;}
.ls4a{letter-spacing:0.014776px;}
.ls37{letter-spacing:0.015748px;}
.ls7{letter-spacing:0.016361px;}
.ls47{letter-spacing:0.018677px;}
.ls4{letter-spacing:0.020670px;}
.ls23{letter-spacing:0.022662px;}
.ls2{letter-spacing:0.028352px;}
.lsb{letter-spacing:0.030873px;}
.ls15{letter-spacing:0.031017px;}
.ls39{letter-spacing:0.034090px;}
.ls56{letter-spacing:0.038933px;}
.ls58{letter-spacing:0.039083px;}
.ls1b{letter-spacing:0.051566px;}
.ls18{letter-spacing:1.889473px;}
.ls22{letter-spacing:2.432367px;}
.ls3{letter-spacing:2.957184px;}
.lse{letter-spacing:2.987552px;}
.lsd{letter-spacing:3.008534px;}
.ls1{letter-spacing:3.017201px;}
.ls54{letter-spacing:3.199568px;}
.ls3a{letter-spacing:3.471804px;}
.ls10{letter-spacing:3.839635px;}
.ls4d{letter-spacing:4.090817px;}
.ls4f{letter-spacing:4.450738px;}
.ls4b{letter-spacing:4.510755px;}
.ls35{letter-spacing:4.760004px;}
.ls24{letter-spacing:5.433207px;}
.ls31{letter-spacing:5.540223px;}
.ls53{letter-spacing:6.138074px;}
.lsf{letter-spacing:6.524666px;}
.ls55{letter-spacing:8.310670px;}
.ls1e{letter-spacing:8.338590px;}
.ls12{letter-spacing:9.921449px;}
.ls51{letter-spacing:9.981466px;}
.ls30{letter-spacing:10.384419px;}
.ls34{letter-spacing:11.329996px;}
.ls32{letter-spacing:12.050197px;}
.ls49{letter-spacing:13.282390px;}
.ls48{letter-spacing:15.436657px;}
.ls46{letter-spacing:16.324570px;}
.ls28{letter-spacing:16.583314px;}
.ls9{letter-spacing:17.363532px;}
.ls25{letter-spacing:18.696920px;}
.ls2f{letter-spacing:18.724641px;}
.ls2e{letter-spacing:19.101703px;}
.ls50{letter-spacing:19.581837px;}
.ls1f{letter-spacing:19.594429px;}
.ls52{letter-spacing:19.641854px;}
.lsc{letter-spacing:20.362056px;}
.ls11{letter-spacing:20.404272px;}
.ls8{letter-spacing:20.413406px;}
.ls13{letter-spacing:20.688505px;}
.ls33{letter-spacing:20.947376px;}
.lsa{letter-spacing:21.184490px;}
.ls27{letter-spacing:21.427510px;}
.ls1a{letter-spacing:21.755034px;}
.ls3b{letter-spacing:22.057860px;}
.ls14{letter-spacing:22.117877px;}
.ls21{letter-spacing:22.524977px;}
.ls20{letter-spacing:22.567829px;}
.ls19{letter-spacing:22.718045px;}
.ls42{letter-spacing:22.739045px;}
.ls2d{letter-spacing:22.882761px;}
.ls26{letter-spacing:22.973255px;}
.ls17{letter-spacing:23.097297px;}
.ls38{letter-spacing:23.258196px;}
.ls3f{letter-spacing:23.358875px;}
.ls3e{letter-spacing:24.458532px;}
.ls3d{letter-spacing:24.578566px;}
.ls45{letter-spacing:25.345767px;}
.ls2c{letter-spacing:25.503395px;}
.ls1d{letter-spacing:25.511725px;}
.ls41{letter-spacing:25.703551px;}
.ls43{letter-spacing:26.450244px;}
.ls6{letter-spacing:26.846187px;}
.ls40{letter-spacing:28.119557px;}
.ls4e{letter-spacing:28.155573px;}
.ls2b{letter-spacing:28.166556px;}
.ls44{letter-spacing:28.284273px;}
.ls5{letter-spacing:29.784693px;}
.ls36{letter-spacing:30.655405px;}
.ls2a{letter-spacing:33.010752px;}
.ls57{letter-spacing:52.666428px;}
.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;}
}
.ws43{word-spacing:-0.059777px;}
.ws3{word-spacing:-0.053775px;}
.ws68{word-spacing:-0.041832px;}
.ws1f{word-spacing:0.000000px;}
.ws2f{word-spacing:9.863161px;}
.wsae{word-spacing:9.912507px;}
.ws20{word-spacing:9.922938px;}
.wscf{word-spacing:10.539910px;}
.ws112{word-spacing:12.260712px;}
.ws10f{word-spacing:12.475812px;}
.wsea{word-spacing:12.959788px;}
.ws90{word-spacing:13.199927px;}
.ws91{word-spacing:13.210658px;}
.ws8{word-spacing:13.551313px;}
.wsc3{word-spacing:13.688872px;}
.ws111{word-spacing:14.035289px;}
.wscc{word-spacing:14.047532px;}
.wsa3{word-spacing:14.167086px;}
.ws10c{word-spacing:14.357939px;}
.wsd4{word-spacing:14.525746px;}
.wseb{word-spacing:14.680589px;}
.ws110{word-spacing:14.696530px;}
.ws85{word-spacing:14.705076px;}
.wsa5{word-spacing:14.764853px;}
.wsb5{word-spacing:14.791717px;}
.ws32{word-spacing:14.824630px;}
.wsef{word-spacing:14.841915px;}
.wsab{word-spacing:15.063737px;}
.ws6f{word-spacing:15.123513px;}
.ws87{word-spacing:15.243067px;}
.wse3{word-spacing:15.325890px;}
.ws4c{word-spacing:15.422397px;}
.ws61{word-spacing:15.482174px;}
.wsfc{word-spacing:15.487215px;}
.ws59{word-spacing:15.541951px;}
.wsf5{word-spacing:15.594765px;}
.ws41{word-spacing:15.601727px;}
.ws102{word-spacing:15.648540px;}
.wsbf{word-spacing:15.661504px;}
.ws15{word-spacing:15.721281px;}
.ws28{word-spacing:15.840834px;}
.ws103{word-spacing:15.863641px;}
.wsf{word-spacing:15.900611px;}
.ws14{word-spacing:15.960388px;}
.ws9b{word-spacing:15.983938px;}
.ws9a{word-spacing:15.994045px;}
.ws12{word-spacing:16.079941px;}
.wsd7{word-spacing:16.139718px;}
.wsaf{word-spacing:16.250413px;}
.wsf7{word-spacing:16.293841px;}
.ws92{word-spacing:16.339502px;}
.ws31{word-spacing:16.378825px;}
.ws107{word-spacing:16.401391px;}
.wsc1{word-spacing:16.438602px;}
.ws6d{word-spacing:16.498378px;}
.ws1e{word-spacing:16.558155px;}
.wse8{word-spacing:16.562716px;}
.ws8f{word-spacing:16.608857px;}
.ws71{word-spacing:16.617932px;}
.ws72{word-spacing:16.654230px;}
.ws39{word-spacing:16.677708px;}
.ws1a{word-spacing:16.797262px;}
.wsb2{word-spacing:16.857039px;}
.ws6c{word-spacing:16.916815px;}
.ws9{word-spacing:16.939142px;}
.ws5d{word-spacing:16.976592px;}
.ws6{word-spacing:16.992917px;}
.wsd3{word-spacing:17.036369px;}
.wsf4{word-spacing:17.100467px;}
.ws94{word-spacing:17.155922px;}
.wscb{word-spacing:17.215699px;}
.ws3e{word-spacing:17.275476px;}
.ws104{word-spacing:17.369342px;}
.ws18{word-spacing:17.395029px;}
.wsbb{word-spacing:17.454806px;}
.ws8a{word-spacing:17.634136px;}
.ws89{word-spacing:17.673819px;}
.ws81{word-spacing:17.693913px;}
.ws7f{word-spacing:17.719888px;}
.wsa4{word-spacing:17.753690px;}
.ws5a{word-spacing:17.813466px;}
.ws79{word-spacing:17.873243px;}
.ws10a{word-spacing:17.907093px;}
.ws70{word-spacing:17.933020px;}
.wsfe{word-spacing:17.960868px;}
.ws23{word-spacing:17.992797px;}
.wse9{word-spacing:18.014643px;}
.ws3c{word-spacing:18.052573px;}
.ws9d{word-spacing:18.112350px;}
.wse{word-spacing:18.172127px;}
.wse2{word-spacing:18.229743px;}
.wsf6{word-spacing:18.283518px;}
.wse0{word-spacing:18.331723px;}
.ws2{word-spacing:18.337293px;}
.wsbe{word-spacing:18.351457px;}
.wse4{word-spacing:18.369462px;}
.wsc{word-spacing:18.391068px;}
.ws84{word-spacing:18.411234px;}
.ws106{word-spacing:18.444843px;}
.ws5e{word-spacing:18.471010px;}
.ws10b{word-spacing:18.498618px;}
.ws19{word-spacing:18.530787px;}
.wsf3{word-spacing:18.552393px;}
.ws62{word-spacing:18.590564px;}
.ws45{word-spacing:18.769894px;}
.ws2c{word-spacing:18.829671px;}
.ws58{word-spacing:18.949224px;}
.wsfb{word-spacing:18.982594px;}
.wsa9{word-spacing:19.009001px;}
.wsf9{word-spacing:19.036369px;}
.wsa8{word-spacing:19.068778px;}
.wsa6{word-spacing:19.084214px;}
.wsa7{word-spacing:19.128554px;}
.ws2b{word-spacing:19.188331px;}
.wsdb{word-spacing:19.251469px;}
.wscd{word-spacing:19.307885px;}
.wsff{word-spacing:19.359019px;}
.ws9e{word-spacing:19.367661px;}
.ws63{word-spacing:19.427438px;}
.ws66{word-spacing:19.487215px;}
.ws75{word-spacing:19.546992px;}
.wse1{word-spacing:19.574119px;}
.ws30{word-spacing:19.606768px;}
.wsee{word-spacing:19.627894px;}
.ws17{word-spacing:19.666545px;}
.wsdf{word-spacing:19.681669px;}
.ws22{word-spacing:19.786099px;}
.ws7a{word-spacing:19.834376px;}
.wsb{word-spacing:19.842994px;}
.ws99{word-spacing:19.843139px;}
.ws1{word-spacing:19.845875px;}
.wsbd{word-spacing:20.025205px;}
.ws10e{word-spacing:20.058095px;}
.ws13{word-spacing:20.144759px;}
.ws60{word-spacing:20.204536px;}
.wsfa{word-spacing:20.273195px;}
.ws5f{word-spacing:20.324089px;}
.ws88{word-spacing:20.563196px;}
.wsa0{word-spacing:20.622973px;}
.ws114{word-spacing:20.649620px;}
.ws25{word-spacing:20.742526px;}
.ws6a{word-spacing:20.862080px;}
.ws7{word-spacing:20.864720px;}
.wsdc{word-spacing:20.918496px;}
.ws86{word-spacing:20.921856px;}
.ws16{word-spacing:20.981633px;}
.ws64{word-spacing:21.041410px;}
.wsaa{word-spacing:21.160963px;}
.wsc5{word-spacing:21.179785px;}
.wsda{word-spacing:21.220740px;}
.ws10d{word-spacing:21.241146px;}
.wsc2{word-spacing:21.280517px;}
.ws2e{word-spacing:21.400070px;}
.wsde{word-spacing:21.402471px;}
.ws65{word-spacing:21.459847px;}
.ws57{word-spacing:21.519624px;}
.wsbc{word-spacing:21.579401px;}
.wse5{word-spacing:21.671346px;}
.ws10{word-spacing:21.698954px;}
.ws115{word-spacing:21.725121px;}
.wsa1{word-spacing:21.758731px;}
.ws11{word-spacing:21.818507px;}
.ws101{word-spacing:21.832671px;}
.ws4d{word-spacing:21.938061px;}
.ws7e{word-spacing:21.985528px;}
.ws47{word-spacing:21.997838px;}
.ws73{word-spacing:22.045545px;}
.wsa{word-spacing:22.047772px;}
.wsb8{word-spacing:22.057614px;}
.ws55{word-spacing:22.117391px;}
.ws56{word-spacing:22.177168px;}
.wsd6{word-spacing:22.236945px;}
.wsd1{word-spacing:22.356498px;}
.ws6b{word-spacing:22.416275px;}
.ws8b{word-spacing:22.476052px;}
.wsdd{word-spacing:22.477972px;}
.ws6e{word-spacing:22.535828px;}
.ws3f{word-spacing:22.595605px;}
.wsac{word-spacing:22.622565px;}
.wsad{word-spacing:22.655382px;}
.ws51{word-spacing:22.715158px;}
.ws3a{word-spacing:22.774935px;}
.ws67{word-spacing:22.834712px;}
.ws9f{word-spacing:22.894489px;}
.ws5b{word-spacing:22.954265px;}
.ws113{word-spacing:22.961948px;}
.wsec{word-spacing:23.123273px;}
.wsd5{word-spacing:23.133596px;}
.ws80{word-spacing:23.185864px;}
.ws40{word-spacing:23.193372px;}
.ws24{word-spacing:23.312926px;}
.ws8e{word-spacing:23.372703px;}
.ws36{word-spacing:23.432479px;}
.wsc8{word-spacing:23.492256px;}
.ws5{word-spacing:23.499698px;}
.wsb6{word-spacing:23.552033px;}
.ws74{word-spacing:23.636950px;}
.ws27{word-spacing:23.671586px;}
.ws109{word-spacing:23.714798px;}
.ws3b{word-spacing:23.731363px;}
.ws82{word-spacing:23.776616px;}
.ws35{word-spacing:23.791140px;}
.ws4e{word-spacing:23.970470px;}
.ws9c{word-spacing:24.002951px;}
.ws96{word-spacing:24.030247px;}
.wsed{word-spacing:24.037449px;}
.ws97{word-spacing:24.090023px;}
.ws100{word-spacing:24.091224px;}
.ws98{word-spacing:24.149800px;}
.wsba{word-spacing:24.209577px;}
.wsb9{word-spacing:24.269354px;}
.ws49{word-spacing:24.448684px;}
.wsf8{word-spacing:24.448924px;}
.ws4b{word-spacing:24.508460px;}
.wsf0{word-spacing:24.521424px;}
.wsc0{word-spacing:24.521568px;}
.ws4a{word-spacing:24.521808px;}
.ws26{word-spacing:24.628014px;}
.wsd0{word-spacing:24.687791px;}
.wsca{word-spacing:24.807344px;}
.ws53{word-spacing:25.046451px;}
.wsfd{word-spacing:25.059175px;}
.wsb0{word-spacing:25.083253px;}
.ws2d{word-spacing:25.106228px;}
.wsd2{word-spacing:25.166005px;}
.ws21{word-spacing:25.225781px;}
.ws108{word-spacing:25.489375px;}
.ws76{word-spacing:25.516046px;}
.ws77{word-spacing:25.524665px;}
.ws105{word-spacing:25.543150px;}
.ws5c{word-spacing:25.584442px;}
.ws7b{word-spacing:25.644218px;}
.ws2a{word-spacing:25.763772px;}
.ws52{word-spacing:25.823549px;}
.ws48{word-spacing:25.943102px;}
.ws69{word-spacing:26.002879px;}
.wsc6{word-spacing:26.122432px;}
.wsc9{word-spacing:26.301762px;}
.ws1c{word-spacing:26.600646px;}
.ws38{word-spacing:26.660423px;}
.ws46{word-spacing:26.751588px;}
.ws93{word-spacing:26.763724px;}
.ws54{word-spacing:26.779976px;}
.ws29{word-spacing:26.823308px;}
.ws44{word-spacing:26.839753px;}
.ws42{word-spacing:26.899530px;}
.ws37{word-spacing:26.959306px;}
.wsd9{word-spacing:27.078860px;}
.ws7c{word-spacing:27.198413px;}
.ws7d{word-spacing:27.258190px;}
.wsc7{word-spacing:27.317967px;}
.ws1b{word-spacing:27.557074px;}
.ws83{word-spacing:27.736404px;}
.ws34{word-spacing:27.855957px;}
.wsb7{word-spacing:28.095064px;}
.ws3d{word-spacing:28.274395px;}
.ws1d{word-spacing:28.334171px;}
.wsb4{word-spacing:28.513502px;}
.ws78{word-spacing:28.573278px;}
.wsa2{word-spacing:28.633055px;}
.wsf1{word-spacing:28.662103px;}
.ws4f{word-spacing:28.812385px;}
.wsf2{word-spacing:29.092304px;}
.ws50{word-spacing:29.111269px;}
.wsc4{word-spacing:29.410153px;}
.wsb3{word-spacing:29.649259px;}
.wsd8{word-spacing:29.768813px;}
.ws4{word-spacing:29.928314px;}
.wsb1{word-spacing:30.508880px;}
.ws8d{word-spacing:30.753953px;}
.ws8c{word-spacing:30.813969px;}
.ws33{word-spacing:31.801222px;}
.wse6{word-spacing:31.834831px;}
.wse7{word-spacing:32.049931px;}
.ws0{word-spacing:32.187970px;}
.ws95{word-spacing:68.623689px;}
.wsd{word-spacing:80.541645px;}
.wsce{word-spacing:103.632132px;}
._0{margin-left:-8.003960px;}
._a{margin-left:-6.598247px;}
._5{margin-left:-4.624655px;}
._1{margin-left:-2.754051px;}
._2{margin-left:-1.554195px;}
._3{width:1.554195px;}
._6{width:2.754051px;}
._10{width:5.937792px;}
._11{width:7.257400px;}
._12{width:8.418773px;}
._7{width:9.922938px;}
._e{width:14.551913px;}
._4{width:15.951985px;}
._15{width:18.500827px;}
._c{width:20.268634px;}
._b{width:21.579401px;}
._8{width:22.834712px;}
._1b{width:24.528434px;}
._d{width:27.023404px;}
._13{width:28.420115px;}
._17{width:29.845154px;}
._16{width:30.849115px;}
._18{width:32.211257px;}
._19{width:34.733403px;}
._1c{width:39.236487px;}
._20{width:41.777935px;}
._1d{width:43.223619px;}
._1f{width:44.471969px;}
._1e{width:55.393586px;}
._1a{width:64.918876px;}
._f{width:68.683466px;}
._9{width:80.613365px;}
._14{width:120.817926px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.715018px;}
.fs5{font-size:29.888366px;}
.fs4{font-size:41.831710px;}
.fs2{font-size:53.775053px;}
.fs1{font-size:59.776733px;}
.fs3{font-size:71.720076px;}
.fs0{font-size:86.064091px;}
.y0{bottom:0.000000px;}
.yfd{bottom:18.639959px;}
.yf1{bottom:25.548322px;}
.yf2{bottom:30.482572px;}
.y105{bottom:48.289228px;}
.yf3{bottom:54.725431px;}
.y104{bottom:55.841211px;}
.y103{bottom:63.393194px;}
.y102{bottom:70.901925px;}
.y101{bottom:78.453908px;}
.yf4{bottom:78.968804px;}
.y100{bottom:86.005376px;}
.yff{bottom:93.557359px;}
.yf5{bottom:103.168926px;}
.yf6{bottom:127.411785px;}
.yfe{bottom:140.670362px;}
.yf7{bottom:151.611907px;}
.yf8{bottom:175.854766px;}
.y26{bottom:193.611881px;}
.yf9{bottom:200.098139px;}
.y140{bottom:210.056484px;}
.y25{bottom:211.541900px;}
.yfa{bottom:224.298261px;}
.y13f{bottom:226.771163px;}
.y24{bottom:229.486923px;}
.y11a{bottom:230.597234px;}
.y13e{bottom:243.200762px;}
.y23{bottom:247.416942px;}
.y119{bottom:248.527253px;}
.yfb{bottom:248.541120px;}
.y13d{bottom:259.930445px;}
.y4b{bottom:263.531453px;}
.y6d{bottom:265.346961px;}
.y22{bottom:265.752074px;}
.y118{bottom:266.457272px;}
.yfc{bottom:272.741242px;}
.y13c{bottom:276.645124px;}
.y6c{bottom:283.276980px;}
.y21{bottom:283.682093px;}
.y117{bottom:284.387291px;}
.y13b{bottom:293.074723px;}
.ya5{bottom:296.165588px;}
.y6b{bottom:301.206999px;}
.y20{bottom:301.627117px;}
.y116{bottom:302.317310px;}
.y13a{bottom:309.519326px;}
.y4a{bottom:309.534330px;}
.yef{bottom:311.739947px;}
.y86{bottom:314.410695px;}
.ycc{bottom:316.496279px;}
.y6a{bottom:319.137018px;}
.y1f{bottom:319.557136px;}
.y115{bottom:320.262333px;}
.y139{bottom:326.234005px;}
.y49{bottom:327.464349px;}
.y69{bottom:337.082041px;}
.y1e{bottom:337.487155px;}
.y114{bottom:338.192352px;}
.ya4{bottom:341.943402px;}
.y138{bottom:342.678608px;}
.y48{bottom:345.394368px;}
.y68{bottom:355.012060px;}
.yee{bottom:355.147098px;}
.y1d{bottom:355.417174px;}
.y113{bottom:356.122371px;}
.y137{bottom:359.108207px;}
.ya3{bottom:359.873421px;}
.y85{bottom:360.473589px;}
.y47{bottom:363.324387px;}
.ycb{bottom:364.659761px;}
.y67{bottom:372.942079px;}
.yed{bottom:373.077117px;}
.y1c{bottom:373.347193px;}
.y112{bottom:374.052390px;}
.y136{bottom:375.822886px;}
.ya2{bottom:377.803440px;}
.y84{bottom:378.403608px;}
.y46{bottom:381.269410px;}
.yca{bottom:382.604784px;}
.y66{bottom:390.872098px;}
.yec{bottom:391.007136px;}
.y1b{bottom:391.292216px;}
.y111{bottom:391.982409px;}
.y135{bottom:392.267489px;}
.ya1{bottom:395.733459px;}
.y83{bottom:396.333627px;}
.y45{bottom:399.199429px;}
.yc9{bottom:400.534803px;}
.y134{bottom:408.697088px;}
.y65{bottom:408.802117px;}
.yeb{bottom:408.952159px;}
.y1a{bottom:409.627348px;}
.y110{bottom:409.912428px;}
.ya0{bottom:413.663478px;}
.y82{bottom:414.278650px;}
.y44{bottom:417.129448px;}
.yc8{bottom:418.464822px;}
.y133{bottom:425.141691px;}
.y64{bottom:426.747140px;}
.yea{bottom:426.882178px;}
.y19{bottom:427.557367px;}
.y10f{bottom:427.857451px;}
.y9f{bottom:431.608501px;}
.y81{bottom:432.208669px;}
.y43{bottom:435.059467px;}
.yc7{bottom:436.394841px;}
.y132{bottom:441.856370px;}
.ye9{bottom:444.812197px;}
.y63{bottom:445.037260px;}
.y18{bottom:445.502390px;}
.y9e{bottom:449.538520px;}
.y80{bottom:450.138688px;}
.y42{bottom:452.989486px;}
.yc6{bottom:454.324860px;}
.y131{bottom:458.300973px;}
.ye8{bottom:462.742216px;}
.y62{bottom:462.967279px;}
.y17{bottom:463.432409px;}
.y7f{bottom:468.068707px;}
.y10e{bottom:469.269043px;}
.y41{bottom:470.934509px;}
.yc5{bottom:472.254879px;}
.y130{bottom:475.015652px;}
.y9d{bottom:480.357147px;}
.ye7{bottom:480.672235px;}
.y61{bottom:480.897298px;}
.y16{bottom:481.362428px;}
.y7e{bottom:485.998726px;}
.y40{bottom:488.864528px;}
.yc4{bottom:490.199902px;}
.y12f{bottom:491.445251px;}
.ye6{bottom:498.602254px;}
.y60{bottom:498.827317px;}
.y15{bottom:499.292447px;}
.y7d{bottom:503.943749px;}
.y15d{bottom:506.149367px;}
.yc2{bottom:506.419442px;}
.y3f{bottom:506.794547px;}
.y12e{bottom:508.174934px;}
.yc3{bottom:515.406958px;}
.ye5{bottom:516.547277px;}
.y5f{bottom:516.772340px;}
.y14{bottom:517.222466px;}
.ybf{bottom:519.578126px;}
.y7c{bottom:521.873768px;}
.y15c{bottom:522.593970px;}
.y10d{bottom:522.653987px;}
.y12d{bottom:524.604533px;}
.y3e{bottom:524.724566px;}
.y9c{bottom:526.134961px;}
.yc1{bottom:530.786263px;}
.yc0{bottom:534.477296px;}
.y5e{bottom:534.702359px;}
.y13{bottom:535.152485px;}
.y15b{bottom:539.023569px;}
.y7b{bottom:539.803787px;}
.y10c{bottom:540.584006px;}
.y12c{bottom:541.319212px;}
.y3d{bottom:542.654585px;}
.y9b{bottom:544.064980px;}
.ybe{bottom:545.700438px;}
.ye4{bottom:552.407315px;}
.y5d{bottom:552.632378px;}
.y12{bottom:553.097509px;}
.y15a{bottom:555.468172px;}
.y12b{bottom:557.763815px;}
.y7a{bottom:557.988878px;}
.y10b{bottom:558.514025px;}
.y3c{bottom:560.599609px;}
.y9a{bottom:561.994999px;}
.ybd{bottom:563.630457px;}
.ye3{bottom:570.337334px;}
.y5c{bottom:570.562397px;}
.y159{bottom:571.897771px;}
.y12a{bottom:574.478494px;}
.y79{bottom:575.918897px;}
.y10a{bottom:576.459048px;}
.y3b{bottom:578.529628px;}
.y99{bottom:579.925018px;}
.ybc{bottom:581.575480px;}
.ye2{bottom:588.267353px;}
.y158{bottom:588.342374px;}
.y5b{bottom:588.492416px;}
.y129{bottom:590.908093px;}
.y11{bottom:591.013122px;}
.y78{bottom:593.848916px;}
.y109{bottom:594.389067px;}
.y3a{bottom:596.459647px;}
.y98{bottom:597.855037px;}
.y157{bottom:604.786978px;}
.ye1{bottom:606.212377px;}
.y5a{bottom:606.422435px;}
.y128{bottom:607.352696px;}
.y77{bottom:611.778935px;}
.y108{bottom:613.429397px;}
.y39{bottom:614.389666px;}
.ybb{bottom:614.794779px;}
.y97{bottom:615.785056px;}
.y156{bottom:621.216577px;}
.y127{bottom:624.067375px;}
.ye0{bottom:624.142396px;}
.y59{bottom:624.367459px;}
.y76{bottom:629.708954px;}
.y107{bottom:631.359416px;}
.y38{bottom:632.319685px;}
.y96{bottom:633.730079px;}
.y155{bottom:637.661180px;}
.y126{bottom:640.511978px;}
.ydf{bottom:642.072415px;}
.y58{bottom:642.297478px;}
.y10{bottom:643.407788px;}
.y37{bottom:650.249704px;}
.y95{bottom:651.660098px;}
.y154{bottom:654.090779px;}
.y125{bottom:657.226657px;}
.yf{bottom:659.837387px;}
.yde{bottom:660.002434px;}
.y57{bottom:660.587597px;}
.y75{bottom:660.842669px;}
.yba{bottom:662.958261px;}
.y36{bottom:668.194727px;}
.y153{bottom:670.535382px;}
.y124{bottom:673.656256px;}
.ye{bottom:676.281991px;}
.ydd{bottom:677.932453px;}
.y56{bottom:678.517616px;}
.yb9{bottom:680.888280px;}
.y94{bottom:682.478725px;}
.y106{bottom:685.164477px;}
.y35{bottom:686.124746px;}
.y152{bottom:686.979985px;}
.y123{bottom:690.100859px;}
.yd{bottom:692.726594px;}
.ydc{bottom:695.877476px;}
.y55{bottom:696.447635px;}
.yb8{bottom:698.818299px;}
.y151{bottom:703.409584px;}
.y34{bottom:704.054765px;}
.y122{bottom:706.815538px;}
.y74{bottom:706.905563px;}
.yc{bottom:709.156193px;}
.ydb{bottom:713.807495px;}
.y54{bottom:714.392659px;}
.yf0{bottom:716.820945px;}
.yb5{bottom:717.033398px;}
.yb7{bottom:717.213448px;}
.y150{bottom:719.854187px;}
.y121{bottom:723.260141px;}
.y73{bottom:724.850586px;}
.yb{bottom:725.600796px;}
.y93{bottom:728.256539px;}
.yb3{bottom:730.192081px;}
.yda{bottom:731.737514px;}
.y53{bottom:732.322678px;}
.y14f{bottom:736.283786px;}
.y33{bottom:738.099295px;}
.y120{bottom:739.689740px;}
.yb4{bottom:741.400219px;}
.ya{bottom:742.030395px;}
.y72{bottom:742.780605px;}
.yb6{bottom:744.386054px;}
.y92{bottom:746.186558px;}
.yd9{bottom:749.667533px;}
.y52{bottom:750.252697px;}
.y14e{bottom:752.728390px;}
.y11f{bottom:756.134343px;}
.y9{bottom:758.474998px;}
.y71{bottom:760.710624px;}
.yb2{bottom:761.355805px;}
.y91{bottom:764.296628px;}
.yd8{bottom:767.597552px;}
.y51{bottom:768.182716px;}
.y14d{bottom:769.157989px;}
.y70{bottom:778.640643px;}
.yb1{bottom:779.961013px;}
.y90{bottom:782.241651px;}
.y32{bottom:784.102172px;}
.yd7{bottom:785.527571px;}
.y14c{bottom:785.602592px;}
.y11e{bottom:791.889352px;}
.yb0{bottom:796.180553px;}
.y6f{bottom:796.570662px;}
.y8f{bottom:800.171670px;}
.y31{bottom:802.047195px;}
.yd6{bottom:803.472594px;}
.y50{bottom:805.858262px;}
.yad{bottom:809.339236px;}
.y14b{bottom:818.476794px;}
.y8e{bottom:819.782159px;}
.y30{bottom:819.977214px;}
.yaf{bottom:820.547374px;}
.yd5{bottom:821.402613px;}
.y8{bottom:822.963050px;}
.yae{bottom:823.533209px;}
.y6e{bottom:827.704377px;}
.y8d{bottom:834.021145px;}
.y14a{bottom:834.921397px;}
.yac{bottom:836.571859px;}
.y8c{bottom:837.727183px;}
.y2f{bottom:837.907233px;}
.yd4{bottom:839.332632px;}
.y7{bottom:839.407653px;}
.y11d{bottom:841.103128px;}
.y149{bottom:851.350996px;}
.yab{bottom:855.177067px;}
.y4f{bottom:855.477151px;}
.y8b{bottom:855.657202px;}
.y2e{bottom:855.837252px;}
.y6{bottom:855.852256px;}
.yd3{bottom:857.262651px;}
.y11c{bottom:859.033147px;}
.y148{bottom:867.795599px;}
.y5{bottom:872.281855px;}
.yaa{bottom:873.107086px;}
.y4e{bottom:873.407170px;}
.y8a{bottom:873.587221px;}
.y2d{bottom:873.767271px;}
.yd2{bottom:875.192670px;}
.y147{bottom:884.240203px;}
.y4{bottom:888.726458px;}
.ya9{bottom:891.037105px;}
.y4d{bottom:891.352193px;}
.y89{bottom:891.517240px;}
.y2c{bottom:891.712294px;}
.yd1{bottom:893.137693px;}
.y11b{bottom:896.288575px;}
.y146{bottom:900.669802px;}
.ya8{bottom:908.967124px;}
.y4c{bottom:909.282212px;}
.y88{bottom:909.447259px;}
.y2b{bottom:909.642313px;}
.yd0{bottom:911.067712px;}
.y145{bottom:917.114405px;}
.y3{bottom:920.040224px;}
.ya7{bottom:926.897143px;}
.y87{bottom:927.377278px;}
.y2a{bottom:927.572332px;}
.ycf{bottom:928.997731px;}
.y144{bottom:933.544004px;}
.ya6{bottom:944.842166px;}
.y29{bottom:945.502351px;}
.yce{bottom:946.927750px;}
.y143{bottom:949.988607px;}
.y28{bottom:963.432370px;}
.ycd{bottom:964.857769px;}
.y142{bottom:966.418206px;}
.y2{bottom:972.404882px;}
.y27{bottom:981.362389px;}
.y141{bottom:982.862809px;}
.y1{bottom:999.307412px;}
.hc{height:2.391069px;}
.h14{height:25.776992px;}
.hb{height:29.031206px;}
.hd{height:31.373782px;}
.h4{height:37.319887px;}
.h3{height:40.331290px;}
.h6{height:41.664383px;}
.h2{height:44.832550px;}
.h10{height:48.598604px;}
.h5{height:50.204053px;}
.h7{height:53.099864px;}
.h8{height:54.118229px;}
.h11{height:56.940939px;}
.h9{height:59.656699px;}
.h1{height:60.244864px;}
.h12{height:61.517220px;}
.ha{height:95.426712px;}
.hf{height:97.467283px;}
.he{height:104.659697px;}
.h13{height:297.326410px;}
.h0{height:1188.000000px;}
.w1{width:335.196404px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:5.620968px;}
.x29{left:9.353965px;}
.x28{left:14.502927px;}
.x27{left:17.721029px;}
.x2a{left:121.858943px;}
.xa{left:202.151355px;}
.x1{left:206.112464px;}
.x2d{left:209.053287px;}
.x2{left:210.418669px;}
.xb{left:224.567630px;}
.x2e{left:227.283390px;}
.x2c{left:236.037179px;}
.xe{left:240.472082px;}
.xd{left:242.272586px;}
.x9{left:244.673258px;}
.x18{left:257.381815px;}
.x17{left:259.827500px;}
.xf{left:262.318197px;}
.x12{left:282.663892px;}
.x11{left:285.109577px;}
.x10{left:286.745035px;}
.x13{left:305.830377px;}
.x26{left:307.767446px;}
.x3{left:323.325274px;}
.x16{left:346.731826px;}
.x15{left:349.177511px;}
.x14{left:350.812969px;}
.x4{left:358.660165px;}
.x1b{left:362.606270px;}
.x8{left:364.346757px;}
.x1a{left:365.817169px;}
.x19{left:367.452626px;}
.x5{left:368.908034px;}
.x1c{left:384.812486px;}
.x7{left:388.983653px;}
.x6{left:403.327669px;}
.x1f{left:550.563883px;}
.x1e{left:553.009568px;}
.x1d{left:557.795908px;}
.x20{left:573.730368px;}
.x21{left:583.348060px;}
.xc{left:647.385986px;}
.x24{left:657.093703px;}
.x23{left:658.879203px;}
.x22{left:663.665543px;}
.x25{left:678.939818px;}
@media print{
.ve{vertical-align:-13.283718pt;}
.v2{vertical-align:-9.602688pt;}
.v1{vertical-align:-8.002240pt;}
.v3{vertical-align:-5.281478pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.174782pt;}
.vd{vertical-align:8.002240pt;}
.v6{vertical-align:13.177022pt;}
.vf{vertical-align:15.310953pt;}
.v4{vertical-align:19.312073pt;}
.v5{vertical-align:22.299575pt;}
.vc{vertical-align:38.784190pt;}
.v8{vertical-align:44.972589pt;}
.vb{vertical-align:46.786430pt;}
.va{vertical-align:50.467460pt;}
.v9{vertical-align:90.905446pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.001771pt;}
.ls3c{letter-spacing:0.006530pt;}
.ls16{letter-spacing:0.008472pt;}
.ls1c{letter-spacing:0.008632pt;}
.ls4c{letter-spacing:0.009325pt;}
.ls4a{letter-spacing:0.013134pt;}
.ls37{letter-spacing:0.013999pt;}
.ls7{letter-spacing:0.014543pt;}
.ls47{letter-spacing:0.016602pt;}
.ls4{letter-spacing:0.018373pt;}
.ls23{letter-spacing:0.020144pt;}
.ls2{letter-spacing:0.025202pt;}
.lsb{letter-spacing:0.027442pt;}
.ls15{letter-spacing:0.027570pt;}
.ls39{letter-spacing:0.030302pt;}
.ls56{letter-spacing:0.034607pt;}
.ls58{letter-spacing:0.034740pt;}
.ls1b{letter-spacing:0.045837pt;}
.ls18{letter-spacing:1.679531pt;}
.ls22{letter-spacing:2.162104pt;}
.ls3{letter-spacing:2.628608pt;}
.lse{letter-spacing:2.655602pt;}
.lsd{letter-spacing:2.674253pt;}
.ls1{letter-spacing:2.681956pt;}
.ls54{letter-spacing:2.844060pt;}
.ls3a{letter-spacing:3.086048pt;}
.ls10{letter-spacing:3.413009pt;}
.ls4d{letter-spacing:3.636282pt;}
.ls4f{letter-spacing:3.956211pt;}
.ls4b{letter-spacing:4.009560pt;}
.ls35{letter-spacing:4.231115pt;}
.ls24{letter-spacing:4.829517pt;}
.ls31{letter-spacing:4.924643pt;}
.ls53{letter-spacing:5.456066pt;}
.lsf{letter-spacing:5.799703pt;}
.ls55{letter-spacing:7.387263pt;}
.ls1e{letter-spacing:7.412080pt;}
.ls12{letter-spacing:8.819066pt;}
.ls51{letter-spacing:8.872414pt;}
.ls30{letter-spacing:9.230595pt;}
.ls34{letter-spacing:10.071107pt;}
.ls32{letter-spacing:10.711286pt;}
.ls49{letter-spacing:11.806569pt;}
.ls48{letter-spacing:13.721473pt;}
.ls46{letter-spacing:14.510729pt;}
.ls28{letter-spacing:14.740724pt;}
.ls9{letter-spacing:15.434251pt;}
.ls25{letter-spacing:16.619484pt;}
.ls2f{letter-spacing:16.644126pt;}
.ls2e{letter-spacing:16.979292pt;}
.ls50{letter-spacing:17.406078pt;}
.ls1f{letter-spacing:17.417270pt;}
.ls52{letter-spacing:17.459426pt;}
.lsc{letter-spacing:18.099605pt;}
.ls11{letter-spacing:18.137130pt;}
.ls8{letter-spacing:18.145250pt;}
.ls13{letter-spacing:18.389782pt;}
.ls33{letter-spacing:18.619889pt;}
.lsa{letter-spacing:18.830658pt;}
.ls27{letter-spacing:19.046676pt;}
.ls1a{letter-spacing:19.337808pt;}
.ls3b{letter-spacing:19.606987pt;}
.ls14{letter-spacing:19.660335pt;}
.ls21{letter-spacing:20.022202pt;}
.ls20{letter-spacing:20.060293pt;}
.ls19{letter-spacing:20.193818pt;}
.ls42{letter-spacing:20.212485pt;}
.ls2d{letter-spacing:20.340232pt;}
.ls26{letter-spacing:20.420671pt;}
.ls17{letter-spacing:20.530931pt;}
.ls38{letter-spacing:20.673952pt;}
.ls3f{letter-spacing:20.763444pt;}
.ls3e{letter-spacing:21.740918pt;}
.ls3d{letter-spacing:21.847614pt;}
.ls45{letter-spacing:22.529571pt;}
.ls2c{letter-spacing:22.669684pt;}
.ls1d{letter-spacing:22.677089pt;}
.ls41{letter-spacing:22.847601pt;}
.ls43{letter-spacing:23.511328pt;}
.ls6{letter-spacing:23.863277pt;}
.ls40{letter-spacing:24.995162pt;}
.ls4e{letter-spacing:25.027176pt;}
.ls2b{letter-spacing:25.036939pt;}
.ls44{letter-spacing:25.141576pt;}
.ls5{letter-spacing:26.475283pt;}
.ls36{letter-spacing:27.249249pt;}
.ls2a{letter-spacing:29.342891pt;}
.ls57{letter-spacing:46.814603pt;}
.ws43{word-spacing:-0.053135pt;}
.ws3{word-spacing:-0.047800pt;}
.ws68{word-spacing:-0.037184pt;}
.ws1f{word-spacing:0.000000pt;}
.ws2f{word-spacing:8.767254pt;}
.wsae{word-spacing:8.811117pt;}
.ws20{word-spacing:8.820389pt;}
.wscf{word-spacing:9.368809pt;}
.ws112{word-spacing:10.898411pt;}
.ws10f{word-spacing:11.089611pt;}
.wsea{word-spacing:11.519811pt;}
.ws90{word-spacing:11.733268pt;}
.ws91{word-spacing:11.742807pt;}
.ws8{word-spacing:12.045612pt;}
.wsc3{word-spacing:12.167886pt;}
.ws111{word-spacing:12.475812pt;}
.wscc{word-spacing:12.486695pt;}
.wsa3{word-spacing:12.592965pt;}
.ws10c{word-spacing:12.762613pt;}
.wsd4{word-spacing:12.911774pt;}
.wseb{word-spacing:13.049413pt;}
.ws110{word-spacing:13.063582pt;}
.ws85{word-spacing:13.071179pt;}
.wsa5{word-spacing:13.124314pt;}
.wsb5{word-spacing:13.148192pt;}
.ws32{word-spacing:13.177449pt;}
.wsef{word-spacing:13.192813pt;}
.wsab{word-spacing:13.389988pt;}
.ws6f{word-spacing:13.443123pt;}
.ws87{word-spacing:13.549393pt;}
.wse3{word-spacing:13.623013pt;}
.ws4c{word-spacing:13.708797pt;}
.ws61{word-spacing:13.761932pt;}
.wsfc{word-spacing:13.766414pt;}
.ws59{word-spacing:13.815067pt;}
.wsf5{word-spacing:13.862014pt;}
.ws41{word-spacing:13.868202pt;}
.ws102{word-spacing:13.909814pt;}
.wsbf{word-spacing:13.921337pt;}
.ws15{word-spacing:13.974472pt;}
.ws28{word-spacing:14.080742pt;}
.ws103{word-spacing:14.101014pt;}
.wsf{word-spacing:14.133876pt;}
.ws14{word-spacing:14.187011pt;}
.ws9b{word-spacing:14.207945pt;}
.ws9a{word-spacing:14.216929pt;}
.ws12{word-spacing:14.293281pt;}
.wsd7{word-spacing:14.346416pt;}
.wsaf{word-spacing:14.444811pt;}
.wsf7{word-spacing:14.483414pt;}
.ws92{word-spacing:14.524002pt;}
.ws31{word-spacing:14.558955pt;}
.ws107{word-spacing:14.579014pt;}
.wsc1{word-spacing:14.612090pt;}
.ws6d{word-spacing:14.665225pt;}
.ws1e{word-spacing:14.718360pt;}
.wse8{word-spacing:14.722414pt;}
.ws8f{word-spacing:14.763429pt;}
.ws71{word-spacing:14.771495pt;}
.ws72{word-spacing:14.803760pt;}
.ws39{word-spacing:14.824630pt;}
.ws1a{word-spacing:14.930899pt;}
.wsb2{word-spacing:14.984034pt;}
.ws6c{word-spacing:15.037169pt;}
.ws9{word-spacing:15.057015pt;}
.ws5d{word-spacing:15.090304pt;}
.ws6{word-spacing:15.104815pt;}
.wsd3{word-spacing:15.143439pt;}
.wsf4{word-spacing:15.200415pt;}
.ws94{word-spacing:15.249709pt;}
.wscb{word-spacing:15.302844pt;}
.ws3e{word-spacing:15.355978pt;}
.ws104{word-spacing:15.439415pt;}
.ws18{word-spacing:15.462248pt;}
.wsbb{word-spacing:15.515383pt;}
.ws8a{word-spacing:15.674788pt;}
.ws89{word-spacing:15.710062pt;}
.ws81{word-spacing:15.727923pt;}
.ws7f{word-spacing:15.751012pt;}
.wsa4{word-spacing:15.781057pt;}
.ws5a{word-spacing:15.834192pt;}
.ws79{word-spacing:15.887327pt;}
.ws10a{word-spacing:15.917416pt;}
.ws70{word-spacing:15.940462pt;}
.wsfe{word-spacing:15.965216pt;}
.ws23{word-spacing:15.993597pt;}
.wse9{word-spacing:16.013016pt;}
.ws3c{word-spacing:16.046732pt;}
.ws9d{word-spacing:16.099867pt;}
.wse{word-spacing:16.153002pt;}
.wse2{word-spacing:16.204216pt;}
.wsf6{word-spacing:16.252016pt;}
.wse0{word-spacing:16.294865pt;}
.ws2{word-spacing:16.299816pt;}
.wsbe{word-spacing:16.312406pt;}
.wse4{word-spacing:16.328411pt;}
.wsc{word-spacing:16.347616pt;}
.ws84{word-spacing:16.365541pt;}
.ws106{word-spacing:16.395416pt;}
.ws5e{word-spacing:16.418676pt;}
.ws10b{word-spacing:16.443216pt;}
.ws19{word-spacing:16.471811pt;}
.wsf3{word-spacing:16.491016pt;}
.ws62{word-spacing:16.524946pt;}
.ws45{word-spacing:16.684350pt;}
.ws2c{word-spacing:16.737485pt;}
.ws58{word-spacing:16.843755pt;}
.wsfb{word-spacing:16.873417pt;}
.wsa9{word-spacing:16.896890pt;}
.wsf9{word-spacing:16.921217pt;}
.wsa8{word-spacing:16.950025pt;}
.wsa6{word-spacing:16.963746pt;}
.wsa7{word-spacing:17.003160pt;}
.ws2b{word-spacing:17.056294pt;}
.wsdb{word-spacing:17.112417pt;}
.wscd{word-spacing:17.162564pt;}
.wsff{word-spacing:17.208017pt;}
.ws9e{word-spacing:17.215699pt;}
.ws63{word-spacing:17.268834pt;}
.ws66{word-spacing:17.321969pt;}
.ws75{word-spacing:17.375104pt;}
.wse1{word-spacing:17.399217pt;}
.ws30{word-spacing:17.428239pt;}
.wsee{word-spacing:17.447017pt;}
.ws17{word-spacing:17.481373pt;}
.wsdf{word-spacing:17.494817pt;}
.ws22{word-spacing:17.587643pt;}
.ws7a{word-spacing:17.630557pt;}
.wsb{word-spacing:17.638217pt;}
.ws99{word-spacing:17.638345pt;}
.ws1{word-spacing:17.640778pt;}
.wsbd{word-spacing:17.800183pt;}
.ws10e{word-spacing:17.829418pt;}
.ws13{word-spacing:17.906452pt;}
.ws60{word-spacing:17.959587pt;}
.wsfa{word-spacing:18.020618pt;}
.ws5f{word-spacing:18.065857pt;}
.ws88{word-spacing:18.278397pt;}
.wsa0{word-spacing:18.331531pt;}
.ws114{word-spacing:18.355218pt;}
.ws25{word-spacing:18.437801pt;}
.ws6a{word-spacing:18.544071pt;}
.ws7{word-spacing:18.546418pt;}
.wsdc{word-spacing:18.594218pt;}
.ws86{word-spacing:18.597206pt;}
.ws16{word-spacing:18.650341pt;}
.ws64{word-spacing:18.703476pt;}
.wsaa{word-spacing:18.809745pt;}
.wsc5{word-spacing:18.826475pt;}
.wsda{word-spacing:18.862880pt;}
.ws10d{word-spacing:18.881019pt;}
.wsc2{word-spacing:18.916015pt;}
.ws2e{word-spacing:19.022285pt;}
.wsde{word-spacing:19.024419pt;}
.ws65{word-spacing:19.075420pt;}
.ws57{word-spacing:19.128554pt;}
.wsbc{word-spacing:19.181689pt;}
.wse5{word-spacing:19.263419pt;}
.ws10{word-spacing:19.287959pt;}
.ws115{word-spacing:19.311219pt;}
.wsa1{word-spacing:19.341094pt;}
.ws11{word-spacing:19.394229pt;}
.ws101{word-spacing:19.406819pt;}
.ws4d{word-spacing:19.500499pt;}
.ws7e{word-spacing:19.542692pt;}
.ws47{word-spacing:19.553633pt;}
.ws73{word-spacing:19.596040pt;}
.wsa{word-spacing:19.598019pt;}
.wsb8{word-spacing:19.606768pt;}
.ws55{word-spacing:19.659903pt;}
.ws56{word-spacing:19.713038pt;}
.wsd6{word-spacing:19.766173pt;}
.wsd1{word-spacing:19.872443pt;}
.ws6b{word-spacing:19.925578pt;}
.ws8b{word-spacing:19.978712pt;}
.wsdd{word-spacing:19.980420pt;}
.ws6e{word-spacing:20.031847pt;}
.ws3f{word-spacing:20.084982pt;}
.wsac{word-spacing:20.108946pt;}
.wsad{word-spacing:20.138117pt;}
.ws51{word-spacing:20.191252pt;}
.ws3a{word-spacing:20.244387pt;}
.ws67{word-spacing:20.297522pt;}
.ws9f{word-spacing:20.350657pt;}
.ws5b{word-spacing:20.403791pt;}
.ws113{word-spacing:20.410620pt;}
.wsec{word-spacing:20.554020pt;}
.wsd5{word-spacing:20.563196pt;}
.ws80{word-spacing:20.609657pt;}
.ws40{word-spacing:20.616331pt;}
.ws24{word-spacing:20.722601pt;}
.ws8e{word-spacing:20.775736pt;}
.ws36{word-spacing:20.828870pt;}
.wsc8{word-spacing:20.882005pt;}
.ws5{word-spacing:20.888621pt;}
.wsb6{word-spacing:20.935140pt;}
.ws74{word-spacing:21.010623pt;}
.ws27{word-spacing:21.041410pt;}
.ws109{word-spacing:21.079821pt;}
.ws3b{word-spacing:21.094545pt;}
.ws82{word-spacing:21.134769pt;}
.ws35{word-spacing:21.147680pt;}
.ws4e{word-spacing:21.307084pt;}
.ws9c{word-spacing:21.335956pt;}
.ws96{word-spacing:21.360219pt;}
.wsed{word-spacing:21.366621pt;}
.ws97{word-spacing:21.413354pt;}
.ws100{word-spacing:21.414421pt;}
.ws98{word-spacing:21.466489pt;}
.wsba{word-spacing:21.519624pt;}
.wsb9{word-spacing:21.572759pt;}
.ws49{word-spacing:21.732163pt;}
.wsf8{word-spacing:21.732377pt;}
.ws4b{word-spacing:21.785298pt;}
.wsf0{word-spacing:21.796821pt;}
.wsc0{word-spacing:21.796949pt;}
.ws4a{word-spacing:21.797163pt;}
.ws26{word-spacing:21.891568pt;}
.wsd0{word-spacing:21.944703pt;}
.wsca{word-spacing:22.050973pt;}
.ws53{word-spacing:22.263512pt;}
.wsfd{word-spacing:22.274822pt;}
.wsb0{word-spacing:22.296225pt;}
.ws2d{word-spacing:22.316647pt;}
.wsd2{word-spacing:22.369782pt;}
.ws21{word-spacing:22.422917pt;}
.ws108{word-spacing:22.657222pt;}
.ws76{word-spacing:22.680930pt;}
.ws77{word-spacing:22.688591pt;}
.ws105{word-spacing:22.705022pt;}
.ws5c{word-spacing:22.741726pt;}
.ws7b{word-spacing:22.794861pt;}
.ws2a{word-spacing:22.901131pt;}
.ws52{word-spacing:22.954265pt;}
.ws48{word-spacing:23.060535pt;}
.ws69{word-spacing:23.113670pt;}
.wsc6{word-spacing:23.219940pt;}
.wsc9{word-spacing:23.379344pt;}
.ws1c{word-spacing:23.645019pt;}
.ws38{word-spacing:23.698154pt;}
.ws46{word-spacing:23.779190pt;}
.ws93{word-spacing:23.789977pt;}
.ws54{word-spacing:23.804423pt;}
.ws29{word-spacing:23.842941pt;}
.ws44{word-spacing:23.857558pt;}
.ws42{word-spacing:23.910693pt;}
.ws37{word-spacing:23.963828pt;}
.wsd9{word-spacing:24.070098pt;}
.ws7c{word-spacing:24.176367pt;}
.ws7d{word-spacing:24.229502pt;}
.wsc7{word-spacing:24.282637pt;}
.ws1b{word-spacing:24.495177pt;}
.ws83{word-spacing:24.654581pt;}
.ws34{word-spacing:24.760851pt;}
.wsb7{word-spacing:24.973391pt;}
.ws3d{word-spacing:25.132795pt;}
.ws1d{word-spacing:25.185930pt;}
.wsb4{word-spacing:25.345335pt;}
.ws78{word-spacing:25.398470pt;}
.wsa2{word-spacing:25.451604pt;}
.wsf1{word-spacing:25.477425pt;}
.ws4f{word-spacing:25.611009pt;}
.wsf2{word-spacing:25.859825pt;}
.ws50{word-spacing:25.876683pt;}
.wsc4{word-spacing:26.142358pt;}
.wsb3{word-spacing:26.354897pt;}
.wsd8{word-spacing:26.461167pt;}
.ws4{word-spacing:26.602945pt;}
.wsb1{word-spacing:27.119005pt;}
.ws8d{word-spacing:27.336847pt;}
.ws8c{word-spacing:27.390195pt;}
.ws33{word-spacing:28.267753pt;}
.wse6{word-spacing:28.297628pt;}
.wse7{word-spacing:28.488828pt;}
.ws0{word-spacing:28.611529pt;}
.ws95{word-spacing:60.998835pt;}
.wsd{word-spacing:71.592574pt;}
.wsce{word-spacing:92.117450pt;}
._0{margin-left:-7.114632pt;}
._a{margin-left:-5.865108pt;}
._5{margin-left:-4.110804pt;}
._1{margin-left:-2.448045pt;}
._2{margin-left:-1.381507pt;}
._3{width:1.381507pt;}
._6{width:2.448045pt;}
._10{width:5.278037pt;}
._11{width:6.451022pt;}
._12{width:7.483353pt;}
._7{width:8.820389pt;}
._e{width:12.935034pt;}
._4{width:14.179542pt;}
._15{width:16.445179pt;}
._c{width:18.016563pt;}
._b{width:19.181689pt;}
._8{width:20.297522pt;}
._1b{width:21.803052pt;}
._d{width:24.020804pt;}
._13{width:25.262325pt;}
._17{width:26.529026pt;}
._16{width:27.421436pt;}
._18{width:28.632228pt;}
._19{width:30.874136pt;}
._1c{width:34.876877pt;}
._20{width:37.135942pt;}
._1d{width:38.420995pt;}
._1f{width:39.530639pt;}
._1e{width:49.238743pt;}
._1a{width:57.705668pt;}
._f{width:61.051970pt;}
._9{width:71.656325pt;}
._14{width:107.393712pt;}
.fs6{font-size:21.968905pt;}
.fs5{font-size:26.567437pt;}
.fs4{font-size:37.183742pt;}
.fs2{font-size:47.800047pt;}
.fs1{font-size:53.134874pt;}
.fs3{font-size:63.751179pt;}
.fs0{font-size:76.501414pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:16.568853pt;}
.yf1{bottom:22.709619pt;}
.yf2{bottom:27.095620pt;}
.y105{bottom:42.923758pt;}
.yf3{bottom:48.644827pt;}
.y104{bottom:49.636632pt;}
.y103{bottom:56.349506pt;}
.y102{bottom:63.023934pt;}
.y101{bottom:69.736807pt;}
.yf4{bottom:70.194493pt;}
.y100{bottom:76.449223pt;}
.yff{bottom:83.162097pt;}
.yf5{bottom:91.705712pt;}
.yf6{bottom:113.254920pt;}
.yfe{bottom:125.040322pt;}
.yf7{bottom:134.766140pt;}
.yf8{bottom:156.315347pt;}
.y26{bottom:172.099450pt;}
.yf9{bottom:177.865012pt;}
.y140{bottom:186.716875pt;}
.y25{bottom:188.037244pt;}
.yfa{bottom:199.376232pt;}
.y13f{bottom:201.574367pt;}
.y24{bottom:203.988376pt;}
.y11a{bottom:204.975319pt;}
.y13e{bottom:216.178455pt;}
.y23{bottom:219.926171pt;}
.y119{bottom:220.913114pt;}
.yfb{bottom:220.925440pt;}
.y13d{bottom:231.049284pt;}
.y4b{bottom:234.250180pt;}
.y6d{bottom:235.863965pt;}
.y22{bottom:236.224066pt;}
.y118{bottom:236.850908pt;}
.yfc{bottom:242.436659pt;}
.y13c{bottom:245.906777pt;}
.y6c{bottom:251.801760pt;}
.y21{bottom:252.161861pt;}
.y117{bottom:252.788703pt;}
.y13b{bottom:260.510865pt;}
.ya5{bottom:263.258300pt;}
.y6b{bottom:267.739555pt;}
.y20{bottom:268.112993pt;}
.y116{bottom:268.726498pt;}
.y13a{bottom:275.128290pt;}
.y4a{bottom:275.141627pt;}
.yef{bottom:277.102175pt;}
.y86{bottom:279.476173pt;}
.ycc{bottom:281.330026pt;}
.y6a{bottom:283.677349pt;}
.y1f{bottom:284.050787pt;}
.y115{bottom:284.677629pt;}
.y139{bottom:289.985782pt;}
.y49{bottom:291.079421pt;}
.y69{bottom:299.628481pt;}
.y1e{bottom:299.988582pt;}
.y114{bottom:300.615424pt;}
.ya4{bottom:303.949691pt;}
.y138{bottom:304.603207pt;}
.y48{bottom:307.017216pt;}
.y68{bottom:315.566276pt;}
.yee{bottom:315.686309pt;}
.y1d{bottom:315.926377pt;}
.y113{bottom:316.553219pt;}
.y137{bottom:319.207295pt;}
.ya3{bottom:319.887485pt;}
.y85{bottom:320.420968pt;}
.y47{bottom:322.955011pt;}
.ycb{bottom:324.142010pt;}
.y67{bottom:331.504070pt;}
.yed{bottom:331.624104pt;}
.y1c{bottom:331.864171pt;}
.y112{bottom:332.491013pt;}
.y136{bottom:334.064787pt;}
.ya2{bottom:335.825280pt;}
.y84{bottom:336.358763pt;}
.y46{bottom:338.906142pt;}
.yca{bottom:340.093141pt;}
.y66{bottom:347.441865pt;}
.yec{bottom:347.561899pt;}
.y1b{bottom:347.815303pt;}
.y111{bottom:348.428808pt;}
.y135{bottom:348.682212pt;}
.ya1{bottom:351.763075pt;}
.y83{bottom:352.296557pt;}
.y45{bottom:354.843937pt;}
.yc9{bottom:356.030936pt;}
.y134{bottom:363.286300pt;}
.y65{bottom:363.379660pt;}
.yeb{bottom:363.513030pt;}
.y1a{bottom:364.113198pt;}
.y110{bottom:364.366603pt;}
.ya0{bottom:367.700869pt;}
.y82{bottom:368.247689pt;}
.y44{bottom:370.781732pt;}
.yc8{bottom:371.968731pt;}
.y133{bottom:377.903725pt;}
.y64{bottom:379.330791pt;}
.yea{bottom:379.450825pt;}
.y19{bottom:380.050993pt;}
.y10f{bottom:380.317734pt;}
.y9f{bottom:383.652001pt;}
.y81{bottom:384.185484pt;}
.y43{bottom:386.719526pt;}
.yc7{bottom:387.906525pt;}
.y132{bottom:392.761218pt;}
.ye9{bottom:395.388620pt;}
.y63{bottom:395.588676pt;}
.y18{bottom:396.002125pt;}
.y9e{bottom:399.589796pt;}
.y80{bottom:400.123278pt;}
.y42{bottom:402.657321pt;}
.yc6{bottom:403.844320pt;}
.y131{bottom:407.378643pt;}
.ye8{bottom:411.326414pt;}
.y62{bottom:411.526470pt;}
.y17{bottom:411.939919pt;}
.y7f{bottom:416.061073pt;}
.y10e{bottom:417.128038pt;}
.y41{bottom:418.608453pt;}
.yc5{bottom:419.782115pt;}
.y130{bottom:422.236135pt;}
.y9d{bottom:426.984131pt;}
.ye7{bottom:427.264209pt;}
.y61{bottom:427.464265pt;}
.y16{bottom:427.877714pt;}
.y7e{bottom:431.998868pt;}
.y40{bottom:434.546247pt;}
.yc4{bottom:435.733246pt;}
.y12f{bottom:436.840223pt;}
.ye6{bottom:443.202004pt;}
.y60{bottom:443.402060pt;}
.y15{bottom:443.815509pt;}
.y7d{bottom:447.949999pt;}
.y15d{bottom:449.910548pt;}
.yc2{bottom:450.150615pt;}
.y3f{bottom:450.484042pt;}
.y12e{bottom:451.711052pt;}
.yc3{bottom:458.139518pt;}
.ye5{bottom:459.153135pt;}
.y5f{bottom:459.353191pt;}
.y14{bottom:459.753303pt;}
.ybf{bottom:461.847223pt;}
.y7c{bottom:463.887794pt;}
.y15c{bottom:464.527973pt;}
.y10d{bottom:464.581322pt;}
.y12d{bottom:466.315140pt;}
.y3e{bottom:466.421837pt;}
.y9c{bottom:467.675521pt;}
.yc1{bottom:471.810012pt;}
.yc0{bottom:475.090930pt;}
.y5e{bottom:475.290986pt;}
.y13{bottom:475.691098pt;}
.y15b{bottom:479.132061pt;}
.y7b{bottom:479.825589pt;}
.y10c{bottom:480.519116pt;}
.y12c{bottom:481.172633pt;}
.y3d{bottom:482.359631pt;}
.y9b{bottom:483.613316pt;}
.ybe{bottom:485.067056pt;}
.ye4{bottom:491.028725pt;}
.y5d{bottom:491.228781pt;}
.y12{bottom:491.642230pt;}
.y15a{bottom:493.749486pt;}
.y12b{bottom:495.790058pt;}
.y7a{bottom:495.990114pt;}
.y10b{bottom:496.456911pt;}
.y3c{bottom:498.310763pt;}
.y9a{bottom:499.551110pt;}
.ybd{bottom:501.004851pt;}
.ye3{bottom:506.966519pt;}
.y5c{bottom:507.166575pt;}
.y159{bottom:508.353574pt;}
.y12a{bottom:510.647550pt;}
.y79{bottom:511.927908pt;}
.y10a{bottom:512.408043pt;}
.y3b{bottom:514.248558pt;}
.y99{bottom:515.488905pt;}
.ybc{bottom:516.955982pt;}
.ye2{bottom:522.904314pt;}
.y158{bottom:522.970999pt;}
.y5b{bottom:523.104370pt;}
.y129{bottom:525.251638pt;}
.y11{bottom:525.344997pt;}
.y78{bottom:527.865703pt;}
.y109{bottom:528.345837pt;}
.y3a{bottom:530.186353pt;}
.y98{bottom:531.426700pt;}
.y157{bottom:537.588425pt;}
.ye1{bottom:538.855446pt;}
.y5a{bottom:539.042165pt;}
.y128{bottom:539.869063pt;}
.y77{bottom:543.803498pt;}
.y108{bottom:545.270575pt;}
.y39{bottom:546.124147pt;}
.ybb{bottom:546.484248pt;}
.y97{bottom:547.364494pt;}
.y156{bottom:552.192513pt;}
.y127{bottom:554.726555pt;}
.ye0{bottom:554.793241pt;}
.y59{bottom:554.993297pt;}
.y76{bottom:559.741292pt;}
.y107{bottom:561.208370pt;}
.y38{bottom:562.061942pt;}
.y96{bottom:563.315626pt;}
.y155{bottom:566.809938pt;}
.y126{bottom:569.343980pt;}
.ydf{bottom:570.731035pt;}
.y58{bottom:570.931091pt;}
.y10{bottom:571.918034pt;}
.y37{bottom:577.999737pt;}
.y95{bottom:579.253421pt;}
.y154{bottom:581.414026pt;}
.y125{bottom:584.201473pt;}
.yf{bottom:586.522122pt;}
.yde{bottom:586.668830pt;}
.y57{bottom:587.188975pt;}
.y75{bottom:587.415706pt;}
.yba{bottom:589.296232pt;}
.y36{bottom:593.950868pt;}
.y153{bottom:596.031451pt;}
.y124{bottom:598.805561pt;}
.ye{bottom:601.139547pt;}
.ydd{bottom:602.606625pt;}
.y56{bottom:603.126770pt;}
.yb9{bottom:605.234027pt;}
.y94{bottom:606.647756pt;}
.y106{bottom:609.035091pt;}
.y35{bottom:609.888663pt;}
.y152{bottom:610.648876pt;}
.y123{bottom:613.422986pt;}
.yd{bottom:615.756972pt;}
.ydc{bottom:618.557756pt;}
.y55{bottom:619.064565pt;}
.yb8{bottom:621.171821pt;}
.y151{bottom:625.252964pt;}
.y34{bottom:625.826458pt;}
.y122{bottom:628.280478pt;}
.y74{bottom:628.360500pt;}
.yc{bottom:630.361060pt;}
.ydb{bottom:634.495551pt;}
.y54{bottom:635.015697pt;}
.yf0{bottom:637.174173pt;}
.yb5{bottom:637.363020pt;}
.yb7{bottom:637.523065pt;}
.y150{bottom:639.870389pt;}
.y121{bottom:642.897903pt;}
.y73{bottom:644.311632pt;}
.yb{bottom:644.978485pt;}
.y93{bottom:647.339146pt;}
.yb3{bottom:649.059628pt;}
.yda{bottom:650.433346pt;}
.y53{bottom:650.953491pt;}
.y14f{bottom:654.474477pt;}
.y33{bottom:656.088262pt;}
.y120{bottom:657.501991pt;}
.yb4{bottom:659.022417pt;}
.ya{bottom:659.582573pt;}
.y72{bottom:660.249427pt;}
.yb6{bottom:661.676493pt;}
.y92{bottom:663.276941pt;}
.yd9{bottom:666.371140pt;}
.y52{bottom:666.891286pt;}
.y14e{bottom:669.091902pt;}
.y11f{bottom:672.119416pt;}
.y9{bottom:674.199998pt;}
.y71{bottom:676.187221pt;}
.yb2{bottom:676.760715pt;}
.y91{bottom:679.374780pt;}
.yd8{bottom:682.308935pt;}
.y51{bottom:682.829081pt;}
.y14d{bottom:683.695990pt;}
.y70{bottom:692.125016pt;}
.yb1{bottom:693.298678pt;}
.y90{bottom:695.325912pt;}
.y32{bottom:696.979708pt;}
.yd7{bottom:698.246730pt;}
.y14c{bottom:698.313415pt;}
.y11e{bottom:703.901646pt;}
.yb0{bottom:707.716047pt;}
.y6f{bottom:708.062811pt;}
.y8f{bottom:711.263707pt;}
.y31{bottom:712.930840pt;}
.yd6{bottom:714.197861pt;}
.y50{bottom:716.318455pt;}
.yad{bottom:719.412654pt;}
.y14b{bottom:727.534928pt;}
.y8e{bottom:728.695253pt;}
.y30{bottom:728.868635pt;}
.yaf{bottom:729.375443pt;}
.yd5{bottom:730.135656pt;}
.y8{bottom:731.522711pt;}
.yae{bottom:732.029519pt;}
.y6e{bottom:735.737224pt;}
.y8d{bottom:741.352129pt;}
.y14a{bottom:742.152353pt;}
.yac{bottom:743.619430pt;}
.y8c{bottom:744.646385pt;}
.y2f{bottom:744.806429pt;}
.yd4{bottom:746.073451pt;}
.y7{bottom:746.140136pt;}
.y11d{bottom:747.647225pt;}
.y149{bottom:756.756441pt;}
.yab{bottom:760.157393pt;}
.y4f{bottom:760.424134pt;}
.y8b{bottom:760.584179pt;}
.y2e{bottom:760.744224pt;}
.y6{bottom:760.757561pt;}
.yd3{bottom:762.011245pt;}
.y11c{bottom:763.585019pt;}
.y148{bottom:771.373866pt;}
.y5{bottom:775.361649pt;}
.yaa{bottom:776.095188pt;}
.y4e{bottom:776.361929pt;}
.y8a{bottom:776.521974pt;}
.y2d{bottom:776.682019pt;}
.yd2{bottom:777.949040pt;}
.y147{bottom:785.991291pt;}
.y4{bottom:789.979074pt;}
.ya9{bottom:792.032982pt;}
.y4d{bottom:792.313061pt;}
.y89{bottom:792.459769pt;}
.y2c{bottom:792.633150pt;}
.yd1{bottom:793.900172pt;}
.y11b{bottom:796.700956pt;}
.y146{bottom:800.595379pt;}
.ya8{bottom:807.970777pt;}
.y4c{bottom:808.250855pt;}
.y88{bottom:808.397563pt;}
.y2b{bottom:808.570945pt;}
.yd0{bottom:809.837966pt;}
.y145{bottom:815.212804pt;}
.y3{bottom:817.813532pt;}
.ya7{bottom:823.908572pt;}
.y87{bottom:824.335358pt;}
.y2a{bottom:824.508740pt;}
.ycf{bottom:825.775761pt;}
.y144{bottom:829.816892pt;}
.ya6{bottom:839.859703pt;}
.y29{bottom:840.446534pt;}
.yce{bottom:841.713556pt;}
.y143{bottom:844.434317pt;}
.y28{bottom:856.384329pt;}
.ycd{bottom:857.651350pt;}
.y142{bottom:859.038405pt;}
.y2{bottom:864.359895pt;}
.y27{bottom:872.322124pt;}
.y141{bottom:873.655830pt;}
.y1{bottom:888.273255pt;}
.hc{height:2.125395pt;}
.h14{height:22.912882pt;}
.hb{height:25.805517pt;}
.hd{height:27.887806pt;}
.h4{height:33.173233pt;}
.h3{height:35.850035pt;}
.h6{height:37.035007pt;}
.h2{height:39.851155pt;}
.h10{height:43.198759pt;}
.h5{height:44.625825pt;}
.h7{height:47.199879pt;}
.h8{height:48.105092pt;}
.h11{height:50.614168pt;}
.h9{height:53.028177pt;}
.h1{height:53.550990pt;}
.h12{height:54.681973pt;}
.ha{height:84.823744pt;}
.hf{height:86.637585pt;}
.he{height:93.030841pt;}
.h13{height:264.290143pt;}
.h0{height:1056.000000pt;}
.w1{width:297.952359pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:4.996416pt;}
.x29{left:8.314636pt;}
.x28{left:12.891491pt;}
.x27{left:15.752025pt;}
.x2a{left:108.319060pt;}
.xa{left:179.690093pt;}
.x1{left:183.211079pt;}
.x2d{left:185.825144pt;}
.x2{left:187.038817pt;}
.xb{left:199.615671pt;}
.x2e{left:202.029680pt;}
.x2c{left:209.810825pt;}
.xe{left:213.752962pt;}
.xd{left:215.353410pt;}
.x9{left:217.487340pt;}
.x18{left:228.783836pt;}
.x17{left:230.957778pt;}
.xf{left:233.171731pt;}
.x12{left:251.256793pt;}
.x11{left:253.430735pt;}
.x10{left:254.884475pt;}
.x13{left:271.849224pt;}
.x26{left:273.571063pt;}
.x3{left:287.400244pt;}
.x16{left:308.206068pt;}
.x15{left:310.380010pt;}
.x14{left:311.833750pt;}
.x4{left:318.809036pt;}
.x1b{left:322.316684pt;}
.x8{left:323.863784pt;}
.x1a{left:325.170817pt;}
.x19{left:326.624557pt;}
.x5{left:327.918252pt;}
.x1c{left:342.055543pt;}
.x7{left:345.763247pt;}
.x6{left:358.513483pt;}
.x1f{left:489.390118pt;}
.x1e{left:491.564060pt;}
.x1d{left:495.818585pt;}
.x20{left:509.982549pt;}
.x21{left:518.531609pt;}
.xc{left:575.454210pt;}
.x24{left:584.083292pt;}
.x23{left:585.670403pt;}
.x22{left:589.924927pt;}
.x25{left:603.502061pt;}
}




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