
    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_dfddb37a267988914f3f1f12.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_233e5533006a2421f56e6474.woff')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_44280b4c99dde22c38f66d5a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_8fdf27eccf68da123075c5a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.717000;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_96a50469551228d3a1937667.woff')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_c58adb1187e2b93f2ad54526.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_1117f3a448a56e861758601c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7a1b9b1b81a843eab2351517.woff')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_a618716090719b4efd081630.woff')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_f20520971f96f00e19393424.woff')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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_a79d48dedcf00c644881836b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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_3518005271cedabef77cb69e.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8da5faac384799bb1ca811d6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.429000;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_065320bf0f5574fede84b86b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3d0d43685fd6ae212285bcde.woff')format("woff");}.fff{font-family:fff;line-height:1.005371;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_08a89796487604b949c3c897.woff')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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_eb711a0e5403c95866eb2331.woff')format("woff");}.ff11{font-family:ff11;line-height:0.881836;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);}
.v2{vertical-align:-8.970000px;}
.v3{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.836302px;}
.v5{vertical-align:10.428000px;}
.v1{vertical-align:13.692000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001854px;}
.ls8{letter-spacing:0.002814px;}
.lsc{letter-spacing:2.985432px;}
.lsb{letter-spacing:2.985642px;}
.lse{letter-spacing:2.986074px;}
.lsa{letter-spacing:2.986284px;}
.ls6{letter-spacing:2.987065px;}
.ls0{letter-spacing:2.988721px;}
.ls9{letter-spacing:2.988900px;}
.ls2{letter-spacing:2.989842px;}
.ls3{letter-spacing:18.559500px;}
.ls4{letter-spacing:21.547842px;}
.ls5{letter-spacing:23.905842px;}
.lsd{letter-spacing:35.868707px;}
.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;}
}
.wse2{word-spacing:-18.547670px;}
.wsf4{word-spacing:-17.933400px;}
.ws6{word-spacing:-16.438500px;}
.ws48{word-spacing:-15.118034px;}
.ws9{word-spacing:-14.944500px;}
.ws5f{word-spacing:-11.955000px;}
.wse3{word-spacing:-8.037324px;}
.ws1d{word-spacing:-6.329264px;}
.ws10b{word-spacing:-2.663064px;}
.ws3f{word-spacing:-0.956149px;}
.ws108{word-spacing:-0.621756px;}
.ws31{word-spacing:-0.597900px;}
.ws9e{word-spacing:-0.597780px;}
.ws11a{word-spacing:-0.573744px;}
.wsb{word-spacing:-0.484164px;}
.wsed{word-spacing:-0.358668px;}
.ws80{word-spacing:-0.299129px;}
.ws20{word-spacing:-0.239112px;}
.wsb0{word-spacing:-0.179095px;}
.ws51{word-spacing:-0.059778px;}
.wsd6{word-spacing:-0.059718px;}
.ws5b{word-spacing:-0.047820px;}
.ws55{word-spacing:-0.041844px;}
.ws5c{word-spacing:-0.035868px;}
.ws49{word-spacing:0.000000px;}
.ws6b{word-spacing:0.239112px;}
.wse6{word-spacing:0.418446px;}
.wsc2{word-spacing:0.477925px;}
.wsa8{word-spacing:0.478523px;}
.ws4e{word-spacing:0.597900px;}
.ws15{word-spacing:0.645552px;}
.ws105{word-spacing:0.669432px;}
.ws8c{word-spacing:0.777114px;}
.ws1e{word-spacing:0.836713px;}
.ws72{word-spacing:0.896670px;}
.ws123{word-spacing:0.956257px;}
.ws104{word-spacing:1.004268px;}
.ws2e{word-spacing:1.016166px;}
.ws40{word-spacing:1.076124px;}
.ws87{word-spacing:1.195560px;}
.wsfd{word-spacing:1.195643px;}
.wsfe{word-spacing:1.386828px;}
.wsa3{word-spacing:1.434373px;}
.wsad{word-spacing:1.613767px;}
.ws7f{word-spacing:1.614006px;}
.ws25{word-spacing:1.673784px;}
.ws11b{word-spacing:1.673843px;}
.ws11c{word-spacing:1.721855px;}
.wsc0{word-spacing:1.853178px;}
.wsc4{word-spacing:1.913195px;}
.ws91{word-spacing:2.032452px;}
.ws101{word-spacing:2.056021px;}
.wsc5{word-spacing:2.091991px;}
.wsa2{word-spacing:2.211965px;}
.ws2b{word-spacing:2.271385px;}
.ws17{word-spacing:2.366916px;}
.wse1{word-spacing:2.450898px;}
.wse{word-spacing:2.474616px;}
.wsc8{word-spacing:2.630232px;}
.ws3b{word-spacing:2.690189px;}
.wsf6{word-spacing:2.869404px;}
.ws2a{word-spacing:2.929002px;}
.ws113{word-spacing:2.965031px;}
.ws122{word-spacing:2.965212px;}
.ws86{word-spacing:2.988900px;}
.wsaf{word-spacing:3.108396px;}
.ws8f{word-spacing:3.168234px;}
.ws8d{word-spacing:3.287850px;}
.ws18{word-spacing:3.335244px;}
.wse0{word-spacing:3.407346px;}
.ws109{word-spacing:3.443231px;}
.wse8{word-spacing:3.467124px;}
.ws33{word-spacing:3.467244px;}
.ws10e{word-spacing:3.490621px;}
.ws102{word-spacing:3.538632px;}
.ws13{word-spacing:3.604332px;}
.ws53{word-spacing:3.609426px;}
.ws114{word-spacing:3.634607px;}
.ws56{word-spacing:3.646458px;}
.wsd3{word-spacing:3.706057px;}
.ws9d{word-spacing:3.706236px;}
.ws41{word-spacing:3.766074px;}
.wsf9{word-spacing:3.825600px;}
.ws7b{word-spacing:3.945348px;}
.wsb3{word-spacing:3.945468px;}
.wsfa{word-spacing:4.064700px;}
.wsfb{word-spacing:4.064796px;}
.ws35{word-spacing:4.064844px;}
.wsda{word-spacing:4.124861px;}
.wscf{word-spacing:4.184281px;}
.ws65{word-spacing:4.244298px;}
.ws12{word-spacing:4.249884px;}
.ws71{word-spacing:4.363674px;}
.wsb1{word-spacing:4.423692px;}
.ws10c{word-spacing:4.542996px;}
.ws32{word-spacing:4.662505px;}
.ws10f{word-spacing:4.781040px;}
.wsff{word-spacing:4.781809px;}
.ws5a{word-spacing:4.782000px;}
.wsca{word-spacing:4.782479px;}
.ws98{word-spacing:4.901916px;}
.ws4d{word-spacing:4.961873px;}
.wsdc{word-spacing:5.021352px;}
.ws3d{word-spacing:5.140729px;}
.ws19{word-spacing:5.379600px;}
.ws2d{word-spacing:5.440097px;}
.ws29{word-spacing:5.499516px;}
.wsae{word-spacing:5.559533px;}
.ws11d{word-spacing:5.594797px;}
.wsf1{word-spacing:5.678910px;}
.ws106{word-spacing:5.765040px;}
.ws107{word-spacing:5.786172px;}
.wsc1{word-spacing:5.798346px;}
.ws50{word-spacing:5.917723px;}
.ws93{word-spacing:5.920452px;}
.ws5e{word-spacing:5.929584px;}
.ws94{word-spacing:5.953583px;}
.ws8{word-spacing:5.977740px;}
.ws7{word-spacing:5.977800px;}
.ws52{word-spacing:6.097117px;}
.ws118{word-spacing:6.264372px;}
.ws21{word-spacing:6.276570px;}
.ws2f{word-spacing:6.396545px;}
.ws43{word-spacing:6.515981px;}
.wsd2{word-spacing:6.575341px;}
.ws5{word-spacing:6.575400px;}
.ws99{word-spacing:6.635358px;}
.ws4f{word-spacing:6.695375px;}
.ws1c{word-spacing:6.724500px;}
.wscb{word-spacing:6.754794px;}
.ws116{word-spacing:6.790583px;}
.wsd0{word-spacing:6.814752px;}
.ws6c{word-spacing:6.874171px;}
.ws57{word-spacing:6.934248px;}
.ws10d{word-spacing:6.981959px;}
.wsa9{word-spacing:7.113582px;}
.wsdb{word-spacing:7.232959px;}
.ws9c{word-spacing:7.292916px;}
.wsc6{word-spacing:7.292976px;}
.ws100{word-spacing:7.364184px;}
.ws76{word-spacing:7.412412px;}
.ws73{word-spacing:7.472370px;}
.ws81{word-spacing:7.532028px;}
.ws9b{word-spacing:7.591806px;}
.ws7c{word-spacing:7.711183px;}
.wsf3{word-spacing:7.711362px;}
.ws6e{word-spacing:7.771200px;}
.ws74{word-spacing:7.830918px;}
.ws39{word-spacing:7.831217px;}
.wsef{word-spacing:7.890636px;}
.ws59{word-spacing:7.950474px;}
.ws58{word-spacing:7.950594px;}
.ws22{word-spacing:8.010013px;}
.ws82{word-spacing:8.070030px;}
.ws4b{word-spacing:8.130047px;}
.wsd1{word-spacing:8.189407px;}
.ws69{word-spacing:8.233260px;}
.wscd{word-spacing:8.249424px;}
.ws129{word-spacing:8.272573px;}
.wsc9{word-spacing:8.308843px;}
.ws8e{word-spacing:8.309142px;}
.wsb2{word-spacing:8.368860px;}
.ws14{word-spacing:8.392176px;}
.ws128{word-spacing:8.463949px;}
.ws119{word-spacing:8.511960px;}
.ws3c{word-spacing:8.548254px;}
.ws88{word-spacing:8.608032px;}
.ws89{word-spacing:8.608271px;}
.wsd7{word-spacing:8.667631px;}
.ws7e{word-spacing:8.727588px;}
.ws34{word-spacing:8.727648px;}
.wsb7{word-spacing:8.847024px;}
.ws1f{word-spacing:8.907042px;}
.wse9{word-spacing:9.086256px;}
.wsbe{word-spacing:9.205872px;}
.wsbb{word-spacing:9.265889px;}
.ws10a{word-spacing:9.276937px;}
.ws11{word-spacing:9.306762px;}
.ws70{word-spacing:9.325248px;}
.ws3a{word-spacing:9.444685px;}
.wsf2{word-spacing:9.504702px;}
.ws83{word-spacing:9.564659px;}
.wsec{word-spacing:9.923148px;}
.wsa1{word-spacing:9.982926px;}
.wsea{word-spacing:10.222038px;}
.ws6f{word-spacing:10.281696px;}
.ws37{word-spacing:10.341714px;}
.wsf0{word-spacing:10.461090px;}
.wsb4{word-spacing:10.520510px;}
.ws10{word-spacing:10.705404px;}
.ws64{word-spacing:10.879357px;}
.ws4c{word-spacing:10.939314px;}
.ws47{word-spacing:10.999331px;}
.wsf{word-spacing:11.028180px;}
.ws26{word-spacing:11.058751px;}
.ws62{word-spacing:11.118708px;}
.ws115{word-spacing:11.142347px;}
.ws121{word-spacing:11.189737px;}
.ws124{word-spacing:11.285137px;}
.wsd5{word-spacing:11.298162px;}
.ws112{word-spacing:11.381112px;}
.wsd{word-spacing:11.458548px;}
.ws110{word-spacing:11.524524px;}
.wsc{word-spacing:11.727582px;}
.ws111{word-spacing:11.811301px;}
.ws6a{word-spacing:11.895762px;}
.ws68{word-spacing:11.895822px;}
.ws5d{word-spacing:11.955600px;}
.ws96{word-spacing:12.075156px;}
.ws85{word-spacing:12.313969px;}
.wsdf{word-spacing:12.374046px;}
.ws9f{word-spacing:12.433824px;}
.ws28{word-spacing:12.613397px;}
.ws103{word-spacing:12.672300px;}
.ws44{word-spacing:12.672816px;}
.ws8a{word-spacing:12.732714px;}
.ws75{word-spacing:12.852210px;}
.ws125{word-spacing:12.899664px;}
.ws127{word-spacing:12.911113px;}
.ws126{word-spacing:12.911735px;}
.wsbf{word-spacing:12.912227px;}
.wsa6{word-spacing:13.031604px;}
.ws16{word-spacing:13.126224px;}
.ws3{word-spacing:13.246188px;}
.ws2{word-spacing:13.246236px;}
.ws30{word-spacing:13.330434px;}
.ws117{word-spacing:13.389313px;}
.ws7a{word-spacing:13.509828px;}
.wseb{word-spacing:13.569606px;}
.wsd4{word-spacing:13.749239px;}
.ws77{word-spacing:13.808658px;}
.wsd9{word-spacing:13.868675px;}
.ws42{word-spacing:13.928035px;}
.wsdd{word-spacing:13.988052px;}
.ws63{word-spacing:14.286882px;}
.ws4{word-spacing:14.346000px;}
.wsf8{word-spacing:14.346302px;}
.wsf5{word-spacing:14.346720px;}
.ws4a{word-spacing:14.346899px;}
.ws23{word-spacing:14.406259px;}
.ws7d{word-spacing:14.466276px;}
.ws95{word-spacing:14.526293px;}
.wsa7{word-spacing:14.585712px;}
.wsf7{word-spacing:14.585832px;}
.ws3e{word-spacing:14.705089px;}
.ws38{word-spacing:14.765106px;}
.wsee{word-spacing:14.825064px;}
.wsbc{word-spacing:14.884483px;}
.ws0{word-spacing:14.901115px;}
.ws1{word-spacing:14.901761px;}
.ws2c{word-spacing:15.123894px;}
.ws60{word-spacing:15.183612px;}
.ws36{word-spacing:15.183911px;}
.ws66{word-spacing:15.721554px;}
.wsb5{word-spacing:15.841529px;}
.ws46{word-spacing:16.020325px;}
.ws97{word-spacing:16.080282px;}
.ws78{word-spacing:16.140060px;}
.wsba{word-spacing:16.379172px;}
.ws27{word-spacing:17.036790px;}
.wsa4{word-spacing:17.634390px;}
.ws6d{word-spacing:17.694408px;}
.ws45{word-spacing:17.933221px;}
.ws92{word-spacing:17.933400px;}
.ws67{word-spacing:18.112614px;}
.ws79{word-spacing:18.292008px;}
.ws9a{word-spacing:18.590958px;}
.wse7{word-spacing:18.770232px;}
.ws90{word-spacing:18.770292px;}
.wse5{word-spacing:18.889669px;}
.wsc7{word-spacing:19.009045px;}
.wsce{word-spacing:19.069660px;}
.ws84{word-spacing:19.427850px;}
.ws61{word-spacing:19.547406px;}
.wsb8{word-spacing:19.607304px;}
.wscc{word-spacing:20.204904px;}
.wsfc{word-spacing:20.466960px;}
.ws24{word-spacing:20.503734px;}
.wsde{word-spacing:20.503854px;}
.wsaa{word-spacing:20.916426px;}
.wsa{word-spacing:20.926644px;}
.wsbd{word-spacing:21.101335px;}
.ws8b{word-spacing:21.340746px;}
.wsd8{word-spacing:21.460182px;}
.ws54{word-spacing:21.507840px;}
.wsc3{word-spacing:22.177817px;}
.wsb6{word-spacing:22.775418px;}
.wsb9{word-spacing:22.834837px;}
.wsac{word-spacing:23.014231px;}
.wsa0{word-spacing:23.432976px;}
.wsa5{word-spacing:23.492455px;}
.wsab{word-spacing:27.378204px;}
.ws120{word-spacing:28.788118px;}
.ws11f{word-spacing:28.821852px;}
.ws11e{word-spacing:30.413520px;}
.ws1b{word-spacing:64.017724px;}
.ws1a{word-spacing:77.466240px;}
.wse4{word-spacing:247.779843px;}
._12{margin-left:-70.191317px;}
._1{margin-left:-6.454444px;}
._5{margin-left:-5.260320px;}
._6{margin-left:-4.184460px;}
._15{margin-left:-3.159867px;}
._2{margin-left:-2.151613px;}
._7{margin-left:-1.135998px;}
._0{width:1.346406px;}
._3{width:2.985996px;}
._e{width:4.184580px;}
._4{width:5.488506px;}
._f{width:15.542280px;}
._9{width:17.394585px;}
._16{width:18.576098px;}
._b{width:20.862343px;}
._a{width:23.375111px;}
._11{width:24.915641px;}
._13{width:26.016343px;}
._8{width:29.889598px;}
._d{width:31.681945px;}
._10{width:37.361250px;}
._c{width:50.211000px;}
._14{width:458.095461px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.076481px;}
.fsb{font-size:30.912783px;}
.fs9{font-size:35.868000px;}
.fs8{font-size:41.844000px;}
.fs1{font-size:47.820000px;}
.fs0{font-size:53.796000px;}
.fs4{font-size:59.778000px;}
.fs7{font-size:60.472138px;}
.fs3{font-size:65.754000px;}
.fs6{font-size:66.231389px;}
.fs5{font-size:71.990640px;}
.fs2{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y54{bottom:3.659524px;}
.y11b{bottom:19.087730px;}
.y11a{bottom:27.405680px;}
.y119{bottom:36.778419px;}
.y114{bottom:50.316660px;}
.y113{bottom:51.906095px;}
.y53{bottom:55.492785px;}
.y52{bottom:57.712496px;}
.y112{bottom:62.402268px;}
.ya5{bottom:63.099000px;}
.y165{bottom:63.100500px;}
.y6{bottom:67.420500px;}
.y105{bottom:81.641304px;}
.y100{bottom:81.970019px;}
.y104{bottom:90.630220px;}
.y103{bottom:100.002959px;}
.y33{bottom:106.299000px;}
.y10f{bottom:123.215584px;}
.y32{bottom:124.231500px;}
.y10d{bottom:127.710284px;}
.y10e{bottom:132.204500px;}
.y102{bottom:134.671316px;}
.y31{bottom:142.164000px;}
.y101{bottom:144.715505px;}
.y50{bottom:146.715000px;}
.y107{bottom:160.048628px;}
.ya4{bottom:160.096500px;}
.y30{bottom:160.098000px;}
.y4f{bottom:169.198500px;}
.y106{bottom:169.476476px;}
.yfa{bottom:178.029000px;}
.y2f{bottom:178.030500px;}
.ya3{bottom:178.788000px;}
.y2e{bottom:195.339000px;}
.yf9{bottom:195.961500px;}
.y74{bottom:195.963000px;}
.y4e{bottom:196.276500px;}
.y10c{bottom:196.306420px;}
.ya2{bottom:196.720500px;}
.y10b{bottom:205.295336px;}
.y118{bottom:207.474042px;}
.y164{bottom:209.463000px;}
.y2d{bottom:213.273000px;}
.y73{bottom:213.895500px;}
.y4d{bottom:214.209000px;}
.ya1{bottom:214.654500px;}
.y117{bottom:217.518231px;}
.y163{bottom:222.912000px;}
.y2c{bottom:231.205500px;}
.y72{bottom:231.828000px;}
.y4c{bottom:232.141500px;}
.ya0{bottom:232.587000px;}
.y111{bottom:235.359260px;}
.y162{bottom:236.361000px;}
.y110{bottom:244.731999px;}
.y2b{bottom:249.138000px;}
.y71{bottom:249.688500px;}
.yf8{bottom:249.760500px;}
.y161{bottom:249.811500px;}
.y4b{bottom:250.074000px;}
.y9f{bottom:250.519500px;}
.yd0{bottom:252.555000px;}
.y116{bottom:255.954730px;}
.y160{bottom:263.260500px;}
.y115{bottom:265.327469px;}
.y2a{bottom:267.070500px;}
.y70{bottom:267.622500px;}
.yf7{bottom:267.693000px;}
.y123{bottom:267.694500px;}
.y4a{bottom:268.008000px;}
.y9e{bottom:268.452000px;}
.ycf{bottom:270.489000px;}
.y10a{bottom:272.631235px;}
.y15f{bottom:276.709500px;}
.y29{bottom:285.003000px;}
.y6f{bottom:285.555000px;}
.yf6{bottom:285.625500px;}
.y122{bottom:285.627000px;}
.y49{bottom:285.940500px;}
.y9d{bottom:286.384500px;}
.yce{bottom:288.421500px;}
.y15e{bottom:290.160000px;}
.y109{bottom:301.242527px;}
.y28{bottom:302.937000px;}
.y6e{bottom:303.487500px;}
.yf5{bottom:303.558000px;}
.y121{bottom:303.559500px;}
.y15d{bottom:303.609000px;}
.y48{bottom:303.873000px;}
.y9c{bottom:304.317000px;}
.ycd{bottom:306.354000px;}
.y108{bottom:310.670375px;}
.y15c{bottom:317.059500px;}
.y27{bottom:320.869500px;}
.y6d{bottom:321.420000px;}
.yf4{bottom:321.492000px;}
.y47{bottom:321.649500px;}
.y9b{bottom:322.251000px;}
.ycc{bottom:324.286500px;}
.y15b{bottom:330.508500px;}
.y26{bottom:338.802000px;}
.y6c{bottom:339.352500px;}
.yf3{bottom:339.424500px;}
.y46{bottom:339.582000px;}
.y9a{bottom:340.183500px;}
.ycb{bottom:342.219000px;}
.y15a{bottom:343.957500px;}
.y25{bottom:356.734500px;}
.y6b{bottom:357.213000px;}
.yf2{bottom:357.357000px;}
.y159{bottom:357.408000px;}
.y45{bottom:357.514500px;}
.y99{bottom:358.116000px;}
.yca{bottom:360.151500px;}
.y158{bottom:370.857000px;}
.y24{bottom:374.667000px;}
.y6a{bottom:375.147000px;}
.yf1{bottom:375.289500px;}
.y120{bottom:375.291000px;}
.y44{bottom:375.447000px;}
.y98{bottom:376.048500px;}
.yc9{bottom:380.880000px;}
.y157{bottom:384.306000px;}
.y23{bottom:392.599500px;}
.y69{bottom:393.079500px;}
.yf0{bottom:393.222000px;}
.y11f{bottom:393.223500px;}
.y43{bottom:393.379500px;}
.y156{bottom:397.756500px;}
.yc8{bottom:398.812500px;}
.y97{bottom:403.240500px;}
.yef{bottom:411.156000px;}
.y155{bottom:411.205500px;}
.y42{bottom:411.312000px;}
.y22{bottom:414.616500px;}
.y68{bottom:415.647000px;}
.yc7{bottom:419.539500px;}
.y154{bottom:424.654500px;}
.yee{bottom:429.088500px;}
.y41{bottom:429.246000px;}
.yc6{bottom:437.472000px;}
.y96{bottom:437.707500px;}
.y153{bottom:438.105000px;}
.y21{bottom:443.052000px;}
.yed{bottom:447.021000px;}
.y40{bottom:447.178500px;}
.y152{bottom:451.554000px;}
.yc5{bottom:455.406000px;}
.y95{bottom:455.640000px;}
.y20{bottom:457.996500px;}
.y67{bottom:460.207500px;}
.yec{bottom:464.953500px;}
.y11e{bottom:464.955000px;}
.y151{bottom:465.004500px;}
.y3f{bottom:465.111000px;}
.yc4{bottom:473.338500px;}
.y94{bottom:473.574000px;}
.y1f{bottom:473.920500px;}
.y150{bottom:478.453500px;}
.yeb{bottom:482.886000px;}
.y3e{bottom:483.043500px;}
.y11d{bottom:487.402500px;}
.y1e{bottom:488.865000px;}
.yc3{bottom:491.271000px;}
.y93{bottom:491.506500px;}
.y14f{bottom:491.902500px;}
.yea{bottom:500.818500px;}
.y3d{bottom:500.976000px;}
.y1d{bottom:503.808000px;}
.y14e{bottom:505.353000px;}
.yc2{bottom:509.203500px;}
.y92{bottom:509.439000px;}
.y1c{bottom:518.752500px;}
.y14d{bottom:518.802000px;}
.y3c{bottom:518.908500px;}
.yc1{bottom:527.136000px;}
.y91{bottom:527.371500px;}
.y11c{bottom:530.722500px;}
.y14c{bottom:532.251000px;}
.y1b{bottom:533.697000px;}
.y3b{bottom:536.685000px;}
.yc0{bottom:545.068500px;}
.y90{bottom:545.304000px;}
.y14b{bottom:545.701500px;}
.y1a{bottom:548.640000px;}
.y3a{bottom:554.617500px;}
.yff{bottom:557.634035px;}
.y14a{bottom:559.150500px;}
.ybf{bottom:563.002500px;}
.y8f{bottom:563.236500px;}
.y19{bottom:563.584500px;}
.y39{bottom:572.550000px;}
.y149{bottom:572.601000px;}
.ye9{bottom:576.096000px;}
.y18{bottom:578.529000px;}
.ybe{bottom:580.935000px;}
.y8e{bottom:581.170500px;}
.y148{bottom:586.050000px;}
.y38{bottom:590.484000px;}
.y17{bottom:593.472000px;}
.ye8{bottom:594.028500px;}
.ybd{bottom:598.867500px;}
.y8d{bottom:599.103000px;}
.y147{bottom:599.499000px;}
.y16{bottom:608.416500px;}
.y146{bottom:612.949500px;}
.ybc{bottom:616.800000px;}
.y8c{bottom:617.035500px;}
.ye7{bottom:617.592000px;}
.y15{bottom:623.361000px;}
.y37{bottom:626.349000px;}
.y145{bottom:626.398500px;}
.ybb{bottom:634.732500px;}
.y8b{bottom:634.968000px;}
.y14{bottom:638.304000px;}
.y144{bottom:639.847500px;}
.y36{bottom:644.281500px;}
.ye6{bottom:647.854500px;}
.yba{bottom:652.665000px;}
.y8a{bottom:652.900500px;}
.y13{bottom:653.248500px;}
.y143{bottom:653.298000px;}
.y35{bottom:662.214000px;}
.ye5{bottom:665.787000px;}
.y142{bottom:666.747000px;}
.y12{bottom:668.191500px;}
.yb9{bottom:670.599000px;}
.y89{bottom:670.834500px;}
.y66{bottom:673.168500px;}
.y34{bottom:680.146500px;}
.y141{bottom:680.197500px;}
.y11{bottom:683.136000px;}
.ye4{bottom:687.001500px;}
.yb8{bottom:688.531500px;}
.y88{bottom:688.767000px;}
.y140{bottom:693.646500px;}
.y10{bottom:698.080500px;}
.ye3{bottom:704.934000px;}
.yb7{bottom:706.464000px;}
.y87{bottom:706.699500px;}
.y13f{bottom:707.095500px;}
.y13e{bottom:720.546000px;}
.ye2{bottom:722.866500px;}
.yb6{bottom:724.396500px;}
.y86{bottom:724.632000px;}
.y13d{bottom:733.995000px;}
.ye1{bottom:740.799000px;}
.yb5{bottom:742.329000px;}
.y85{bottom:742.564500px;}
.y13c{bottom:747.444000px;}
.ye0{bottom:758.733000px;}
.y84{bottom:760.497000px;}
.y13b{bottom:760.894500px;}
.yb4{bottom:763.057500px;}
.yf{bottom:773.232000px;}
.y13a{bottom:774.343500px;}
.y83{bottom:779.188500px;}
.yb3{bottom:780.990000px;}
.y139{bottom:787.794000px;}
.ye{bottom:791.724000px;}
.ydf{bottom:794.598000px;}
.y82{bottom:797.121000px;}
.yb2{bottom:798.922500px;}
.y138{bottom:801.243000px;}
.yd{bottom:810.439500px;}
.yde{bottom:812.530500px;}
.y137{bottom:814.692000px;}
.y81{bottom:815.055000px;}
.yb1{bottom:816.855000px;}
.y136{bottom:828.142500px;}
.y80{bottom:832.987500px;}
.ydd{bottom:833.745000px;}
.yb0{bottom:834.787500px;}
.y135{bottom:841.591500px;}
.yc{bottom:847.944000px;}
.y7f{bottom:850.920000px;}
.ydc{bottom:851.677500px;}
.y134{bottom:855.040500px;}
.yaf{bottom:855.427500px;}
.yb{bottom:866.437500px;}
.y133{bottom:868.491000px;}
.y7e{bottom:868.852500px;}
.ydb{bottom:869.611500px;}
.y65{bottom:869.683500px;}
.yae{bottom:873.361500px;}
.y132{bottom:881.940000px;}
.ya{bottom:884.929500px;}
.y7d{bottom:886.785000px;}
.yda{bottom:887.544000px;}
.y64{bottom:887.616000px;}
.yad{bottom:891.294000px;}
.y131{bottom:895.389000px;}
.y9{bottom:903.645000px;}
.y7c{bottom:904.717500px;}
.yd9{bottom:905.476500px;}
.y63{bottom:905.548500px;}
.y130{bottom:908.839500px;}
.yac{bottom:909.226500px;}
.y12f{bottom:922.288500px;}
.y7b{bottom:922.651500px;}
.yd8{bottom:923.409000px;}
.y62{bottom:923.481000px;}
.yab{bottom:927.159000px;}
.yfe{bottom:927.892500px;}
.y12e{bottom:935.739000px;}
.y7a{bottom:940.584000px;}
.yd7{bottom:941.341500px;}
.y61{bottom:941.415000px;}
.yaa{bottom:945.091500px;}
.yfd{bottom:945.826500px;}
.y12d{bottom:949.188000px;}
.y8{bottom:950.718000px;}
.y79{bottom:958.516500px;}
.yd6{bottom:959.274000px;}
.y60{bottom:959.347500px;}
.y12c{bottom:962.637000px;}
.ya9{bottom:963.024000px;}
.yfc{bottom:963.759000px;}
.y12b{bottom:976.087500px;}
.y78{bottom:976.449000px;}
.yd5{bottom:977.208000px;}
.y5f{bottom:977.280000px;}
.ya8{bottom:980.958000px;}
.yfb{bottom:986.206500px;}
.y7{bottom:992.562000px;}
.y77{bottom:994.381500px;}
.yd4{bottom:995.140500px;}
.y5e{bottom:995.212500px;}
.y12a{bottom:998.278500px;}
.ya7{bottom:998.890500px;}
.y76{bottom:1012.315500px;}
.yd3{bottom:1013.073000px;}
.y5d{bottom:1013.145000px;}
.ya6{bottom:1021.443000px;}
.y129{bottom:1026.298500px;}
.y75{bottom:1031.005500px;}
.y5c{bottom:1031.079000px;}
.y128{bottom:1044.231000px;}
.yd2{bottom:1048.938000px;}
.y5b{bottom:1048.939500px;}
.y127{bottom:1062.163500px;}
.yd1{bottom:1066.870500px;}
.y5a{bottom:1066.872000px;}
.y126{bottom:1080.097500px;}
.y59{bottom:1084.804500px;}
.y125{bottom:1098.030000px;}
.y58{bottom:1102.737000px;}
.y124{bottom:1115.962500px;}
.y57{bottom:1120.669500px;}
.y56{bottom:1138.602000px;}
.y5{bottom:1139.469000px;}
.y4{bottom:1154.413500px;}
.y55{bottom:1161.329008px;}
.y3{bottom:1169.356500px;}
.y2{bottom:1184.301000px;}
.y51{bottom:1192.284983px;}
.y1{bottom:1199.245500px;}
.h11{height:17.997660px;}
.h18{height:18.046580px;}
.h1a{height:23.493715px;}
.h19{height:23.652505px;}
.h1b{height:27.488807px;}
.h1c{height:27.933307px;}
.h1d{height:32.661060px;}
.h13{height:32.900160px;}
.h14{height:33.187080px;}
.h3{height:35.434620px;}
.h15{height:35.440620px;}
.ha{height:37.011648px;}
.hc{height:37.173036px;}
.hb{height:37.603404px;}
.h2{height:39.862836px;}
.he{height:40.828374px;}
.h8{height:41.127264px;}
.h16{height:41.306598px;}
.h9{height:41.421264px;}
.h7{height:41.427264px;}
.h12{height:41.485932px;}
.h1e{height:43.328160px;}
.h10{height:44.757931px;}
.h6{height:45.238752px;}
.h5{height:45.568752px;}
.hf{height:47.982043px;}
.hd{height:54.819264px;}
.h4{height:98.700480px;}
.h17{height:350.120573px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:23.996880px;}
.w4{width:334.814521px;}
.w2{width:892.383975px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:18.279477px;}
.x39{left:23.253714px;}
.x32{left:29.927120px;}
.x3b{left:57.373889px;}
.x3a{left:69.555695px;}
.x2d{left:77.201712px;}
.x1b{left:85.039500px;}
.x7{left:94.044000px;}
.x9{left:97.983000px;}
.x1a{left:99.984000px;}
.x38{left:101.908058px;}
.x19{left:114.927000px;}
.x2e{left:120.077802px;}
.x26{left:121.398000px;}
.x31{left:127.038834px;}
.x18{left:129.871500px;}
.x27{left:132.606000px;}
.x2f{left:136.315859px;}
.x30{left:138.644905px;}
.x37{left:139.659088px;}
.x28{left:147.696000px;}
.x3d{left:150.627000px;}
.x36{left:158.308853px;}
.x2c{left:159.665288px;}
.xa{left:173.862000px;}
.x24{left:186.531000px;}
.x1c{left:191.754000px;}
.x6{left:195.472500px;}
.x23{left:198.637500px;}
.x2b{left:200.472404px;}
.x13{left:202.065000px;}
.x3e{left:203.955000px;}
.xb{left:218.590500px;}
.x3c{left:222.903846px;}
.x35{left:248.281159px;}
.x34{left:269.164255px;}
.x8{left:290.461500px;}
.x1d{left:308.449500px;}
.xc{left:312.715500px;}
.xf{left:324.396000px;}
.x17{left:345.630000px;}
.x14{left:377.383500px;}
.x12{left:412.422000px;}
.x15{left:449.793000px;}
.x1e{left:455.422500px;}
.x41{left:461.400000px;}
.x1f{left:470.367000px;}
.x10{left:483.412500px;}
.x16{left:491.793000px;}
.x29{left:502.989000px;}
.x42{left:516.022500px;}
.x2a{left:518.079000px;}
.x25{left:525.480000px;}
.x11{left:536.568000px;}
.x3f{left:555.046500px;}
.x20{left:564.730500px;}
.x40{left:586.780500px;}
.x43{left:604.344000px;}
.x5{left:630.753000px;}
.x1{left:637.921500px;}
.x2{left:645.856500px;}
.xd{left:658.740000px;}
.x4{left:673.200000px;}
.x3{left:710.776500px;}
.xe{left:729.604500px;}
.x21{left:770.299848px;}
.x22{left:774.164700px;}
@media print{
.v2{vertical-align:-7.973333pt;}
.v3{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.410046pt;}
.v5{vertical-align:9.269333pt;}
.v1{vertical-align:12.170667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001648pt;}
.ls8{letter-spacing:0.002501pt;}
.lsc{letter-spacing:2.653717pt;}
.lsb{letter-spacing:2.653904pt;}
.lse{letter-spacing:2.654288pt;}
.lsa{letter-spacing:2.654475pt;}
.ls6{letter-spacing:2.655169pt;}
.ls0{letter-spacing:2.656641pt;}
.ls9{letter-spacing:2.656800pt;}
.ls2{letter-spacing:2.657637pt;}
.ls3{letter-spacing:16.497333pt;}
.ls4{letter-spacing:19.153637pt;}
.ls5{letter-spacing:21.249637pt;}
.lsd{letter-spacing:31.883295pt;}
.wse2{word-spacing:-16.486818pt;}
.wsf4{word-spacing:-15.940800pt;}
.ws6{word-spacing:-14.612000pt;}
.ws48{word-spacing:-13.438253pt;}
.ws9{word-spacing:-13.284000pt;}
.ws5f{word-spacing:-10.626667pt;}
.wse3{word-spacing:-7.144288pt;}
.ws1d{word-spacing:-5.626012pt;}
.ws10b{word-spacing:-2.367168pt;}
.ws3f{word-spacing:-0.849910pt;}
.ws108{word-spacing:-0.552672pt;}
.ws31{word-spacing:-0.531466pt;}
.ws9e{word-spacing:-0.531360pt;}
.ws11a{word-spacing:-0.509995pt;}
.wsb{word-spacing:-0.430368pt;}
.wsed{word-spacing:-0.318816pt;}
.ws80{word-spacing:-0.265893pt;}
.ws20{word-spacing:-0.212544pt;}
.wsb0{word-spacing:-0.159195pt;}
.ws51{word-spacing:-0.053136pt;}
.wsd6{word-spacing:-0.053083pt;}
.ws5b{word-spacing:-0.042507pt;}
.ws55{word-spacing:-0.037195pt;}
.ws5c{word-spacing:-0.031883pt;}
.ws49{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.212544pt;}
.wse6{word-spacing:0.371952pt;}
.wsc2{word-spacing:0.424822pt;}
.wsa8{word-spacing:0.425354pt;}
.ws4e{word-spacing:0.531466pt;}
.ws15{word-spacing:0.573824pt;}
.ws105{word-spacing:0.595051pt;}
.ws8c{word-spacing:0.690768pt;}
.ws1e{word-spacing:0.743745pt;}
.ws72{word-spacing:0.797040pt;}
.ws123{word-spacing:0.850006pt;}
.ws104{word-spacing:0.892683pt;}
.ws2e{word-spacing:0.903259pt;}
.ws40{word-spacing:0.956554pt;}
.ws87{word-spacing:1.062720pt;}
.wsfd{word-spacing:1.062794pt;}
.wsfe{word-spacing:1.232736pt;}
.wsa3{word-spacing:1.274998pt;}
.wsad{word-spacing:1.434459pt;}
.ws7f{word-spacing:1.434672pt;}
.ws25{word-spacing:1.487808pt;}
.ws11b{word-spacing:1.487861pt;}
.ws11c{word-spacing:1.530538pt;}
.wsc0{word-spacing:1.647269pt;}
.wsc4{word-spacing:1.700618pt;}
.ws91{word-spacing:1.806624pt;}
.ws101{word-spacing:1.827574pt;}
.wsc5{word-spacing:1.859547pt;}
.wsa2{word-spacing:1.966191pt;}
.ws2b{word-spacing:2.019009pt;}
.ws17{word-spacing:2.103926pt;}
.wse1{word-spacing:2.178576pt;}
.wse{word-spacing:2.199659pt;}
.wsc8{word-spacing:2.337984pt;}
.ws3b{word-spacing:2.391279pt;}
.wsf6{word-spacing:2.550581pt;}
.ws2a{word-spacing:2.603558pt;}
.ws113{word-spacing:2.635583pt;}
.ws122{word-spacing:2.635744pt;}
.ws86{word-spacing:2.656800pt;}
.wsaf{word-spacing:2.763019pt;}
.ws8f{word-spacing:2.816208pt;}
.ws8d{word-spacing:2.922533pt;}
.ws18{word-spacing:2.964662pt;}
.wse0{word-spacing:3.028752pt;}
.ws109{word-spacing:3.060650pt;}
.wse8{word-spacing:3.081888pt;}
.ws33{word-spacing:3.081994pt;}
.ws10e{word-spacing:3.102774pt;}
.ws102{word-spacing:3.145451pt;}
.ws13{word-spacing:3.203851pt;}
.ws53{word-spacing:3.208379pt;}
.ws114{word-spacing:3.230762pt;}
.ws56{word-spacing:3.241296pt;}
.wsd3{word-spacing:3.294273pt;}
.ws9d{word-spacing:3.294432pt;}
.ws41{word-spacing:3.347621pt;}
.wsf9{word-spacing:3.400533pt;}
.ws7b{word-spacing:3.506976pt;}
.wsb3{word-spacing:3.507082pt;}
.wsfa{word-spacing:3.613067pt;}
.wsfb{word-spacing:3.613152pt;}
.ws35{word-spacing:3.613195pt;}
.wsda{word-spacing:3.666543pt;}
.wscf{word-spacing:3.719361pt;}
.ws65{word-spacing:3.772709pt;}
.ws12{word-spacing:3.777675pt;}
.ws71{word-spacing:3.878822pt;}
.wsb1{word-spacing:3.932170pt;}
.ws10c{word-spacing:4.038218pt;}
.ws32{word-spacing:4.144449pt;}
.ws10f{word-spacing:4.249813pt;}
.wsff{word-spacing:4.250497pt;}
.ws5a{word-spacing:4.250667pt;}
.wsca{word-spacing:4.251093pt;}
.ws98{word-spacing:4.357258pt;}
.ws4d{word-spacing:4.410554pt;}
.wsdc{word-spacing:4.463424pt;}
.ws3d{word-spacing:4.569537pt;}
.ws19{word-spacing:4.781867pt;}
.ws2d{word-spacing:4.835642pt;}
.ws29{word-spacing:4.888459pt;}
.wsae{word-spacing:4.941807pt;}
.ws11d{word-spacing:4.973152pt;}
.wsf1{word-spacing:5.047920pt;}
.ws106{word-spacing:5.124480pt;}
.ws107{word-spacing:5.143264pt;}
.wsc1{word-spacing:5.154086pt;}
.ws50{word-spacing:5.260198pt;}
.ws93{word-spacing:5.262624pt;}
.ws5e{word-spacing:5.270742pt;}
.ws94{word-spacing:5.292074pt;}
.ws8{word-spacing:5.313547pt;}
.ws7{word-spacing:5.313600pt;}
.ws52{word-spacing:5.419659pt;}
.ws118{word-spacing:5.568331pt;}
.ws21{word-spacing:5.579174pt;}
.ws2f{word-spacing:5.685818pt;}
.ws43{word-spacing:5.791983pt;}
.wsd2{word-spacing:5.844747pt;}
.ws5{word-spacing:5.844800pt;}
.ws99{word-spacing:5.898096pt;}
.ws4f{word-spacing:5.951445pt;}
.ws1c{word-spacing:5.977333pt;}
.wscb{word-spacing:6.004262pt;}
.ws116{word-spacing:6.036074pt;}
.wsd0{word-spacing:6.057557pt;}
.ws6c{word-spacing:6.110374pt;}
.ws57{word-spacing:6.163776pt;}
.ws10d{word-spacing:6.206186pt;}
.wsa9{word-spacing:6.323184pt;}
.wsdb{word-spacing:6.429297pt;}
.ws9c{word-spacing:6.482592pt;}
.wsc6{word-spacing:6.482645pt;}
.ws100{word-spacing:6.545942pt;}
.ws76{word-spacing:6.588811pt;}
.ws73{word-spacing:6.642106pt;}
.ws81{word-spacing:6.695136pt;}
.ws9b{word-spacing:6.748272pt;}
.ws7c{word-spacing:6.854385pt;}
.wsf3{word-spacing:6.854544pt;}
.ws6e{word-spacing:6.907733pt;}
.ws74{word-spacing:6.960816pt;}
.ws39{word-spacing:6.961082pt;}
.wsef{word-spacing:7.013899pt;}
.ws59{word-spacing:7.067088pt;}
.ws58{word-spacing:7.067194pt;}
.ws22{word-spacing:7.120011pt;}
.ws82{word-spacing:7.173360pt;}
.ws4b{word-spacing:7.226709pt;}
.wsd1{word-spacing:7.279473pt;}
.ws69{word-spacing:7.318453pt;}
.wscd{word-spacing:7.332821pt;}
.ws129{word-spacing:7.353398pt;}
.wsc9{word-spacing:7.385638pt;}
.ws8e{word-spacing:7.385904pt;}
.wsb2{word-spacing:7.438987pt;}
.ws14{word-spacing:7.459712pt;}
.ws128{word-spacing:7.523510pt;}
.ws119{word-spacing:7.566187pt;}
.ws3c{word-spacing:7.598448pt;}
.ws88{word-spacing:7.651584pt;}
.ws89{word-spacing:7.651797pt;}
.wsd7{word-spacing:7.704561pt;}
.ws7e{word-spacing:7.757856pt;}
.ws34{word-spacing:7.757909pt;}
.wsb7{word-spacing:7.864022pt;}
.ws1f{word-spacing:7.917370pt;}
.wse9{word-spacing:8.076672pt;}
.wsbe{word-spacing:8.182997pt;}
.wsbb{word-spacing:8.236346pt;}
.ws10a{word-spacing:8.246166pt;}
.ws11{word-spacing:8.272677pt;}
.ws70{word-spacing:8.289110pt;}
.ws3a{word-spacing:8.395275pt;}
.wsf2{word-spacing:8.448624pt;}
.ws83{word-spacing:8.501919pt;}
.wsec{word-spacing:8.820576pt;}
.wsa1{word-spacing:8.873712pt;}
.wsea{word-spacing:9.086256pt;}
.ws6f{word-spacing:9.139286pt;}
.ws37{word-spacing:9.192634pt;}
.wsf0{word-spacing:9.298747pt;}
.wsb4{word-spacing:9.351564pt;}
.ws10{word-spacing:9.515915pt;}
.ws64{word-spacing:9.670539pt;}
.ws4c{word-spacing:9.723835pt;}
.ws47{word-spacing:9.777183pt;}
.wsf{word-spacing:9.802827pt;}
.ws26{word-spacing:9.830001pt;}
.ws62{word-spacing:9.883296pt;}
.ws115{word-spacing:9.904308pt;}
.ws121{word-spacing:9.946432pt;}
.ws124{word-spacing:10.031233pt;}
.wsd5{word-spacing:10.042810pt;}
.ws112{word-spacing:10.116544pt;}
.wsd{word-spacing:10.185376pt;}
.ws110{word-spacing:10.244022pt;}
.wsc{word-spacing:10.424517pt;}
.ws111{word-spacing:10.498934pt;}
.ws6a{word-spacing:10.574011pt;}
.ws68{word-spacing:10.574064pt;}
.ws5d{word-spacing:10.627200pt;}
.ws96{word-spacing:10.733472pt;}
.ws85{word-spacing:10.945750pt;}
.wsdf{word-spacing:10.999152pt;}
.ws9f{word-spacing:11.052288pt;}
.ws28{word-spacing:11.211909pt;}
.ws103{word-spacing:11.264267pt;}
.ws44{word-spacing:11.264726pt;}
.ws8a{word-spacing:11.317968pt;}
.ws75{word-spacing:11.424187pt;}
.ws125{word-spacing:11.466368pt;}
.ws127{word-spacing:11.476545pt;}
.ws126{word-spacing:11.477098pt;}
.wsbf{word-spacing:11.477535pt;}
.wsa6{word-spacing:11.583648pt;}
.ws16{word-spacing:11.667755pt;}
.ws3{word-spacing:11.774389pt;}
.ws2{word-spacing:11.774432pt;}
.ws30{word-spacing:11.849275pt;}
.ws117{word-spacing:11.901612pt;}
.ws7a{word-spacing:12.008736pt;}
.wseb{word-spacing:12.061872pt;}
.wsd4{word-spacing:12.221546pt;}
.ws77{word-spacing:12.274363pt;}
.wsd9{word-spacing:12.327711pt;}
.ws42{word-spacing:12.380475pt;}
.wsdd{word-spacing:12.433824pt;}
.ws63{word-spacing:12.699451pt;}
.ws4{word-spacing:12.752000pt;}
.wsf8{word-spacing:12.752268pt;}
.wsf5{word-spacing:12.752640pt;}
.ws4a{word-spacing:12.752799pt;}
.ws23{word-spacing:12.805563pt;}
.ws7d{word-spacing:12.858912pt;}
.ws95{word-spacing:12.912261pt;}
.wsa7{word-spacing:12.965078pt;}
.wsf7{word-spacing:12.965184pt;}
.ws3e{word-spacing:13.071190pt;}
.ws38{word-spacing:13.124539pt;}
.wsee{word-spacing:13.177834pt;}
.wsbc{word-spacing:13.230651pt;}
.ws0{word-spacing:13.245436pt;}
.ws1{word-spacing:13.246010pt;}
.ws2c{word-spacing:13.443461pt;}
.ws60{word-spacing:13.496544pt;}
.ws36{word-spacing:13.496810pt;}
.ws66{word-spacing:13.974715pt;}
.wsb5{word-spacing:14.081359pt;}
.ws46{word-spacing:14.240289pt;}
.ws97{word-spacing:14.293584pt;}
.ws78{word-spacing:14.346720pt;}
.wsba{word-spacing:14.559264pt;}
.ws27{word-spacing:15.143813pt;}
.wsa4{word-spacing:15.675014pt;}
.ws6d{word-spacing:15.728362pt;}
.ws45{word-spacing:15.940641pt;}
.ws92{word-spacing:15.940800pt;}
.ws67{word-spacing:16.100102pt;}
.ws79{word-spacing:16.259563pt;}
.ws9a{word-spacing:16.525296pt;}
.wse7{word-spacing:16.684651pt;}
.ws90{word-spacing:16.684704pt;}
.wse5{word-spacing:16.790817pt;}
.wsc7{word-spacing:16.896929pt;}
.wsce{word-spacing:16.950809pt;}
.ws84{word-spacing:17.269200pt;}
.ws61{word-spacing:17.375472pt;}
.wsb8{word-spacing:17.428714pt;}
.wscc{word-spacing:17.959915pt;}
.wsfc{word-spacing:18.192853pt;}
.ws24{word-spacing:18.225542pt;}
.wsde{word-spacing:18.225648pt;}
.wsaa{word-spacing:18.592379pt;}
.wsa{word-spacing:18.601461pt;}
.wsbd{word-spacing:18.756742pt;}
.ws8b{word-spacing:18.969552pt;}
.wsd8{word-spacing:19.075718pt;}
.ws54{word-spacing:19.118080pt;}
.wsc3{word-spacing:19.713615pt;}
.wsb6{word-spacing:20.244816pt;}
.wsb9{word-spacing:20.297633pt;}
.wsac{word-spacing:20.457094pt;}
.wsa0{word-spacing:20.829312pt;}
.wsa5{word-spacing:20.882182pt;}
.wsab{word-spacing:24.336182pt;}
.ws120{word-spacing:25.589438pt;}
.ws11f{word-spacing:25.619424pt;}
.ws11e{word-spacing:27.034240pt;}
.ws1b{word-spacing:56.904644pt;}
.ws1a{word-spacing:68.858880pt;}
.wse4{word-spacing:220.248749pt;}
._12{margin-left:-62.392282pt;}
._1{margin-left:-5.737284pt;}
._5{margin-left:-4.675840pt;}
._6{margin-left:-3.719520pt;}
._15{margin-left:-2.808771pt;}
._2{margin-left:-1.912545pt;}
._7{margin-left:-1.009776pt;}
._0{width:1.196806pt;}
._3{width:2.654219pt;}
._e{width:3.719626pt;}
._4{width:4.878672pt;}
._f{width:13.815360pt;}
._9{width:15.461853pt;}
._16{width:16.512087pt;}
._b{width:18.544305pt;}
._a{width:20.777876pt;}
._11{width:22.147237pt;}
._13{width:23.125639pt;}
._8{width:26.568531pt;}
._d{width:28.161729pt;}
._10{width:33.210000pt;}
._c{width:44.632000pt;}
._14{width:407.195965pt;}
.fsa{font-size:24.067983pt;}
.fsb{font-size:27.478029pt;}
.fs9{font-size:31.882667pt;}
.fs8{font-size:37.194667pt;}
.fs1{font-size:42.506667pt;}
.fs0{font-size:47.818667pt;}
.fs4{font-size:53.136000pt;}
.fs7{font-size:53.753011pt;}
.fs3{font-size:58.448000pt;}
.fs6{font-size:58.872346pt;}
.fs5{font-size:63.991680pt;}
.fs2{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.252910pt;}
.y11b{bottom:16.966871pt;}
.y11a{bottom:24.360604pt;}
.y119{bottom:32.691928pt;}
.y114{bottom:44.725920pt;}
.y113{bottom:46.138751pt;}
.y53{bottom:49.326920pt;}
.y52{bottom:51.299997pt;}
.y112{bottom:55.468683pt;}
.ya5{bottom:56.088000pt;}
.y165{bottom:56.089333pt;}
.y6{bottom:59.929333pt;}
.y105{bottom:72.570048pt;}
.y100{bottom:72.862239pt;}
.y104{bottom:80.560195pt;}
.y103{bottom:88.891519pt;}
.y33{bottom:94.488000pt;}
.y10f{bottom:109.524963pt;}
.y32{bottom:110.428000pt;}
.y10d{bottom:113.520252pt;}
.y10e{bottom:117.515111pt;}
.y102{bottom:119.707836pt;}
.y31{bottom:126.368000pt;}
.y101{bottom:128.636004pt;}
.y50{bottom:130.413333pt;}
.y107{bottom:142.265447pt;}
.ya4{bottom:142.308000pt;}
.y30{bottom:142.309333pt;}
.y4f{bottom:150.398667pt;}
.y106{bottom:150.645756pt;}
.yfa{bottom:158.248000pt;}
.y2f{bottom:158.249333pt;}
.ya3{bottom:158.922667pt;}
.y2e{bottom:173.634667pt;}
.yf9{bottom:174.188000pt;}
.y74{bottom:174.189333pt;}
.y4e{bottom:174.468000pt;}
.y10c{bottom:174.494595pt;}
.ya2{bottom:174.862667pt;}
.y10b{bottom:182.484743pt;}
.y118{bottom:184.421371pt;}
.y164{bottom:186.189333pt;}
.y2d{bottom:189.576000pt;}
.y73{bottom:190.129333pt;}
.y4d{bottom:190.408000pt;}
.ya1{bottom:190.804000pt;}
.y117{bottom:193.349539pt;}
.y163{bottom:198.144000pt;}
.y2c{bottom:205.516000pt;}
.y72{bottom:206.069333pt;}
.y4c{bottom:206.348000pt;}
.ya0{bottom:206.744000pt;}
.y111{bottom:209.208231pt;}
.y162{bottom:210.098667pt;}
.y110{bottom:217.539555pt;}
.y2b{bottom:221.456000pt;}
.y71{bottom:221.945333pt;}
.yf8{bottom:222.009333pt;}
.y161{bottom:222.054667pt;}
.y4b{bottom:222.288000pt;}
.y9f{bottom:222.684000pt;}
.yd0{bottom:224.493333pt;}
.y116{bottom:227.515315pt;}
.y160{bottom:234.009333pt;}
.y115{bottom:235.846639pt;}
.y2a{bottom:237.396000pt;}
.y70{bottom:237.886667pt;}
.yf7{bottom:237.949333pt;}
.y123{bottom:237.950667pt;}
.y4a{bottom:238.229333pt;}
.y9e{bottom:238.624000pt;}
.ycf{bottom:240.434667pt;}
.y10a{bottom:242.338876pt;}
.y15f{bottom:245.964000pt;}
.y29{bottom:253.336000pt;}
.y6f{bottom:253.826667pt;}
.yf6{bottom:253.889333pt;}
.y122{bottom:253.890667pt;}
.y49{bottom:254.169333pt;}
.y9d{bottom:254.564000pt;}
.yce{bottom:256.374667pt;}
.y15e{bottom:257.920000pt;}
.y109{bottom:267.771135pt;}
.y28{bottom:269.277333pt;}
.y6e{bottom:269.766667pt;}
.yf5{bottom:269.829333pt;}
.y121{bottom:269.830667pt;}
.y15d{bottom:269.874667pt;}
.y48{bottom:270.109333pt;}
.y9c{bottom:270.504000pt;}
.ycd{bottom:272.314667pt;}
.y108{bottom:276.151444pt;}
.y15c{bottom:281.830667pt;}
.y27{bottom:285.217333pt;}
.y6d{bottom:285.706667pt;}
.yf4{bottom:285.770667pt;}
.y47{bottom:285.910667pt;}
.y9b{bottom:286.445333pt;}
.ycc{bottom:288.254667pt;}
.y15b{bottom:293.785333pt;}
.y26{bottom:301.157333pt;}
.y6c{bottom:301.646667pt;}
.yf3{bottom:301.710667pt;}
.y46{bottom:301.850667pt;}
.y9a{bottom:302.385333pt;}
.ycb{bottom:304.194667pt;}
.y15a{bottom:305.740000pt;}
.y25{bottom:317.097333pt;}
.y6b{bottom:317.522667pt;}
.yf2{bottom:317.650667pt;}
.y159{bottom:317.696000pt;}
.y45{bottom:317.790667pt;}
.y99{bottom:318.325333pt;}
.yca{bottom:320.134667pt;}
.y158{bottom:329.650667pt;}
.y24{bottom:333.037333pt;}
.y6a{bottom:333.464000pt;}
.yf1{bottom:333.590667pt;}
.y120{bottom:333.592000pt;}
.y44{bottom:333.730667pt;}
.y98{bottom:334.265333pt;}
.yc9{bottom:338.560000pt;}
.y157{bottom:341.605333pt;}
.y23{bottom:348.977333pt;}
.y69{bottom:349.404000pt;}
.yf0{bottom:349.530667pt;}
.y11f{bottom:349.532000pt;}
.y43{bottom:349.670667pt;}
.y156{bottom:353.561333pt;}
.yc8{bottom:354.500000pt;}
.y97{bottom:358.436000pt;}
.yef{bottom:365.472000pt;}
.y155{bottom:365.516000pt;}
.y42{bottom:365.610667pt;}
.y22{bottom:368.548000pt;}
.y68{bottom:369.464000pt;}
.yc7{bottom:372.924000pt;}
.y154{bottom:377.470667pt;}
.yee{bottom:381.412000pt;}
.y41{bottom:381.552000pt;}
.yc6{bottom:388.864000pt;}
.y96{bottom:389.073333pt;}
.y153{bottom:389.426667pt;}
.y21{bottom:393.824000pt;}
.yed{bottom:397.352000pt;}
.y40{bottom:397.492000pt;}
.y152{bottom:401.381333pt;}
.yc5{bottom:404.805333pt;}
.y95{bottom:405.013333pt;}
.y20{bottom:407.108000pt;}
.y67{bottom:409.073333pt;}
.yec{bottom:413.292000pt;}
.y11e{bottom:413.293333pt;}
.y151{bottom:413.337333pt;}
.y3f{bottom:413.432000pt;}
.yc4{bottom:420.745333pt;}
.y94{bottom:420.954667pt;}
.y1f{bottom:421.262667pt;}
.y150{bottom:425.292000pt;}
.yeb{bottom:429.232000pt;}
.y3e{bottom:429.372000pt;}
.y11d{bottom:433.246667pt;}
.y1e{bottom:434.546667pt;}
.yc3{bottom:436.685333pt;}
.y93{bottom:436.894667pt;}
.y14f{bottom:437.246667pt;}
.yea{bottom:445.172000pt;}
.y3d{bottom:445.312000pt;}
.y1d{bottom:447.829333pt;}
.y14e{bottom:449.202667pt;}
.yc2{bottom:452.625333pt;}
.y92{bottom:452.834667pt;}
.y1c{bottom:461.113333pt;}
.y14d{bottom:461.157333pt;}
.y3c{bottom:461.252000pt;}
.yc1{bottom:468.565333pt;}
.y91{bottom:468.774667pt;}
.y11c{bottom:471.753333pt;}
.y14c{bottom:473.112000pt;}
.y1b{bottom:474.397333pt;}
.y3b{bottom:477.053333pt;}
.yc0{bottom:484.505333pt;}
.y90{bottom:484.714667pt;}
.y14b{bottom:485.068000pt;}
.y1a{bottom:487.680000pt;}
.y3a{bottom:492.993333pt;}
.yff{bottom:495.674698pt;}
.y14a{bottom:497.022667pt;}
.ybf{bottom:500.446667pt;}
.y8f{bottom:500.654667pt;}
.y19{bottom:500.964000pt;}
.y39{bottom:508.933333pt;}
.y149{bottom:508.978667pt;}
.ye9{bottom:512.085333pt;}
.y18{bottom:514.248000pt;}
.ybe{bottom:516.386667pt;}
.y8e{bottom:516.596000pt;}
.y148{bottom:520.933333pt;}
.y38{bottom:524.874667pt;}
.y17{bottom:527.530667pt;}
.ye8{bottom:528.025333pt;}
.ybd{bottom:532.326667pt;}
.y8d{bottom:532.536000pt;}
.y147{bottom:532.888000pt;}
.y16{bottom:540.814667pt;}
.y146{bottom:544.844000pt;}
.ybc{bottom:548.266667pt;}
.y8c{bottom:548.476000pt;}
.ye7{bottom:548.970667pt;}
.y15{bottom:554.098667pt;}
.y37{bottom:556.754667pt;}
.y145{bottom:556.798667pt;}
.ybb{bottom:564.206667pt;}
.y8b{bottom:564.416000pt;}
.y14{bottom:567.381333pt;}
.y144{bottom:568.753333pt;}
.y36{bottom:572.694667pt;}
.ye6{bottom:575.870667pt;}
.yba{bottom:580.146667pt;}
.y8a{bottom:580.356000pt;}
.y13{bottom:580.665333pt;}
.y143{bottom:580.709333pt;}
.y35{bottom:588.634667pt;}
.ye5{bottom:591.810667pt;}
.y142{bottom:592.664000pt;}
.y12{bottom:593.948000pt;}
.yb9{bottom:596.088000pt;}
.y89{bottom:596.297333pt;}
.y66{bottom:598.372000pt;}
.y34{bottom:604.574667pt;}
.y141{bottom:604.620000pt;}
.y11{bottom:607.232000pt;}
.ye4{bottom:610.668000pt;}
.yb8{bottom:612.028000pt;}
.y88{bottom:612.237333pt;}
.y140{bottom:616.574667pt;}
.y10{bottom:620.516000pt;}
.ye3{bottom:626.608000pt;}
.yb7{bottom:627.968000pt;}
.y87{bottom:628.177333pt;}
.y13f{bottom:628.529333pt;}
.y13e{bottom:640.485333pt;}
.ye2{bottom:642.548000pt;}
.yb6{bottom:643.908000pt;}
.y86{bottom:644.117333pt;}
.y13d{bottom:652.440000pt;}
.ye1{bottom:658.488000pt;}
.yb5{bottom:659.848000pt;}
.y85{bottom:660.057333pt;}
.y13c{bottom:664.394667pt;}
.ye0{bottom:674.429333pt;}
.y84{bottom:675.997333pt;}
.y13b{bottom:676.350667pt;}
.yb4{bottom:678.273333pt;}
.yf{bottom:687.317333pt;}
.y13a{bottom:688.305333pt;}
.y83{bottom:692.612000pt;}
.yb3{bottom:694.213333pt;}
.y139{bottom:700.261333pt;}
.ye{bottom:703.754667pt;}
.ydf{bottom:706.309333pt;}
.y82{bottom:708.552000pt;}
.yb2{bottom:710.153333pt;}
.y138{bottom:712.216000pt;}
.yd{bottom:720.390667pt;}
.yde{bottom:722.249333pt;}
.y137{bottom:724.170667pt;}
.y81{bottom:724.493333pt;}
.yb1{bottom:726.093333pt;}
.y136{bottom:736.126667pt;}
.y80{bottom:740.433333pt;}
.ydd{bottom:741.106667pt;}
.yb0{bottom:742.033333pt;}
.y135{bottom:748.081333pt;}
.yc{bottom:753.728000pt;}
.y7f{bottom:756.373333pt;}
.ydc{bottom:757.046667pt;}
.y134{bottom:760.036000pt;}
.yaf{bottom:760.380000pt;}
.yb{bottom:770.166667pt;}
.y133{bottom:771.992000pt;}
.y7e{bottom:772.313333pt;}
.ydb{bottom:772.988000pt;}
.y65{bottom:773.052000pt;}
.yae{bottom:776.321333pt;}
.y132{bottom:783.946667pt;}
.ya{bottom:786.604000pt;}
.y7d{bottom:788.253333pt;}
.yda{bottom:788.928000pt;}
.y64{bottom:788.992000pt;}
.yad{bottom:792.261333pt;}
.y131{bottom:795.901333pt;}
.y9{bottom:803.240000pt;}
.y7c{bottom:804.193333pt;}
.yd9{bottom:804.868000pt;}
.y63{bottom:804.932000pt;}
.y130{bottom:807.857333pt;}
.yac{bottom:808.201333pt;}
.y12f{bottom:819.812000pt;}
.y7b{bottom:820.134667pt;}
.yd8{bottom:820.808000pt;}
.y62{bottom:820.872000pt;}
.yab{bottom:824.141333pt;}
.yfe{bottom:824.793333pt;}
.y12e{bottom:831.768000pt;}
.y7a{bottom:836.074667pt;}
.yd7{bottom:836.748000pt;}
.y61{bottom:836.813333pt;}
.yaa{bottom:840.081333pt;}
.yfd{bottom:840.734667pt;}
.y12d{bottom:843.722667pt;}
.y8{bottom:845.082667pt;}
.y79{bottom:852.014667pt;}
.yd6{bottom:852.688000pt;}
.y60{bottom:852.753333pt;}
.y12c{bottom:855.677333pt;}
.ya9{bottom:856.021333pt;}
.yfc{bottom:856.674667pt;}
.y12b{bottom:867.633333pt;}
.y78{bottom:867.954667pt;}
.yd5{bottom:868.629333pt;}
.y5f{bottom:868.693333pt;}
.ya8{bottom:871.962667pt;}
.yfb{bottom:876.628000pt;}
.y7{bottom:882.277333pt;}
.y77{bottom:883.894667pt;}
.yd4{bottom:884.569333pt;}
.y5e{bottom:884.633333pt;}
.y12a{bottom:887.358667pt;}
.ya7{bottom:887.902667pt;}
.y76{bottom:899.836000pt;}
.yd3{bottom:900.509333pt;}
.y5d{bottom:900.573333pt;}
.ya6{bottom:907.949333pt;}
.y129{bottom:912.265333pt;}
.y75{bottom:916.449333pt;}
.y5c{bottom:916.514667pt;}
.y128{bottom:928.205333pt;}
.yd2{bottom:932.389333pt;}
.y5b{bottom:932.390667pt;}
.y127{bottom:944.145333pt;}
.yd1{bottom:948.329333pt;}
.y5a{bottom:948.330667pt;}
.y126{bottom:960.086667pt;}
.y59{bottom:964.270667pt;}
.y125{bottom:976.026667pt;}
.y58{bottom:980.210667pt;}
.y124{bottom:991.966667pt;}
.y57{bottom:996.150667pt;}
.y56{bottom:1012.090667pt;}
.y5{bottom:1012.861333pt;}
.y4{bottom:1026.145333pt;}
.y55{bottom:1032.292451pt;}
.y3{bottom:1039.428000pt;}
.y2{bottom:1052.712000pt;}
.y51{bottom:1059.808874pt;}
.y1{bottom:1065.996000pt;}
.h11{height:15.997920pt;}
.h18{height:16.041405pt;}
.h1a{height:20.883302pt;}
.h19{height:21.024449pt;}
.h1b{height:24.434495pt;}
.h1c{height:24.829606pt;}
.h1d{height:29.032053pt;}
.h13{height:29.244587pt;}
.h14{height:29.499627pt;}
.h3{height:31.497440pt;}
.h15{height:31.502773pt;}
.ha{height:32.899243pt;}
.hc{height:33.042699pt;}
.hb{height:33.425248pt;}
.h2{height:35.433632pt;}
.he{height:36.291888pt;}
.h8{height:36.557568pt;}
.h16{height:36.716976pt;}
.h9{height:36.818901pt;}
.h7{height:36.824235pt;}
.h12{height:36.876384pt;}
.h1e{height:38.513920pt;}
.h10{height:39.784827pt;}
.h6{height:40.212224pt;}
.h5{height:40.505557pt;}
.hf{height:42.650705pt;}
.hd{height:48.728235pt;}
.h4{height:87.733760pt;}
.h17{height:311.218287pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.330560pt;}
.w4{width:297.612907pt;}
.w2{width:793.230200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:16.248424pt;}
.x39{left:20.669968pt;}
.x32{left:26.601885pt;}
.x3b{left:50.999013pt;}
.x3a{left:61.827285pt;}
.x2d{left:68.623744pt;}
.x1b{left:75.590667pt;}
.x7{left:83.594667pt;}
.x9{left:87.096000pt;}
.x1a{left:88.874667pt;}
.x38{left:90.584941pt;}
.x19{left:102.157333pt;}
.x2e{left:106.735824pt;}
.x26{left:107.909333pt;}
.x31{left:112.923408pt;}
.x18{left:115.441333pt;}
.x27{left:117.872000pt;}
.x2f{left:121.169653pt;}
.x30{left:123.239915pt;}
.x37{left:124.141412pt;}
.x28{left:131.285333pt;}
.x3d{left:133.890667pt;}
.x36{left:140.718981pt;}
.x2c{left:141.924700pt;}
.xa{left:154.544000pt;}
.x24{left:165.805333pt;}
.x1c{left:170.448000pt;}
.x6{left:173.753333pt;}
.x23{left:176.566667pt;}
.x2b{left:178.197693pt;}
.x13{left:179.613333pt;}
.x3e{left:181.293333pt;}
.xb{left:194.302667pt;}
.x3c{left:198.136752pt;}
.x35{left:220.694363pt;}
.x34{left:239.257115pt;}
.x8{left:258.188000pt;}
.x1d{left:274.177333pt;}
.xc{left:277.969333pt;}
.xf{left:288.352000pt;}
.x17{left:307.226667pt;}
.x14{left:335.452000pt;}
.x12{left:366.597333pt;}
.x15{left:399.816000pt;}
.x1e{left:404.820000pt;}
.x41{left:410.133333pt;}
.x1f{left:418.104000pt;}
.x10{left:429.700000pt;}
.x16{left:437.149333pt;}
.x29{left:447.101333pt;}
.x42{left:458.686667pt;}
.x2a{left:460.514667pt;}
.x25{left:467.093333pt;}
.x11{left:476.949333pt;}
.x3f{left:493.374667pt;}
.x20{left:501.982667pt;}
.x40{left:521.582667pt;}
.x43{left:537.194667pt;}
.x5{left:560.669333pt;}
.x1{left:567.041333pt;}
.x2{left:574.094667pt;}
.xd{left:585.546667pt;}
.x4{left:598.400000pt;}
.x3{left:631.801333pt;}
.xe{left:648.537333pt;}
.x21{left:684.710976pt;}
.x22{left:688.146400pt;}
}




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