
    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_3b8637ab77fbcb1d3fd40032.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ecfd5c01d19273edd41d6189.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f3fb30b46d1fcdbd1019424e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_86280652d5401ca11a73340f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_974f7b00ff0876f05a4a148b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.993000;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_3e9b1790e71ffd00f8ea88df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-6.648000px;}
.v2{vertical-align:-5.232000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.568000px;}
.v4{vertical-align:6.840000px;}
.v5{vertical-align:33.384000px;}
.v6{vertical-align:47.910000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.727300px;}
.ls2{letter-spacing:71.732698px;}
.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;}
}
.ws1{word-spacing:-427.176183px;}
.ws3{word-spacing:-63.697039px;}
.ws5{word-spacing:-47.820600px;}
.ws15{word-spacing:-37.329373px;}
.ws14{word-spacing:-37.180650px;}
.wse{word-spacing:-32.727300px;}
.ws4{word-spacing:-30.222619px;}
.ws7d{word-spacing:-25.592749px;}
.ws82{word-spacing:-25.461839px;}
.ws81{word-spacing:-25.134566px;}
.ws2d{word-spacing:-22.712746px;}
.ws2{word-spacing:-22.416000px;}
.ws30{word-spacing:-22.385473px;}
.ws2f{word-spacing:-22.320019px;}
.ws7e{word-spacing:-21.927291px;}
.ws2e{word-spacing:-21.665473px;}
.ws29{word-spacing:-21.605377px;}
.ws7c{word-spacing:-20.683654px;}
.ws80{word-spacing:-20.356381px;}
.wsf{word-spacing:-19.505471px;}
.ws9{word-spacing:-19.440016px;}
.ws2b{word-spacing:-19.047289px;}
.ws17{word-spacing:-18.981834px;}
.ws2c{word-spacing:-18.196379px;}
.ws39{word-spacing:-18.006221px;}
.ws36{word-spacing:-18.005722px;}
.ws43{word-spacing:-18.005587px;}
.ws37{word-spacing:-18.004531px;}
.ws71{word-spacing:-18.004301px;}
.ws47{word-spacing:-18.003744px;}
.ws70{word-spacing:-18.003446px;}
.ws55{word-spacing:-18.003139px;}
.ws56{word-spacing:-18.001939px;}
.ws48{word-spacing:-18.000970px;}
.ws6e{word-spacing:-18.000672px;}
.ws32{word-spacing:-17.933395px;}
.ws6f{word-spacing:-17.933290px;}
.ws33{word-spacing:-17.932800px;}
.ws69{word-spacing:-17.931974px;}
.ws7b{word-spacing:-17.931043px;}
.ws54{word-spacing:-17.930170px;}
.ws45{word-spacing:-17.929536px;}
.ws3e{word-spacing:-17.929459px;}
.ws7f{word-spacing:-17.672742px;}
.wsc{word-spacing:-17.214560px;}
.ws16{word-spacing:-17.149105px;}
.ws12{word-spacing:-17.083651px;}
.wsb{word-spacing:-17.018196px;}
.ws10{word-spacing:-16.560014px;}
.ws7{word-spacing:-16.504103px;}
.ws1a{word-spacing:-16.494559px;}
.wsa{word-spacing:-16.429105px;}
.wsd{word-spacing:-16.363650px;}
.ws35{word-spacing:-16.232741px;}
.ws11{word-spacing:-15.250922px;}
.ws6{word-spacing:-15.189035px;}
.ws8{word-spacing:-14.989103px;}
.ws31{word-spacing:-14.858194px;}
.ws2a{word-spacing:-14.138194px;}
.ws34{word-spacing:-13.589089px;}
.ws13{word-spacing:-10.996373px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:24.007782px;}
.ws1b{word-spacing:24.008832px;}
.ws22{word-spacing:24.012432px;}
.ws1c{word-spacing:24.013482px;}
.ws21{word-spacing:24.015282px;}
.ws20{word-spacing:24.016332px;}
.ws19{word-spacing:24.017382px;}
.ws28{word-spacing:24.020982px;}
.ws27{word-spacing:24.028482px;}
.ws1f{word-spacing:27.409782px;}
.ws1e{word-spacing:27.415482px;}
.ws24{word-spacing:28.788432px;}
.ws25{word-spacing:28.789482px;}
.ws23{word-spacing:28.794132px;}
.ws26{word-spacing:28.800882px;}
.ws18{word-spacing:29.585479px;}
.ws52{word-spacing:38.937734px;}
.ws49{word-spacing:38.937736px;}
.ws4f{word-spacing:38.939372px;}
.ws51{word-spacing:38.939918px;}
.ws4c{word-spacing:38.939920px;}
.ws3c{word-spacing:38.943210px;}
.ws4b{word-spacing:39.001010px;}
.ws4a{word-spacing:39.001558px;}
.ws50{word-spacing:39.002096px;}
.ws4d{word-spacing:39.002101px;}
.ws4e{word-spacing:39.002123px;}
.ws53{word-spacing:39.002665px;}
.ws3d{word-spacing:39.005389px;}
.ws38{word-spacing:110.683729px;}
.ws44{word-spacing:118.538281px;}
.ws72{word-spacing:145.178303px;}
.ws74{word-spacing:175.931398px;}
.ws73{word-spacing:177.893398px;}
.ws75{word-spacing:213.695398px;}
.ws77{word-spacing:215.003398px;}
.ws76{word-spacing:216.053398px;}
.ws7a{word-spacing:245.701558px;}
.ws79{word-spacing:245.703191px;}
.ws78{word-spacing:245.705398px;}
.ws57{word-spacing:559.361398px;}
.ws5b{word-spacing:562.241398px;}
.ws5a{word-spacing:564.401398px;}
.ws58{word-spacing:567.089398px;}
.ws59{word-spacing:569.309398px;}
.ws61{word-spacing:592.939010px;}
.ws60{word-spacing:592.939558px;}
.ws5d{word-spacing:592.943398px;}
.ws5f{word-spacing:594.183736px;}
.ws62{word-spacing:594.185920px;}
.ws5e{word-spacing:594.905398px;}
.ws5c{word-spacing:595.559398px;}
.ws63{word-spacing:601.706101px;}
.ws67{word-spacing:662.649188px;}
.ws64{word-spacing:662.651372px;}
.ws68{word-spacing:662.713527px;}
.ws65{word-spacing:662.714096px;}
.ws66{word-spacing:662.714099px;}
.ws3b{word-spacing:1002.685296px;}
.ws3a{word-spacing:1102.765379px;}
.ws40{word-spacing:1126.465511px;}
.ws42{word-spacing:1135.824401px;}
.ws6d{word-spacing:1147.146401px;}
.ws6b{word-spacing:1191.655511px;}
.ws41{word-spacing:1219.536938px;}
.ws6a{word-spacing:1256.651325px;}
.ws6c{word-spacing:1265.487696px;}
.ws3f{word-spacing:1295.202455px;}
.ws46{word-spacing:1316.147398px;}
._1a{margin-left:-33.298936px;}
._13{margin-left:-32.080642px;}
._0{margin-left:-29.409720px;}
._e{margin-left:-7.738870px;}
._3{margin-left:-6.467678px;}
._3a{margin-left:-5.432732px;}
._1{margin-left:-4.214208px;}
._b{margin-left:-3.076366px;}
._2{margin-left:-1.793280px;}
._4{width:1.327058px;}
._8{width:2.971463px;}
._6{width:11.873288px;}
._7{width:14.426018px;}
._a{width:17.214560px;}
._17{width:18.842825px;}
._5{width:20.027335px;}
._9{width:21.338200px;}
._c{width:22.411479px;}
._d{width:24.178753px;}
._1c{width:25.867823px;}
._1f{width:28.916598px;}
._20{width:31.508776px;}
._6e{width:33.643664px;}
._21{width:35.476393px;}
._14{width:37.285637px;}
._1e{width:43.419611px;}
._16{width:44.848607px;}
._1d{width:46.499578px;}
._19{width:48.690122px;}
._1b{width:59.204520px;}
._10{width:62.312779px;}
._18{width:64.012469px;}
._64{width:72.215452px;}
._43{width:176.086819px;}
._2f{width:197.554819px;}
._44{width:201.119999px;}
._27{width:205.408819px;}
._30{width:222.587999px;}
._28{width:230.441999px;}
._3b{width:336.583766px;}
._4f{width:362.895827px;}
._5b{width:397.149856px;}
._45{width:419.276664px;}
._6d{width:421.238663px;}
._31{width:440.744664px;}
._29{width:448.598664px;}
._58{width:469.280825px;}
._46{width:477.007621px;}
._36{width:479.079521px;}
._32{width:498.475621px;}
._2a{width:506.329621px;}
._38{width:524.501655px;}
._3c{width:568.268682px;}
._51{width:569.369019px;}
._67{width:590.770124px;}
._42{width:594.381162px;}
._2e{width:615.849162px;}
._34{width:621.532553px;}
._26{width:623.703162px;}
._4e{width:634.070798px;}
._39{width:673.540768px;}
._68{width:725.752390px;}
._35{width:777.810957px;}
._6c{width:790.442803px;}
._3d{width:813.353408px;}
._49{width:823.227702px;}
._69{width:853.345019px;}
._37{width:859.931078px;}
._22{width:861.308926px;}
._6a{width:875.075401px;}
._65{width:898.284775px;}
._33{width:910.787038px;}
._6b{width:922.964345px;}
._66{width:935.857319px;}
._41{width:943.712362px;}
._2d{width:965.180362px;}
._25{width:973.034362px;}
._52{width:974.451624px;}
._40{width:1002.948775px;}
._2c{width:1024.416775px;}
._24{width:1032.270775px;}
._59{width:1054.449472px;}
._4d{width:1072.554979px;}
._3f{width:1116.864893px;}
._2b{width:1138.332893px;}
._23{width:1146.186893px;}
._60{width:1150.510819px;}
._3e{width:1157.094358px;}
._61{width:1175.587971px;}
._53{width:1191.838678px;}
._55{width:1272.894740px;}
._62{width:1393.373391px;}
._5a{width:1425.080539px;}
._56{width:1426.268311px;}
._63{width:1451.038894px;}
._f{width:1469.501381px;}
._5f{width:1568.674253px;}
._47{width:1600.970552px;}
._50{width:1674.333764px;}
._57{width:1739.838032px;}
._54{width:1786.533818px;}
._48{width:1802.702143px;}
._11{width:1841.594947px;}
._5e{width:1918.136362px;}
._4c{width:1955.974055px;}
._4b{width:1974.103399px;}
._5d{width:1977.241866px;}
._4a{width:1984.297570px;}
._5c{width:2091.157984px;}
._12{width:2099.547003px;}
._15{width:2128.980090px;}
.fc5{color:rgb(10,146,141);}
.fc4{color:rgb(79,117,144);}
.fc3{color:rgb(161,49,87);}
.fc2{color:rgb(77,198,244);}
.fc1{color:rgb(16,106,175);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fsd{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:125.529000px;}
.fsb{font-size:148.722600px;}
.fs8{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:61.507500px;}
.y5{bottom:66.525004px;}
.y4b{bottom:67.196167px;}
.y4{bottom:97.125005px;}
.y4a{bottom:107.843167px;}
.y49{bottom:128.166667px;}
.yf7{bottom:130.392000px;}
.y28{bottom:137.404500px;}
.y20{bottom:139.264499px;}
.yae{bottom:139.956000px;}
.y11b{bottom:142.515000px;}
.yd0{bottom:144.312000px;}
.y53{bottom:147.883522px;}
.y48{bottom:148.490167px;}
.yf6{bottom:150.715500px;}
.y27{bottom:153.843000px;}
.yad{bottom:160.279500px;}
.y11a{bottom:162.840000px;}
.y8a{bottom:164.422500px;}
.ycf{bottom:164.637000px;}
.y47{bottom:168.813667px;}
.yf5{bottom:171.039000px;}
.yac{bottom:180.603000px;}
.y119{bottom:183.163500px;}
.yce{bottom:184.960500px;}
.y46{bottom:189.138667px;}
.yf4{bottom:191.362500px;}
.y17{bottom:196.933500px;}
.y118{bottom:203.487000px;}
.ycd{bottom:205.284000px;}
.y89{bottom:209.434500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yf3{bottom:211.687500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y117{bottom:223.810500px;}
.ycc{bottom:225.607500px;}
.y45{bottom:229.160167px;}
.y88{bottom:229.759500px;}
.yab{bottom:230.755500px;}
.yf2{bottom:232.011000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y116{bottom:244.134000px;}
.ycb{bottom:245.931000px;}
.yf1{bottom:252.334500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y115{bottom:264.457500px;}
.yca{bottom:266.254500px;}
.y44{bottom:269.826067px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yf0{bottom:272.658000px;}
.yaa{bottom:275.769000px;}
.y26{bottom:284.043000px;}
.y114{bottom:284.782500px;}
.y87{bottom:285.060000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.yc9{bottom:286.579500px;}
.y43{bottom:290.149567px;}
.yef{bottom:292.981500px;}
.ya9{bottom:296.092500px;}
.y113{bottom:305.106000px;}
.y86{bottom:305.383500px;}
.yc8{bottom:306.903000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yee{bottom:313.306500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y112{bottom:325.429500px;}
.y85{bottom:325.707000px;}
.yc7{bottom:327.226500px;}
.y25{bottom:331.863000px;}
.y128{bottom:331.957500px;}
.yed{bottom:333.630000px;}
.y111{bottom:345.753000px;}
.y84{bottom:346.032000px;}
.yc6{bottom:347.550000px;}
.ye{bottom:348.133500px;}
.ya8{bottom:351.394500px;}
.y127{bottom:352.282500px;}
.yec{bottom:353.953500px;}
.y110{bottom:366.076500px;}
.y83{bottom:366.355500px;}
.yc5{bottom:367.873500px;}
.ya7{bottom:371.718000px;}
.y126{bottom:372.606000px;}
.yeb{bottom:374.277000px;}
.y24{bottom:379.684500px;}
.y10f{bottom:386.401500px;}
.y82{bottom:386.679000px;}
.yd{bottom:386.785499px;}
.yc4{bottom:388.198500px;}
.ya6{bottom:392.041500px;}
.y125{bottom:392.929500px;}
.yea{bottom:394.600500px;}
.y81{bottom:407.002500px;}
.yc{bottom:408.044999px;}
.yc3{bottom:408.522000px;}
.ya5{bottom:412.365000px;}
.y124{bottom:413.253000px;}
.ye9{bottom:414.924000px;}
.y42{bottom:418.560022px;}
.y80{bottom:427.326000px;}
.yc2{bottom:428.845500px;}
.ya4{bottom:432.688500px;}
.y123{bottom:433.576500px;}
.ye8{bottom:435.249000px;}
.y10e{bottom:436.554000px;}
.y41{bottom:438.883522px;}
.y7f{bottom:447.649500px;}
.yc1{bottom:449.169000px;}
.ya3{bottom:453.012000px;}
.y122{bottom:453.901500px;}
.ye7{bottom:455.572500px;}
.y40{bottom:459.207022px;}
.y7e{bottom:467.974500px;}
.yc0{bottom:469.492500px;}
.ya2{bottom:473.337000px;}
.y121{bottom:474.225000px;}
.ye6{bottom:475.896000px;}
.y3f{bottom:479.530522px;}
.y10d{bottom:481.566000px;}
.y7d{bottom:488.298000px;}
.ybf{bottom:489.816000px;}
.ya1{bottom:493.660500px;}
.y120{bottom:494.548500px;}
.ye5{bottom:496.219500px;}
.y3e{bottom:499.855522px;}
.y10c{bottom:501.889500px;}
.ybe{bottom:510.141000px;}
.ya0{bottom:513.984000px;}
.y11f{bottom:514.872000px;}
.ye4{bottom:516.543000px;}
.yb{bottom:520.864502px;}
.ybd{bottom:530.464500px;}
.y10b{bottom:530.830500px;}
.y9f{bottom:534.307500px;}
.ye3{bottom:536.868000px;}
.y7c{bottom:538.450500px;}
.ya{bottom:538.864499px;}
.y11e{bottom:543.813000px;}
.ybc{bottom:550.788000px;}
.y9{bottom:556.864499px;}
.ye2{bottom:557.191500px;}
.ybb{bottom:565.129500px;}
.y10a{bottom:575.844000px;}
.y7b{bottom:576.421500px;}
.yba{bottom:577.107000px;}
.y3d{bottom:577.326022px;}
.ye1{bottom:577.515000px;}
.y9e{bottom:584.460000px;}
.y11d{bottom:588.825000px;}
.y109{bottom:596.167500px;}
.y3c{bottom:597.649522px;}
.ye0{bottom:597.838500px;}
.yb9{bottom:603.478500px;}
.y11c{bottom:609.150000px;}
.y3b{bottom:617.974522px;}
.ydf{bottom:618.162000px;}
.yb8{bottom:623.803500px;}
.y108{bottom:625.108500px;}
.y7a{bottom:629.265000px;}
.y9d{bottom:629.473500px;}
.y3a{bottom:638.298022px;}
.yde{bottom:638.485500px;}
.yb7{bottom:644.127000px;}
.y8{bottom:645.510000px;}
.y79{bottom:649.588500px;}
.y9c{bottom:649.797000px;}
.y52{bottom:651.238522px;}
.y39{bottom:658.621522px;}
.ydd{bottom:658.810500px;}
.yb6{bottom:664.450500px;}
.y7{bottom:666.771000px;}
.y107{bottom:670.120500px;}
.y38{bottom:678.945022px;}
.ydc{bottom:679.134000px;}
.y69{bottom:683.845500px;}
.yb5{bottom:684.774000px;}
.y106{bottom:690.444000px;}
.y51{bottom:691.887022px;}
.y37{bottom:699.268522px;}
.ydb{bottom:699.457500px;}
.y68{bottom:704.169000px;}
.y78{bottom:704.889000px;}
.y9b{bottom:705.097500px;}
.y50{bottom:712.210522px;}
.y36{bottom:719.593522px;}
.yda{bottom:719.781000px;}
.y67{bottom:724.492500px;}
.y9a{bottom:725.422500px;}
.y6{bottom:726.298500px;}
.yb4{bottom:734.926500px;}
.y66{bottom:744.816000px;}
.y99{bottom:745.746000px;}
.y3{bottom:752.599495px;}
.y77{bottom:755.043000px;}
.y65{bottom:765.139500px;}
.y105{bottom:766.069500px;}
.yd9{bottom:769.933500px;}
.y4f{bottom:773.182522px;}
.yb3{bottom:779.940000px;}
.y64{bottom:785.464500px;}
.y104{bottom:786.393000px;}
.y98{bottom:795.898500px;}
.y76{bottom:800.055000px;}
.yb2{bottom:800.263500px;}
.y63{bottom:805.788000px;}
.y103{bottom:806.716500px;}
.y35{bottom:814.896646px;}
.yd8{bottom:814.947000px;}
.y4e{bottom:818.014522px;}
.y75{bottom:820.378500px;}
.y62{bottom:826.111500px;}
.y102{bottom:827.040000px;}
.yd7{bottom:835.270500px;}
.y97{bottom:840.910500px;}
.y61{bottom:846.435000px;}
.y101{bottom:847.365000px;}
.y74{bottom:849.319500px;}
.y34{bottom:855.545146px;}
.yb1{bottom:855.564000px;}
.y96{bottom:861.235500px;}
.y4d{bottom:862.845022px;}
.yd6{bottom:864.211500px;}
.y60{bottom:866.758500px;}
.y100{bottom:867.688500px;}
.y23{bottom:868.360500px;}
.y33{bottom:875.870146px;}
.yb0{bottom:875.889000px;}
.y2{bottom:879.369000px;}
.y5f{bottom:887.083500px;}
.y73{bottom:887.290500px;}
.yff{bottom:888.012000px;}
.y32{bottom:896.193646px;}
.yaf{bottom:896.212500px;}
.y5e{bottom:907.407000px;}
.yfe{bottom:908.335500px;}
.yd5{bottom:909.223500px;}
.y31{bottom:916.517146px;}
.y95{bottom:916.536000px;}
.y5d{bottom:927.730500px;}
.yfd{bottom:928.659000px;}
.yd4{bottom:929.548500px;}
.y30{bottom:936.840646px;}
.y94{bottom:936.859500px;}
.y72{bottom:940.134000px;}
.y5c{bottom:948.054000px;}
.yfc{bottom:948.984000px;}
.y2f{bottom:957.164146px;}
.y93{bottom:957.183000px;}
.yd3{bottom:958.488000px;}
.y71{bottom:960.457500px;}
.y1{bottom:966.726000px;}
.y5b{bottom:968.377500px;}
.yfb{bottom:969.307500px;}
.y2e{bottom:977.489146px;}
.y92{bottom:977.506500px;}
.y70{bottom:980.781000px;}
.y5a{bottom:988.702500px;}
.y91{bottom:997.831500px;}
.y6f{bottom:1001.106000px;}
.yd2{bottom:1003.501500px;}
.y21{bottom:1006.609500px;}
.y22{bottom:1015.113000px;}
.y90{bottom:1018.155000px;}
.y2d{bottom:1018.155046px;}
.yfa{bottom:1019.460000px;}
.y6e{bottom:1021.429500px;}
.yd1{bottom:1023.825000px;}
.y59{bottom:1025.389500px;}
.y8f{bottom:1038.478500px;}
.y2c{bottom:1038.478546px;}
.y6d{bottom:1041.753000px;}
.y58{bottom:1045.713000px;}
.y8e{bottom:1058.802000px;}
.y6c{bottom:1062.076500px;}
.yf9{bottom:1064.472000px;}
.y57{bottom:1066.036500px;}
.y8d{bottom:1079.125500px;}
.y6b{bottom:1082.400000px;}
.yf8{bottom:1084.797000px;}
.y2b{bottom:1099.431604px;}
.y8c{bottom:1099.450500px;}
.y56{bottom:1102.725000px;}
.y8b{bottom:1119.774000px;}
.y2a{bottom:1119.774004px;}
.y4c{bottom:1120.276519px;}
.y55{bottom:1140.097500px;}
.y29{bottom:1140.097504px;}
.y54{bottom:1193.145000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h12{height:47.454585px;}
.he{height:47.716403px;}
.h15{height:47.722403px;}
.hd{height:47.934229px;}
.h3{height:48.195000px;}
.h10{height:48.240040px;}
.h13{height:48.370949px;}
.h16{height:48.472403px;}
.h14{height:52.292045px;}
.h2{height:55.080000px;}
.h11{height:62.405970px;}
.hb{height:65.006400px;}
.h5{height:78.030000px;}
.h17{height:81.100403px;}
.ha{height:91.008525px;}
.h18{height:95.626403px;}
.hf{height:107.823885px;}
.h4{height:119.055004px;}
.hc{height:138.679740px;}
.h9{height:489.671838px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:85.039500px;}
.x8{left:87.165000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:133.938000px;}
.xd{left:142.905000px;}
.x11{left:143.952000px;}
.xe{left:145.785000px;}
.x14{left:147.699000px;}
.x12{left:149.728500px;}
.xf{left:151.626000px;}
.xb{left:158.484000px;}
.x10{left:178.281000px;}
.x4{left:203.484001px;}
.xa{left:417.351013px;}
.x3{left:454.959000px;}
.x5{left:484.450500px;}
.xc{left:750.793500px;}
.x13{left:751.987500px;}
.x6{left:832.947000px;}
@media print{
.v1{vertical-align:-5.909333pt;}
.v2{vertical-align:-4.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.949333pt;}
.v4{vertical-align:6.080000pt;}
.v5{vertical-align:29.674667pt;}
.v6{vertical-align:42.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090933pt;}
.ls2{letter-spacing:63.762398pt;}
.ws1{word-spacing:-379.712163pt;}
.ws3{word-spacing:-56.619590pt;}
.ws5{word-spacing:-42.507200pt;}
.ws15{word-spacing:-33.181665pt;}
.ws14{word-spacing:-33.049467pt;}
.wse{word-spacing:-29.090933pt;}
.ws4{word-spacing:-26.864550pt;}
.ws7d{word-spacing:-22.749110pt;}
.ws82{word-spacing:-22.632746pt;}
.ws81{word-spacing:-22.341837pt;}
.ws2d{word-spacing:-20.189108pt;}
.ws2{word-spacing:-19.925333pt;}
.ws30{word-spacing:-19.898198pt;}
.ws2f{word-spacing:-19.840017pt;}
.ws7e{word-spacing:-19.490925pt;}
.ws2e{word-spacing:-19.258198pt;}
.ws29{word-spacing:-19.204780pt;}
.ws7c{word-spacing:-18.385470pt;}
.ws80{word-spacing:-18.094561pt;}
.wsf{word-spacing:-17.338196pt;}
.ws9{word-spacing:-17.280014pt;}
.ws2b{word-spacing:-16.930923pt;}
.ws17{word-spacing:-16.872741pt;}
.ws2c{word-spacing:-16.174559pt;}
.ws39{word-spacing:-16.005530pt;}
.ws36{word-spacing:-16.005086pt;}
.ws43{word-spacing:-16.004966pt;}
.ws37{word-spacing:-16.004028pt;}
.ws71{word-spacing:-16.003823pt;}
.ws47{word-spacing:-16.003328pt;}
.ws70{word-spacing:-16.003063pt;}
.ws55{word-spacing:-16.002790pt;}
.ws56{word-spacing:-16.001724pt;}
.ws48{word-spacing:-16.000862pt;}
.ws6e{word-spacing:-16.000597pt;}
.ws32{word-spacing:-15.940796pt;}
.ws6f{word-spacing:-15.940702pt;}
.ws33{word-spacing:-15.940267pt;}
.ws69{word-spacing:-15.939533pt;}
.ws7b{word-spacing:-15.938705pt;}
.ws54{word-spacing:-15.937929pt;}
.ws45{word-spacing:-15.937365pt;}
.ws3e{word-spacing:-15.937297pt;}
.ws7f{word-spacing:-15.709104pt;}
.wsc{word-spacing:-15.301831pt;}
.ws16{word-spacing:-15.243649pt;}
.ws12{word-spacing:-15.185467pt;}
.wsb{word-spacing:-15.127285pt;}
.ws10{word-spacing:-14.720012pt;}
.ws7{word-spacing:-14.670314pt;}
.ws1a{word-spacing:-14.661830pt;}
.wsa{word-spacing:-14.603649pt;}
.wsd{word-spacing:-14.545467pt;}
.ws35{word-spacing:-14.429103pt;}
.ws11{word-spacing:-13.556375pt;}
.ws6{word-spacing:-13.501365pt;}
.ws8{word-spacing:-13.323647pt;}
.ws31{word-spacing:-13.207284pt;}
.ws2a{word-spacing:-12.567283pt;}
.ws34{word-spacing:-12.079190pt;}
.ws13{word-spacing:-9.774554pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:21.340251pt;}
.ws1b{word-spacing:21.341184pt;}
.ws22{word-spacing:21.344384pt;}
.ws1c{word-spacing:21.345317pt;}
.ws21{word-spacing:21.346917pt;}
.ws20{word-spacing:21.347851pt;}
.ws19{word-spacing:21.348784pt;}
.ws28{word-spacing:21.351984pt;}
.ws27{word-spacing:21.358651pt;}
.ws1f{word-spacing:24.364251pt;}
.ws1e{word-spacing:24.369317pt;}
.ws24{word-spacing:25.589717pt;}
.ws25{word-spacing:25.590651pt;}
.ws23{word-spacing:25.594784pt;}
.ws26{word-spacing:25.600784pt;}
.ws18{word-spacing:26.298204pt;}
.ws52{word-spacing:34.611319pt;}
.ws49{word-spacing:34.611321pt;}
.ws4f{word-spacing:34.612775pt;}
.ws51{word-spacing:34.613261pt;}
.ws4c{word-spacing:34.613262pt;}
.ws3c{word-spacing:34.616187pt;}
.ws4b{word-spacing:34.667565pt;}
.ws4a{word-spacing:34.668051pt;}
.ws50{word-spacing:34.668530pt;}
.ws4d{word-spacing:34.668534pt;}
.ws4e{word-spacing:34.668554pt;}
.ws53{word-spacing:34.669035pt;}
.ws3d{word-spacing:34.671457pt;}
.ws38{word-spacing:98.385537pt;}
.ws44{word-spacing:105.367361pt;}
.ws72{word-spacing:129.047380pt;}
.ws74{word-spacing:156.383465pt;}
.ws73{word-spacing:158.127465pt;}
.ws75{word-spacing:189.951465pt;}
.ws77{word-spacing:191.114132pt;}
.ws76{word-spacing:192.047465pt;}
.ws7a{word-spacing:218.401385pt;}
.ws79{word-spacing:218.402836pt;}
.ws78{word-spacing:218.404798pt;}
.ws57{word-spacing:497.210132pt;}
.ws5b{word-spacing:499.770132pt;}
.ws5a{word-spacing:501.690132pt;}
.ws58{word-spacing:504.079465pt;}
.ws59{word-spacing:506.052798pt;}
.ws61{word-spacing:527.056898pt;}
.ws60{word-spacing:527.057385pt;}
.ws5d{word-spacing:527.060798pt;}
.ws5f{word-spacing:528.163321pt;}
.ws62{word-spacing:528.165262pt;}
.ws5e{word-spacing:528.804798pt;}
.ws5c{word-spacing:529.386132pt;}
.ws63{word-spacing:534.849867pt;}
.ws67{word-spacing:589.021501pt;}
.ws64{word-spacing:589.023442pt;}
.ws68{word-spacing:589.078691pt;}
.ws65{word-spacing:589.079197pt;}
.ws66{word-spacing:589.079199pt;}
.ws3b{word-spacing:891.275819pt;}
.ws3a{word-spacing:980.235893pt;}
.ws40{word-spacing:1001.302676pt;}
.ws42{word-spacing:1009.621690pt;}
.ws6d{word-spacing:1019.685690pt;}
.ws6b{word-spacing:1059.249343pt;}
.ws41{word-spacing:1084.032834pt;}
.ws6a{word-spacing:1117.023400pt;}
.ws6c{word-spacing:1124.877952pt;}
.ws3f{word-spacing:1151.291071pt;}
.ws46{word-spacing:1169.908798pt;}
._1a{margin-left:-29.599054pt;}
._13{margin-left:-28.516126pt;}
._0{margin-left:-26.141973pt;}
._e{margin-left:-6.878996pt;}
._3{margin-left:-5.749047pt;}
._3a{margin-left:-4.829095pt;}
._1{margin-left:-3.745963pt;}
._b{margin-left:-2.734548pt;}
._2{margin-left:-1.594027pt;}
._4{width:1.179607pt;}
._8{width:2.641300pt;}
._6{width:10.554034pt;}
._7{width:12.823127pt;}
._a{width:15.301831pt;}
._17{width:16.749178pt;}
._5{width:17.802076pt;}
._9{width:18.967289pt;}
._c{width:19.921315pt;}
._d{width:21.492225pt;}
._1c{width:22.993620pt;}
._1f{width:25.703643pt;}
._20{width:28.007801pt;}
._6e{width:29.905479pt;}
._21{width:31.534572pt;}
._14{width:33.142788pt;}
._1e{width:38.595210pt;}
._16{width:39.865428pt;}
._1d{width:41.332958pt;}
._19{width:43.280109pt;}
._1b{width:52.626240pt;}
._10{width:55.389137pt;}
._18{width:56.899973pt;}
._64{width:64.191513pt;}
._43{width:156.521617pt;}
._2f{width:175.604284pt;}
._44{width:178.773333pt;}
._27{width:182.585617pt;}
._30{width:197.855999pt;}
._28{width:204.837333pt;}
._3b{width:299.185570pt;}
._4f{width:322.574069pt;}
._5b{width:353.022094pt;}
._45{width:372.690368pt;}
._6d{width:374.434367pt;}
._31{width:391.773035pt;}
._29{width:398.754368pt;}
._58{width:417.138511pt;}
._46{width:424.006774pt;}
._36{width:425.848463pt;}
._32{width:443.089441pt;}
._2a{width:450.070774pt;}
._38{width:466.223693pt;}
._3c{width:505.127717pt;}
._51{width:506.105795pt;}
._67{width:525.128999pt;}
._42{width:528.338811pt;}
._2e{width:547.421477pt;}
._34{width:552.473381pt;}
._26{width:554.402811pt;}
._4e{width:563.618487pt;}
._39{width:598.702905pt;}
._68{width:645.113235pt;}
._35{width:691.387517pt;}
._6c{width:702.615825pt;}
._3d{width:722.980807pt;}
._49{width:731.757957pt;}
._69{width:758.528906pt;}
._37{width:764.383180pt;}
._22{width:765.607934pt;}
._6a{width:777.844801pt;}
._65{width:798.475356pt;}
._33{width:809.588478pt;}
._6b{width:820.412751pt;}
._66{width:831.873172pt;}
._41{width:838.855433pt;}
._2d{width:857.938100pt;}
._25{width:864.919433pt;}
._52{width:866.179221pt;}
._40{width:891.510022pt;}
._2c{width:910.592689pt;}
._24{width:917.574022pt;}
._59{width:937.288420pt;}
._4d{width:953.382204pt;}
._3f{width:992.768794pt;}
._2b{width:1011.851460pt;}
._23{width:1018.832794pt;}
._60{width:1022.676284pt;}
._3e{width:1028.528318pt;}
._61{width:1044.967085pt;}
._53{width:1059.412158pt;}
._55{width:1131.461991pt;}
._62{width:1238.554125pt;}
._5a{width:1266.738257pt;}
._56{width:1267.794054pt;}
._63{width:1289.812350pt;}
._f{width:1306.223450pt;}
._5f{width:1394.377114pt;}
._47{width:1423.084935pt;}
._50{width:1488.296679pt;}
._57{width:1546.522695pt;}
._54{width:1588.030060pt;}
._48{width:1602.401905pt;}
._11{width:1636.973286pt;}
._5e{width:1705.010100pt;}
._4c{width:1738.643604pt;}
._4b{width:1754.758577pt;}
._5d{width:1757.548325pt;}
._4a{width:1763.820062pt;}
._5c{width:1858.807097pt;}
._12{width:1866.264003pt;}
._15{width:1892.426747pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fsd{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:111.581333pt;}
.fsb{font-size:132.197867pt;}
.fs8{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:54.673333pt;}
.y5{bottom:59.133337pt;}
.y4b{bottom:59.729926pt;}
.y4{bottom:86.333337pt;}
.y4a{bottom:95.860593pt;}
.y49{bottom:113.925926pt;}
.yf7{bottom:115.904000pt;}
.y28{bottom:122.137333pt;}
.y20{bottom:123.790666pt;}
.yae{bottom:124.405333pt;}
.y11b{bottom:126.680000pt;}
.yd0{bottom:128.277333pt;}
.y53{bottom:131.452019pt;}
.y48{bottom:131.991259pt;}
.yf6{bottom:133.969333pt;}
.y27{bottom:136.749333pt;}
.yad{bottom:142.470667pt;}
.y11a{bottom:144.746667pt;}
.y8a{bottom:146.153333pt;}
.ycf{bottom:146.344000pt;}
.y47{bottom:150.056593pt;}
.yf5{bottom:152.034667pt;}
.yac{bottom:160.536000pt;}
.y119{bottom:162.812000pt;}
.yce{bottom:164.409333pt;}
.y46{bottom:168.123259pt;}
.yf4{bottom:170.100000pt;}
.y17{bottom:175.052000pt;}
.y118{bottom:180.877333pt;}
.ycd{bottom:182.474667pt;}
.y89{bottom:186.164000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yf3{bottom:188.166667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y117{bottom:198.942667pt;}
.ycc{bottom:200.540000pt;}
.y45{bottom:203.697926pt;}
.y88{bottom:204.230667pt;}
.yab{bottom:205.116000pt;}
.yf2{bottom:206.232000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y116{bottom:217.008000pt;}
.ycb{bottom:218.605333pt;}
.yf1{bottom:224.297333pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y115{bottom:235.073333pt;}
.yca{bottom:236.670667pt;}
.y44{bottom:239.845393pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yf0{bottom:242.362667pt;}
.yaa{bottom:245.128000pt;}
.y26{bottom:252.482667pt;}
.y114{bottom:253.140000pt;}
.y87{bottom:253.386667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.yc9{bottom:254.737333pt;}
.y43{bottom:257.910726pt;}
.yef{bottom:260.428000pt;}
.ya9{bottom:263.193333pt;}
.y113{bottom:271.205333pt;}
.y86{bottom:271.452000pt;}
.yc8{bottom:272.802667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yee{bottom:278.494667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y112{bottom:289.270667pt;}
.y85{bottom:289.517333pt;}
.yc7{bottom:290.868000pt;}
.y25{bottom:294.989333pt;}
.y128{bottom:295.073333pt;}
.yed{bottom:296.560000pt;}
.y111{bottom:307.336000pt;}
.y84{bottom:307.584000pt;}
.yc6{bottom:308.933333pt;}
.ye{bottom:309.452000pt;}
.ya8{bottom:312.350667pt;}
.y127{bottom:313.140000pt;}
.yec{bottom:314.625333pt;}
.y110{bottom:325.401333pt;}
.y83{bottom:325.649333pt;}
.yc5{bottom:326.998667pt;}
.ya7{bottom:330.416000pt;}
.y126{bottom:331.205333pt;}
.yeb{bottom:332.690667pt;}
.y24{bottom:337.497333pt;}
.y10f{bottom:343.468000pt;}
.y82{bottom:343.714667pt;}
.yd{bottom:343.809333pt;}
.yc4{bottom:345.065333pt;}
.ya6{bottom:348.481333pt;}
.y125{bottom:349.270667pt;}
.yea{bottom:350.756000pt;}
.y81{bottom:361.780000pt;}
.yc{bottom:362.706666pt;}
.yc3{bottom:363.130667pt;}
.ya5{bottom:366.546667pt;}
.y124{bottom:367.336000pt;}
.ye9{bottom:368.821333pt;}
.y42{bottom:372.053353pt;}
.y80{bottom:379.845333pt;}
.yc2{bottom:381.196000pt;}
.ya4{bottom:384.612000pt;}
.y123{bottom:385.401333pt;}
.ye8{bottom:386.888000pt;}
.y10e{bottom:388.048000pt;}
.y41{bottom:390.118686pt;}
.y7f{bottom:397.910667pt;}
.yc1{bottom:399.261333pt;}
.ya3{bottom:402.677333pt;}
.y122{bottom:403.468000pt;}
.ye7{bottom:404.953333pt;}
.y40{bottom:408.184019pt;}
.y7e{bottom:415.977333pt;}
.yc0{bottom:417.326667pt;}
.ya2{bottom:420.744000pt;}
.y121{bottom:421.533333pt;}
.ye6{bottom:423.018667pt;}
.y3f{bottom:426.249353pt;}
.y10d{bottom:428.058667pt;}
.y7d{bottom:434.042667pt;}
.ybf{bottom:435.392000pt;}
.ya1{bottom:438.809333pt;}
.y120{bottom:439.598667pt;}
.ye5{bottom:441.084000pt;}
.y3e{bottom:444.316019pt;}
.y10c{bottom:446.124000pt;}
.ybe{bottom:453.458667pt;}
.ya0{bottom:456.874667pt;}
.y11f{bottom:457.664000pt;}
.ye4{bottom:459.149333pt;}
.yb{bottom:462.990669pt;}
.ybd{bottom:471.524000pt;}
.y10b{bottom:471.849333pt;}
.y9f{bottom:474.940000pt;}
.ye3{bottom:477.216000pt;}
.y7c{bottom:478.622667pt;}
.ya{bottom:478.990666pt;}
.y11e{bottom:483.389333pt;}
.ybc{bottom:489.589333pt;}
.y9{bottom:494.990666pt;}
.ye2{bottom:495.281333pt;}
.ybb{bottom:502.337333pt;}
.y10a{bottom:511.861333pt;}
.y7b{bottom:512.374667pt;}
.yba{bottom:512.984000pt;}
.y3d{bottom:513.178686pt;}
.ye1{bottom:513.346667pt;}
.y9e{bottom:519.520000pt;}
.y11d{bottom:523.400000pt;}
.y109{bottom:529.926667pt;}
.y3c{bottom:531.244019pt;}
.ye0{bottom:531.412000pt;}
.yb9{bottom:536.425333pt;}
.y11c{bottom:541.466667pt;}
.y3b{bottom:549.310686pt;}
.ydf{bottom:549.477333pt;}
.yb8{bottom:554.492000pt;}
.y108{bottom:555.652000pt;}
.y7a{bottom:559.346667pt;}
.y9d{bottom:559.532000pt;}
.y3a{bottom:567.376019pt;}
.yde{bottom:567.542667pt;}
.yb7{bottom:572.557333pt;}
.y8{bottom:573.786667pt;}
.y79{bottom:577.412000pt;}
.y9c{bottom:577.597333pt;}
.y52{bottom:578.878686pt;}
.y39{bottom:585.441353pt;}
.ydd{bottom:585.609333pt;}
.yb6{bottom:590.622667pt;}
.y7{bottom:592.685334pt;}
.y107{bottom:595.662667pt;}
.y38{bottom:603.506686pt;}
.ydc{bottom:603.674667pt;}
.y69{bottom:607.862667pt;}
.yb5{bottom:608.688000pt;}
.y106{bottom:613.728000pt;}
.y51{bottom:615.010686pt;}
.y37{bottom:621.572019pt;}
.ydb{bottom:621.740000pt;}
.y68{bottom:625.928000pt;}
.y78{bottom:626.568000pt;}
.y9b{bottom:626.753333pt;}
.y50{bottom:633.076019pt;}
.y36{bottom:639.638686pt;}
.yda{bottom:639.805333pt;}
.y67{bottom:643.993333pt;}
.y9a{bottom:644.820000pt;}
.y6{bottom:645.598667pt;}
.yb4{bottom:653.268000pt;}
.y66{bottom:662.058667pt;}
.y99{bottom:662.885333pt;}
.y3{bottom:668.977329pt;}
.y77{bottom:671.149333pt;}
.y65{bottom:680.124000pt;}
.y105{bottom:680.950667pt;}
.yd9{bottom:684.385333pt;}
.y4f{bottom:687.273353pt;}
.yb3{bottom:693.280000pt;}
.y64{bottom:698.190667pt;}
.y104{bottom:699.016000pt;}
.y98{bottom:707.465333pt;}
.y76{bottom:711.160000pt;}
.yb2{bottom:711.345333pt;}
.y63{bottom:716.256000pt;}
.y103{bottom:717.081333pt;}
.y35{bottom:724.352574pt;}
.yd8{bottom:724.397333pt;}
.y4e{bottom:727.124019pt;}
.y75{bottom:729.225333pt;}
.y62{bottom:734.321333pt;}
.y102{bottom:735.146667pt;}
.yd7{bottom:742.462667pt;}
.y97{bottom:747.476000pt;}
.y61{bottom:752.386667pt;}
.y101{bottom:753.213333pt;}
.y74{bottom:754.950667pt;}
.y34{bottom:760.484574pt;}
.yb1{bottom:760.501333pt;}
.y96{bottom:765.542667pt;}
.y4d{bottom:766.973353pt;}
.yd6{bottom:768.188000pt;}
.y60{bottom:770.452000pt;}
.y100{bottom:771.278667pt;}
.y23{bottom:771.876000pt;}
.y33{bottom:778.551241pt;}
.yb0{bottom:778.568000pt;}
.y2{bottom:781.661334pt;}
.y5f{bottom:788.518667pt;}
.y73{bottom:788.702667pt;}
.yff{bottom:789.344000pt;}
.y32{bottom:796.616574pt;}
.yaf{bottom:796.633333pt;}
.y5e{bottom:806.584000pt;}
.yfe{bottom:807.409333pt;}
.yd5{bottom:808.198667pt;}
.y31{bottom:814.681907pt;}
.y95{bottom:814.698667pt;}
.y5d{bottom:824.649333pt;}
.yfd{bottom:825.474667pt;}
.yd4{bottom:826.265333pt;}
.y30{bottom:832.747241pt;}
.y94{bottom:832.764000pt;}
.y72{bottom:835.674667pt;}
.y5c{bottom:842.714667pt;}
.yfc{bottom:843.541333pt;}
.y2f{bottom:850.812574pt;}
.y93{bottom:850.829333pt;}
.yd3{bottom:851.989333pt;}
.y71{bottom:853.740000pt;}
.y1{bottom:859.312000pt;}
.y5b{bottom:860.780000pt;}
.yfb{bottom:861.606667pt;}
.y2e{bottom:868.879241pt;}
.y92{bottom:868.894667pt;}
.y70{bottom:871.805333pt;}
.y5a{bottom:878.846667pt;}
.y91{bottom:886.961333pt;}
.y6f{bottom:889.872000pt;}
.yd2{bottom:892.001333pt;}
.y21{bottom:894.764000pt;}
.y22{bottom:902.322667pt;}
.y90{bottom:905.026667pt;}
.y2d{bottom:905.026707pt;}
.yfa{bottom:906.186667pt;}
.y6e{bottom:907.937333pt;}
.yd1{bottom:910.066667pt;}
.y59{bottom:911.457333pt;}
.y8f{bottom:923.092000pt;}
.y2c{bottom:923.092041pt;}
.y6d{bottom:926.002667pt;}
.y58{bottom:929.522667pt;}
.y8e{bottom:941.157333pt;}
.y6c{bottom:944.068000pt;}
.yf9{bottom:946.197333pt;}
.y57{bottom:947.588000pt;}
.y8d{bottom:959.222667pt;}
.y6b{bottom:962.133333pt;}
.yf8{bottom:964.264000pt;}
.y2b{bottom:977.272537pt;}
.y8c{bottom:977.289333pt;}
.y56{bottom:980.200000pt;}
.y8b{bottom:995.354667pt;}
.y2a{bottom:995.354670pt;}
.y4c{bottom:995.801351pt;}
.y55{bottom:1013.420000pt;}
.y29{bottom:1013.420003pt;}
.y54{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h12{height:42.181853pt;}
.he{height:42.414581pt;}
.h15{height:42.419914pt;}
.hd{height:42.608203pt;}
.h3{height:42.840000pt;}
.h10{height:42.880036pt;}
.h13{height:42.996399pt;}
.h16{height:43.086581pt;}
.h14{height:46.481818pt;}
.h2{height:48.960000pt;}
.h11{height:55.471973pt;}
.hb{height:57.783467pt;}
.h5{height:69.360000pt;}
.h17{height:72.089247pt;}
.ha{height:80.896467pt;}
.h18{height:85.001247pt;}
.hf{height:95.843453pt;}
.h4{height:105.826671pt;}
.hc{height:123.270880pt;}
.h9{height:435.263856pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.590667pt;}
.x8{left:77.480000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:119.056000pt;}
.xd{left:127.026667pt;}
.x11{left:127.957333pt;}
.xe{left:129.586667pt;}
.x14{left:131.288000pt;}
.x12{left:133.092000pt;}
.xf{left:134.778667pt;}
.xb{left:140.874667pt;}
.x10{left:158.472000pt;}
.x4{left:180.874667pt;}
.xa{left:370.978679pt;}
.x3{left:404.408000pt;}
.x5{left:430.622667pt;}
.xc{left:667.372000pt;}
.x13{left:668.433333pt;}
.x6{left:740.397333pt;}
}




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