
    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_eaac40f09860a03f7a165f6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_7988d94bb016447244a6e34d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_c6adc903921ac4fe90c5f1dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_843bcacb751c3286c1207418.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.707000;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_9192da84079f2638f941474a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_16ba517784575b97e8835621.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_7bbad85e36ee6d84b51a3367.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_bf3583907320326de21cdfff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_e6e545e6c36cbcfcaa06ead1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4429c5d850b80429e909fdf7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_7f831a06d1c9ac8634b2f137.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.924000;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_4212c85e6e6f693d00611f26.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a6cc2c4307d59bb0e69e5370.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932000;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_5042294802d858fdd5e6bcb6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909000;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_e6dfadcef246e1b76b6e4e36.woff2')format("woff");}.fff{font-family:fff;line-height:0.697000;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_52acc9a88d4ae64d9b2ed367.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:2.988780px;}
.ls12{letter-spacing:4.244068px;}
.ls11{letter-spacing:4.961375px;}
.ls9{letter-spacing:8.308808px;}
.lse{letter-spacing:9.922750px;}
.ls13{letter-spacing:9.982525px;}
.ls14{letter-spacing:15.302554px;}
.ls6{letter-spacing:16.139412px;}
.ls1{letter-spacing:16.318739px;}
.lsf{letter-spacing:16.557841px;}
.lsc{letter-spacing:16.617617px;}
.ls16{letter-spacing:17.394700px;}
.lsa{letter-spacing:19.905275px;}
.ls15{letter-spacing:19.965050px;}
.ls4{letter-spacing:20.144377px;}
.lsb{letter-spacing:20.861684px;}
.ls5{letter-spacing:21.100787px;}
.lsd{letter-spacing:24.209118px;}
.ls2{letter-spacing:25.045976px;}
.ls17{letter-spacing:26.181713px;}
.ls3{letter-spacing:28.811839px;}
.ls7{letter-spacing:29.887800px;}
.ls8{letter-spacing:31.382190px;}
.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;}
}
.ws31{word-spacing:-34.364992px;}
.ws5e{word-spacing:-29.881822px;}
.ws79{word-spacing:-18.883112px;}
.ws7f{word-spacing:-17.209395px;}
.ws7a{word-spacing:-16.432312px;}
.ws76{word-spacing:-16.193210px;}
.ws90{word-spacing:-16.013883px;}
.ws34{word-spacing:-15.535678px;}
.ws96{word-spacing:-15.475903px;}
.ws67{word-spacing:-15.236800px;}
.ws97{word-spacing:-15.117249px;}
.ws8b{word-spacing:-14.997698px;}
.ws80{word-spacing:-14.937922px;}
.ws4c{word-spacing:-14.639044px;}
.ws1b{word-spacing:-14.579269px;}
.ws5b{word-spacing:-14.459718px;}
.ws6f{word-spacing:-14.160840px;}
.ws4d{word-spacing:-14.041288px;}
.wsa6{word-spacing:-13.981513px;}
.ws75{word-spacing:-13.921737px;}
.ws81{word-spacing:-13.861962px;}
.ws14{word-spacing:-13.815429px;}
.ws47{word-spacing:-13.742410px;}
.wsd{word-spacing:-13.707832px;}
.ws35{word-spacing:-13.563084px;}
.ws91{word-spacing:-13.383757px;}
.wsb{word-spacing:-13.277445px;}
.ws5f{word-spacing:-13.264206px;}
.ws7d{word-spacing:-13.204430px;}
.ws93{word-spacing:-13.084879px;}
.ws9b{word-spacing:-12.905552px;}
.ws13{word-spacing:-12.685663px;}
.ws18{word-spacing:-12.546898px;}
.ws7c{word-spacing:-12.487123px;}
.wsf{word-spacing:-12.470469px;}
.wsa5{word-spacing:-12.427347px;}
.ws24{word-spacing:-12.307796px;}
.ws92{word-spacing:-12.068694px;}
.ws87{word-spacing:-12.008918px;}
.ws65{word-spacing:-11.829591px;}
.ws46{word-spacing:-11.769816px;}
.ws51{word-spacing:-11.470938px;}
.wsa2{word-spacing:-11.411162px;}
.ws69{word-spacing:-11.351386px;}
.ws83{word-spacing:-11.231835px;}
.ws73{word-spacing:-10.992733px;}
.ws25{word-spacing:-10.932957px;}
.ws43{word-spacing:-10.335201px;}
.ws41{word-spacing:-10.275426px;}
.wsa{word-spacing:-10.157138px;}
.ws29{word-spacing:-10.155874px;}
.ws44{word-spacing:-10.096099px;}
.ws1c{word-spacing:-9.976548px;}
.ws54{word-spacing:-9.916772px;}
.ws70{word-spacing:-9.856996px;}
.ws3f{word-spacing:-9.737445px;}
.ws17{word-spacing:-9.617894px;}
.ws8f{word-spacing:-9.558118px;}
.ws99{word-spacing:-9.438567px;}
.wsc{word-spacing:-9.296364px;}
.ws15{word-spacing:-9.242565px;}
.ws85{word-spacing:-9.199465px;}
.ws74{word-spacing:-9.139689px;}
.ws11{word-spacing:-9.134968px;}
.ws66{word-spacing:-9.079914px;}
.ws6a{word-spacing:-9.020138px;}
.ws12{word-spacing:-8.812178px;}
.ws45{word-spacing:-8.781036px;}
.ws8d{word-spacing:-8.601709px;}
.ws68{word-spacing:-8.482158px;}
.wsa4{word-spacing:-8.422382px;}
.ws82{word-spacing:-8.302831px;}
.ws40{word-spacing:-8.183280px;}
.ws4a{word-spacing:-8.123504px;}
.ws6{word-spacing:-8.059000px;}
.ws8c{word-spacing:-8.003953px;}
.ws61{word-spacing:-7.944177px;}
.ws52{word-spacing:-7.884402px;}
.ws6b{word-spacing:-7.824626px;}
.ws7{word-spacing:-7.790008px;}
.ws56{word-spacing:-7.764850px;}
.ws6c{word-spacing:-7.705075px;}
.ws36{word-spacing:-7.525748px;}
.ws8e{word-spacing:-7.465972px;}
.ws9{word-spacing:-7.413420px;}
.ws10{word-spacing:-7.252024px;}
.ws4b{word-spacing:-7.107319px;}
.ws7e{word-spacing:-7.047543px;}
.ws53{word-spacing:-6.868216px;}
.ws2d{word-spacing:-6.808441px;}
.ws21{word-spacing:-6.688890px;}
.ws5{word-spacing:-6.606444px;}
.ws4{word-spacing:-6.337452px;}
.ws55{word-spacing:-6.150909px;}
.ws9a{word-spacing:-6.091134px;}
.ws1f{word-spacing:-6.031358px;}
.ws2e{word-spacing:-5.792256px;}
.ws33{word-spacing:-5.732480px;}
.wse{word-spacing:-5.584274px;}
.ws78{word-spacing:-5.433602px;}
.ws86{word-spacing:-5.314051px;}
.ws5a{word-spacing:-5.134724px;}
.ws6e{word-spacing:-5.015173px;}
.ws39{word-spacing:-4.895622px;}
.ws27{word-spacing:-4.776070px;}
.ws26{word-spacing:-4.716295px;}
.ws1d{word-spacing:-4.656519px;}
.ws88{word-spacing:-4.536968px;}
.ws5c{word-spacing:-4.477192px;}
.ws48{word-spacing:-4.357641px;}
.ws1a{word-spacing:-4.178314px;}
.ws22{word-spacing:-3.998988px;}
.ws89{word-spacing:-3.939212px;}
.ws84{word-spacing:-3.700110px;}
.ws32{word-spacing:-3.520783px;}
.ws98{word-spacing:-3.221905px;}
.ws3b{word-spacing:-2.803476px;}
.ws3a{word-spacing:-2.624149px;}
.ws19{word-spacing:-2.564373px;}
.ws59{word-spacing:-2.385046px;}
.ws95{word-spacing:-2.325271px;}
.ws1e{word-spacing:-2.265495px;}
.ws8a{word-spacing:-1.667739px;}
.ws37{word-spacing:-1.488412px;}
.ws2a{word-spacing:-1.428637px;}
.ws3c{word-spacing:-1.309086px;}
.ws9d{word-spacing:-1.189534px;}
.ws3e{word-spacing:-1.129759px;}
.ws3d{word-spacing:-1.069983px;}
.ws71{word-spacing:-0.771105px;}
.ws3{word-spacing:-0.071731px;}
.ws20{word-spacing:-0.059776px;}
.ws4e{word-spacing:-0.053798px;}
.ws2f{word-spacing:0.000000px;}
.ws50{word-spacing:0.005978px;}
.ws77{word-spacing:1.321041px;}
.ws94{word-spacing:2.516553px;}
.ws9e{word-spacing:2.875206px;}
.ws63{word-spacing:9.384769px;}
.ws60{word-spacing:9.922750px;}
.wsa0{word-spacing:10.048278px;}
.ws64{word-spacing:16.498066px;}
.ws7b{word-spacing:17.036046px;}
.ws9c{word-spacing:18.590212px;}
.ws8{word-spacing:20.981376px;}
.ws42{word-spacing:21.041011px;}
.ws30{word-spacing:21.280114px;}
.wsa3{word-spacing:21.339889px;}
.ws2{word-spacing:23.312640px;}
.ws2c{word-spacing:24.209118px;}
.ws38{word-spacing:25.410608px;}
.ws49{word-spacing:26.002386px;}
.ws28{word-spacing:26.062162px;}
.ws23{word-spacing:26.779469px;}
.ws57{word-spacing:26.827469px;}
.ws6d{word-spacing:28.273859px;}
.ws2b{word-spacing:29.170493px;}
.ws72{word-spacing:29.768249px;}
.ws5d{word-spacing:29.839979px;}
.ws58{word-spacing:31.322414px;}
.ws0{word-spacing:31.418178px;}
.ws1{word-spacing:31.504255px;}
.ws9f{word-spacing:33.175458px;}
.wsa1{word-spacing:39.750774px;}
.ws4f{word-spacing:80.625869px;}
.ws16{word-spacing:94.598843px;}
.ws62{word-spacing:119.503379px;}
._0{margin-left:-7.919102px;}
._4{margin-left:-5.810227px;}
._9{margin-left:-4.626662px;}
._1{margin-left:-2.582316px;}
._5{margin-left:-1.291169px;}
._a{width:1.291169px;}
._3{width:2.496239px;}
._21{width:3.780199px;}
._13{width:5.144084px;}
._d{width:14.848351px;}
._12{width:16.701287px;}
._15{width:18.709763px;}
._6{width:20.260484px;}
._c{width:22.272538px;}
._b{width:24.155489px;}
._e{width:25.703508px;}
._11{width:27.197898px;}
._8{width:28.330252px;}
._f{width:29.391469px;}
._16{width:30.428188px;}
._7{width:32.225256px;}
._1d{width:34.526428px;}
._1f{width:35.865600px;}
._14{width:37.383382px;}
._27{width:38.507452px;}
._29{width:40.934350px;}
._2{width:42.177828px;}
._1b{width:43.576412px;}
._10{width:44.903441px;}
._1a{width:48.657374px;}
._19{width:51.944996px;}
._1c{width:56.511836px;}
._18{width:60.385321px;}
._20{width:62.704604px;}
._28{width:65.788994px;}
._23{width:71.730720px;}
._1e{width:80.697600px;}
._2a{width:86.519188px;}
._26{width:89.663400px;}
._17{width:94.684920px;}
._22{width:134.533396px;}
._24{width:231.522864px;}
._25{width:257.345952px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2f{bottom:63.168000px;}
.y2e{bottom:108.000000px;}
.y2d{bottom:125.932500px;}
.y111{bottom:134.262000px;}
.y78{bottom:136.528500px;}
.ya1{bottom:137.752500px;}
.yc8{bottom:143.173500px;}
.y2c{bottom:143.865000px;}
.y110{bottom:152.194500px;}
.y77{bottom:154.462500px;}
.y55{bottom:155.053500px;}
.ya0{bottom:155.685000px;}
.yc7{bottom:161.106000px;}
.y2b{bottom:161.797500px;}
.ye9{bottom:161.799000px;}
.y76{bottom:178.372500px;}
.yc6{bottom:179.040000px;}
.y2a{bottom:179.731500px;}
.y10f{bottom:182.083500px;}
.y9f{bottom:185.437500px;}
.y54{bottom:186.013500px;}
.y75{bottom:196.305000px;}
.yc5{bottom:196.972500px;}
.y29{bottom:197.664000px;}
.y10e{bottom:200.016000px;}
.y53{bottom:213.595500px;}
.y9e{bottom:215.055000px;}
.y28{bottom:215.596500px;}
.y74{bottom:220.215000px;}
.yc4{bottom:226.860000px;}
.y10d{bottom:229.903500px;}
.y9d{bottom:232.987500px;}
.y27{bottom:233.529000px;}
.y73{bottom:238.147500px;}
.ye8{bottom:243.178500px;}
.yc3{bottom:244.792500px;}
.y10c{bottom:247.836000px;}
.y52{bottom:249.312000px;}
.y9c{bottom:250.921500px;}
.y26{bottom:251.461500px;}
.y72{bottom:256.081500px;}
.y9b{bottom:268.854000px;}
.y25{bottom:269.394000px;}
.yc2{bottom:274.680000px;}
.y10b{bottom:277.723500px;}
.ye7{bottom:283.933500px;}
.y9a{bottom:286.786500px;}
.y24{bottom:287.328000px;}
.y71{bottom:288.957000px;}
.yc1{bottom:292.614000px;}
.y10a{bottom:295.657500px;}
.y51{bottom:298.395000px;}
.ye6{bottom:301.866000px;}
.y23{bottom:305.260500px;}
.y70{bottom:306.891000px;}
.y109{bottom:313.590000px;}
.y99{bottom:314.368500px;}
.y50{bottom:316.327500px;}
.yc0{bottom:322.501500px;}
.y22{bottom:323.193000px;}
.ye5{bottom:328.512000px;}
.y4f{bottom:334.261500px;}
.y6f{bottom:339.766500px;}
.y21{bottom:341.125500px;}
.y108{bottom:343.477500px;}
.y4e{bottom:352.194000px;}
.ybf{bottom:352.389000px;}
.ye4{bottom:355.908000px;}
.y98{bottom:356.137500px;}
.y20{bottom:359.058000px;}
.y107{bottom:361.410000px;}
.y6e{bottom:367.348500px;}
.y4d{bottom:370.126500px;}
.y97{bottom:374.070000px;}
.y1f{bottom:376.990500px;}
.ybe{bottom:382.276500px;}
.ye3{bottom:383.302500px;}
.y106{bottom:391.299000px;}
.y1e{bottom:394.924500px;}
.ybd{bottom:400.210500px;}
.ye2{bottom:401.236500px;}
.y96{bottom:406.798500px;}
.y4c{bottom:408.634500px;}
.y6d{bottom:409.176000px;}
.y105{bottom:409.231500px;}
.y1d{bottom:412.857000px;}
.y4b{bottom:426.568500px;}
.y6c{bottom:427.108500px;}
.y104{bottom:427.164000px;}
.ye1{bottom:427.882500px;}
.ybc{bottom:430.098000px;}
.y1c{bottom:430.789500px;}
.y4a{bottom:444.501000px;}
.ybb{bottom:448.030500px;}
.y1b{bottom:448.722000px;}
.ye0{bottom:455.463000px;}
.y95{bottom:456.153000px;}
.y103{bottom:457.051500px;}
.y6b{bottom:459.985500px;}
.yba{bottom:465.963000px;}
.y1a{bottom:466.654500px;}
.y94{bottom:474.085500px;}
.y102{bottom:474.984000px;}
.y49{bottom:483.009000px;}
.yb9{bottom:483.895500px;}
.y19{bottom:484.588500px;}
.y6a{bottom:489.874500px;}
.y93{bottom:492.018000px;}
.ydf{bottom:496.218000px;}
.y48{bottom:500.941500px;}
.yb8{bottom:501.829500px;}
.y101{bottom:507.712500px;}
.y92{bottom:509.952000px;}
.y69{bottom:513.784500px;}
.y18{bottom:517.315500px;}
.y47{bottom:518.875500px;}
.yb7{bottom:519.762000px;}
.yde{bottom:523.614000px;}
.y46{bottom:536.808000px;}
.y91{bottom:537.532500px;}
.y68{bottom:537.694500px;}
.yb6{bottom:547.344000px;}
.ydd{bottom:551.010000px;}
.y100{bottom:557.125500px;}
.y17{bottom:565.827000px;}
.y67{bottom:567.582000px;}
.y90{bottom:568.104000px;}
.yff{bottom:575.058000px;}
.y45{bottom:575.316000px;}
.ydc{bottom:578.406000px;}
.y16{bottom:582.265500px;}
.yb5{bottom:589.171500px;}
.yfe{bottom:592.990500px;}
.y44{bottom:593.248500px;}
.ydb{bottom:596.338500px;}
.y66{bottom:597.471000px;}
.y15{bottom:598.704000px;}
.yb4{bottom:607.104000px;}
.yfd{bottom:610.924500px;}
.y43{bottom:611.182500px;}
.y14{bottom:615.142500px;}
.y8f{bottom:615.570000px;}
.y65{bottom:621.381000px;}
.yda{bottom:622.984500px;}
.yb3{bottom:625.036500px;}
.yfc{bottom:628.857000px;}
.y42{bottom:629.115000px;}
.y13{bottom:631.581000px;}
.y64{bottom:645.291000px;}
.yfb{bottom:646.789500px;}
.y41{bottom:647.047500px;}
.y12{bottom:648.019500px;}
.yd9{bottom:650.566500px;}
.y8e{bottom:651.448500px;}
.yb2{bottom:654.924000px;}
.y11{bottom:664.458000px;}
.yfa{bottom:664.722000px;}
.y63{bottom:669.201000px;}
.y8d{bottom:669.381000px;}
.y10{bottom:680.896500px;}
.yb1{bottom:684.813000px;}
.y40{bottom:685.555500px;}
.yd8{bottom:686.283000px;}
.y8c{bottom:687.313500px;}
.yf9{bottom:694.609500px;}
.yf{bottom:697.333500px;}
.y62{bottom:699.088500px;}
.y3f{bottom:703.489500px;}
.y8b{bottom:705.247500px;}
.yf8{bottom:712.543500px;}
.ye{bottom:713.772000px;}
.yb0{bottom:714.700500px;}
.y3e{bottom:721.422000px;}
.y61{bottom:723.000000px;}
.yd{bottom:730.210500px;}
.y8a{bottom:730.681500px;}
.yaf{bottom:732.633000px;}
.yd7{bottom:734.623500px;}
.y3d{bottom:739.354500px;}
.y60{bottom:740.932500px;}
.yf7{bottom:742.431000px;}
.yc{bottom:746.649000px;}
.yd6{bottom:752.556000px;}
.yf6{bottom:760.363500px;}
.yae{bottom:762.520500px;}
.yb{bottom:763.087500px;}
.yd5{bottom:770.488500px;}
.y5f{bottom:773.809500px;}
.y89{bottom:776.718000px;}
.y3c{bottom:777.862500px;}
.ya{bottom:779.526000px;}
.yad{bottom:780.453000px;}
.yd4{bottom:788.421000px;}
.yf5{bottom:790.251000px;}
.y88{bottom:794.650500px;}
.y3b{bottom:795.796500px;}
.y9{bottom:795.964500px;}
.y5e{bottom:801.390000px;}
.yac{bottom:810.342000px;}
.y8{bottom:812.403000px;}
.y87{bottom:812.583000px;}
.yd3{bottom:813.324000px;}
.y3a{bottom:813.729000px;}
.yf4{bottom:820.140000px;}
.yab{bottom:828.274500px;}
.y7{bottom:828.841500px;}
.y86{bottom:830.515500px;}
.y39{bottom:831.661500px;}
.yf3{bottom:838.072500px;}
.yd2{bottom:840.720000px;}
.y5d{bottom:843.219000px;}
.yaa{bottom:846.207000px;}
.y6{bottom:847.032000px;}
.y85{bottom:848.449500px;}
.y5c{bottom:861.151500px;}
.ya9{bottom:864.139500px;}
.y38{bottom:864.390000px;}
.y84{bottom:866.382000px;}
.yf2{bottom:867.960000px;}
.yd1{bottom:868.116000px;}
.ya8{bottom:882.072000px;}
.y83{bottom:884.314500px;}
.yd0{bottom:886.048500px;}
.y5b{bottom:894.027000px;}
.y5{bottom:896.202000px;}
.ya7{bottom:900.006000px;}
.y82{bottom:902.247000px;}
.yf1{bottom:906.799500px;}
.ycf{bottom:913.444500px;}
.y37{bottom:913.473000px;}
.y4{bottom:917.124000px;}
.y81{bottom:920.179500px;}
.yf0{bottom:924.732000px;}
.y5a{bottom:926.904000px;}
.ya6{bottom:927.586500px;}
.y3{bottom:938.044500px;}
.y80{bottom:938.113500px;}
.yce{bottom:940.840500px;}
.y36{bottom:942.594000px;}
.yef{bottom:942.664500px;}
.y59{bottom:954.486000px;}
.y7f{bottom:956.046000px;}
.yee{bottom:960.597000px;}
.ycd{bottom:965.743500px;}
.ya5{bottom:969.414000px;}
.y35{bottom:971.715000px;}
.y7e{bottom:973.978500px;}
.yed{bottom:978.529500px;}
.y2{bottom:981.376500px;}
.ycc{bottom:983.676000px;}
.ya4{bottom:987.348000px;}
.y34{bottom:989.647500px;}
.y7d{bottom:991.911000px;}
.y58{bottom:996.313500px;}
.yec{bottom:996.462000px;}
.ycb{bottom:1001.608500px;}
.ya3{bottom:1005.280500px;}
.y1{bottom:1008.276000px;}
.y7c{bottom:1009.843500px;}
.y57{bottom:1014.246000px;}
.yeb{bottom:1014.396000px;}
.y33{bottom:1018.768500px;}
.yca{bottom:1019.541000px;}
.y7b{bottom:1027.776000px;}
.y56{bottom:1032.180000px;}
.yea{bottom:1032.328500px;}
.ya2{bottom:1035.168000px;}
.y32{bottom:1036.701000px;}
.yc9{bottom:1037.475000px;}
.y7a{bottom:1045.710000px;}
.y31{bottom:1065.055500px;}
.y79{bottom:1065.502500px;}
.y30{bottom:1122.739500px;}
.h4{height:37.712678px;}
.h5{height:40.402598px;}
.h9{height:41.603818px;}
.h7{height:42.201574px;}
.h3{height:44.329882px;}
.h6{height:44.891476px;}
.h2{height:50.642227px;}
.h8{height:53.870131px;}
.h1{height:60.426194px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:162.000000px;}
.x12{left:163.701000px;}
.x11{left:170.050500px;}
.x1{left:175.789500px;}
.x15{left:176.940000px;}
.xd{left:180.267000px;}
.xa{left:184.416000px;}
.x8{left:199.360500px;}
.x13{left:211.258500px;}
.xe{left:213.144000px;}
.xf{left:217.294500px;}
.x7{left:220.089000px;}
.x10{left:232.236000px;}
.x14{left:261.040500px;}
.x4{left:292.674000px;}
.x2{left:321.508500px;}
.x5{left:343.680000px;}
.xc{left:380.608500px;}
.x3{left:388.248000px;}
.x6{left:428.566500px;}
.xb{left:455.265000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:2.656693pt;}
.ls12{letter-spacing:3.772505pt;}
.ls11{letter-spacing:4.410111pt;}
.ls9{letter-spacing:7.385607pt;}
.lse{letter-spacing:8.820222pt;}
.ls13{letter-spacing:8.873356pt;}
.ls14{letter-spacing:13.602270pt;}
.ls6{letter-spacing:14.346144pt;}
.ls1{letter-spacing:14.505546pt;}
.lsf{letter-spacing:14.718081pt;}
.lsc{letter-spacing:14.771215pt;}
.ls16{letter-spacing:15.461955pt;}
.lsa{letter-spacing:17.693578pt;}
.ls15{letter-spacing:17.746711pt;}
.ls4{letter-spacing:17.906113pt;}
.lsb{letter-spacing:18.543719pt;}
.ls5{letter-spacing:18.756255pt;}
.lsd{letter-spacing:21.519216pt;}
.ls2{letter-spacing:22.263090pt;}
.ls17{letter-spacing:23.272634pt;}
.ls3{letter-spacing:25.610524pt;}
.ls7{letter-spacing:26.566933pt;}
.ls8{letter-spacing:27.895280pt;}
.ws31{word-spacing:-30.546660pt;}
.ws5e{word-spacing:-26.561620pt;}
.ws79{word-spacing:-16.784988pt;}
.ws7f{word-spacing:-15.297240pt;}
.ws7a{word-spacing:-14.606500pt;}
.ws76{word-spacing:-14.393964pt;}
.ws90{word-spacing:-14.234563pt;}
.ws34{word-spacing:-13.809492pt;}
.ws96{word-spacing:-13.756358pt;}
.ws67{word-spacing:-13.543823pt;}
.ws97{word-spacing:-13.437555pt;}
.ws8b{word-spacing:-13.331287pt;}
.ws80{word-spacing:-13.278153pt;}
.ws4c{word-spacing:-13.012484pt;}
.ws1b{word-spacing:-12.959350pt;}
.ws5b{word-spacing:-12.853082pt;}
.ws6f{word-spacing:-12.587413pt;}
.ws4d{word-spacing:-12.481145pt;}
.wsa6{word-spacing:-12.428011pt;}
.ws75{word-spacing:-12.374878pt;}
.ws81{word-spacing:-12.321744pt;}
.ws14{word-spacing:-12.280381pt;}
.ws47{word-spacing:-12.215476pt;}
.wsd{word-spacing:-12.184740pt;}
.ws35{word-spacing:-12.056074pt;}
.ws91{word-spacing:-11.896673pt;}
.wsb{word-spacing:-11.802173pt;}
.ws5f{word-spacing:-11.790405pt;}
.ws7d{word-spacing:-11.737271pt;}
.ws93{word-spacing:-11.631003pt;}
.ws9b{word-spacing:-11.471602pt;}
.ws13{word-spacing:-11.276145pt;}
.ws18{word-spacing:-11.152799pt;}
.ws7c{word-spacing:-11.099665pt;}
.wsf{word-spacing:-11.084861pt;}
.wsa5{word-spacing:-11.046531pt;}
.ws24{word-spacing:-10.940263pt;}
.ws92{word-spacing:-10.727728pt;}
.ws87{word-spacing:-10.674594pt;}
.ws65{word-spacing:-10.515192pt;}
.ws46{word-spacing:-10.462058pt;}
.ws51{word-spacing:-10.196389pt;}
.wsa2{word-spacing:-10.143255pt;}
.ws69{word-spacing:-10.090121pt;}
.ws83{word-spacing:-9.983854pt;}
.ws73{word-spacing:-9.771318pt;}
.ws25{word-spacing:-9.718184pt;}
.ws43{word-spacing:-9.186846pt;}
.ws41{word-spacing:-9.133712pt;}
.wsa{word-spacing:-9.028567pt;}
.ws29{word-spacing:-9.027444pt;}
.ws44{word-spacing:-8.974310pt;}
.ws1c{word-spacing:-8.868042pt;}
.ws54{word-spacing:-8.814908pt;}
.ws70{word-spacing:-8.761775pt;}
.ws3f{word-spacing:-8.655507pt;}
.ws17{word-spacing:-8.549239pt;}
.ws8f{word-spacing:-8.496105pt;}
.ws99{word-spacing:-8.389838pt;}
.wsc{word-spacing:-8.263434pt;}
.ws15{word-spacing:-8.215613pt;}
.ws85{word-spacing:-8.177302pt;}
.ws74{word-spacing:-8.124168pt;}
.ws11{word-spacing:-8.119972pt;}
.ws66{word-spacing:-8.071034pt;}
.ws6a{word-spacing:-8.017900pt;}
.ws12{word-spacing:-7.833047pt;}
.ws45{word-spacing:-7.805365pt;}
.ws8d{word-spacing:-7.645963pt;}
.ws68{word-spacing:-7.539696pt;}
.wsa4{word-spacing:-7.486562pt;}
.ws82{word-spacing:-7.380294pt;}
.ws40{word-spacing:-7.274026pt;}
.ws4a{word-spacing:-7.220892pt;}
.ws6{word-spacing:-7.163556pt;}
.ws8c{word-spacing:-7.114625pt;}
.ws61{word-spacing:-7.061491pt;}
.ws52{word-spacing:-7.008357pt;}
.ws6b{word-spacing:-6.955223pt;}
.ws7{word-spacing:-6.924452pt;}
.ws56{word-spacing:-6.902089pt;}
.ws6c{word-spacing:-6.848955pt;}
.ws36{word-spacing:-6.689554pt;}
.ws8e{word-spacing:-6.636420pt;}
.ws9{word-spacing:-6.589706pt;}
.ws10{word-spacing:-6.446244pt;}
.ws4b{word-spacing:-6.317617pt;}
.ws7e{word-spacing:-6.264483pt;}
.ws53{word-spacing:-6.105081pt;}
.ws2d{word-spacing:-6.051947pt;}
.ws21{word-spacing:-5.945680pt;}
.ws5{word-spacing:-5.872394pt;}
.ws4{word-spacing:-5.633290pt;}
.ws55{word-spacing:-5.467475pt;}
.ws9a{word-spacing:-5.414341pt;}
.ws1f{word-spacing:-5.361207pt;}
.ws2e{word-spacing:-5.148672pt;}
.ws33{word-spacing:-5.095538pt;}
.wse{word-spacing:-4.963799pt;}
.ws78{word-spacing:-4.829868pt;}
.ws86{word-spacing:-4.723601pt;}
.ws5a{word-spacing:-4.564199pt;}
.ws6e{word-spacing:-4.457931pt;}
.ws39{word-spacing:-4.351664pt;}
.ws27{word-spacing:-4.245396pt;}
.ws26{word-spacing:-4.192262pt;}
.ws1d{word-spacing:-4.139128pt;}
.ws88{word-spacing:-4.032860pt;}
.ws5c{word-spacing:-3.979727pt;}
.ws48{word-spacing:-3.873459pt;}
.ws1a{word-spacing:-3.714057pt;}
.ws22{word-spacing:-3.554656pt;}
.ws89{word-spacing:-3.501522pt;}
.ws84{word-spacing:-3.288986pt;}
.ws32{word-spacing:-3.129585pt;}
.ws98{word-spacing:-2.863915pt;}
.ws3b{word-spacing:-2.491978pt;}
.ws3a{word-spacing:-2.332577pt;}
.ws19{word-spacing:-2.279443pt;}
.ws59{word-spacing:-2.120041pt;}
.ws95{word-spacing:-2.066907pt;}
.ws1e{word-spacing:-2.013774pt;}
.ws8a{word-spacing:-1.482435pt;}
.ws37{word-spacing:-1.323033pt;}
.ws2a{word-spacing:-1.269899pt;}
.ws3c{word-spacing:-1.163632pt;}
.ws9d{word-spacing:-1.057364pt;}
.ws3e{word-spacing:-1.004230pt;}
.ws3d{word-spacing:-0.951096pt;}
.ws71{word-spacing:-0.685427pt;}
.ws3{word-spacing:-0.063761pt;}
.ws20{word-spacing:-0.053134pt;}
.ws4e{word-spacing:-0.047820pt;}
.ws2f{word-spacing:0.000000pt;}
.ws50{word-spacing:0.005313pt;}
.ws77{word-spacing:1.174258pt;}
.ws94{word-spacing:2.236936pt;}
.ws9e{word-spacing:2.555739pt;}
.ws63{word-spacing:8.342017pt;}
.ws60{word-spacing:8.820222pt;}
.wsa0{word-spacing:8.931803pt;}
.ws64{word-spacing:14.664947pt;}
.ws7b{word-spacing:15.143152pt;}
.ws9c{word-spacing:16.524633pt;}
.ws8{word-spacing:18.650112pt;}
.ws42{word-spacing:18.703121pt;}
.ws30{word-spacing:18.915657pt;}
.wsa3{word-spacing:18.968790pt;}
.ws2{word-spacing:20.722347pt;}
.ws2c{word-spacing:21.519216pt;}
.ws38{word-spacing:22.587207pt;}
.ws49{word-spacing:23.113232pt;}
.ws28{word-spacing:23.166366pt;}
.ws23{word-spacing:23.803972pt;}
.ws57{word-spacing:23.846639pt;}
.ws6d{word-spacing:25.132319pt;}
.ws2b{word-spacing:25.929327pt;}
.ws72{word-spacing:26.460666pt;}
.ws5d{word-spacing:26.524426pt;}
.ws58{word-spacing:27.842146pt;}
.ws0{word-spacing:27.927269pt;}
.ws1{word-spacing:28.003782pt;}
.ws9f{word-spacing:29.489296pt;}
.wsa1{word-spacing:35.334021pt;}
.ws4f{word-spacing:71.667439pt;}
.ws16{word-spacing:84.087860pt;}
.ws62{word-spacing:106.225226pt;}
._0{margin-left:-7.039202pt;}
._4{margin-left:-5.164646pt;}
._9{margin-left:-4.112589pt;}
._1{margin-left:-2.295392pt;}
._5{margin-left:-1.147706pt;}
._a{width:1.147706pt;}
._3{width:2.218879pt;}
._21{width:3.360177pt;}
._13{width:4.572519pt;}
._d{width:13.198534pt;}
._12{width:14.845588pt;}
._15{width:16.630900pt;}
._6{width:18.009319pt;}
._c{width:19.797811pt;}
._b{width:21.471546pt;}
._e{width:22.847563pt;}
._11{width:24.175909pt;}
._8{width:25.182446pt;}
._f{width:26.125750pt;}
._16{width:27.047278pt;}
._7{width:28.644672pt;}
._1d{width:30.690158pt;}
._1f{width:31.880533pt;}
._14{width:33.229673pt;}
._27{width:34.228846pt;}
._29{width:36.386089pt;}
._2{width:37.491403pt;}
._1b{width:38.734589pt;}
._10{width:39.914170pt;}
._1a{width:43.250999pt;}
._19{width:46.173330pt;}
._1c{width:50.232743pt;}
._18{width:53.675841pt;}
._20{width:55.737426pt;}
._28{width:58.479106pt;}
._23{width:63.760640pt;}
._1e{width:71.731200pt;}
._2a{width:76.905945pt;}
._26{width:79.700800pt;}
._17{width:84.164373pt;}
._22{width:119.585241pt;}
._24{width:205.798101pt;}
._25{width:228.751957pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:56.149333pt;}
.y2e{bottom:96.000000pt;}
.y2d{bottom:111.940000pt;}
.y111{bottom:119.344000pt;}
.y78{bottom:121.358667pt;}
.ya1{bottom:122.446667pt;}
.yc8{bottom:127.265333pt;}
.y2c{bottom:127.880000pt;}
.y110{bottom:135.284000pt;}
.y77{bottom:137.300000pt;}
.y55{bottom:137.825333pt;}
.ya0{bottom:138.386667pt;}
.yc7{bottom:143.205333pt;}
.y2b{bottom:143.820000pt;}
.ye9{bottom:143.821333pt;}
.y76{bottom:158.553333pt;}
.yc6{bottom:159.146667pt;}
.y2a{bottom:159.761333pt;}
.y10f{bottom:161.852000pt;}
.y9f{bottom:164.833333pt;}
.y54{bottom:165.345333pt;}
.y75{bottom:174.493333pt;}
.yc5{bottom:175.086667pt;}
.y29{bottom:175.701333pt;}
.y10e{bottom:177.792000pt;}
.y53{bottom:189.862667pt;}
.y9e{bottom:191.160000pt;}
.y28{bottom:191.641333pt;}
.y74{bottom:195.746667pt;}
.yc4{bottom:201.653333pt;}
.y10d{bottom:204.358667pt;}
.y9d{bottom:207.100000pt;}
.y27{bottom:207.581333pt;}
.y73{bottom:211.686667pt;}
.ye8{bottom:216.158667pt;}
.yc3{bottom:217.593333pt;}
.y10c{bottom:220.298667pt;}
.y52{bottom:221.610667pt;}
.y9c{bottom:223.041333pt;}
.y26{bottom:223.521333pt;}
.y72{bottom:227.628000pt;}
.y9b{bottom:238.981333pt;}
.y25{bottom:239.461333pt;}
.yc2{bottom:244.160000pt;}
.y10b{bottom:246.865333pt;}
.ye7{bottom:252.385333pt;}
.y9a{bottom:254.921333pt;}
.y24{bottom:255.402667pt;}
.y71{bottom:256.850667pt;}
.yc1{bottom:260.101333pt;}
.y10a{bottom:262.806667pt;}
.y51{bottom:265.240000pt;}
.ye6{bottom:268.325333pt;}
.y23{bottom:271.342667pt;}
.y70{bottom:272.792000pt;}
.y109{bottom:278.746667pt;}
.y99{bottom:279.438667pt;}
.y50{bottom:281.180000pt;}
.yc0{bottom:286.668000pt;}
.y22{bottom:287.282667pt;}
.ye5{bottom:292.010667pt;}
.y4f{bottom:297.121333pt;}
.y6f{bottom:302.014667pt;}
.y21{bottom:303.222667pt;}
.y108{bottom:305.313333pt;}
.y4e{bottom:313.061333pt;}
.ybf{bottom:313.234667pt;}
.ye4{bottom:316.362667pt;}
.y98{bottom:316.566667pt;}
.y20{bottom:319.162667pt;}
.y107{bottom:321.253333pt;}
.y6e{bottom:326.532000pt;}
.y4d{bottom:329.001333pt;}
.y97{bottom:332.506667pt;}
.y1f{bottom:335.102667pt;}
.ybe{bottom:339.801333pt;}
.ye3{bottom:340.713333pt;}
.y106{bottom:347.821333pt;}
.y1e{bottom:351.044000pt;}
.ybd{bottom:355.742667pt;}
.ye2{bottom:356.654667pt;}
.y96{bottom:361.598667pt;}
.y4c{bottom:363.230667pt;}
.y6d{bottom:363.712000pt;}
.y105{bottom:363.761333pt;}
.y1d{bottom:366.984000pt;}
.y4b{bottom:379.172000pt;}
.y6c{bottom:379.652000pt;}
.y104{bottom:379.701333pt;}
.ye1{bottom:380.340000pt;}
.ybc{bottom:382.309333pt;}
.y1c{bottom:382.924000pt;}
.y4a{bottom:395.112000pt;}
.ybb{bottom:398.249333pt;}
.y1b{bottom:398.864000pt;}
.ye0{bottom:404.856000pt;}
.y95{bottom:405.469333pt;}
.y103{bottom:406.268000pt;}
.y6b{bottom:408.876000pt;}
.yba{bottom:414.189333pt;}
.y1a{bottom:414.804000pt;}
.y94{bottom:421.409333pt;}
.y102{bottom:422.208000pt;}
.y49{bottom:429.341333pt;}
.yb9{bottom:430.129333pt;}
.y19{bottom:430.745333pt;}
.y6a{bottom:435.444000pt;}
.y93{bottom:437.349333pt;}
.ydf{bottom:441.082667pt;}
.y48{bottom:445.281333pt;}
.yb8{bottom:446.070667pt;}
.y101{bottom:451.300000pt;}
.y92{bottom:453.290667pt;}
.y69{bottom:456.697333pt;}
.y18{bottom:459.836000pt;}
.y47{bottom:461.222667pt;}
.yb7{bottom:462.010667pt;}
.yde{bottom:465.434667pt;}
.y46{bottom:477.162667pt;}
.y91{bottom:477.806667pt;}
.y68{bottom:477.950667pt;}
.yb6{bottom:486.528000pt;}
.ydd{bottom:489.786667pt;}
.y100{bottom:495.222667pt;}
.y17{bottom:502.957333pt;}
.y67{bottom:504.517333pt;}
.y90{bottom:504.981333pt;}
.yff{bottom:511.162667pt;}
.y45{bottom:511.392000pt;}
.ydc{bottom:514.138667pt;}
.y16{bottom:517.569333pt;}
.yb5{bottom:523.708000pt;}
.yfe{bottom:527.102667pt;}
.y44{bottom:527.332000pt;}
.ydb{bottom:530.078667pt;}
.y66{bottom:531.085333pt;}
.y15{bottom:532.181333pt;}
.yb4{bottom:539.648000pt;}
.yfd{bottom:543.044000pt;}
.y43{bottom:543.273333pt;}
.y14{bottom:546.793333pt;}
.y8f{bottom:547.173333pt;}
.y65{bottom:552.338667pt;}
.yda{bottom:553.764000pt;}
.yb3{bottom:555.588000pt;}
.yfc{bottom:558.984000pt;}
.y42{bottom:559.213333pt;}
.y13{bottom:561.405333pt;}
.y64{bottom:573.592000pt;}
.yfb{bottom:574.924000pt;}
.y41{bottom:575.153333pt;}
.y12{bottom:576.017333pt;}
.yd9{bottom:578.281333pt;}
.y8e{bottom:579.065333pt;}
.yb2{bottom:582.154667pt;}
.y11{bottom:590.629333pt;}
.yfa{bottom:590.864000pt;}
.y63{bottom:594.845333pt;}
.y8d{bottom:595.005333pt;}
.y10{bottom:605.241333pt;}
.yb1{bottom:608.722667pt;}
.y40{bottom:609.382667pt;}
.yd8{bottom:610.029333pt;}
.y8c{bottom:610.945333pt;}
.yf9{bottom:617.430667pt;}
.yf{bottom:619.852000pt;}
.y62{bottom:621.412000pt;}
.y3f{bottom:625.324000pt;}
.y8b{bottom:626.886667pt;}
.yf8{bottom:633.372000pt;}
.ye{bottom:634.464000pt;}
.yb0{bottom:635.289333pt;}
.y3e{bottom:641.264000pt;}
.y61{bottom:642.666667pt;}
.yd{bottom:649.076000pt;}
.y8a{bottom:649.494667pt;}
.yaf{bottom:651.229333pt;}
.yd7{bottom:652.998667pt;}
.y3d{bottom:657.204000pt;}
.y60{bottom:658.606667pt;}
.yf7{bottom:659.938667pt;}
.yc{bottom:663.688000pt;}
.yd6{bottom:668.938667pt;}
.yf6{bottom:675.878667pt;}
.yae{bottom:677.796000pt;}
.yb{bottom:678.300000pt;}
.yd5{bottom:684.878667pt;}
.y5f{bottom:687.830667pt;}
.y89{bottom:690.416000pt;}
.y3c{bottom:691.433333pt;}
.ya{bottom:692.912000pt;}
.yad{bottom:693.736000pt;}
.yd4{bottom:700.818667pt;}
.yf5{bottom:702.445333pt;}
.y88{bottom:706.356000pt;}
.y3b{bottom:707.374667pt;}
.y9{bottom:707.524000pt;}
.y5e{bottom:712.346667pt;}
.yac{bottom:720.304000pt;}
.y8{bottom:722.136000pt;}
.y87{bottom:722.296000pt;}
.yd3{bottom:722.954667pt;}
.y3a{bottom:723.314667pt;}
.yf4{bottom:729.013333pt;}
.yab{bottom:736.244000pt;}
.y7{bottom:736.748000pt;}
.y86{bottom:738.236000pt;}
.y39{bottom:739.254667pt;}
.yf3{bottom:744.953333pt;}
.yd2{bottom:747.306667pt;}
.y5d{bottom:749.528000pt;}
.yaa{bottom:752.184000pt;}
.y6{bottom:752.917333pt;}
.y85{bottom:754.177333pt;}
.y5c{bottom:765.468000pt;}
.ya9{bottom:768.124000pt;}
.y38{bottom:768.346667pt;}
.y84{bottom:770.117333pt;}
.yf2{bottom:771.520000pt;}
.yd1{bottom:771.658667pt;}
.ya8{bottom:784.064000pt;}
.y83{bottom:786.057333pt;}
.yd0{bottom:787.598667pt;}
.y5b{bottom:794.690667pt;}
.y5{bottom:796.624000pt;}
.ya7{bottom:800.005333pt;}
.y82{bottom:801.997333pt;}
.yf1{bottom:806.044000pt;}
.ycf{bottom:811.950667pt;}
.y37{bottom:811.976000pt;}
.y4{bottom:815.221333pt;}
.y81{bottom:817.937333pt;}
.yf0{bottom:821.984000pt;}
.y5a{bottom:823.914667pt;}
.ya6{bottom:824.521333pt;}
.y3{bottom:833.817333pt;}
.y80{bottom:833.878667pt;}
.yce{bottom:836.302667pt;}
.y36{bottom:837.861333pt;}
.yef{bottom:837.924000pt;}
.y59{bottom:848.432000pt;}
.y7f{bottom:849.818667pt;}
.yee{bottom:853.864000pt;}
.ycd{bottom:858.438667pt;}
.ya5{bottom:861.701333pt;}
.y35{bottom:863.746667pt;}
.y7e{bottom:865.758667pt;}
.yed{bottom:869.804000pt;}
.y2{bottom:872.334667pt;}
.ycc{bottom:874.378667pt;}
.ya4{bottom:877.642667pt;}
.y34{bottom:879.686667pt;}
.y7d{bottom:881.698667pt;}
.y58{bottom:885.612000pt;}
.yec{bottom:885.744000pt;}
.ycb{bottom:890.318667pt;}
.ya3{bottom:893.582667pt;}
.y1{bottom:896.245333pt;}
.y7c{bottom:897.638667pt;}
.y57{bottom:901.552000pt;}
.yeb{bottom:901.685333pt;}
.y33{bottom:905.572000pt;}
.yca{bottom:906.258667pt;}
.y7b{bottom:913.578667pt;}
.y56{bottom:917.493333pt;}
.yea{bottom:917.625333pt;}
.ya2{bottom:920.149333pt;}
.y32{bottom:921.512000pt;}
.yc9{bottom:922.200000pt;}
.y7a{bottom:929.520000pt;}
.y31{bottom:946.716000pt;}
.y79{bottom:947.113333pt;}
.y30{bottom:997.990667pt;}
.h4{height:33.522381pt;}
.h5{height:35.913421pt;}
.h9{height:36.981171pt;}
.h7{height:37.512510pt;}
.h3{height:39.404339pt;}
.h6{height:39.903534pt;}
.h2{height:45.015313pt;}
.h8{height:47.884561pt;}
.h1{height:53.712173pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:144.000000pt;}
.x12{left:145.512000pt;}
.x11{left:151.156000pt;}
.x1{left:156.257333pt;}
.x15{left:157.280000pt;}
.xd{left:160.237333pt;}
.xa{left:163.925333pt;}
.x8{left:177.209333pt;}
.x13{left:187.785333pt;}
.xe{left:189.461333pt;}
.xf{left:193.150667pt;}
.x7{left:195.634667pt;}
.x10{left:206.432000pt;}
.x14{left:232.036000pt;}
.x4{left:260.154667pt;}
.x2{left:285.785333pt;}
.x5{left:305.493333pt;}
.xc{left:338.318667pt;}
.x3{left:345.109333pt;}
.x6{left:380.948000pt;}
.xb{left:404.680000pt;}
}




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