
    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_f79558c669848d9471f0a529.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_3ed21e93b9f78c54fbf5c875.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_8ff33c4d8bdd0f2ddb1516bb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_83eef573abca358969289585.woff')format("woff");}.ff4{font-family:ff4;line-height:1.230469;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_0f02acd73e29ec4e37ff09b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752930;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_045379add3b1d56c9856591a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.352051;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_e750beead15ef6cd28859b0f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.310059;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_a632497310597bd7713dcc5b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.310059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0d1ef35cf17a9f8a3beecd57.woff')format("woff");}.ff9{font-family:ff9;line-height:1.313477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dfd342e41398ae12d0817d7b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.313477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_91157b2f631fb26d063382fb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_33c61fc158efbb55416456a2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_62717a40ca590686e59fcefe.woff')format("woff");}.ff10{font-family:ff10;line-height:1.352051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7fc293b9340f13a645d3c319.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v4{vertical-align:-20.880000px;}
.v7{vertical-align:-5.760000px;}
.v1{vertical-align:-3.960000px;}
.v5{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.080000px;}
.v8{vertical-align:5.760000px;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:27.000000px;}
.ls1e{letter-spacing:-1.992000px;}
.ls15{letter-spacing:-0.452400px;}
.ls18{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.270000px;}
.ls31{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.153600px;}
.ls12{letter-spacing:-0.145800px;}
.ls1f{letter-spacing:-0.141000px;}
.ls29{letter-spacing:-0.119400px;}
.lsc{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.092400px;}
.ls11{letter-spacing:-0.090440px;}
.ls13{letter-spacing:-0.086400px;}
.ls10{letter-spacing:-0.085800px;}
.lsf{letter-spacing:-0.076200px;}
.ls1c{letter-spacing:-0.075000px;}
.ls14{letter-spacing:-0.070800px;}
.ls2e{letter-spacing:-0.015480px;}
.ls8{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.012960px;}
.ls2a{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.041760px;}
.ls23{letter-spacing:0.052560px;}
.ls26{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.072000px;}
.lse{letter-spacing:0.076800px;}
.ls1{letter-spacing:0.087120px;}
.ls28{letter-spacing:0.096480px;}
.ls27{letter-spacing:0.105120px;}
.ls5{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.112800px;}
.ls17{letter-spacing:0.132814px;}
.ls25{letter-spacing:0.138000px;}
.ls9{letter-spacing:0.139800px;}
.lsd{letter-spacing:0.146400px;}
.ls2d{letter-spacing:0.165600px;}
.ls0{letter-spacing:0.177120px;}
.ls22{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.267600px;}
.lsa{letter-spacing:0.270000px;}
.ls2b{letter-spacing:0.355200px;}
.ls1a{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.447120px;}
.ls1b{letter-spacing:5.366880px;}
.ls19{letter-spacing:7.526880px;}
.ls20{letter-spacing:9.360000px;}
.ls30{letter-spacing:16.406640px;}
.ls2f{letter-spacing:24.446880px;}
.ls7{letter-spacing:36.926640px;}
.ls6{letter-spacing:41.148000px;}
.ls21{letter-spacing:46.286640px;}
.ls3{letter-spacing:1064.730000px;}
.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;}
}
.ws6{word-spacing:-65.956800px;}
.ws4{word-spacing:-65.880000px;}
.ws7{word-spacing:-60.120000px;}
.wsa{word-spacing:-60.049200px;}
.ws9{word-spacing:-60.033600px;}
.wsb{word-spacing:-59.974200px;}
.ws1{word-spacing:-23.981760px;}
.ws2{word-spacing:-23.940000px;}
.ws1e{word-spacing:-16.758720px;}
.wsc{word-spacing:-16.593120px;}
.ws8{word-spacing:-16.472880px;}
.ws11{word-spacing:-16.397880px;}
.ws16{word-spacing:-16.353480px;}
.ws13{word-spacing:-16.331880px;}
.ws15{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.ws23{word-spacing:-14.850000px;}
.wse{word-spacing:-14.796000px;}
.ws12{word-spacing:-14.480880px;}
.wsd{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.267440px;}
.ws1c{word-spacing:-13.257120px;}
.ws1a{word-spacing:-13.231920px;}
.ws22{word-spacing:-13.227840px;}
.ws17{word-spacing:-13.214880px;}
.ws1d{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.140000px;}
.ws19{word-spacing:-13.119120px;}
.ws3{word-spacing:-11.970000px;}
.ws5{word-spacing:-11.625120px;}
.ws14{word-spacing:-0.060120px;}
.ws21{word-spacing:-0.047880px;}
.ws10{word-spacing:0.000000px;}
.ws20{word-spacing:1.484280px;}
.ws1b{word-spacing:2.681280px;}
.ws1f{word-spacing:3.126240px;}
._28{margin-left:-21.564720px;}
._13{margin-left:-19.921320px;}
._27{margin-left:-15.752520px;}
._10{margin-left:-10.844280px;}
._1f{margin-left:-9.307440px;}
._b{margin-left:-7.870320px;}
._7{margin-left:-6.658920px;}
._9{margin-left:-4.788000px;}
._d{margin-left:-3.651720px;}
._3{margin-left:-2.517720px;}
._0{margin-left:-1.202400px;}
._6{width:1.141560px;}
._5{width:2.166360px;}
._4{width:3.207960px;}
._a{width:4.611600px;}
._16{width:5.644800px;}
._8{width:6.785640px;}
._c{width:7.839720px;}
._e{width:9.799560px;}
._f{width:10.945080px;}
._15{width:12.290040px;}
._1b{width:13.893720px;}
._1a{width:15.143640px;}
._11{width:17.795520px;}
._12{width:18.961920px;}
._14{width:20.080080px;}
._1d{width:21.162960px;}
._18{width:22.896000px;}
._17{width:24.018120px;}
._21{width:25.532280px;}
._20{width:26.533440px;}
._1e{width:28.316520px;}
._23{width:29.990520px;}
._1c{width:31.433400px;}
._26{width:32.454720px;}
._2e{width:34.199280px;}
._39{width:35.561520px;}
._24{width:37.035360px;}
._25{width:38.107560px;}
._29{width:39.216000px;}
._31{width:42.294240px;}
._22{width:43.587720px;}
._2a{width:45.241200px;}
._19{width:46.584000px;}
._32{width:52.003800px;}
._33{width:53.266320px;}
._34{width:70.761240px;}
._30{width:108.877320px;}
._38{width:127.514520px;}
._2{width:130.455480px;}
._2b{width:138.035520px;}
._2f{width:166.592520px;}
._36{width:191.061360px;}
._37{width:192.083400px;}
._1{width:341.548680px;}
._35{width:448.374960px;}
._2c{width:471.100320px;}
._2d{width:1047.350520px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:29.880000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs3{font-size:50.469447px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:56.920429px;}
.fs0{font-size:60.120000px;}
.fsa{font-size:63.371411px;}
.fs5{font-size:65.880000px;}
.fsb{font-size:69.442923px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:96.120000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.700000px;}
.y38{bottom:2.970000px;}
.y78{bottom:3.060000px;}
.y36{bottom:3.420000px;}
.ya1{bottom:3.600000px;}
.y16{bottom:3.780000px;}
.y17{bottom:5.940000px;}
.y30{bottom:6.030000px;}
.y7a{bottom:7.920000px;}
.y77{bottom:8.010000px;}
.y4{bottom:11.610000px;}
.y9{bottom:14.040000px;}
.y136{bottom:16.470000px;}
.y5{bottom:19.080000px;}
.y2e{bottom:19.350000px;}
.y35{bottom:21.330000px;}
.y135{bottom:30.240000px;}
.y7{bottom:35.550000px;}
.y2d{bottom:35.820000px;}
.y34{bottom:39.330000px;}
.y134{bottom:44.100000px;}
.y2c{bottom:51.300000px;}
.y33{bottom:57.240000px;}
.y133{bottom:57.870000px;}
.y3{bottom:58.140000px;}
.y2b{bottom:66.870000px;}
.y32{bottom:75.240000px;}
.y2a{bottom:82.380000px;}
.y29{bottom:97.950000px;}
.y37{bottom:106.200000px;}
.y130{bottom:111.330000px;}
.y71{bottom:112.860000px;}
.y28{bottom:113.430000px;}
.yc9{bottom:115.650000px;}
.y40{bottom:117.450000px;}
.y25{bottom:121.680000px;}
.y9b{bottom:126.990000px;}
.y12f{bottom:128.520000px;}
.y27{bottom:129.000000px;}
.y70{bottom:132.750000px;}
.yc8{bottom:135.630000px;}
.y3f{bottom:137.340000px;}
.yff{bottom:138.510000px;}
.y24{bottom:139.500000px;}
.y9a{bottom:140.670000px;}
.y12e{bottom:145.800000px;}
.y6f{bottom:152.730000px;}
.yc7{bottom:155.520000px;}
.yfe{bottom:155.820000px;}
.y3e{bottom:157.350000px;}
.y99{bottom:157.440000px;}
.y23{bottom:159.390000px;}
.y12d{bottom:163.110000px;}
.y6e{bottom:172.740000px;}
.yfd{bottom:173.010000px;}
.y98{bottom:174.090000px;}
.yc6{bottom:175.530000px;}
.y3d{bottom:177.330000px;}
.y22{bottom:179.370000px;}
.y12c{bottom:180.300000px;}
.yfc{bottom:190.290000px;}
.y6d{bottom:192.630000px;}
.y97{bottom:193.080000px;}
.yc5{bottom:195.510000px;}
.y3c{bottom:197.220000px;}
.y12b{bottom:197.580000px;}
.y21{bottom:199.350000px;}
.y96{bottom:205.770000px;}
.yfb{bottom:207.570000px;}
.yc4{bottom:212.430000px;}
.y6c{bottom:212.610000px;}
.y12a{bottom:214.860000px;}
.y3b{bottom:216.660000px;}
.y20{bottom:219.240000px;}
.y95{bottom:221.790000px;}
.yfa{bottom:224.760000px;}
.yc3{bottom:229.080000px;}
.y129{bottom:232.050000px;}
.y6b{bottom:232.590000px;}
.y3a{bottom:234.480000px;}
.y94{bottom:238.530000px;}
.y1f{bottom:239.220000px;}
.yf9{bottom:242.040000px;}
.yc2{bottom:245.820000px;}
.y128{bottom:249.330000px;}
.y6a{bottom:252.480000px;}
.y39{bottom:253.560000px;}
.y93{bottom:258.420000px;}
.y1e{bottom:259.200000px;}
.yf8{bottom:259.320000px;}
.yc1{bottom:262.560000px;}
.y127{bottom:266.610000px;}
.y18{bottom:266.880000px;}
.y69{bottom:272.460000px;}
.yf7{bottom:276.510000px;}
.y92{bottom:278.400000px;}
.y1d{bottom:279.090000px;}
.yc0{bottom:279.210000px;}
.y126{bottom:283.800000px;}
.y68{bottom:292.440000px;}
.yf6{bottom:293.790000px;}
.ybf{bottom:295.950000px;}
.y91{bottom:298.380000px;}
.y1c{bottom:299.070000px;}
.y125{bottom:301.080000px;}
.yf5{bottom:311.070000px;}
.y67{bottom:312.330000px;}
.ybe{bottom:314.940000px;}
.y90{bottom:318.360000px;}
.y1b{bottom:319.080000px;}
.ybd{bottom:327.630000px;}
.yf4{bottom:328.260000px;}
.y66{bottom:332.310000px;}
.y124{bottom:335.550000px;}
.y8f{bottom:338.250000px;}
.y1a{bottom:338.970000px;}
.ybc{bottom:344.370000px;}
.yf3{bottom:345.540000px;}
.y65{bottom:352.290000px;}
.y123{bottom:352.830000px;}
.y8e{bottom:358.230000px;}
.y19{bottom:358.410000px;}
.yf2{bottom:362.820000px;}
.ybb{bottom:364.350000px;}
.y122{bottom:370.020000px;}
.y64{bottom:372.270000px;}
.y8d{bottom:375.150000px;}
.yf1{bottom:380.010000px;}
.yba{bottom:384.330000px;}
.y132{bottom:384.780000px;}
.y31{bottom:386.490000px;}
.y8c{bottom:391.890000px;}
.y63{bottom:392.160000px;}
.yf0{bottom:397.290000px;}
.yb9{bottom:404.220000px;}
.y8b{bottom:408.540000px;}
.y62{bottom:412.140000px;}
.yef{bottom:414.570000px;}
.yb8{bottom:424.200000px;}
.y8a{bottom:425.280000px;}
.yee{bottom:431.760000px;}
.y61{bottom:432.120000px;}
.y89{bottom:442.020000px;}
.yb7{bottom:444.180000px;}
.yed{bottom:449.040000px;}
.y60{bottom:452.010000px;}
.y131{bottom:454.530000px;}
.y88{bottom:458.670000px;}
.yb6{bottom:464.070000px;}
.yec{bottom:466.320000px;}
.y5f{bottom:471.990000px;}
.y87{bottom:475.410000px;}
.y2f{bottom:476.940000px;}
.yeb{bottom:483.510000px;}
.yb5{bottom:484.050000px;}
.y121{bottom:486.210000px;}
.y5e{bottom:491.970000px;}
.y86{bottom:492.150000px;}
.y26{bottom:497.730000px;}
.yea{bottom:500.790000px;}
.y120{bottom:503.490000px;}
.yb4{bottom:504.030000px;}
.y85{bottom:508.800000px;}
.y5d{bottom:511.860000px;}
.ye9{bottom:518.070000px;}
.y11f{bottom:520.770000px;}
.yb3{bottom:523.920000px;}
.y84{bottom:525.540000px;}
.y5c{bottom:531.840000px;}
.ye8{bottom:535.260000px;}
.y11e{bottom:537.960000px;}
.yb2{bottom:540.840000px;}
.y83{bottom:542.280000px;}
.y5b{bottom:551.820000px;}
.ye7{bottom:552.540000px;}
.y11d{bottom:555.240000px;}
.yb1{bottom:557.580000px;}
.y82{bottom:558.930000px;}
.ye6{bottom:569.730000px;}
.y5a{bottom:571.710000px;}
.y11c{bottom:572.430000px;}
.yb0{bottom:574.350000px;}
.y81{bottom:575.700000px;}
.ye5{bottom:587.040000px;}
.y11b{bottom:589.740000px;}
.yaf{bottom:591.000000px;}
.y59{bottom:591.720000px;}
.y80{bottom:592.440000px;}
.ye4{bottom:604.320000px;}
.y11a{bottom:607.020000px;}
.yae{bottom:607.740000px;}
.y7f{bottom:609.090000px;}
.y58{bottom:611.700000px;}
.ye3{bottom:621.510000px;}
.y119{bottom:624.210000px;}
.y7e{bottom:625.830000px;}
.yad{bottom:626.730000px;}
.y57{bottom:631.590000px;}
.ye2{bottom:638.790000px;}
.yac{bottom:639.420000px;}
.y15{bottom:640.050000px;}
.y118{bottom:641.490000px;}
.y7d{bottom:642.570000px;}
.y56{bottom:651.570000px;}
.yab{bottom:655.350000px;}
.ye1{bottom:656.070000px;}
.y117{bottom:658.770000px;}
.y7c{bottom:659.220000px;}
.y55{bottom:671.550000px;}
.yaa{bottom:672.090000px;}
.ye0{bottom:673.260000px;}
.y7b{bottom:675.960000px;}
.y14{bottom:678.120000px;}
.ydf{bottom:690.540000px;}
.y54{bottom:691.440000px;}
.ya9{bottom:692.070000px;}
.y79{bottom:692.700000px;}
.y116{bottom:693.240000px;}
.yde{bottom:707.820000px;}
.y76{bottom:709.350000px;}
.y115{bottom:710.520000px;}
.y53{bottom:711.420000px;}
.ya8{bottom:712.050000px;}
.y13{bottom:713.040000px;}
.ydd{bottom:725.010000px;}
.y75{bottom:726.090000px;}
.y114{bottom:727.710000px;}
.y52{bottom:731.400000px;}
.ya7{bottom:731.940000px;}
.ydc{bottom:742.290000px;}
.y74{bottom:742.830000px;}
.y113{bottom:744.990000px;}
.y51{bottom:751.290000px;}
.ya6{bottom:751.920000px;}
.y12{bottom:758.310000px;}
.ydb{bottom:759.570000px;}
.y73{bottom:761.730000px;}
.y112{bottom:762.270000px;}
.y11{bottom:763.530000px;}
.y50{bottom:771.270000px;}
.ya5{bottom:771.900000px;}
.y72{bottom:774.510000px;}
.yda{bottom:776.760000px;}
.y111{bottom:779.460000px;}
.y4f{bottom:791.250000px;}
.ya4{bottom:791.790000px;}
.y10{bottom:792.240000px;}
.yd9{bottom:794.040000px;}
.y110{bottom:796.740000px;}
.yf{bottom:797.460000px;}
.y4e{bottom:811.140000px;}
.yd8{bottom:811.320000px;}
.ya3{bottom:811.770000px;}
.y10f{bottom:814.020000px;}
.ye{bottom:814.200000px;}
.yd7{bottom:828.510000px;}
.y4d{bottom:831.120000px;}
.y10e{bottom:831.210000px;}
.ya2{bottom:831.750000px;}
.yd{bottom:837.240000px;}
.yd6{bottom:845.790000px;}
.y10d{bottom:848.490000px;}
.ya0{bottom:848.670000px;}
.y4c{bottom:851.100000px;}
.yd5{bottom:863.070000px;}
.y10c{bottom:865.770000px;}
.yc{bottom:866.400000px;}
.y9f{bottom:866.490000px;}
.y4b{bottom:871.080000px;}
.yd4{bottom:880.260000px;}
.y10b{bottom:882.960000px;}
.y9e{bottom:885.480000px;}
.y4a{bottom:890.970000px;}
.yd3{bottom:897.540000px;}
.y9d{bottom:898.170000px;}
.y10a{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y49{bottom:910.950000px;}
.y9c{bottom:914.190000px;}
.yd2{bottom:914.730000px;}
.y109{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y48{bottom:930.930000px;}
.yd1{bottom:932.010000px;}
.y108{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.yd0{bottom:949.290000px;}
.y47{bottom:950.820000px;}
.y107{bottom:951.990000px;}
.ycf{bottom:966.480000px;}
.y106{bottom:969.180000px;}
.y46{bottom:970.800000px;}
.yce{bottom:983.760000px;}
.y105{bottom:986.460000px;}
.y45{bottom:990.780000px;}
.ycd{bottom:1001.070000px;}
.y104{bottom:1003.770000px;}
.y44{bottom:1010.700000px;}
.ycc{bottom:1018.260000px;}
.y103{bottom:1020.960000px;}
.y43{bottom:1030.680000px;}
.ycb{bottom:1035.540000px;}
.y102{bottom:1038.240000px;}
.y42{bottom:1050.660000px;}
.yca{bottom:1052.820000px;}
.y101{bottom:1055.520000px;}
.y41{bottom:1070.550000px;}
.y100{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h33{height:13.860000px;}
.h29{height:15.930000px;}
.h2e{height:15.960000px;}
.h2b{height:16.020000px;}
.h2d{height:16.050000px;}
.h2f{height:17.100000px;}
.h19{height:19.980000px;}
.h1e{height:20.070000px;}
.h7{height:33.431836px;}
.h34{height:33.782520px;}
.h3{height:34.020000px;}
.h6{height:37.408506px;}
.h25{height:37.705078px;}
.h28{height:37.792969px;}
.h24{height:38.100586px;}
.h30{height:38.250000px;}
.h8{height:39.082324px;}
.h1c{height:39.999023px;}
.h4{height:41.978320px;}
.h18{height:42.418652px;}
.h32{height:43.769004px;}
.h10{height:43.995586px;}
.h1d{height:44.532246px;}
.h5{height:45.004395px;}
.h2{height:45.295488px;}
.ha{height:46.000195px;}
.h17{height:46.971583px;}
.hb{height:49.635176px;}
.h15{height:50.211211px;}
.h2c{height:50.264648px;}
.h1{height:50.800781px;}
.h2a{height:50.872500px;}
.h27{height:51.667383px;}
.h22{height:57.375000px;}
.h20{height:58.271484px;}
.h21{height:59.755333px;}
.h26{height:63.114258px;}
.h31{height:63.877500px;}
.h12{height:64.875586px;}
.h11{height:67.332124px;}
.he{height:67.819043px;}
.h35{height:69.030000px;}
.h13{height:71.091211px;}
.hf{height:71.217773px;}
.h14{height:73.783106px;}
.hc{height:76.201172px;}
.h1f{height:89.730000px;}
.hd{height:113.378906px;}
.h16{height:114.750000px;}
.h23{height:118.800000px;}
.h1b{height:141.600000px;}
.h9{height:153.930000px;}
.h1a{height:372.450000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w17{width:79.470000px;}
.w18{width:93.780000px;}
.w13{width:95.670000px;}
.w19{width:98.130000px;}
.w9{width:112.140000px;}
.w14{width:117.660000px;}
.wc{width:120.330000px;}
.wa{width:133.500000px;}
.wd{width:136.470000px;}
.w7{width:143.490000px;}
.wb{width:153.840000px;}
.w11{width:155.190000px;}
.w15{width:170.940000px;}
.w6{width:220.350000px;}
.w10{width:243.480000px;}
.w16{width:272.370000px;}
.we{width:304.680000px;}
.w8{width:326.190000px;}
.w1a{width:329.250000px;}
.w12{width:346.890000px;}
.wf{width:473.370000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:6.660000px;}
.x3{left:8.640000px;}
.x18{left:20.160000px;}
.x24{left:27.630000px;}
.x1a{left:34.110000px;}
.x23{left:36.090000px;}
.x5a{left:37.530000px;}
.x5c{left:38.970000px;}
.x30{left:41.400000px;}
.x5f{left:42.570000px;}
.x52{left:44.370000px;}
.x8{left:45.540000px;}
.x32{left:48.060000px;}
.x35{left:49.590000px;}
.x2c{left:51.300000px;}
.x38{left:52.680000px;}
.x2{left:53.999986px;}
.x34{left:55.350000px;}
.x48{left:57.150000px;}
.x36{left:58.590000px;}
.x26{left:59.669986px;}
.x1{left:60.749986px;}
.x37{left:62.220000px;}
.x1d{left:63.270000px;}
.x25{left:65.429986px;}
.x4f{left:66.630000px;}
.x5d{left:70.050000px;}
.x1e{left:71.370000px;}
.x1f{left:72.900000px;}
.x1b{left:75.510000px;}
.x20{left:80.280000px;}
.x1c{left:83.880000px;}
.x60{left:88.199986px;}
.x57{left:97.020000px;}
.x4{left:100.890000px;}
.x4d{left:105.210000px;}
.x7{left:107.999986px;}
.x21{left:109.530000px;}
.x22{left:116.910000px;}
.x3c{left:119.700000px;}
.x41{left:121.320000px;}
.x39{left:125.190000px;}
.x3d{left:127.890000px;}
.x5e{left:129.690000px;}
.x3a{left:134.280000px;}
.x3e{left:137.070000px;}
.xb{left:139.229986px;}
.x40{left:140.760000px;}
.x3f{left:143.190000px;}
.x3b{left:146.250000px;}
.x33{left:147.600000px;}
.x42{left:150.120000px;}
.x2e{left:152.010000px;}
.xe{left:166.349986px;}
.x54{left:170.190000px;}
.x5{left:178.410000px;}
.x6{left:184.440000px;}
.x4b{left:197.130000px;}
.x4e{left:219.990000px;}
.x2d{left:244.560000px;}
.x45{left:254.820000px;}
.x50{left:256.170000px;}
.x56{left:271.920000px;}
.x15{left:298.469986px;}
.x16{left:305.939986px;}
.xf{left:312.059986px;}
.x10{left:319.439986px;}
.x55{left:325.829986px;}
.x11{left:334.019986px;}
.x12{left:337.259986px;}
.xd{left:360.029986px;}
.x49{left:365.969986px;}
.x46{left:375.960000px;}
.x2a{left:377.579986px;}
.x4a{left:392.789986px;}
.x44{left:410.429986px;}
.xa{left:459.029986px;}
.x43{left:461.819986px;}
.xc{left:464.159986px;}
.x27{left:478.229986px;}
.x28{left:479.759986px;}
.x2b{left:486.059986px;}
.x29{left:506.759986px;}
.x47{left:513.150000px;}
.x58{left:545.010000px;}
.x2f{left:571.470000px;}
.x4c{left:574.350000px;}
.x51{left:603.780000px;}
.x59{left:625.200000px;}
.x17{left:642.210000px;}
.x31{left:684.330000px;}
.x53{left:700.170000px;}
.x5b{left:719.700000px;}
.x13{left:751.379986px;}
.x14{left:809.279986px;}
.x9{left:812.430000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v7{vertical-align:-5.120000pt;}
.v1{vertical-align:-3.520000pt;}
.v5{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.960000pt;}
.v8{vertical-align:5.120000pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:24.000000pt;}
.ls1e{letter-spacing:-1.770667pt;}
.ls15{letter-spacing:-0.402133pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.240000pt;}
.ls31{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.136533pt;}
.ls12{letter-spacing:-0.129600pt;}
.ls1f{letter-spacing:-0.125333pt;}
.ls29{letter-spacing:-0.106133pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.082133pt;}
.ls11{letter-spacing:-0.080391pt;}
.ls13{letter-spacing:-0.076800pt;}
.ls10{letter-spacing:-0.076267pt;}
.lsf{letter-spacing:-0.067733pt;}
.ls1c{letter-spacing:-0.066667pt;}
.ls14{letter-spacing:-0.062933pt;}
.ls2e{letter-spacing:-0.013760pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.011520pt;}
.ls2a{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.037120pt;}
.ls23{letter-spacing:0.046720pt;}
.ls26{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.068267pt;}
.ls1{letter-spacing:0.077440pt;}
.ls28{letter-spacing:0.085760pt;}
.ls27{letter-spacing:0.093440pt;}
.ls5{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.100267pt;}
.ls17{letter-spacing:0.118057pt;}
.ls25{letter-spacing:0.122667pt;}
.ls9{letter-spacing:0.124267pt;}
.lsd{letter-spacing:0.130133pt;}
.ls2d{letter-spacing:0.147200pt;}
.ls0{letter-spacing:0.157440pt;}
.ls22{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.237867pt;}
.lsa{letter-spacing:0.240000pt;}
.ls2b{letter-spacing:0.315733pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.397440pt;}
.ls1b{letter-spacing:4.770560pt;}
.ls19{letter-spacing:6.690560pt;}
.ls20{letter-spacing:8.320000pt;}
.ls30{letter-spacing:14.583680pt;}
.ls2f{letter-spacing:21.730560pt;}
.ls7{letter-spacing:32.823680pt;}
.ls6{letter-spacing:36.576000pt;}
.ls21{letter-spacing:41.143680pt;}
.ls3{letter-spacing:946.426667pt;}
.ws6{word-spacing:-58.628267pt;}
.ws4{word-spacing:-58.560000pt;}
.ws7{word-spacing:-53.440000pt;}
.wsa{word-spacing:-53.377067pt;}
.ws9{word-spacing:-53.363200pt;}
.wsb{word-spacing:-53.310400pt;}
.ws1{word-spacing:-21.317120pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1e{word-spacing:-14.896640pt;}
.wsc{word-spacing:-14.749440pt;}
.ws8{word-spacing:-14.642560pt;}
.ws11{word-spacing:-14.575893pt;}
.ws16{word-spacing:-14.536427pt;}
.ws13{word-spacing:-14.517227pt;}
.ws15{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws23{word-spacing:-13.200000pt;}
.wse{word-spacing:-13.152000pt;}
.ws12{word-spacing:-12.871893pt;}
.wsd{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.793280pt;}
.ws1c{word-spacing:-11.784107pt;}
.ws1a{word-spacing:-11.761707pt;}
.ws22{word-spacing:-11.758080pt;}
.ws17{word-spacing:-11.746560pt;}
.ws1d{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.680000pt;}
.ws19{word-spacing:-11.661440pt;}
.ws3{word-spacing:-10.640000pt;}
.ws5{word-spacing:-10.333440pt;}
.ws14{word-spacing:-0.053440pt;}
.ws21{word-spacing:-0.042560pt;}
.ws10{word-spacing:0.000000pt;}
.ws20{word-spacing:1.319360pt;}
.ws1b{word-spacing:2.383360pt;}
.ws1f{word-spacing:2.778880pt;}
._28{margin-left:-19.168640pt;}
._13{margin-left:-17.707840pt;}
._27{margin-left:-14.002240pt;}
._10{margin-left:-9.639360pt;}
._1f{margin-left:-8.273280pt;}
._b{margin-left:-6.995840pt;}
._7{margin-left:-5.919040pt;}
._9{margin-left:-4.256000pt;}
._d{margin-left:-3.245973pt;}
._3{margin-left:-2.237973pt;}
._0{margin-left:-1.068800pt;}
._6{width:1.014720pt;}
._5{width:1.925653pt;}
._4{width:2.851520pt;}
._a{width:4.099200pt;}
._16{width:5.017600pt;}
._8{width:6.031680pt;}
._c{width:6.968640pt;}
._e{width:8.710720pt;}
._f{width:9.728960pt;}
._15{width:10.924480pt;}
._1b{width:12.349973pt;}
._1a{width:13.461013pt;}
._11{width:15.818240pt;}
._12{width:16.855040pt;}
._14{width:17.848960pt;}
._1d{width:18.811520pt;}
._18{width:20.352000pt;}
._17{width:21.349440pt;}
._21{width:22.695360pt;}
._20{width:23.585280pt;}
._1e{width:25.170240pt;}
._23{width:26.658240pt;}
._1c{width:27.940800pt;}
._26{width:28.848640pt;}
._2e{width:30.399360pt;}
._39{width:31.610240pt;}
._24{width:32.920320pt;}
._25{width:33.873387pt;}
._29{width:34.858667pt;}
._31{width:37.594880pt;}
._22{width:38.744640pt;}
._2a{width:40.214400pt;}
._19{width:41.408000pt;}
._32{width:46.225600pt;}
._33{width:47.347840pt;}
._34{width:62.898880pt;}
._30{width:96.779840pt;}
._38{width:113.346240pt;}
._2{width:115.960427pt;}
._2b{width:122.698240pt;}
._2f{width:148.082240pt;}
._36{width:169.832320pt;}
._37{width:170.740800pt;}
._1{width:303.598827pt;}
._35{width:398.555520pt;}
._2c{width:418.755840pt;}
._2d{width:930.978240pt;}
.fs4{font-size:26.560000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs3{font-size:44.861730pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:50.595937pt;}
.fs0{font-size:53.440000pt;}
.fsa{font-size:56.330143pt;}
.fs5{font-size:58.560000pt;}
.fsb{font-size:61.727043pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:85.440000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.400000pt;}
.y38{bottom:2.640000pt;}
.y78{bottom:2.720000pt;}
.y36{bottom:3.040000pt;}
.ya1{bottom:3.200000pt;}
.y16{bottom:3.360000pt;}
.y17{bottom:5.280000pt;}
.y30{bottom:5.360000pt;}
.y7a{bottom:7.040000pt;}
.y77{bottom:7.120000pt;}
.y4{bottom:10.320000pt;}
.y9{bottom:12.480000pt;}
.y136{bottom:14.640000pt;}
.y5{bottom:16.960000pt;}
.y2e{bottom:17.200000pt;}
.y35{bottom:18.960000pt;}
.y135{bottom:26.880000pt;}
.y7{bottom:31.600000pt;}
.y2d{bottom:31.840000pt;}
.y34{bottom:34.960000pt;}
.y134{bottom:39.200000pt;}
.y2c{bottom:45.600000pt;}
.y33{bottom:50.880000pt;}
.y133{bottom:51.440000pt;}
.y3{bottom:51.680000pt;}
.y2b{bottom:59.440000pt;}
.y32{bottom:66.880000pt;}
.y2a{bottom:73.226667pt;}
.y29{bottom:87.066667pt;}
.y37{bottom:94.400000pt;}
.y130{bottom:98.960000pt;}
.y71{bottom:100.320000pt;}
.y28{bottom:100.826667pt;}
.yc9{bottom:102.800000pt;}
.y40{bottom:104.400000pt;}
.y25{bottom:108.160000pt;}
.y9b{bottom:112.880000pt;}
.y12f{bottom:114.240000pt;}
.y27{bottom:114.666667pt;}
.y70{bottom:118.000000pt;}
.yc8{bottom:120.560000pt;}
.y3f{bottom:122.080000pt;}
.yff{bottom:123.120000pt;}
.y24{bottom:124.000000pt;}
.y9a{bottom:125.040000pt;}
.y12e{bottom:129.600000pt;}
.y6f{bottom:135.760000pt;}
.yc7{bottom:138.240000pt;}
.yfe{bottom:138.506667pt;}
.y3e{bottom:139.866667pt;}
.y99{bottom:139.946667pt;}
.y23{bottom:141.680000pt;}
.y12d{bottom:144.986667pt;}
.y6e{bottom:153.546667pt;}
.yfd{bottom:153.786667pt;}
.y98{bottom:154.746667pt;}
.yc6{bottom:156.026667pt;}
.y3d{bottom:157.626667pt;}
.y22{bottom:159.440000pt;}
.y12c{bottom:160.266667pt;}
.yfc{bottom:169.146667pt;}
.y6d{bottom:171.226667pt;}
.y97{bottom:171.626667pt;}
.yc5{bottom:173.786667pt;}
.y3c{bottom:175.306667pt;}
.y12b{bottom:175.626667pt;}
.y21{bottom:177.200000pt;}
.y96{bottom:182.906667pt;}
.yfb{bottom:184.506667pt;}
.yc4{bottom:188.826667pt;}
.y6c{bottom:188.986667pt;}
.y12a{bottom:190.986667pt;}
.y3b{bottom:192.586667pt;}
.y20{bottom:194.880000pt;}
.y95{bottom:197.146667pt;}
.yfa{bottom:199.786667pt;}
.yc3{bottom:203.626667pt;}
.y129{bottom:206.266667pt;}
.y6b{bottom:206.746667pt;}
.y3a{bottom:208.426667pt;}
.y94{bottom:212.026667pt;}
.y1f{bottom:212.640000pt;}
.yf9{bottom:215.146667pt;}
.yc2{bottom:218.506667pt;}
.y128{bottom:221.626667pt;}
.y6a{bottom:224.426667pt;}
.y39{bottom:225.386667pt;}
.y93{bottom:229.706667pt;}
.y1e{bottom:230.400000pt;}
.yf8{bottom:230.506667pt;}
.yc1{bottom:233.386667pt;}
.y127{bottom:236.986667pt;}
.y18{bottom:237.226667pt;}
.y69{bottom:242.186667pt;}
.yf7{bottom:245.786667pt;}
.y92{bottom:247.466667pt;}
.y1d{bottom:248.080000pt;}
.yc0{bottom:248.186667pt;}
.y126{bottom:252.266667pt;}
.y68{bottom:259.946667pt;}
.yf6{bottom:261.146667pt;}
.ybf{bottom:263.066667pt;}
.y91{bottom:265.226667pt;}
.y1c{bottom:265.840000pt;}
.y125{bottom:267.626667pt;}
.yf5{bottom:276.506667pt;}
.y67{bottom:277.626667pt;}
.ybe{bottom:279.946667pt;}
.y90{bottom:282.986667pt;}
.y1b{bottom:283.626667pt;}
.ybd{bottom:291.226667pt;}
.yf4{bottom:291.786667pt;}
.y66{bottom:295.386667pt;}
.y124{bottom:298.266667pt;}
.y8f{bottom:300.666667pt;}
.y1a{bottom:301.306667pt;}
.ybc{bottom:306.106667pt;}
.yf3{bottom:307.146667pt;}
.y65{bottom:313.146667pt;}
.y123{bottom:313.626667pt;}
.y8e{bottom:318.426667pt;}
.y19{bottom:318.586667pt;}
.yf2{bottom:322.506667pt;}
.ybb{bottom:323.866667pt;}
.y122{bottom:328.906667pt;}
.y64{bottom:330.906667pt;}
.y8d{bottom:333.466667pt;}
.yf1{bottom:337.786667pt;}
.yba{bottom:341.626667pt;}
.y132{bottom:342.026667pt;}
.y31{bottom:343.546667pt;}
.y8c{bottom:348.346667pt;}
.y63{bottom:348.586667pt;}
.yf0{bottom:353.146667pt;}
.yb9{bottom:359.306667pt;}
.y8b{bottom:363.146667pt;}
.y62{bottom:366.346667pt;}
.yef{bottom:368.506667pt;}
.yb8{bottom:377.066667pt;}
.y8a{bottom:378.026667pt;}
.yee{bottom:383.786667pt;}
.y61{bottom:384.106667pt;}
.y89{bottom:392.906667pt;}
.yb7{bottom:394.826667pt;}
.yed{bottom:399.146667pt;}
.y60{bottom:401.786667pt;}
.y131{bottom:404.026667pt;}
.y88{bottom:407.706667pt;}
.yb6{bottom:412.506667pt;}
.yec{bottom:414.506667pt;}
.y5f{bottom:419.546667pt;}
.y87{bottom:422.586667pt;}
.y2f{bottom:423.946667pt;}
.yeb{bottom:429.786667pt;}
.yb5{bottom:430.266667pt;}
.y121{bottom:432.186667pt;}
.y5e{bottom:437.306667pt;}
.y86{bottom:437.466667pt;}
.y26{bottom:442.426667pt;}
.yea{bottom:445.146667pt;}
.y120{bottom:447.546667pt;}
.yb4{bottom:448.026667pt;}
.y85{bottom:452.266667pt;}
.y5d{bottom:454.986667pt;}
.ye9{bottom:460.506667pt;}
.y11f{bottom:462.906667pt;}
.yb3{bottom:465.706667pt;}
.y84{bottom:467.146667pt;}
.y5c{bottom:472.746667pt;}
.ye8{bottom:475.786667pt;}
.y11e{bottom:478.186667pt;}
.yb2{bottom:480.746667pt;}
.y83{bottom:482.026667pt;}
.y5b{bottom:490.506667pt;}
.ye7{bottom:491.146667pt;}
.y11d{bottom:493.546667pt;}
.yb1{bottom:495.626667pt;}
.y82{bottom:496.826667pt;}
.ye6{bottom:506.426667pt;}
.y5a{bottom:508.186667pt;}
.y11c{bottom:508.826667pt;}
.yb0{bottom:510.533333pt;}
.y81{bottom:511.733333pt;}
.ye5{bottom:521.813333pt;}
.y11b{bottom:524.213333pt;}
.yaf{bottom:525.333333pt;}
.y59{bottom:525.973333pt;}
.y80{bottom:526.613333pt;}
.ye4{bottom:537.173333pt;}
.y11a{bottom:539.573333pt;}
.yae{bottom:540.213333pt;}
.y7f{bottom:541.413333pt;}
.y58{bottom:543.733333pt;}
.ye3{bottom:552.453333pt;}
.y119{bottom:554.853333pt;}
.y7e{bottom:556.293333pt;}
.yad{bottom:557.093333pt;}
.y57{bottom:561.413333pt;}
.ye2{bottom:567.813333pt;}
.yac{bottom:568.373333pt;}
.y15{bottom:568.933333pt;}
.y118{bottom:570.213333pt;}
.y7d{bottom:571.173333pt;}
.y56{bottom:579.173333pt;}
.yab{bottom:582.533333pt;}
.ye1{bottom:583.173333pt;}
.y117{bottom:585.573333pt;}
.y7c{bottom:585.973333pt;}
.y55{bottom:596.933333pt;}
.yaa{bottom:597.413333pt;}
.ye0{bottom:598.453333pt;}
.y7b{bottom:600.853333pt;}
.y14{bottom:602.773333pt;}
.ydf{bottom:613.813333pt;}
.y54{bottom:614.613333pt;}
.ya9{bottom:615.173333pt;}
.y79{bottom:615.733333pt;}
.y116{bottom:616.213333pt;}
.yde{bottom:629.173333pt;}
.y76{bottom:630.533333pt;}
.y115{bottom:631.573333pt;}
.y53{bottom:632.373333pt;}
.ya8{bottom:632.933333pt;}
.y13{bottom:633.813333pt;}
.ydd{bottom:644.453333pt;}
.y75{bottom:645.413333pt;}
.y114{bottom:646.853333pt;}
.y52{bottom:650.133333pt;}
.ya7{bottom:650.613333pt;}
.ydc{bottom:659.813333pt;}
.y74{bottom:660.293333pt;}
.y113{bottom:662.213333pt;}
.y51{bottom:667.813333pt;}
.ya6{bottom:668.373333pt;}
.y12{bottom:674.053333pt;}
.ydb{bottom:675.173333pt;}
.y73{bottom:677.093333pt;}
.y112{bottom:677.573333pt;}
.y11{bottom:678.693333pt;}
.y50{bottom:685.573333pt;}
.ya5{bottom:686.133333pt;}
.y72{bottom:688.453333pt;}
.yda{bottom:690.453333pt;}
.y111{bottom:692.853333pt;}
.y4f{bottom:703.333333pt;}
.ya4{bottom:703.813333pt;}
.y10{bottom:704.213333pt;}
.yd9{bottom:705.813333pt;}
.y110{bottom:708.213333pt;}
.yf{bottom:708.853333pt;}
.y4e{bottom:721.013333pt;}
.yd8{bottom:721.173333pt;}
.ya3{bottom:721.573333pt;}
.y10f{bottom:723.573333pt;}
.ye{bottom:723.733333pt;}
.yd7{bottom:736.453333pt;}
.y4d{bottom:738.773333pt;}
.y10e{bottom:738.853333pt;}
.ya2{bottom:739.333333pt;}
.yd{bottom:744.213333pt;}
.yd6{bottom:751.813333pt;}
.y10d{bottom:754.213333pt;}
.ya0{bottom:754.373333pt;}
.y4c{bottom:756.533333pt;}
.yd5{bottom:767.173333pt;}
.y10c{bottom:769.573333pt;}
.yc{bottom:770.133333pt;}
.y9f{bottom:770.213333pt;}
.y4b{bottom:774.293333pt;}
.yd4{bottom:782.453333pt;}
.y10b{bottom:784.853333pt;}
.y9e{bottom:787.093333pt;}
.y4a{bottom:791.973333pt;}
.yd3{bottom:797.813333pt;}
.y9d{bottom:798.373333pt;}
.y10a{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y49{bottom:809.733333pt;}
.y9c{bottom:812.613333pt;}
.yd2{bottom:813.093333pt;}
.y109{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y48{bottom:827.493333pt;}
.yd1{bottom:828.453333pt;}
.y108{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.yd0{bottom:843.813333pt;}
.y47{bottom:845.173333pt;}
.y107{bottom:846.213333pt;}
.ycf{bottom:859.093333pt;}
.y106{bottom:861.493333pt;}
.y46{bottom:862.933333pt;}
.yce{bottom:874.453333pt;}
.y105{bottom:876.853333pt;}
.y45{bottom:880.693333pt;}
.ycd{bottom:889.840000pt;}
.y104{bottom:892.240000pt;}
.y44{bottom:898.400000pt;}
.ycc{bottom:905.120000pt;}
.y103{bottom:907.520000pt;}
.y43{bottom:916.160000pt;}
.ycb{bottom:920.480000pt;}
.y102{bottom:922.880000pt;}
.y42{bottom:933.920000pt;}
.yca{bottom:935.840000pt;}
.y101{bottom:938.240000pt;}
.y41{bottom:951.600000pt;}
.y100{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h33{height:12.320000pt;}
.h29{height:14.160000pt;}
.h2e{height:14.186667pt;}
.h2b{height:14.240000pt;}
.h2d{height:14.266667pt;}
.h2f{height:15.200000pt;}
.h19{height:17.760000pt;}
.h1e{height:17.840000pt;}
.h7{height:29.717188pt;}
.h34{height:30.028906pt;}
.h3{height:30.240000pt;}
.h6{height:33.252005pt;}
.h25{height:33.515625pt;}
.h28{height:33.593750pt;}
.h24{height:33.867188pt;}
.h30{height:34.000000pt;}
.h8{height:34.739844pt;}
.h1c{height:35.554688pt;}
.h4{height:37.314062pt;}
.h18{height:37.705469pt;}
.h32{height:38.905781pt;}
.h10{height:39.107187pt;}
.h1d{height:39.584219pt;}
.h5{height:40.003906pt;}
.h2{height:40.262656pt;}
.ha{height:40.889062pt;}
.h17{height:41.752518pt;}
.hb{height:44.120156pt;}
.h15{height:44.632188pt;}
.h2c{height:44.679688pt;}
.h1{height:45.156250pt;}
.h2a{height:45.220000pt;}
.h27{height:45.926562pt;}
.h22{height:51.000000pt;}
.h20{height:51.796875pt;}
.h21{height:53.115851pt;}
.h26{height:56.101562pt;}
.h31{height:56.780000pt;}
.h12{height:57.667187pt;}
.h11{height:59.850777pt;}
.he{height:60.283594pt;}
.h35{height:61.360000pt;}
.h13{height:63.192187pt;}
.hf{height:63.304688pt;}
.h14{height:65.584983pt;}
.hc{height:67.734375pt;}
.h1f{height:79.760000pt;}
.hd{height:100.781250pt;}
.h16{height:102.000000pt;}
.h23{height:105.600000pt;}
.h1b{height:125.866667pt;}
.h9{height:136.826667pt;}
.h1a{height:331.066667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w17{width:70.640000pt;}
.w18{width:83.360000pt;}
.w13{width:85.040000pt;}
.w19{width:87.226667pt;}
.w9{width:99.680000pt;}
.w14{width:104.586667pt;}
.wc{width:106.960000pt;}
.wa{width:118.666667pt;}
.wd{width:121.306667pt;}
.w7{width:127.546667pt;}
.wb{width:136.746667pt;}
.w11{width:137.946667pt;}
.w15{width:151.946667pt;}
.w6{width:195.866667pt;}
.w10{width:216.426667pt;}
.w16{width:242.106667pt;}
.we{width:270.826667pt;}
.w8{width:289.946667pt;}
.w1a{width:292.666667pt;}
.w12{width:308.346667pt;}
.wf{width:420.773333pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:5.920000pt;}
.x3{left:7.680000pt;}
.x18{left:17.920000pt;}
.x24{left:24.560000pt;}
.x1a{left:30.320000pt;}
.x23{left:32.080000pt;}
.x5a{left:33.360000pt;}
.x5c{left:34.640000pt;}
.x30{left:36.800000pt;}
.x5f{left:37.840000pt;}
.x52{left:39.440000pt;}
.x8{left:40.480000pt;}
.x32{left:42.720000pt;}
.x35{left:44.080000pt;}
.x2c{left:45.600000pt;}
.x38{left:46.826667pt;}
.x2{left:47.999988pt;}
.x34{left:49.200000pt;}
.x48{left:50.800000pt;}
.x36{left:52.080000pt;}
.x26{left:53.039988pt;}
.x1{left:53.999988pt;}
.x37{left:55.306667pt;}
.x1d{left:56.240000pt;}
.x25{left:58.159988pt;}
.x4f{left:59.226667pt;}
.x5d{left:62.266667pt;}
.x1e{left:63.440000pt;}
.x1f{left:64.800000pt;}
.x1b{left:67.120000pt;}
.x20{left:71.360000pt;}
.x1c{left:74.560000pt;}
.x60{left:78.399988pt;}
.x57{left:86.240000pt;}
.x4{left:89.680000pt;}
.x4d{left:93.520000pt;}
.x7{left:95.999988pt;}
.x21{left:97.360000pt;}
.x22{left:103.920000pt;}
.x3c{left:106.400000pt;}
.x41{left:107.840000pt;}
.x39{left:111.280000pt;}
.x3d{left:113.680000pt;}
.x5e{left:115.280000pt;}
.x3a{left:119.360000pt;}
.x3e{left:121.840000pt;}
.xb{left:123.759988pt;}
.x40{left:125.120000pt;}
.x3f{left:127.280000pt;}
.x3b{left:130.000000pt;}
.x33{left:131.200000pt;}
.x42{left:133.440000pt;}
.x2e{left:135.120000pt;}
.xe{left:147.866655pt;}
.x54{left:151.280000pt;}
.x5{left:158.586667pt;}
.x6{left:163.946667pt;}
.x4b{left:175.226667pt;}
.x4e{left:195.546667pt;}
.x2d{left:217.386667pt;}
.x45{left:226.506667pt;}
.x50{left:227.706667pt;}
.x56{left:241.706667pt;}
.x15{left:265.306655pt;}
.x16{left:271.946655pt;}
.xf{left:277.386655pt;}
.x10{left:283.946655pt;}
.x55{left:289.626655pt;}
.x11{left:296.906655pt;}
.x12{left:299.786655pt;}
.xd{left:320.026655pt;}
.x49{left:325.306655pt;}
.x46{left:334.186667pt;}
.x2a{left:335.626655pt;}
.x4a{left:349.146655pt;}
.x44{left:364.826655pt;}
.xa{left:408.026655pt;}
.x43{left:410.506655pt;}
.xc{left:412.586655pt;}
.x27{left:425.093321pt;}
.x28{left:426.453321pt;}
.x2b{left:432.053321pt;}
.x29{left:450.453321pt;}
.x47{left:456.133333pt;}
.x58{left:484.453333pt;}
.x2f{left:507.973333pt;}
.x4c{left:510.533333pt;}
.x51{left:536.693333pt;}
.x59{left:555.733333pt;}
.x17{left:570.853333pt;}
.x31{left:608.293333pt;}
.x53{left:622.373333pt;}
.x5b{left:639.733333pt;}
.x13{left:667.893321pt;}
.x14{left:719.359988pt;}
.x9{left:722.160000pt;}
}




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