
    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_3751e48a81fdb72c87bed5e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_57034df2fdaaeb51186df9f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_1cd9e5df204653bbd63ad334.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.759766;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_cc2b67320d0a45f79c177330.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_fe7bbb0fa8717851f4f3fdc5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a8c79aa7458a77bcba7dee1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_6309f4c4aca65d4562bb328a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.975586;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);}
.vd{vertical-align:-33.120207px;}
.ve{vertical-align:-27.360009px;}
.v8{vertical-align:-18.720014px;}
.va{vertical-align:-15.120004px;}
.v4{vertical-align:-10.079955px;}
.v1{vertical-align:-5.759860px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:5.759856px;}
.v6{vertical-align:10.079991px;}
.v9{vertical-align:15.120004px;}
.v7{vertical-align:18.720014px;}
.vf{vertical-align:20.879928px;}
.vb{vertical-align:27.360076px;}
.v3{vertical-align:36.000000px;}
.v2{vertical-align:42.480009px;}
.v5{vertical-align:46.799834px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000563px;}
.ls3{letter-spacing:0.070763px;}
.lsb{letter-spacing:0.359109px;}
.lsa{letter-spacing:0.359113px;}
.ls8{letter-spacing:0.430664px;}
.lse{letter-spacing:0.676031px;}
.lsd{letter-spacing:0.676036px;}
.ls9{letter-spacing:3.310664px;}
.ls1{letter-spacing:9.341930px;}
.ls0{letter-spacing:9.341997px;}
.ls7{letter-spacing:14.830722px;}
.ls5{letter-spacing:34.055251px;}
.ls4{letter-spacing:54.935246px;}
.ls6{letter-spacing:105.118729px;}
.lsc{letter-spacing:160.055251px;}
.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;}
}
.ws0{word-spacing:-18.000676px;}
.ws3{word-spacing:-15.840595px;}
.wsa{word-spacing:-14.940563px;}
.ws2{word-spacing:-12.060450px;}
.ws4{word-spacing:-11.246796px;}
.ws9{word-spacing:-9.720371px;}
.ws8{word-spacing:-9.187556px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:10.017671px;}
.ws5{word-spacing:55.092445px;}
.ws7{word-spacing:55.891089px;}
._83{margin-left:-2802.518576px;}
._3b{margin-left:-2785.493575px;}
._3a{margin-left:-2784.366281px;}
._56{margin-left:-2773.690125px;}
._fc{margin-left:-2768.550656px;}
._37{margin-left:-2767.532658px;}
._71{margin-left:-2766.033155px;}
._54{margin-left:-2755.702485px;}
._e{margin-left:-2749.512983px;}
._1d{margin-left:-2748.313029px;}
._ec{margin-left:-2736.297382px;}
._fd{margin-left:-2734.505094px;}
._e0{margin-left:-2731.984999px;}
._17{margin-left:-2730.961881px;}
._2{margin-left:-2713.153814px;}
._96{margin-left:-2709.517785px;}
._cd{margin-left:-2704.472186px;}
._6c{margin-left:-2695.405135px;}
._e8{margin-left:-2682.439359px;}
._4b{margin-left:-2672.076378px;}
._c8{margin-left:-2664.798696px;}
._e6{margin-left:-2602.740145px;}
._35{margin-left:-2591.442481px;}
._b1{margin-left:-2578.908816px;}
._a8{margin-left:-2575.312523px;}
._86{margin-left:-2564.068384px;}
._f8{margin-left:-2535.917793px;}
._ef{margin-left:-2480.043694px;}
._ed{margin-left:-2459.954939px;}
._66{margin-left:-2458.012338px;}
._ac{margin-left:-2451.683879px;}
._f1{margin-left:-2448.146496px;}
._ff{margin-left:-2444.108935px;}
._ce{margin-left:-2428.057741px;}
._5a{margin-left:-2421.006885px;}
._b5{margin-left:-2397.536374px;}
._cf{margin-left:-2393.712451px;}
._73{margin-left:-2370.965006px;}
._e9{margin-left:-2360.380608px;}
._f7{margin-left:-2356.127039px;}
._d5{margin-left:-2329.637824px;}
._fe{margin-left:-2321.933534px;}
._48{margin-left:-2294.426131px;}
._c4{margin-left:-2286.284416px;}
._4e{margin-left:-2282.537690px;}
._eb{margin-left:-2236.026528px;}
._3d{margin-left:-2224.439502px;}
._20{margin-left:-2149.914117px;}
._51{margin-left:-2132.155760px;}
._6a{margin-left:-2107.651115px;}
._75{margin-left:-2100.594850px;}
._5f{margin-left:-2094.110550px;}
._d3{margin-left:-2030.242799px;}
._79{margin-left:-2022.835533px;}
._f{margin-left:-1962.927031px;}
._bc{margin-left:-1958.240094px;}
._43{margin-left:-1935.132635px;}
._87{margin-left:-1925.655947px;}
._76{margin-left:-1897.687291px;}
._e7{margin-left:-1878.461098px;}
._c5{margin-left:-1872.124860px;}
._85{margin-left:-1854.193482px;}
._f0{margin-left:-1824.387067px;}
._ea{margin-left:-1808.186458px;}
._b8{margin-left:-1790.185782px;}
._33{margin-left:-1787.312435px;}
._d2{margin-left:-1772.113103px;}
._e4{margin-left:-1768.008949px;}
._c7{margin-left:-1766.072656px;}
._d8{margin-left:-1764.564536px;}
._97{margin-left:-1760.306012px;}
._93{margin-left:-1758.433942px;}
._dc{margin-left:-1688.445961px;}
._de{margin-left:-1684.061575px;}
._65{margin-left:-1678.230923px;}
._f6{margin-left:-1670.229276px;}
._94{margin-left:-1669.090422px;}
._fb{margin-left:-1661.240655px;}
._2f{margin-left:-1655.479421px;}
._7e{margin-left:-1653.530058px;}
._95{margin-left:-1639.561533px;}
._bd{margin-left:-1638.404081px;}
._df{margin-left:-1636.831739px;}
._db{margin-left:-1602.474731px;}
._7c{margin-left:-1593.271574px;}
._d0{margin-left:-1590.450280px;}
._7f{margin-left:-1580.667258px;}
._b4{margin-left:-1566.473379px;}
._c2{margin-left:-1556.032987px;}
._f3{margin-left:-1551.928833px;}
._82{margin-left:-1545.461778px;}
._5b{margin-left:-1539.977736px;}
._ee{margin-left:-1532.560105px;}
._d1{margin-left:-1530.544030px;}
._3{margin-left:-1520.327759px;}
._1a{margin-left:-1519.034296px;}
._cc{margin-left:-1516.287494px;}
._fa{margin-left:-1482.230215px;}
._70{margin-left:-1471.442998px;}
._c6{margin-left:-1446.660879px;}
._72{margin-left:-1441.698101px;}
._a4{margin-left:-1421.609347px;}
._ab{margin-left:-1410.160917px;}
._ba{margin-left:-1398.419067px;}
._6b{margin-left:-1377.685549px;}
._7d{margin-left:-1367.467250px;}
._aa{margin-left:-1351.694721px;}
._6d{margin-left:-1346.586466px;}
._e5{margin-left:-1328.432438px;}
._6f{margin-left:-1327.217739px;}
._67{margin-left:-1299.993740px;}
._5c{margin-left:-1288.188335px;}
._63{margin-left:-1259.679202px;}
._45{margin-left:-1257.875197px;}
._89{margin-left:-1234.918051px;}
._64{margin-left:-1215.530726px;}
._9c{margin-left:-1198.112952px;}
._5d{margin-left:-1177.088043px;}
._29{margin-left:-1137.267843px;}
._77{margin-left:-1123.878164px;}
._4c{margin-left:-1085.500603px;}
._59{margin-left:-1067.211916px;}
._25{margin-left:-1064.189274px;}
._14{margin-left:-1062.033130px;}
._a9{margin-left:-1052.523483px;}
._84{margin-left:-1049.503307px;}
._7a{margin-left:-1041.294999px;}
._9b{margin-left:-1037.914714px;}
._10{margin-left:-1030.063929px;}
._2d{margin-left:-1003.494931px;}
._30{margin-left:-957.623123px;}
._ad{margin-left:-953.451699px;}
._a7{margin-left:-913.772124px;}
._4d{margin-left:-899.377668px;}
._b{margin-left:-885.699859px;}
._62{margin-left:-883.605019px;}
._88{margin-left:-857.112081px;}
._c{margin-left:-854.517398px;}
._2b{margin-left:-842.556836px;}
._11{margin-left:-831.480470px;}
._a5{margin-left:-823.486818px;}
._46{margin-left:-815.848446px;}
._74{margin-left:-793.605695px;}
._b2{margin-left:-769.700798px;}
._80{margin-left:-745.867902px;}
._27{margin-left:-743.485052px;}
._49{margin-left:-731.679313px;}
._47{margin-left:-721.526932px;}
._a6{margin-left:-691.361855px;}
._a{margin-left:-681.212178px;}
._21{margin-left:-666.662342px;}
._26{margin-left:-633.761044px;}
._5{margin-left:-629.514236px;}
._98{margin-left:-627.711464px;}
._2c{margin-left:-623.960562px;}
._6e{margin-left:-613.382926px;}
._22{margin-left:-605.751992px;}
._15{margin-left:-573.710788px;}
._50{margin-left:-561.684984px;}
._61{margin-left:-559.740911px;}
._7b{margin-left:-545.484376px;}
._2e{margin-left:-538.069449px;}
._4f{margin-left:-503.578802px;}
._34{margin-left:-489.827637px;}
._5e{margin-left:-471.609601px;}
._39{margin-left:-461.962591px;}
._3f{margin-left:-419.983662px;}
._92{margin-left:-234.000676px;}
._12{margin-left:-198.000676px;}
._4a{margin-left:-4.858405px;}
._1c{margin-left:-3.299276px;}
._4{margin-left:-1.356334px;}
._1{width:1.076103px;}
._8{width:2.393246px;}
._9{width:3.573697px;}
._16{width:4.796336px;}
._1b{width:5.892128px;}
._2a{width:7.404747px;}
._0{width:8.881646px;}
._6{width:10.800406px;}
._7{width:12.228646px;}
._1f{width:13.539884px;}
._1e{width:14.581391px;}
._28{width:16.371615px;}
._68{width:19.032436px;}
._19{width:20.163851px;}
._18{width:21.208453px;}
._3e{width:22.571159px;}
._44{width:23.636576px;}
._38{width:24.968907px;}
._24{width:26.163420px;}
._23{width:27.853235px;}
._78{width:28.885837px;}
._d{width:29.896592px;}
._40{width:31.121763px;}
._41{width:32.483626px;}
._42{width:33.599433px;}
._60{width:34.712805px;}
._c3{width:36.254205px;}
._32{width:37.901549px;}
._31{width:39.087624px;}
._f5{width:40.140101px;}
._81{width:41.997079px;}
._69{width:43.347878px;}
._b3{width:44.534331px;}
._3c{width:46.624282px;}
._36{width:49.613238px;}
._bf{width:50.626716px;}
._be{width:51.651815px;}
._d4{width:56.227080px;}
._99{width:59.284664px;}
._9a{width:60.310920px;}
._55{width:61.329588px;}
._e1{width:62.756947px;}
._b0{width:66.695207px;}
._af{width:67.815016px;}
._ca{width:71.002823px;}
._c9{width:72.102271px;}
._ae{width:92.883489px;}
._f4{width:102.952898px;}
._bb{width:110.176232px;}
._b9{width:125.345739px;}
._cb{width:126.676946px;}
._da{width:131.501689px;}
._d9{width:132.532228px;}
._58{width:144.517058px;}
._dd{width:145.794752px;}
._8f{width:150.618689px;}
._f9{width:156.257400px;}
._e2{width:157.830491px;}
._f2{width:159.152978px;}
._57{width:168.255398px;}
._8a{width:172.159029px;}
._c0{width:176.890957px;}
._c1{width:178.086877px;}
._90{width:179.286734px;}
._b6{width:183.141410px;}
._b7{width:184.257733px;}
._52{width:191.582567px;}
._53{width:198.007437px;}
._e3{width:225.462969px;}
._8d{width:232.568736px;}
._91{width:249.849385px;}
._8c{width:261.369817px;}
._8b{width:267.130034px;}
._9f{width:312.491738px;}
._8e{width:352.093225px;}
._a2{width:393.854794px;}
._a3{width:408.255335px;}
._a0{width:418.335713px;}
._d7{width:441.377141px;}
._d6{width:442.471526px;}
._9d{width:454.337065px;}
._a1{width:586.102015px;}
._9e{width:604.102691px;}
._13{width:846.031778px;}
.fc3{color:transparent;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.881485px;}
.fs4{font-size:41.761620px;}
.fs2{font-size:48.241800px;}
.fs3{font-size:51.121800px;}
.fs5{font-size:59.762250px;}
.fs0{font-size:72.002705px;}
.fs1{font-size:81.363150px;}
.y0{bottom:0.000000px;}
.yc9{bottom:4.320029px;}
.y3b{bottom:110.340088px;}
.yd1{bottom:113.580093px;}
.y8b{bottom:115.740074px;}
.ye1{bottom:120.420043px;}
.yf1{bottom:121.140060px;}
.ya4{bottom:121.500068px;}
.yc3{bottom:122.400055px;}
.yc6{bottom:124.920043px;}
.ybd{bottom:126.000068px;}
.y25{bottom:127.800041px;}
.y94{bottom:134.280052px;}
.y5b{bottom:139.680039px;}
.yac{bottom:141.480079px;}
.yf7{bottom:145.080093px;}
.y68{bottom:145.620072px;}
.y3a{bottom:151.740074px;}
.y67{bottom:154.620072px;}
.yd0{bottom:154.980079px;}
.yc2{bottom:156.780052px;}
.y8a{bottom:157.140060px;}
.ye0{bottom:161.820099px;}
.ya3{bottom:162.900055px;}
.y49{bottom:163.800041px;}
.yc5{bottom:166.320099px;}
.ybc{bottom:167.400055px;}
.y24{bottom:169.200096px;}
.yf0{bottom:174.600083px;}
.y93{bottom:175.680039px;}
.y5a{bottom:181.080093px;}
.yab{bottom:182.880066px;}
.yf6{bottom:186.480079px;}
.y7e{bottom:191.340088px;}
.y39{bottom:193.140060px;}
.ycf{bottom:196.200096px;}
.yc1{bottom:198.180039px;}
.y89{bottom:198.540047px;}
.ydf{bottom:203.220085px;}
.ya2{bottom:204.300041px;}
.y48{bottom:205.200096px;}
.ybb{bottom:208.800041px;}
.y23{bottom:210.600083px;}
.y66{bottom:214.020058px;}
.yc4{bottom:215.640060px;}
.yef{bottom:216.000068px;}
.y92{bottom:217.080093px;}
.y59{bottom:222.480079px;}
.y65{bottom:223.020058px;}
.yaa{bottom:224.280052px;}
.yf5{bottom:227.880066px;}
.y7d{bottom:232.740074px;}
.y38{bottom:234.540047px;}
.yce{bottom:237.600083px;}
.yc0{bottom:239.580093px;}
.yf9{bottom:239.940033px;}
.yde{bottom:244.620072px;}
.ya1{bottom:245.700096px;}
.y47{bottom:246.600083px;}
.yba{bottom:250.200096px;}
.y88{bottom:252.000068px;}
.yee{bottom:257.400055px;}
.y91{bottom:258.480079px;}
.y22{bottom:263.880066px;}
.yf4{bottom:269.280052px;}
.ya9{bottom:273.780052px;}
.y7c{bottom:274.140060px;}
.y37{bottom:275.940033px;}
.ybf{bottom:280.980079px;}
.yf8{bottom:281.340088px;}
.y64{bottom:281.520058px;}
.ydd{bottom:286.020058px;}
.ya0{bottom:287.100083px;}
.y46{bottom:288.000068px;}
.y63{bottom:290.520058px;}
.ycd{bottom:291.060036px;}
.yb9{bottom:291.600083px;}
.y8e{bottom:293.400055px;}
.yed{bottom:298.800041px;}
.y90{bottom:299.880066px;}
.y58{bottom:305.280052px;}
.y7b{bottom:315.540047px;}
.y21{bottom:317.340088px;}
.yf3{bottom:322.740074px;}
.ydc{bottom:327.420043px;}
.y9f{bottom:328.500068px;}
.y45{bottom:329.400055px;}
.ybe{bottom:330.480079px;}
.y8d{bottom:334.800041px;}
.yec{bottom:340.200096px;}
.y8f{bottom:341.280052px;}
.ycc{bottom:344.520058px;}
.yb8{bottom:345.060036px;}
.y57{bottom:346.680039px;}
.y62{bottom:349.200096px;}
.y7a{bottom:356.940033px;}
.y11{bottom:357.480079px;}
.y61{bottom:358.200096px;}
.y20{bottom:358.740074px;}
.ydb{bottom:368.820099px;}
.y9e{bottom:369.900055px;}
.y44{bottom:370.800041px;}
.ye5{bottom:376.200096px;}
.yeb{bottom:381.600083px;}
.y54{bottom:382.680039px;}
.yb7{bottom:386.460091px;}
.y56{bottom:388.080093px;}
.y79{bottom:398.340088px;}
.ycb{bottom:398.700096px;}
.y1f{bottom:400.140060px;}
.yda{bottom:410.220085px;}
.y10{bottom:410.940033px;}
.y9d{bottom:411.300041px;}
.y43{bottom:412.200096px;}
.y60{bottom:414.540047px;}
.ye4{bottom:417.600083px;}
.y5f{bottom:423.540047px;}
.y53{bottom:424.080093px;}
.yb6{bottom:427.860077px;}
.y87{bottom:429.480079px;}
.yea{bottom:434.880066px;}
.y78{bottom:439.740074px;}
.y1e{bottom:441.540047px;}
.yca{bottom:451.980079px;}
.y9c{bottom:452.700096px;}
.y42{bottom:453.600083px;}
.ye3{bottom:459.000068px;}
.yd9{bottom:463.500068px;}
.y34{bottom:463.680039px;}
.yf{bottom:464.400055px;}
.y52{bottom:465.480079px;}
.yb5{bottom:469.260064px;}
.y86{bottom:470.880066px;}
.y5e{bottom:482.940033px;}
.ye9{bottom:488.340088px;}
.y77{bottom:493.020058px;}
.y9b{bottom:494.100083px;}
.y1d{bottom:495.000068px;}
.ye2{bottom:500.400055px;}
.y33{bottom:505.080093px;}
.y51{bottom:506.880066px;}
.yb4{bottom:510.660049px;}
.yd8{bottom:511.740074px;}
.y85{bottom:512.280052px;}
.yc7{bottom:514.800041px;}
.ye{bottom:517.680039px;}
.y5d{bottom:524.340088px;}
.yc8{bottom:531.180039px;}
.y9a{bottom:535.500068px;}
.y1c{bottom:536.400055px;}
.ye8{bottom:541.800041px;}
.y32{bottom:546.480079px;}
.y41{bottom:548.280052px;}
.yb3{bottom:552.060036px;}
.y84{bottom:553.680039px;}
.yd7{bottom:559.080093px;}
.y5c{bottom:565.740074px;}
.yd{bottom:571.140060px;}
.y1b{bottom:577.800041px;}
.ye7{bottom:583.020058px;}
.y76{bottom:587.880066px;}
.y99{bottom:588.960091px;}
.y40{bottom:589.680039px;}
.yb2{bottom:593.460091px;}
.y83{bottom:595.080093px;}
.y31{bottom:599.940033px;}
.ya8{bottom:601.740074px;}
.yd6{bottom:606.420043px;}
.y8c{bottom:607.140060px;}
.y1a{bottom:619.020058px;}
.yc{bottom:624.420043px;}
.y75{bottom:629.280052px;}
.y98{bottom:630.360077px;}
.y3f{bottom:631.080093px;}
.y82{bottom:636.480079px;}
.ya7{bottom:643.140060px;}
.yb1{bottom:646.740074px;}
.yf2{bottom:648.540047px;}
.y30{bottom:653.220085px;}
.yd5{bottom:653.940033px;}
.y19{bottom:660.420043px;}
.yb{bottom:665.820099px;}
.y74{bottom:670.680039px;}
.y97{bottom:671.760064px;}
.y3e{bottom:672.480079px;}
.y81{bottom:677.880066px;}
.ya6{bottom:684.540047px;}
.yb0{bottom:688.140060px;}
.ye6{bottom:689.940067px;}
.yd4{bottom:697.860077px;}
.y18{bottom:701.820065px;}
.y2f{bottom:702.720051px;}
.y73{bottom:712.080059px;}
.y96{bottom:713.160049px;}
.y3d{bottom:713.880066px;}
.ya{bottom:719.280052px;}
.yd2{bottom:722.340054px;}
.ya5{bottom:725.940067px;}
.y80{bottom:731.340054px;}
.y2e{bottom:738.180073px;}
.yaf{bottom:741.600083px;}
.yd3{bottom:742.500068px;}
.y17{bottom:743.220051px;}
.y3c{bottom:755.280052px;}
.y95{bottom:762.480079px;}
.y72{bottom:765.360077px;}
.y50{bottom:767.340054px;}
.y9{bottom:772.740074px;}
.yae{bottom:783.000068px;}
.y16{bottom:784.620072px;}
.y2d{bottom:791.460056px;}
.y36{bottom:796.680073px;}
.y4f{bottom:808.740074px;}
.y71{bottom:818.820065px;}
.y8{bottom:826.020058px;}
.yad{bottom:832.500068px;}
.y2c{bottom:832.860077px;}
.y35{bottom:838.080059px;}
.y4e{bottom:850.140060px;}
.y70{bottom:860.220051px;}
.y7{bottom:867.420078px;}
.y2b{bottom:875.520058px;}
.y15{bottom:879.480079px;}
.y4d{bottom:891.540081px;}
.y6f{bottom:901.620072px;}
.y6{bottom:908.820065px;}
.y2a{bottom:916.920078px;}
.y14{bottom:920.880066px;}
.y4c{bottom:932.940067px;}
.y6e{bottom:943.020058px;}
.y55{bottom:950.220051px;}
.y29{bottom:959.760064px;}
.y5{bottom:962.280053px;}
.y4b{bottom:974.340054px;}
.y6d{bottom:984.420061px;}
.y7f{bottom:991.620072px;}
.y28{bottom:1000.980063px;}
.y4{bottom:1003.680073px;}
.y4a{bottom:1015.740074px;}
.y6c{bottom:1025.820065px;}
.y27{bottom:1043.820065px;}
.y13{bottom:1045.080059px;}
.y3{bottom:1057.140060px;}
.y6b{bottom:1067.220068px;}
.y26{bottom:1085.040064px;}
.y12{bottom:1086.480063px;}
.y2{bottom:1098.540064px;}
.y6a{bottom:1122.120063px;}
.y69{bottom:1131.120063px;}
.y1{bottom:1139.940067px;}
.hc{height:20.520057px;}
.h2{height:64.549300px;}
.hd{height:70.607822px;}
.hb{height:70.607961px;}
.ha{height:70.608029px;}
.h8{height:70.608096px;}
.h9{height:70.608101px;}
.h3{height:107.580426px;}
.h6{height:118.700835px;}
.h4{height:127.690944px;}
.h5{height:128.410823px;}
.h7{height:128.410962px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:2.519990px;}
.w3{width:15.299973px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.x1a{left:132.120002px;}
.xb{left:134.640000px;}
.x19{left:137.700002px;}
.x1b{left:151.199993px;}
.x2{left:154.620002px;}
.x22{left:156.060001px;}
.x21{left:160.560001px;}
.x23{left:163.620002px;}
.x3{left:181.620002px;}
.x24{left:199.620002px;}
.xd{left:212.939999px;}
.xc{left:214.560001px;}
.x1d{left:276.120002px;}
.xa{left:277.379998px;}
.x1c{left:288.720017px;}
.xe{left:293.399987px;}
.xf{left:301.860008px;}
.x7{left:330.300007px;}
.x6{left:341.819996px;}
.x5{left:363.959988px;}
.x10{left:367.199993px;}
.x9{left:392.939999px;}
.x11{left:395.279983px;}
.x8{left:400.319996px;}
.x1f{left:467.459988px;}
.x1e{left:473.579990px;}
.x12{left:489.959988px;}
.x13{left:496.439999px;}
.x14{left:575.819996px;}
.x15{left:646.200027px;}
.x20{left:654.659981px;}
.x18{left:668.879998px;}
.x16{left:695.340019px;}
.x17{left:760.860008px;}
.x4{left:765.360008px;}
@media print{
.vd{vertical-align:-29.440184pt;}
.ve{vertical-align:-24.320008pt;}
.v8{vertical-align:-16.640012pt;}
.va{vertical-align:-13.440004pt;}
.v4{vertical-align:-8.959960pt;}
.v1{vertical-align:-5.119876pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:5.119872pt;}
.v6{vertical-align:8.959992pt;}
.v9{vertical-align:13.440004pt;}
.v7{vertical-align:16.640012pt;}
.vf{vertical-align:18.559936pt;}
.vb{vertical-align:24.320068pt;}
.v3{vertical-align:32.000000pt;}
.v2{vertical-align:37.760008pt;}
.v5{vertical-align:41.599852pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000500pt;}
.ls3{letter-spacing:0.062901pt;}
.lsb{letter-spacing:0.319208pt;}
.lsa{letter-spacing:0.319212pt;}
.ls8{letter-spacing:0.382812pt;}
.lse{letter-spacing:0.600917pt;}
.lsd{letter-spacing:0.600921pt;}
.ls9{letter-spacing:2.942812pt;}
.ls1{letter-spacing:8.303938pt;}
.ls0{letter-spacing:8.303998pt;}
.ls7{letter-spacing:13.182864pt;}
.ls5{letter-spacing:30.271334pt;}
.ls4{letter-spacing:48.831330pt;}
.ls6{letter-spacing:93.438870pt;}
.lsc{letter-spacing:142.271334pt;}
.ws0{word-spacing:-16.000601pt;}
.ws3{word-spacing:-14.080529pt;}
.wsa{word-spacing:-13.280500pt;}
.ws2{word-spacing:-10.720400pt;}
.ws4{word-spacing:-9.997152pt;}
.ws9{word-spacing:-8.640330pt;}
.ws8{word-spacing:-8.166717pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:8.904596pt;}
.ws5{word-spacing:48.971063pt;}
.ws7{word-spacing:49.680968pt;}
._83{margin-left:-2491.127623pt;}
._3b{margin-left:-2475.994289pt;}
._3a{margin-left:-2474.992250pt;}
._56{margin-left:-2465.502334pt;}
._fc{margin-left:-2460.933916pt;}
._37{margin-left:-2460.029030pt;}
._71{margin-left:-2458.696138pt;}
._54{margin-left:-2449.513320pt;}
._e{margin-left:-2444.011540pt;}
._1d{margin-left:-2442.944915pt;}
._ec{margin-left:-2432.264339pt;}
._fd{margin-left:-2430.671194pt;}
._e0{margin-left:-2428.431110pt;}
._17{margin-left:-2427.521672pt;}
._2{margin-left:-2411.692279pt;}
._96{margin-left:-2408.460253pt;}
._cd{margin-left:-2403.975277pt;}
._6c{margin-left:-2395.915676pt;}
._e8{margin-left:-2384.390541pt;}
._4b{margin-left:-2375.179003pt;}
._c8{margin-left:-2368.709952pt;}
._e6{margin-left:-2313.546795pt;}
._35{margin-left:-2303.504428pt;}
._b1{margin-left:-2292.363392pt;}
._a8{margin-left:-2289.166687pt;}
._86{margin-left:-2279.171897pt;}
._f8{margin-left:-2254.149149pt;}
._ef{margin-left:-2204.483283pt;}
._ed{margin-left:-2186.626613pt;}
._66{margin-left:-2184.899856pt;}
._ac{margin-left:-2179.274560pt;}
._f1{margin-left:-2176.130218pt;}
._ff{margin-left:-2172.541276pt;}
._ce{margin-left:-2158.273548pt;}
._5a{margin-left:-2152.006120pt;}
._b5{margin-left:-2131.143444pt;}
._cf{margin-left:-2127.744401pt;}
._73{margin-left:-2107.524449pt;}
._e9{margin-left:-2098.116096pt;}
._f7{margin-left:-2094.335146pt;}
._d5{margin-left:-2070.789177pt;}
._fe{margin-left:-2063.940920pt;}
._48{margin-left:-2039.489894pt;}
._c4{margin-left:-2032.252814pt;}
._4e{margin-left:-2028.922391pt;}
._eb{margin-left:-1987.579136pt;}
._3d{margin-left:-1977.279557pt;}
._20{margin-left:-1911.034771pt;}
._51{margin-left:-1895.249564pt;}
._6a{margin-left:-1873.467658pt;}
._75{margin-left:-1867.195422pt;}
._5f{margin-left:-1861.431600pt;}
._d3{margin-left:-1804.660266pt;}
._79{margin-left:-1798.076029pt;}
._f{margin-left:-1744.824028pt;}
._bc{margin-left:-1740.657862pt;}
._43{margin-left:-1720.117898pt;}
._87{margin-left:-1711.694175pt;}
._76{margin-left:-1686.833148pt;}
._e7{margin-left:-1669.743198pt;}
._c5{margin-left:-1664.110986pt;}
._85{margin-left:-1648.171984pt;}
._f0{margin-left:-1621.677393pt;}
._ea{margin-left:-1607.276852pt;}
._b8{margin-left:-1591.276251pt;}
._33{margin-left:-1588.722165pt;}
._d2{margin-left:-1575.211647pt;}
._e4{margin-left:-1571.563510pt;}
._c7{margin-left:-1569.842361pt;}
._d8{margin-left:-1568.501810pt;}
._97{margin-left:-1564.716455pt;}
._93{margin-left:-1563.052393pt;}
._dc{margin-left:-1500.840854pt;}
._de{margin-left:-1496.943622pt;}
._65{margin-left:-1491.760820pt;}
._f6{margin-left:-1484.648246pt;}
._94{margin-left:-1483.635930pt;}
._fb{margin-left:-1476.658360pt;}
._2f{margin-left:-1471.537263pt;}
._7e{margin-left:-1469.804496pt;}
._95{margin-left:-1457.388030pt;}
._bd{margin-left:-1456.359183pt;}
._df{margin-left:-1454.961545pt;}
._db{margin-left:-1424.421983pt;}
._7c{margin-left:-1416.241399pt;}
._d0{margin-left:-1413.733582pt;}
._7f{margin-left:-1405.037563pt;}
._b4{margin-left:-1392.420781pt;}
._c2{margin-left:-1383.140433pt;}
._f3{margin-left:-1379.492296pt;}
._82{margin-left:-1373.743803pt;}
._5b{margin-left:-1368.869099pt;}
._ee{margin-left:-1362.275649pt;}
._d1{margin-left:-1360.483582pt;}
._3{margin-left:-1351.402452pt;}
._1a{margin-left:-1350.252707pt;}
._cc{margin-left:-1347.811106pt;}
._fa{margin-left:-1317.537969pt;}
._70{margin-left:-1307.949331pt;}
._c6{margin-left:-1285.920781pt;}
._72{margin-left:-1281.509423pt;}
._a4{margin-left:-1263.652753pt;}
._ab{margin-left:-1253.476370pt;}
._ba{margin-left:-1243.039171pt;}
._6b{margin-left:-1224.609377pt;}
._7d{margin-left:-1215.526445pt;}
._aa{margin-left:-1201.506418pt;}
._6d{margin-left:-1196.965748pt;}
._e5{margin-left:-1180.828834pt;}
._6f{margin-left:-1179.749101pt;}
._67{margin-left:-1155.549992pt;}
._5c{margin-left:-1145.056298pt;}
._63{margin-left:-1119.714846pt;}
._45{margin-left:-1118.111286pt;}
._89{margin-left:-1097.704934pt;}
._64{margin-left:-1080.471756pt;}
._9c{margin-left:-1064.989291pt;}
._5d{margin-left:-1046.300483pt;}
._29{margin-left:-1010.904749pt;}
._77{margin-left:-999.002812pt;}
._4c{margin-left:-964.889425pt;}
._59{margin-left:-948.632814pt;}
._25{margin-left:-945.946021pt;}
._14{margin-left:-944.029449pt;}
._a9{margin-left:-935.576430pt;}
._84{margin-left:-932.891829pt;}
._7a{margin-left:-925.595555pt;}
._9b{margin-left:-922.590857pt;}
._10{margin-left:-915.612382pt;}
._2d{margin-left:-891.995495pt;}
._30{margin-left:-851.220554pt;}
._ad{margin-left:-847.512622pt;}
._a7{margin-left:-812.241888pt;}
._4d{margin-left:-799.446816pt;}
._b{margin-left:-787.288764pt;}
._62{margin-left:-785.426684pt;}
._88{margin-left:-761.877405pt;}
._c{margin-left:-759.571021pt;}
._2b{margin-left:-748.939410pt;}
._11{margin-left:-739.093751pt;}
._a5{margin-left:-731.988283pt;}
._46{margin-left:-725.198619pt;}
._74{margin-left:-705.427285pt;}
._b2{margin-left:-684.178487pt;}
._80{margin-left:-662.993691pt;}
._27{margin-left:-660.875602pt;}
._49{margin-left:-650.381611pt;}
._47{margin-left:-641.357272pt;}
._a6{margin-left:-614.543871pt;}
._a{margin-left:-605.521936pt;}
._21{margin-left:-592.588749pt;}
._26{margin-left:-563.343150pt;}
._5{margin-left:-559.568210pt;}
._98{margin-left:-557.965746pt;}
._2c{margin-left:-554.631611pt;}
._6e{margin-left:-545.229268pt;}
._22{margin-left:-538.446215pt;}
._15{margin-left:-509.965145pt;}
._50{margin-left:-499.275542pt;}
._61{margin-left:-497.547477pt;}
._7b{margin-left:-484.875001pt;}
._2e{margin-left:-478.283955pt;}
._4f{margin-left:-447.625602pt;}
._34{margin-left:-435.402344pt;}
._5e{margin-left:-419.208534pt;}
._39{margin-left:-410.633414pt;}
._3f{margin-left:-373.318811pt;}
._92{margin-left:-208.000601pt;}
._12{margin-left:-176.000601pt;}
._4a{margin-left:-4.318583pt;}
._1c{margin-left:-2.932690pt;}
._4{margin-left:-1.205630pt;}
._1{width:0.956536pt;}
._8{width:2.127330pt;}
._9{width:3.176619pt;}
._16{width:4.263410pt;}
._1b{width:5.237447pt;}
._2a{width:6.581997pt;}
._0{width:7.894797pt;}
._6{width:9.600361pt;}
._7{width:10.869908pt;}
._1f{width:12.035452pt;}
._1e{width:12.961237pt;}
._28{width:14.552546pt;}
._68{width:16.917720pt;}
._19{width:17.923423pt;}
._18{width:18.851958pt;}
._3e{width:20.063253pt;}
._44{width:21.010290pt;}
._38{width:22.194584pt;}
._24{width:23.256374pt;}
._23{width:24.758431pt;}
._78{width:25.676299pt;}
._d{width:26.574748pt;}
._40{width:27.663789pt;}
._41{width:28.874334pt;}
._42{width:29.866162pt;}
._60{width:30.855827pt;}
._c3{width:32.225960pt;}
._32{width:33.690266pt;}
._31{width:34.744555pt;}
._f5{width:35.680090pt;}
._81{width:37.330737pt;}
._69{width:38.531447pt;}
._b3{width:39.586072pt;}
._3c{width:41.443807pt;}
._36{width:44.100656pt;}
._bf{width:45.001525pt;}
._be{width:45.912724pt;}
._d4{width:49.979627pt;}
._99{width:52.697479pt;}
._9a{width:53.609707pt;}
._55{width:54.515190pt;}
._e1{width:55.783953pt;}
._b0{width:59.284628pt;}
._af{width:60.280014pt;}
._ca{width:63.113621pt;}
._c9{width:64.090907pt;}
._ae{width:82.563101pt;}
._f4{width:91.513687pt;}
._bb{width:97.934429pt;}
._b9{width:111.418435pt;}
._cb{width:112.601730pt;}
._da{width:116.890391pt;}
._d9{width:117.806425pt;}
._58{width:128.459607pt;}
._dd{width:129.595335pt;}
._8f{width:133.883279pt;}
._f9{width:138.895467pt;}
._e2{width:140.293770pt;}
._f2{width:141.469314pt;}
._57{width:149.560354pt;}
._8a{width:153.030248pt;}
._c0{width:157.236406pt;}
._c1{width:158.299446pt;}
._90{width:159.365986pt;}
._b6{width:162.792365pt;}
._b7{width:163.784652pt;}
._52{width:170.295616pt;}
._53{width:176.006611pt;}
._e3{width:200.411528pt;}
._8d{width:206.727765pt;}
._91{width:222.088342pt;}
._8c{width:232.328727pt;}
._8b{width:237.448919pt;}
._9f{width:277.770433pt;}
._8e{width:312.971756pt;}
._a2{width:350.093150pt;}
._a3{width:362.893631pt;}
._a0{width:371.853967pt;}
._d7{width:392.335237pt;}
._d6{width:393.308023pt;}
._9d{width:403.855169pt;}
._a1{width:520.979569pt;}
._9e{width:536.980170pt;}
._13{width:752.028247pt;}
.fs6{font-size:34.561320pt;}
.fs4{font-size:37.121440pt;}
.fs2{font-size:42.881600pt;}
.fs3{font-size:45.441600pt;}
.fs5{font-size:53.122000pt;}
.fs0{font-size:64.002404pt;}
.fs1{font-size:72.322800pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:3.840026pt;}
.y3b{bottom:98.080079pt;}
.yd1{bottom:100.960083pt;}
.y8b{bottom:102.880066pt;}
.ye1{bottom:107.040039pt;}
.yf1{bottom:107.680054pt;}
.ya4{bottom:108.000061pt;}
.yc3{bottom:108.800049pt;}
.yc6{bottom:111.040039pt;}
.ybd{bottom:112.000061pt;}
.y25{bottom:113.600037pt;}
.y94{bottom:119.360047pt;}
.y5b{bottom:124.160035pt;}
.yac{bottom:125.760071pt;}
.yf7{bottom:128.960083pt;}
.y68{bottom:129.440064pt;}
.y3a{bottom:134.880066pt;}
.y67{bottom:137.440064pt;}
.yd0{bottom:137.760071pt;}
.yc2{bottom:139.360047pt;}
.y8a{bottom:139.680054pt;}
.ye0{bottom:143.840088pt;}
.ya3{bottom:144.800049pt;}
.y49{bottom:145.600037pt;}
.yc5{bottom:147.840088pt;}
.ybc{bottom:148.800049pt;}
.y24{bottom:150.400086pt;}
.yf0{bottom:155.200074pt;}
.y93{bottom:156.160035pt;}
.y5a{bottom:160.960083pt;}
.yab{bottom:162.560059pt;}
.yf6{bottom:165.760071pt;}
.y7e{bottom:170.080079pt;}
.y39{bottom:171.680054pt;}
.ycf{bottom:174.400086pt;}
.yc1{bottom:176.160035pt;}
.y89{bottom:176.480042pt;}
.ydf{bottom:180.640076pt;}
.ya2{bottom:181.600037pt;}
.y48{bottom:182.400086pt;}
.ybb{bottom:185.600037pt;}
.y23{bottom:187.200074pt;}
.y66{bottom:190.240052pt;}
.yc4{bottom:191.680054pt;}
.yef{bottom:192.000061pt;}
.y92{bottom:192.960083pt;}
.y59{bottom:197.760071pt;}
.y65{bottom:198.240052pt;}
.yaa{bottom:199.360047pt;}
.yf5{bottom:202.560059pt;}
.y7d{bottom:206.880066pt;}
.y38{bottom:208.480042pt;}
.yce{bottom:211.200074pt;}
.yc0{bottom:212.960083pt;}
.yf9{bottom:213.280030pt;}
.yde{bottom:217.440064pt;}
.ya1{bottom:218.400086pt;}
.y47{bottom:219.200074pt;}
.yba{bottom:222.400086pt;}
.y88{bottom:224.000061pt;}
.yee{bottom:228.800049pt;}
.y91{bottom:229.760071pt;}
.y22{bottom:234.560059pt;}
.yf4{bottom:239.360047pt;}
.ya9{bottom:243.360047pt;}
.y7c{bottom:243.680054pt;}
.y37{bottom:245.280030pt;}
.ybf{bottom:249.760071pt;}
.yf8{bottom:250.080079pt;}
.y64{bottom:250.240052pt;}
.ydd{bottom:254.240052pt;}
.ya0{bottom:255.200074pt;}
.y46{bottom:256.000061pt;}
.y63{bottom:258.240052pt;}
.ycd{bottom:258.720032pt;}
.yb9{bottom:259.200074pt;}
.y8e{bottom:260.800049pt;}
.yed{bottom:265.600037pt;}
.y90{bottom:266.560059pt;}
.y58{bottom:271.360047pt;}
.y7b{bottom:280.480042pt;}
.y21{bottom:282.080079pt;}
.yf3{bottom:286.880066pt;}
.ydc{bottom:291.040039pt;}
.y9f{bottom:292.000061pt;}
.y45{bottom:292.800049pt;}
.ybe{bottom:293.760071pt;}
.y8d{bottom:297.600037pt;}
.yec{bottom:302.400086pt;}
.y8f{bottom:303.360047pt;}
.ycc{bottom:306.240052pt;}
.yb8{bottom:306.720032pt;}
.y57{bottom:308.160035pt;}
.y62{bottom:310.400086pt;}
.y7a{bottom:317.280030pt;}
.y11{bottom:317.760071pt;}
.y61{bottom:318.400086pt;}
.y20{bottom:318.880066pt;}
.ydb{bottom:327.840088pt;}
.y9e{bottom:328.800049pt;}
.y44{bottom:329.600037pt;}
.ye5{bottom:334.400086pt;}
.yeb{bottom:339.200074pt;}
.y54{bottom:340.160035pt;}
.yb7{bottom:343.520081pt;}
.y56{bottom:344.960083pt;}
.y79{bottom:354.080079pt;}
.ycb{bottom:354.400086pt;}
.y1f{bottom:355.680054pt;}
.yda{bottom:364.640076pt;}
.y10{bottom:365.280030pt;}
.y9d{bottom:365.600037pt;}
.y43{bottom:366.400086pt;}
.y60{bottom:368.480042pt;}
.ye4{bottom:371.200074pt;}
.y5f{bottom:376.480042pt;}
.y53{bottom:376.960083pt;}
.yb6{bottom:380.320069pt;}
.y87{bottom:381.760071pt;}
.yea{bottom:386.560059pt;}
.y78{bottom:390.880066pt;}
.y1e{bottom:392.480042pt;}
.yca{bottom:401.760071pt;}
.y9c{bottom:402.400086pt;}
.y42{bottom:403.200074pt;}
.ye3{bottom:408.000061pt;}
.yd9{bottom:412.000061pt;}
.y34{bottom:412.160035pt;}
.yf{bottom:412.800049pt;}
.y52{bottom:413.760071pt;}
.yb5{bottom:417.120057pt;}
.y86{bottom:418.560059pt;}
.y5e{bottom:429.280030pt;}
.ye9{bottom:434.080079pt;}
.y77{bottom:438.240052pt;}
.y9b{bottom:439.200074pt;}
.y1d{bottom:440.000061pt;}
.ye2{bottom:444.800049pt;}
.y33{bottom:448.960083pt;}
.y51{bottom:450.560059pt;}
.yb4{bottom:453.920044pt;}
.yd8{bottom:454.880066pt;}
.y85{bottom:455.360047pt;}
.yc7{bottom:457.600037pt;}
.ye{bottom:460.160035pt;}
.y5d{bottom:466.080079pt;}
.yc8{bottom:472.160035pt;}
.y9a{bottom:476.000061pt;}
.y1c{bottom:476.800049pt;}
.ye8{bottom:481.600037pt;}
.y32{bottom:485.760071pt;}
.y41{bottom:487.360047pt;}
.yb3{bottom:490.720032pt;}
.y84{bottom:492.160035pt;}
.yd7{bottom:496.960083pt;}
.y5c{bottom:502.880066pt;}
.yd{bottom:507.680054pt;}
.y1b{bottom:513.600037pt;}
.ye7{bottom:518.240052pt;}
.y76{bottom:522.560059pt;}
.y99{bottom:523.520081pt;}
.y40{bottom:524.160035pt;}
.yb2{bottom:527.520081pt;}
.y83{bottom:528.960083pt;}
.y31{bottom:533.280030pt;}
.ya8{bottom:534.880066pt;}
.yd6{bottom:539.040039pt;}
.y8c{bottom:539.680054pt;}
.y1a{bottom:550.240052pt;}
.yc{bottom:555.040039pt;}
.y75{bottom:559.360047pt;}
.y98{bottom:560.320069pt;}
.y3f{bottom:560.960083pt;}
.y82{bottom:565.760071pt;}
.ya7{bottom:571.680054pt;}
.yb1{bottom:574.880066pt;}
.yf2{bottom:576.480042pt;}
.y30{bottom:580.640076pt;}
.yd5{bottom:581.280030pt;}
.y19{bottom:587.040039pt;}
.yb{bottom:591.840088pt;}
.y74{bottom:596.160035pt;}
.y97{bottom:597.120057pt;}
.y3e{bottom:597.760071pt;}
.y81{bottom:602.560059pt;}
.ya6{bottom:608.480042pt;}
.yb0{bottom:611.680054pt;}
.ye6{bottom:613.280060pt;}
.yd4{bottom:620.320069pt;}
.y18{bottom:623.840058pt;}
.y2f{bottom:624.640046pt;}
.y73{bottom:632.960053pt;}
.y96{bottom:633.920044pt;}
.y3d{bottom:634.560059pt;}
.ya{bottom:639.360047pt;}
.yd2{bottom:642.080048pt;}
.ya5{bottom:645.280060pt;}
.y80{bottom:650.080048pt;}
.y2e{bottom:656.160065pt;}
.yaf{bottom:659.200074pt;}
.yd3{bottom:660.000061pt;}
.y17{bottom:660.640046pt;}
.y3c{bottom:671.360047pt;}
.y95{bottom:677.760071pt;}
.y72{bottom:680.320069pt;}
.y50{bottom:682.080048pt;}
.y9{bottom:686.880066pt;}
.yae{bottom:696.000061pt;}
.y16{bottom:697.440064pt;}
.y2d{bottom:703.520050pt;}
.y36{bottom:708.160065pt;}
.y4f{bottom:718.880066pt;}
.y71{bottom:727.840058pt;}
.y8{bottom:734.240052pt;}
.yad{bottom:740.000061pt;}
.y2c{bottom:740.320069pt;}
.y35{bottom:744.960053pt;}
.y4e{bottom:755.680054pt;}
.y70{bottom:764.640046pt;}
.y7{bottom:771.040070pt;}
.y2b{bottom:778.240052pt;}
.y15{bottom:781.760071pt;}
.y4d{bottom:792.480072pt;}
.y6f{bottom:801.440064pt;}
.y6{bottom:807.840058pt;}
.y2a{bottom:815.040070pt;}
.y14{bottom:818.560059pt;}
.y4c{bottom:829.280060pt;}
.y6e{bottom:838.240052pt;}
.y55{bottom:844.640046pt;}
.y29{bottom:853.120057pt;}
.y5{bottom:855.360047pt;}
.y4b{bottom:866.080048pt;}
.y6d{bottom:875.040055pt;}
.y7f{bottom:881.440064pt;}
.y28{bottom:889.760056pt;}
.y4{bottom:892.160065pt;}
.y4a{bottom:902.880066pt;}
.y6c{bottom:911.840058pt;}
.y27{bottom:927.840058pt;}
.y13{bottom:928.960053pt;}
.y3{bottom:939.680054pt;}
.y6b{bottom:948.640061pt;}
.y26{bottom:964.480057pt;}
.y12{bottom:965.760056pt;}
.y2{bottom:976.480057pt;}
.y6a{bottom:997.440056pt;}
.y69{bottom:1005.440056pt;}
.y1{bottom:1013.280060pt;}
.hc{height:18.240051pt;}
.h2{height:57.377155pt;}
.hd{height:62.762508pt;}
.hb{height:62.762632pt;}
.ha{height:62.762692pt;}
.h8{height:62.762752pt;}
.h9{height:62.762756pt;}
.h3{height:95.627046pt;}
.h6{height:105.511854pt;}
.h4{height:113.503061pt;}
.h5{height:114.142953pt;}
.h7{height:114.143077pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:2.239991pt;}
.w3{width:13.599976pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.x1a{left:117.440002pt;}
.xb{left:119.680000pt;}
.x19{left:122.400002pt;}
.x1b{left:134.399994pt;}
.x2{left:137.440002pt;}
.x22{left:138.720001pt;}
.x21{left:142.720001pt;}
.x23{left:145.440002pt;}
.x3{left:161.440002pt;}
.x24{left:177.440002pt;}
.xd{left:189.279999pt;}
.xc{left:190.720001pt;}
.x1d{left:245.440002pt;}
.xa{left:246.559998pt;}
.x1c{left:256.640015pt;}
.xe{left:260.799988pt;}
.xf{left:268.320007pt;}
.x7{left:293.600006pt;}
.x6{left:303.839996pt;}
.x5{left:323.519989pt;}
.x10{left:326.399994pt;}
.x9{left:349.279999pt;}
.x11{left:351.359985pt;}
.x8{left:355.839996pt;}
.x1f{left:415.519989pt;}
.x1e{left:420.959991pt;}
.x12{left:435.519989pt;}
.x13{left:441.279999pt;}
.x14{left:511.839996pt;}
.x15{left:574.400024pt;}
.x20{left:581.919983pt;}
.x18{left:594.559998pt;}
.x16{left:618.080017pt;}
.x17{left:676.320007pt;}
.x4{left:680.320007pt;}
}




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