
    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_b2f8b301f18a146897ba3862.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_fee7b88e6a309d7e5273463a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_a1b9c48f1ea413970cebecf2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_6d0cfece57121e7b34b29634.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_08d3888501991cec2a8ea57e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_58e56c78d0a8d013a7e500d6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_b0e2c52d30dda39f7b283037.woff')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_0023b460e6d3d8eca96af4ed.woff')format("woff");}.ff9{font-family:ff9;line-height:1.126953;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_27f7385b3507f8c833f1c50b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.861328;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_bfe69879a1d812f01592079e.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:48.239981px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.058568px;}
.ls3{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.149765px;}
.ls1{letter-spacing:0.166127px;}
.ls2{letter-spacing:0.187842px;}
.ls6{letter-spacing:407.581637px;}
.ls0{letter-spacing:1556.288751px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-36.022113px;}
.ws7{word-spacing:-35.855986px;}
.ws8{word-spacing:-21.118560px;}
.ws6{word-spacing:-21.059992px;}
.ws1{word-spacing:-16.613273px;}
.ws3{word-spacing:-15.238794px;}
.ws0{word-spacing:-14.970234px;}
.ws4{word-spacing:-12.203995px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-6.487185px;}
._e{margin-left:-5.001220px;}
._2{margin-left:-3.595265px;}
._c{margin-left:-2.579683px;}
._1{margin-left:-1.570625px;}
._0{width:1.003097px;}
._5{width:2.237130px;}
._8{width:4.193908px;}
._9{width:5.725749px;}
._b{width:7.318613px;}
._4{width:8.380155px;}
._3{width:9.381792px;}
._a{width:11.398018px;}
._d{width:12.550507px;}
._17{width:14.213810px;}
._14{width:16.207367px;}
._20{width:17.626381px;}
._1f{width:19.154876px;}
._27{width:22.405946px;}
._10{width:24.172141px;}
._11{width:25.301235px;}
._18{width:26.454122px;}
._19{width:27.479198px;}
._12{width:28.548534px;}
._13{width:29.637870px;}
._2b{width:31.518707px;}
._26{width:32.562117px;}
._24{width:33.899526px;}
._15{width:35.738973px;}
._28{width:36.744528px;}
._3a{width:38.137698px;}
._2a{width:40.630166px;}
._16{width:41.732075px;}
._7{width:43.675206px;}
._6{width:44.965586px;}
._21{width:46.054896px;}
._1d{width:47.762570px;}
._29{width:49.781987px;}
._25{width:54.780170px;}
._23{width:80.564809px;}
._34{width:83.804802px;}
._22{width:99.387148px;}
._1c{width:126.396179px;}
._2f{width:128.086153px;}
._1a{width:132.580449px;}
._32{width:140.976461px;}
._1e{width:142.754464px;}
._36{width:144.348181px;}
._2c{width:369.224506px;}
._38{width:449.800614px;}
._37{width:594.536708px;}
._35{width:734.844491px;}
._39{width:767.178269px;}
._31{width:800.130465px;}
._2e{width:842.503168px;}
._1b{width:928.914192px;}
._30{width:1294.649002px;}
._33{width:1301.725159px;}
._2d{width:1520.656238px;}
._3b{width:2090.448460px;}
.fcd{color:rgb(0,101,204);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcb{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fcc{color:rgb(79,129,189);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs4{font-size:107.999957px;}
.y6{bottom:-10.079990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y42{bottom:4.498940px;}
.y14{bottom:4.499036px;}
.y85{bottom:4.499039px;}
.y23{bottom:4.499052px;}
.y90{bottom:4.499080px;}
.ya1{bottom:4.499131px;}
.yb{bottom:4.500038px;}
.y6a{bottom:4.678972px;}
.y73{bottom:4.678998px;}
.y10f{bottom:4.679076px;}
.y114{bottom:4.679111px;}
.y118{bottom:4.679146px;}
.y11d{bottom:4.679182px;}
.yba{bottom:4.679192px;}
.y121{bottom:4.679217px;}
.y12a{bottom:4.679287px;}
.y6d{bottom:5.038969px;}
.y76{bottom:5.038974px;}
.y6f{bottom:5.038978px;}
.y78{bottom:5.038983px;}
.y71{bottom:5.038988px;}
.y7b{bottom:5.038993px;}
.y7e{bottom:5.039010px;}
.y81{bottom:5.039020px;}
.y83{bottom:5.039029px;}
.y10c{bottom:5.039041px;}
.y109{bottom:5.039046px;}
.y89{bottom:5.039051px;}
.y93{bottom:5.039056px;}
.y8c{bottom:5.039061px;}
.y95{bottom:5.039066px;}
.y8e{bottom:5.039071px;}
.y112{bottom:5.039076px;}
.y99{bottom:5.039093px;}
.ya4{bottom:5.039098px;}
.y9b{bottom:5.039102px;}
.ya6{bottom:5.039107px;}
.y9d{bottom:5.039112px;}
.ya9{bottom:5.039117px;}
.y9f{bottom:5.039122px;}
.yb6{bottom:5.039144px;}
.y11b{bottom:5.039146px;}
.yad{bottom:5.039153px;}
.yb0{bottom:5.039163px;}
.yb2{bottom:5.039173px;}
.yb8{bottom:5.039182px;}
.y124{bottom:5.039217px;}
.y127{bottom:5.039252px;}
.y12e{bottom:5.039287px;}
.yc{bottom:32.880287px;}
.ya{bottom:50.520240px;}
.y8{bottom:55.020278px;}
.y9{bottom:55.560278px;}
.y131{bottom:107.400257px;}
.yc7{bottom:110.459956px;}
.y142{bottom:113.339955px;}
.y184{bottom:124.319950px;}
.y152{bottom:125.939950px;}
.y130{bottom:131.520247px;}
.yc6{bottom:134.579946px;}
.ydd{bottom:137.279945px;}
.yec{bottom:143.399943px;}
.y100{bottom:146.279941px;}
.y175{bottom:148.979940px;}
.y183{bottom:152.039939px;}
.yc5{bottom:158.699937px;}
.ydc{bottom:161.399935px;}
.y3a{bottom:161.939935px;}
.yff{bottom:170.399932px;}
.y151{bottom:171.119932px;}
.y174{bottom:173.099931px;}
.y12f{bottom:176.699929px;}
.y182{bottom:179.759928px;}
.yc4{bottom:182.819927px;}
.ydb{bottom:185.699926px;}
.y150{bottom:195.239922px;}
.y39{bottom:196.859921px;}
.y173{bottom:197.219921px;}
.y21{bottom:204.779918px;}
.y181{bottom:207.659917px;}
.yda{bottom:209.819916px;}
.yfe{bottom:216.839913px;}
.y14f{bottom:219.359912px;}
.y172{bottom:221.339911px;}
.y162{bottom:225.119910px;}
.yc3{bottom:227.999909px;}
.y46{bottom:230.519908px;}
.yd9{bottom:233.939906px;}
.y180{bottom:235.379906px;}
.y1a7{bottom:238.979904px;}
.y67{bottom:240.419904px;}
.y14e{bottom:243.479903px;}
.y171{bottom:245.459902px;}
.y161{bottom:249.239900px;}
.y45{bottom:249.779900px;}
.yc2{bottom:252.119899px;}
.yd8{bottom:258.059897px;}
.y12b{bottom:258.959896px;}
.y1a6{bottom:262.559895px;}
.y17f{bottom:263.099895px;}
.y66{bottom:264.539894px;}
.yfd{bottom:267.599893px;}
.y44{bottom:268.679893px;}
.y170{bottom:269.579892px;}
.y160{bottom:273.539891px;}
.yc1{bottom:276.239890px;}
.y12d{bottom:278.040600px;}
.y129{bottom:278.400600px;}
.yd7{bottom:282.179887px;}
.y12c{bottom:283.079887px;}
.y1a5{bottom:283.799886px;}
.y43{bottom:287.579885px;}
.yfc{bottom:291.719883px;}
.y16f{bottom:293.699883px;}
.y15f{bottom:297.659881px;}
.yc0{bottom:300.359880px;}
.y17e{bottom:300.899880px;}
.y1a4{bottom:307.919877px;}
.y65{bottom:309.719876px;}
.yfb{bottom:316.019874px;}
.y38{bottom:318.899872px;}
.y15e{bottom:321.779871px;}
.ybf{bottom:324.659870px;}
.yd6{bottom:327.359869px;}
.y1a3{bottom:332.039867px;}
.y64{bottom:333.839866px;}
.y37{bottom:334.379866px;}
.y16e{bottom:338.879864px;}
.yfa{bottom:340.139864px;}
.y15d{bottom:345.899862px;}
.y128{bottom:346.619861px;}
.ybe{bottom:348.779860px;}
.y36{bottom:349.859860px;}
.yd5{bottom:351.479859px;}
.y1a2{bottom:356.159858px;}
.y63{bottom:357.959857px;}
.y125{bottom:358.679857px;}
.y20{bottom:359.219856px;}
.yf9{bottom:364.259854px;}
.y35{bottom:365.519854px;}
.y126{bottom:365.700600px;}
.y15c{bottom:370.019852px;}
.ybd{bottom:372.899851px;}
.yd4{bottom:375.599850px;}
.y1a1{bottom:380.279848px;}
.y34{bottom:380.999848px;}
.y62{bottom:382.079847px;}
.y16d{bottom:384.059846px;}
.y14d{bottom:385.319846px;}
.yf8{bottom:388.379845px;}
.y33{bottom:396.479841px;}
.y1a0{bottom:404.399838px;}
.y61{bottom:406.199838px;}
.y16c{bottom:408.179837px;}
.y14c{bottom:409.439836px;}
.y17d{bottom:410.699836px;}
.y32{bottom:411.959835px;}
.y15b{bottom:415.199834px;}
.ybc{bottom:418.079833px;}
.yd3{bottom:420.779832px;}
.y31{bottom:427.619829px;}
.y19f{bottom:428.699829px;}
.y60{bottom:430.319828px;}
.yf7{bottom:433.559827px;}
.y122{bottom:434.279826px;}
.y15a{bottom:439.319824px;}
.y30{bottom:443.099823px;}
.y19e{bottom:452.819819px;}
.y16b{bottom:453.359819px;}
.y123{bottom:453.540600px;}
.y120{bottom:453.900600px;}
.y5f{bottom:454.619818px;}
.yf6{bottom:457.679817px;}
.y2f{bottom:458.579817px;}
.yd2{bottom:461.459815px;}
.y159{bottom:463.439815px;}
.ybb{bottom:464.339814px;}
.y1f{bottom:470.819812px;}
.y2e{bottom:474.059810px;}
.y19d{bottom:476.939809px;}
.y16a{bottom:477.479809px;}
.y5e{bottom:478.739809px;}
.yf5{bottom:481.799807px;}
.y141{bottom:482.519807px;}
.y17c{bottom:485.579806px;}
.y158{bottom:487.739805px;}
.y2d{bottom:489.719804px;}
.y19c{bottom:501.059800px;}
.y169{bottom:501.599799px;}
.y5d{bottom:502.859799px;}
.y2c{bottom:505.199798px;}
.yf4{bottom:505.919798px;}
.y140{bottom:506.639797px;}
.y17b{bottom:509.699796px;}
.y157{bottom:511.859795px;}
.yb9{bottom:515.100600px;}
.y2b{bottom:520.679792px;}
.y11e{bottom:521.939791px;}
.y19b{bottom:525.179790px;}
.y168{bottom:525.899790px;}
.yf3{bottom:530.219788px;}
.y13f{bottom:530.759788px;}
.y17a{bottom:533.819786px;}
.y156{bottom:535.979786px;}
.y1e{bottom:536.879785px;}
.yb7{bottom:538.860600px;}
.y11f{bottom:541.200600px;}
.y11c{bottom:541.560600px;}
.yb3{bottom:543.899782px;}
.y5c{bottom:548.039781px;}
.y19a{bottom:549.299780px;}
.y167{bottom:550.019780px;}
.yf2{bottom:554.339778px;}
.y13e{bottom:554.879778px;}
.y1d{bottom:556.319777px;}
.y2a{bottom:557.219777px;}
.y155{bottom:560.099776px;}
.yb1{bottom:562.980600px;}
.y199{bottom:573.599771px;}
.y166{bottom:574.139770px;}
.y1c{bottom:575.939770px;}
.y14b{bottom:578.459769px;}
.y13d{bottom:578.999768px;}
.yab{bottom:580.079768px;}
.yaf{bottom:587.100600px;}
.yae{bottom:592.139763px;}
.y5b{bottom:593.219763px;}
.y1b{bottom:594.299762px;}
.y198{bottom:597.719761px;}
.y165{bottom:598.259761px;}
.yf1{bottom:599.519760px;}
.y14a{bottom:602.579759px;}
.y13c{bottom:603.119759px;}
.y154{bottom:605.279758px;}
.y119{bottom:609.779756px;}
.yac{bottom:611.220600px;}
.y5a{bottom:617.339753px;}
.y197{bottom:621.839751px;}
.y13b{bottom:627.239749px;}
.y11a{bottom:628.860600px;}
.y117{bottom:629.220600px;}
.yb5{bottom:635.340600px;}
.yb4{bottom:640.379744px;}
.y59{bottom:641.459743px;}
.yf0{bottom:644.519742px;}
.y164{bottom:644.699742px;}
.y153{bottom:645.779742px;}
.y196{bottom:645.959742px;}
.y149{bottom:647.759741px;}
.yeb{bottom:648.299741px;}
.y13a{bottom:651.539739px;}
.y1a{bottom:659.099736px;}
.y58{bottom:665.579734px;}
.ya0{bottom:666.840600px;}
.y195{bottom:670.079732px;}
.y148{bottom:671.879731px;}
.yea{bottom:672.419731px;}
.y139{bottom:675.659730px;}
.yaa{bottom:683.399727px;}
.y57{bottom:689.699724px;}
.y9e{bottom:690.420600px;}
.y163{bottom:690.959724px;}
.y194{bottom:694.199722px;}
.ye9{bottom:696.539721px;}
.y115{bottom:697.439721px;}
.y179{bottom:699.779720px;}
.ya8{bottom:702.480600px;}
.ya7{bottom:707.519717px;}
.y56{bottom:713.819714px;}
.y9c{bottom:714.540600px;}
.y116{bottom:716.520600px;}
.y113{bottom:716.880600px;}
.y147{bottom:717.059713px;}
.y193{bottom:718.319713px;}
.y97{bottom:719.579712px;}
.y138{bottom:720.839712px;}
.y19{bottom:723.899710px;}
.ya5{bottom:726.600600px;}
.y55{bottom:737.939705px;}
.y9a{bottom:738.840600px;}
.y146{bottom:741.179704px;}
.ye8{bottom:741.719703px;}
.y192{bottom:742.619703px;}
.y137{bottom:744.959702px;}
.y178{bottom:748.019701px;}
.ya3{bottom:750.900600px;}
.ya2{bottom:755.939698px;}
.y54{bottom:762.239695px;}
.y98{bottom:762.960600px;}
.y145{bottom:765.299694px;}
.ye7{bottom:765.839694px;}
.y191{bottom:766.739693px;}
.y136{bottom:769.079692px;}
.y110{bottom:785.099686px;}
.y53{bottom:786.359685px;}
.y18{bottom:788.699685px;}
.ye6{bottom:790.139684px;}
.y190{bottom:792.119683px;}
.y135{bottom:793.199683px;}
.y8f{bottom:794.280600px;}
.y29{bottom:796.439681px;}
.y111{bottom:804.180600px;}
.y10e{bottom:804.540600px;}
.y17{bottom:808.679677px;}
.y52{bottom:810.479676px;}
.y96{bottom:810.839676px;}
.y144{bottom:811.739675px;}
.y28{bottom:811.919675px;}
.ye5{bottom:814.259674px;}
.y8d{bottom:818.040600px;}
.y27{bottom:827.399669px;}
.y94{bottom:830.100600px;}
.yef{bottom:831.539667px;}
.y51{bottom:834.599666px;}
.y87{bottom:835.139666px;}
.ye4{bottom:838.379665px;}
.y18f{bottom:840.359664px;}
.y8b{bottom:842.160600px;}
.y26{bottom:842.879663px;}
.y8a{bottom:847.199661px;}
.y92{bottom:854.220600px;}
.yee{bottom:855.659658px;}
.y25{bottom:858.539657px;}
.y50{bottom:858.719657px;}
.y91{bottom:859.259656px;}
.ye3{bottom:862.499655px;}
.y88{bottom:866.280600px;}
.y22{bottom:866.460600px;}
.y18e{bottom:868.259653px;}
.y10d{bottom:872.759651px;}
.y16{bottom:873.839650px;}
.y24{bottom:874.019650px;}
.yed{bottom:879.779648px;}
.y108{bottom:879.780600px;}
.y134{bottom:883.559647px;}
.y107{bottom:884.819646px;}
.ye2{bottom:886.619645px;}
.y10b{bottom:891.840600px;}
.y18d{bottom:895.979642px;}
.y10a{bottom:896.879641px;}
.y84{bottom:897.600600px;}
.y4f{bottom:903.899638px;}
.y13{bottom:904.620600px;}
.yd1{bottom:907.679637px;}
.y15{bottom:909.119636px;}
.ye1{bottom:910.739636px;}
.y82{bottom:921.360600px;}
.y18c{bottom:923.879630px;}
.y4e{bottom:928.019629px;}
.yd0{bottom:931.799627px;}
.ye0{bottom:935.039626px;}
.y12{bottom:937.739625px;}
.y7c{bottom:938.459625px;}
.y80{bottom:945.480600px;}
.y7f{bottom:950.519620px;}
.y18b{bottom:951.599619px;}
.y4d{bottom:952.139619px;}
.y11{bottom:955.019618px;}
.ycf{bottom:955.919618px;}
.ydf{bottom:959.159616px;}
.y104{bottom:960.419616px;}
.y105{bottom:967.440600px;}
.y7d{bottom:969.600600px;}
.y10{bottom:972.299611px;}
.y106{bottom:972.479611px;}
.y86{bottom:974.639610px;}
.y4c{bottom:976.439609px;}
.y18a{bottom:979.319608px;}
.yce{bottom:980.039608px;}
.yde{bottom:983.279607px;}
.y103{bottom:984.539606px;}
.yf{bottom:990.299604px;}
.y4b{bottom:1000.559600px;}
.y72{bottom:1000.920600px;}
.ycd{bottom:1004.339598px;}
.y189{bottom:1007.219597px;}
.y177{bottom:1007.399597px;}
.y7a{bottom:1012.620600px;}
.y79{bottom:1017.659593px;}
.ye{bottom:1019.999592px;}
.y4a{bottom:1024.679590px;}
.y70{bottom:1024.680600px;}
.ycc{bottom:1028.459589px;}
.y176{bottom:1031.519587px;}
.y188{bottom:1034.939586px;}
.y77{bottom:1036.740600px;}
.yd{bottom:1040.699584px;}
.y6b{bottom:1045.919582px;}
.y102{bottom:1048.079581px;}
.y49{bottom:1048.799580px;}
.y6e{bottom:1048.800600px;}
.ycb{bottom:1052.579579px;}
.y101{bottom:1060.139576px;}
.y75{bottom:1060.860600px;}
.y187{bottom:1062.659575px;}
.y69{bottom:1065.540600px;}
.y74{bottom:1065.899574px;}
.y6c{bottom:1072.920600px;}
.y133{bottom:1073.459571px;}
.y3b{bottom:1074.539570px;}
.yca{bottom:1076.699569px;}
.y3f{bottom:1087.499565px;}
.y40{bottom:1087.679565px;}
.y186{bottom:1090.379564px;}
.y48{bottom:1093.979562px;}
.y132{bottom:1097.759561px;}
.y143{bottom:1100.819560px;}
.y3e{bottom:1109.279556px;}
.y185{bottom:1118.279553px;}
.yc9{bottom:1121.879551px;}
.y3d{bottom:1130.159548px;}
.y47{bottom:1140.419544px;}
.y68{bottom:1141.499543px;}
.y41{bottom:1145.280600px;}
.yc8{bottom:1145.999542px;}
.y3c{bottom:1150.859540px;}
.y4{bottom:1170.119532px;}
.y7{bottom:1198.559521px;}
.y3{bottom:1201.799519px;}
.y2{bottom:1219.079512px;}
.y1{bottom:1236.179506px;}
.h3{height:5.760000px;}
.h8{height:20.160000px;}
.h6{height:20.340000px;}
.h17{height:23.220000px;}
.h16{height:23.400000px;}
.h15{height:23.760000px;}
.h14{height:23.940000px;}
.h4{height:36.703110px;}
.hd{height:37.520493px;}
.ha{height:38.759750px;}
.he{height:40.501390px;}
.hc{height:40.530570px;}
.hf{height:40.851546px;}
.h1{height:41.522679px;}
.h5{height:42.894123px;}
.hb{height:43.506897px;}
.h9{height:45.281232px;}
.h2{height:47.545293px;}
.h7{height:48.796855px;}
.h1c{height:50.027324px;}
.h10{height:50.305761px;}
.h12{height:57.092321px;}
.h13{height:58.531969px;}
.h1b{height:60.465210px;}
.h11{height:73.195283px;}
.h18{height:105.332302px;}
.h19{height:106.771949px;}
.h1a{height:107.491949px;}
.h0{height:1263.000000px;}
.w20{width:1.080000px;}
.w21{width:1.260000px;}
.w5{width:3.780000px;}
.w3{width:7.200000px;}
.w8{width:8.100000px;}
.w7{width:8.280000px;}
.w10{width:8.820000px;}
.w2{width:9.720000px;}
.wd{width:10.440000px;}
.w6{width:32.760000px;}
.w1d{width:33.660000px;}
.w4{width:55.620000px;}
.w15{width:68.220000px;}
.w9{width:70.380000px;}
.w1a{width:71.820000px;}
.wa{width:77.220000px;}
.w1c{width:83.700000px;}
.wc{width:92.700000px;}
.w13{width:115.560000px;}
.w17{width:124.740000px;}
.w14{width:137.160000px;}
.w16{width:140.220000px;}
.w1b{width:146.520000px;}
.w18{width:162.720000px;}
.w23{width:181.980000px;}
.we{width:182.880000px;}
.w22{width:192.420000px;}
.w1f{width:196.020000px;}
.w19{width:248.580000px;}
.w25{width:260.460000px;}
.w11{width:276.840000px;}
.w12{width:282.780000px;}
.wb{width:284.400000px;}
.w1e{width:301.140000px;}
.wf{width:355.860000px;}
.w24{width:402.660000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:53.999978px;}
.x16{left:55.799978px;}
.x7{left:59.039976px;}
.x19{left:72.359971px;}
.x14{left:74.699970px;}
.x15{left:75.779970px;}
.x4{left:80.819968px;}
.x24{left:82.799967px;}
.xd{left:88.380000px;}
.x18{left:107.459957px;}
.x17{left:118.619953px;}
.x40{left:137.159945px;}
.xe{left:144.000000px;}
.xf{left:147.780000px;}
.x25{left:165.600000px;}
.x29{left:167.219933px;}
.x1d{left:172.979931px;}
.x10{left:180.539928px;}
.x11{left:183.420000px;}
.xb{left:188.640078px;}
.x1a{left:204.299918px;}
.x1b{left:205.379918px;}
.x12{left:233.820000px;}
.x3a{left:239.760000px;}
.x20{left:244.612402px;}
.x8{left:246.420282px;}
.x2{left:248.579901px;}
.x1c{left:255.239898px;}
.x23{left:258.479897px;}
.xa{left:269.459892px;}
.x13{left:274.320000px;}
.x2a{left:282.780000px;}
.x2e{left:290.340000px;}
.x2d{left:309.780000px;}
.x9{left:323.279871px;}
.x1e{left:330.659868px;}
.xc{left:345.059915px;}
.x32{left:366.300000px;}
.x1f{left:373.139851px;}
.x3c{left:388.800000px;}
.x5{left:413.819834px;}
.x26{left:455.579818px;}
.x3b{left:456.840000px;}
.x34{left:510.300000px;}
.x2c{left:523.800000px;}
.x21{left:604.439758px;}
.x27{left:628.560000px;}
.x2f{left:648.720000px;}
.x35{left:651.600000px;}
.x39{left:654.839738px;}
.x31{left:664.920000px;}
.x38{left:672.659731px;}
.x2b{left:674.280000px;}
.x22{left:705.420000px;}
.x3{left:720.179712px;}
.x30{left:739.620000px;}
.x3f{left:771.659691px;}
.x33{left:777.780000px;}
.x28{left:802.620000px;}
.x36{left:807.658801px;}
.x37{left:809.999525px;}
.x3e{left:812.159675px;}
.x3d{left:818.999969px;}
.x6{left:831.420000px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:42.879983pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.052061pt;}
.ls3{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.133125pt;}
.ls1{letter-spacing:0.147669pt;}
.ls2{letter-spacing:0.166971pt;}
.ls6{letter-spacing:362.294788pt;}
.ls0{letter-spacing:1383.367778pt;}
.ws2{word-spacing:-32.019656pt;}
.ws7{word-spacing:-31.871987pt;}
.ws8{word-spacing:-18.772053pt;}
.ws6{word-spacing:-18.719993pt;}
.ws1{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.545595pt;}
.ws0{word-spacing:-13.306875pt;}
.ws4{word-spacing:-10.847996pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-5.766387pt;}
._e{margin-left:-4.445529pt;}
._2{margin-left:-3.195791pt;}
._c{margin-left:-2.293051pt;}
._1{margin-left:-1.396111pt;}
._0{width:0.891642pt;}
._5{width:1.988560pt;}
._8{width:3.727918pt;}
._9{width:5.089555pt;}
._b{width:6.505434pt;}
._4{width:7.449027pt;}
._3{width:8.339370pt;}
._a{width:10.131572pt;}
._d{width:11.156006pt;}
._17{width:12.634497pt;}
._14{width:14.406548pt;}
._20{width:15.667894pt;}
._1f{width:17.026556pt;}
._27{width:19.916397pt;}
._10{width:21.486348pt;}
._11{width:22.489987pt;}
._18{width:23.514775pt;}
._19{width:24.425954pt;}
._12{width:25.376475pt;}
._13{width:26.344774pt;}
._2b{width:28.016628pt;}
._26{width:28.944104pt;}
._24{width:30.132912pt;}
._15{width:31.767976pt;}
._28{width:32.661803pt;}
._3a{width:33.900176pt;}
._2a{width:36.115703pt;}
._16{width:37.095178pt;}
._7{width:38.822405pt;}
._6{width:39.969410pt;}
._21{width:40.937686pt;}
._1d{width:42.455618pt;}
._29{width:44.250655pt;}
._25{width:48.693485pt;}
._23{width:71.613163pt;}
._34{width:74.493157pt;}
._22{width:88.344131pt;}
._1c{width:112.352159pt;}
._2f{width:113.854359pt;}
._1a{width:117.849288pt;}
._32{width:125.312410pt;}
._1e{width:126.892857pt;}
._36{width:128.309495pt;}
._2c{width:328.199561pt;}
._38{width:399.822768pt;}
._37{width:528.477073pt;}
._35{width:653.195103pt;}
._39{width:681.936239pt;}
._31{width:711.227080pt;}
._2e{width:748.891705pt;}
._1b{width:825.701504pt;}
._30{width:1150.799113pt;}
._33{width:1157.089030pt;}
._2d{width:1351.694434pt;}
._3b{width:1858.176409pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs4{font-size:95.999962pt;}
.y6{bottom:-8.959991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y42{bottom:3.999058pt;}
.y14{bottom:3.999143pt;}
.y85{bottom:3.999146pt;}
.y23{bottom:3.999157pt;}
.y90{bottom:3.999183pt;}
.ya1{bottom:3.999228pt;}
.yb{bottom:4.000034pt;}
.y6a{bottom:4.159086pt;}
.y73{bottom:4.159109pt;}
.y10f{bottom:4.159179pt;}
.y114{bottom:4.159210pt;}
.y118{bottom:4.159241pt;}
.y11d{bottom:4.159272pt;}
.yba{bottom:4.159282pt;}
.y121{bottom:4.159304pt;}
.y12a{bottom:4.159366pt;}
.y6d{bottom:4.479083pt;}
.y76{bottom:4.479088pt;}
.y6f{bottom:4.479092pt;}
.y78{bottom:4.479096pt;}
.y71{bottom:4.479101pt;}
.y7b{bottom:4.479105pt;}
.y7e{bottom:4.479120pt;}
.y81{bottom:4.479129pt;}
.y83{bottom:4.479137pt;}
.y10c{bottom:4.479148pt;}
.y109{bottom:4.479152pt;}
.y89{bottom:4.479157pt;}
.y93{bottom:4.479161pt;}
.y8c{bottom:4.479165pt;}
.y95{bottom:4.479170pt;}
.y8e{bottom:4.479174pt;}
.y112{bottom:4.479179pt;}
.y99{bottom:4.479194pt;}
.ya4{bottom:4.479198pt;}
.y9b{bottom:4.479202pt;}
.ya6{bottom:4.479207pt;}
.y9d{bottom:4.479211pt;}
.ya9{bottom:4.479215pt;}
.y9f{bottom:4.479219pt;}
.yb6{bottom:4.479239pt;}
.y11b{bottom:4.479241pt;}
.yad{bottom:4.479248pt;}
.yb0{bottom:4.479256pt;}
.yb2{bottom:4.479265pt;}
.yb8{bottom:4.479273pt;}
.y124{bottom:4.479304pt;}
.y127{bottom:4.479335pt;}
.y12e{bottom:4.479366pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:44.906880pt;}
.y8{bottom:48.906914pt;}
.y9{bottom:49.386914pt;}
.y131{bottom:95.466895pt;}
.yc7{bottom:98.186627pt;}
.y142{bottom:100.746626pt;}
.y184{bottom:110.506622pt;}
.y152{bottom:111.946622pt;}
.y130{bottom:116.906887pt;}
.yc6{bottom:119.626619pt;}
.ydd{bottom:122.026618pt;}
.yec{bottom:127.466616pt;}
.y100{bottom:130.026615pt;}
.y175{bottom:132.426614pt;}
.y183{bottom:135.146613pt;}
.yc5{bottom:141.066610pt;}
.ydc{bottom:143.466609pt;}
.y3a{bottom:143.946609pt;}
.yff{bottom:151.466606pt;}
.y151{bottom:152.106606pt;}
.y174{bottom:153.866605pt;}
.y12f{bottom:157.066604pt;}
.y182{bottom:159.786603pt;}
.yc4{bottom:162.506602pt;}
.ydb{bottom:165.066601pt;}
.y150{bottom:173.546597pt;}
.y39{bottom:174.986597pt;}
.y173{bottom:175.306597pt;}
.y21{bottom:182.026594pt;}
.y181{bottom:184.586593pt;}
.yda{bottom:186.506592pt;}
.yfe{bottom:192.746590pt;}
.y14f{bottom:194.986589pt;}
.y172{bottom:196.746588pt;}
.y162{bottom:200.106587pt;}
.yc3{bottom:202.666586pt;}
.y46{bottom:204.906585pt;}
.yd9{bottom:207.946583pt;}
.y180{bottom:209.226583pt;}
.y1a7{bottom:212.426582pt;}
.y67{bottom:213.706581pt;}
.y14e{bottom:216.426580pt;}
.y171{bottom:218.186579pt;}
.y161{bottom:221.546578pt;}
.y45{bottom:222.026578pt;}
.yc2{bottom:224.106577pt;}
.yd8{bottom:229.386575pt;}
.y12b{bottom:230.186575pt;}
.y1a6{bottom:233.386573pt;}
.y17f{bottom:233.866573pt;}
.y66{bottom:235.146573pt;}
.yfd{bottom:237.866572pt;}
.y44{bottom:238.826571pt;}
.y170{bottom:239.626571pt;}
.y160{bottom:243.146569pt;}
.yc1{bottom:245.546568pt;}
.y12d{bottom:247.147200pt;}
.y129{bottom:247.467200pt;}
.yd7{bottom:250.826566pt;}
.y12c{bottom:251.626566pt;}
.y1a5{bottom:252.266566pt;}
.y43{bottom:255.626564pt;}
.yfc{bottom:259.306563pt;}
.y16f{bottom:261.066562pt;}
.y15f{bottom:264.586561pt;}
.yc0{bottom:266.986560pt;}
.y17e{bottom:267.466560pt;}
.y1a4{bottom:273.706557pt;}
.y65{bottom:275.306557pt;}
.yfb{bottom:280.906554pt;}
.y38{bottom:283.466553pt;}
.y15e{bottom:286.026552pt;}
.ybf{bottom:288.586551pt;}
.yd6{bottom:290.986550pt;}
.y1a3{bottom:295.146549pt;}
.y64{bottom:296.746548pt;}
.y37{bottom:297.226548pt;}
.y16e{bottom:301.226546pt;}
.yfa{bottom:302.346546pt;}
.y15d{bottom:307.466544pt;}
.y128{bottom:308.106543pt;}
.ybe{bottom:310.026543pt;}
.y36{bottom:310.986542pt;}
.yd5{bottom:312.426542pt;}
.y1a2{bottom:316.586540pt;}
.y63{bottom:318.186539pt;}
.y125{bottom:318.826539pt;}
.y20{bottom:319.306539pt;}
.yf9{bottom:323.786537pt;}
.y35{bottom:324.906537pt;}
.y126{bottom:325.067200pt;}
.y15c{bottom:328.906535pt;}
.ybd{bottom:331.466534pt;}
.yd4{bottom:333.866533pt;}
.y1a1{bottom:338.026531pt;}
.y34{bottom:338.666531pt;}
.y62{bottom:339.626531pt;}
.y16d{bottom:341.386530pt;}
.y14d{bottom:342.506530pt;}
.yf8{bottom:345.226529pt;}
.y33{bottom:352.426526pt;}
.y1a0{bottom:359.466523pt;}
.y61{bottom:361.066522pt;}
.y16c{bottom:362.826522pt;}
.y14c{bottom:363.946521pt;}
.y17d{bottom:365.066521pt;}
.y32{bottom:366.186520pt;}
.y15b{bottom:369.066519pt;}
.ybc{bottom:371.626518pt;}
.yd3{bottom:374.026517pt;}
.y31{bottom:380.106515pt;}
.y19f{bottom:381.066514pt;}
.y60{bottom:382.506514pt;}
.yf7{bottom:385.386513pt;}
.y122{bottom:386.026512pt;}
.y15a{bottom:390.506510pt;}
.y30{bottom:393.866509pt;}
.y19e{bottom:402.506506pt;}
.y16b{bottom:402.986505pt;}
.y123{bottom:403.147200pt;}
.y120{bottom:403.467200pt;}
.y5f{bottom:404.106505pt;}
.yf6{bottom:406.826504pt;}
.y2f{bottom:407.626504pt;}
.yd2{bottom:410.186503pt;}
.y159{bottom:411.946502pt;}
.ybb{bottom:412.746502pt;}
.y1f{bottom:418.506499pt;}
.y2e{bottom:421.386498pt;}
.y19d{bottom:423.946497pt;}
.y16a{bottom:424.426497pt;}
.y5e{bottom:425.546496pt;}
.yf5{bottom:428.266495pt;}
.y141{bottom:428.906495pt;}
.y17c{bottom:431.626494pt;}
.y158{bottom:433.546493pt;}
.y2d{bottom:435.306493pt;}
.y19c{bottom:445.386489pt;}
.y169{bottom:445.866488pt;}
.y5d{bottom:446.986488pt;}
.y2c{bottom:449.066487pt;}
.yf4{bottom:449.706487pt;}
.y140{bottom:450.346487pt;}
.y17b{bottom:453.066485pt;}
.y157{bottom:454.986485pt;}
.yb9{bottom:457.867200pt;}
.y2b{bottom:462.826482pt;}
.y11e{bottom:463.946481pt;}
.y19b{bottom:466.826480pt;}
.y168{bottom:467.466480pt;}
.yf3{bottom:471.306478pt;}
.y13f{bottom:471.786478pt;}
.y17a{bottom:474.506477pt;}
.y156{bottom:476.426476pt;}
.y1e{bottom:477.226476pt;}
.yb7{bottom:478.987200pt;}
.y11f{bottom:481.067200pt;}
.y11c{bottom:481.387200pt;}
.yb3{bottom:483.466473pt;}
.y5c{bottom:487.146472pt;}
.y19a{bottom:488.266471pt;}
.y167{bottom:488.906471pt;}
.yf2{bottom:492.746470pt;}
.y13e{bottom:493.226469pt;}
.y1d{bottom:494.506469pt;}
.y2a{bottom:495.306469pt;}
.y155{bottom:497.866468pt;}
.yb1{bottom:500.427200pt;}
.y199{bottom:509.866463pt;}
.y166{bottom:510.346463pt;}
.y1c{bottom:511.946462pt;}
.y14b{bottom:514.186461pt;}
.y13d{bottom:514.666461pt;}
.yab{bottom:515.626460pt;}
.yaf{bottom:521.867200pt;}
.yae{bottom:526.346456pt;}
.y5b{bottom:527.306456pt;}
.y1b{bottom:528.266455pt;}
.y198{bottom:531.306454pt;}
.y165{bottom:531.786454pt;}
.yf1{bottom:532.906454pt;}
.y14a{bottom:535.626452pt;}
.y13c{bottom:536.106452pt;}
.y154{bottom:538.026451pt;}
.y119{bottom:542.026450pt;}
.yac{bottom:543.307200pt;}
.y5a{bottom:548.746447pt;}
.y197{bottom:552.746446pt;}
.y13b{bottom:557.546444pt;}
.y11a{bottom:558.987200pt;}
.y117{bottom:559.307200pt;}
.yb5{bottom:564.747200pt;}
.yb4{bottom:569.226439pt;}
.y59{bottom:570.186439pt;}
.yf0{bottom:572.906438pt;}
.y164{bottom:573.066437pt;}
.y153{bottom:574.026437pt;}
.y196{bottom:574.186437pt;}
.y149{bottom:575.786436pt;}
.yeb{bottom:576.266436pt;}
.y13a{bottom:579.146435pt;}
.y1a{bottom:585.866432pt;}
.y58{bottom:591.626430pt;}
.ya0{bottom:592.747200pt;}
.y195{bottom:595.626428pt;}
.y148{bottom:597.226428pt;}
.yea{bottom:597.706428pt;}
.y139{bottom:600.586426pt;}
.yaa{bottom:607.466424pt;}
.y57{bottom:613.066421pt;}
.y9e{bottom:613.707200pt;}
.y163{bottom:614.186421pt;}
.y194{bottom:617.066420pt;}
.ye9{bottom:619.146419pt;}
.y115{bottom:619.946419pt;}
.y179{bottom:622.026418pt;}
.ya8{bottom:624.427200pt;}
.ya7{bottom:628.906415pt;}
.y56{bottom:634.506413pt;}
.y9c{bottom:635.147200pt;}
.y116{bottom:636.907200pt;}
.y113{bottom:637.227200pt;}
.y147{bottom:637.386412pt;}
.y193{bottom:638.506411pt;}
.y97{bottom:639.626411pt;}
.y138{bottom:640.746410pt;}
.y19{bottom:643.466409pt;}
.ya5{bottom:645.867200pt;}
.y55{bottom:655.946404pt;}
.y9a{bottom:656.747200pt;}
.y146{bottom:658.826403pt;}
.ye8{bottom:659.306403pt;}
.y192{bottom:660.106403pt;}
.y137{bottom:662.186402pt;}
.y178{bottom:664.906401pt;}
.ya3{bottom:667.467200pt;}
.ya2{bottom:671.946398pt;}
.y54{bottom:677.546396pt;}
.y98{bottom:678.187200pt;}
.y145{bottom:680.266395pt;}
.ye7{bottom:680.746394pt;}
.y191{bottom:681.546394pt;}
.y136{bottom:683.626393pt;}
.y110{bottom:697.866388pt;}
.y53{bottom:698.986387pt;}
.y18{bottom:701.066386pt;}
.ye6{bottom:702.346386pt;}
.y190{bottom:704.106385pt;}
.y135{bottom:705.066385pt;}
.y8f{bottom:706.027200pt;}
.y29{bottom:707.946383pt;}
.y111{bottom:714.827200pt;}
.y10e{bottom:715.147200pt;}
.y17{bottom:718.826379pt;}
.y52{bottom:720.426378pt;}
.y96{bottom:720.746378pt;}
.y144{bottom:721.546378pt;}
.y28{bottom:721.706378pt;}
.ye5{bottom:723.786377pt;}
.y8d{bottom:727.147200pt;}
.y27{bottom:735.466372pt;}
.y94{bottom:737.867200pt;}
.yef{bottom:739.146371pt;}
.y51{bottom:741.866370pt;}
.y87{bottom:742.346370pt;}
.ye4{bottom:745.226369pt;}
.y18f{bottom:746.986368pt;}
.y8b{bottom:748.587200pt;}
.y26{bottom:749.226367pt;}
.y8a{bottom:753.066365pt;}
.y92{bottom:759.307200pt;}
.yee{bottom:760.586362pt;}
.y25{bottom:763.146361pt;}
.y50{bottom:763.306361pt;}
.y91{bottom:763.786361pt;}
.ye3{bottom:766.666360pt;}
.y88{bottom:770.027200pt;}
.y22{bottom:770.187200pt;}
.y18e{bottom:771.786358pt;}
.y10d{bottom:775.786356pt;}
.y16{bottom:776.746356pt;}
.y24{bottom:776.906356pt;}
.yed{bottom:782.026354pt;}
.y108{bottom:782.027200pt;}
.y134{bottom:785.386353pt;}
.y107{bottom:786.506352pt;}
.ye2{bottom:788.106351pt;}
.y10b{bottom:792.747200pt;}
.y18d{bottom:796.426348pt;}
.y10a{bottom:797.226348pt;}
.y84{bottom:797.867200pt;}
.y4f{bottom:803.466345pt;}
.y13{bottom:804.107200pt;}
.yd1{bottom:806.826344pt;}
.y15{bottom:808.106343pt;}
.ye1{bottom:809.546343pt;}
.y82{bottom:818.987200pt;}
.y18c{bottom:821.226338pt;}
.y4e{bottom:824.906337pt;}
.yd0{bottom:828.266335pt;}
.ye0{bottom:831.146334pt;}
.y12{bottom:833.546333pt;}
.y7c{bottom:834.186333pt;}
.y80{bottom:840.427200pt;}
.y7f{bottom:844.906329pt;}
.y18b{bottom:845.866328pt;}
.y4d{bottom:846.346328pt;}
.y11{bottom:848.906327pt;}
.ycf{bottom:849.706327pt;}
.ydf{bottom:852.586326pt;}
.y104{bottom:853.706325pt;}
.y105{bottom:859.947200pt;}
.y7d{bottom:861.867200pt;}
.y10{bottom:864.266321pt;}
.y106{bottom:864.426321pt;}
.y86{bottom:866.346320pt;}
.y4c{bottom:867.946319pt;}
.y18a{bottom:870.506318pt;}
.yce{bottom:871.146318pt;}
.yde{bottom:874.026317pt;}
.y103{bottom:875.146317pt;}
.yf{bottom:880.266315pt;}
.y4b{bottom:889.386311pt;}
.y72{bottom:889.707200pt;}
.ycd{bottom:892.746310pt;}
.y189{bottom:895.306309pt;}
.y177{bottom:895.466308pt;}
.y7a{bottom:900.107200pt;}
.y79{bottom:904.586305pt;}
.ye{bottom:906.666304pt;}
.y4a{bottom:910.826302pt;}
.y70{bottom:910.827200pt;}
.ycc{bottom:914.186301pt;}
.y176{bottom:916.906300pt;}
.y188{bottom:919.946299pt;}
.y77{bottom:921.547200pt;}
.yd{bottom:925.066297pt;}
.y6b{bottom:929.706295pt;}
.y102{bottom:931.626294pt;}
.y49{bottom:932.266294pt;}
.y6e{bottom:932.267200pt;}
.ycb{bottom:935.626292pt;}
.y101{bottom:942.346290pt;}
.y75{bottom:942.987200pt;}
.y187{bottom:944.586289pt;}
.y69{bottom:947.147200pt;}
.y74{bottom:947.466288pt;}
.y6c{bottom:953.707200pt;}
.y133{bottom:954.186285pt;}
.y3b{bottom:955.146285pt;}
.yca{bottom:957.066284pt;}
.y3f{bottom:966.666280pt;}
.y40{bottom:966.826280pt;}
.y186{bottom:969.226279pt;}
.y48{bottom:972.426278pt;}
.y132{bottom:975.786276pt;}
.y143{bottom:978.506275pt;}
.y3e{bottom:986.026272pt;}
.y185{bottom:994.026269pt;}
.yc9{bottom:997.226268pt;}
.y3d{bottom:1004.586265pt;}
.y47{bottom:1013.706261pt;}
.y68{bottom:1014.666261pt;}
.y41{bottom:1018.027200pt;}
.yc8{bottom:1018.666259pt;}
.y3c{bottom:1022.986257pt;}
.y4{bottom:1040.106251pt;}
.y7{bottom:1065.386241pt;}
.y3{bottom:1068.266239pt;}
.y2{bottom:1083.626233pt;}
.y1{bottom:1098.826227pt;}
.h3{height:5.120000pt;}
.h8{height:17.920000pt;}
.h6{height:18.080000pt;}
.h17{height:20.640000pt;}
.h16{height:20.800000pt;}
.h15{height:21.120000pt;}
.h14{height:21.280000pt;}
.h4{height:32.624987pt;}
.hd{height:33.351549pt;}
.ha{height:34.453111pt;}
.he{height:36.001236pt;}
.hc{height:36.027173pt;}
.hf{height:36.312485pt;}
.h1{height:36.909048pt;}
.h5{height:38.128110pt;}
.hb{height:38.672797pt;}
.h9{height:40.249984pt;}
.h2{height:42.262483pt;}
.h7{height:43.374983pt;}
.h1c{height:44.468732pt;}
.h10{height:44.716232pt;}
.h12{height:50.748730pt;}
.h13{height:52.028417pt;}
.h1b{height:53.746854pt;}
.h11{height:65.062474pt;}
.h18{height:93.628713pt;}
.h19{height:94.908400pt;}
.h1a{height:95.548399pt;}
.h0{height:1122.666667pt;}
.w20{width:0.960000pt;}
.w21{width:1.120000pt;}
.w5{width:3.360000pt;}
.w3{width:6.400000pt;}
.w8{width:7.200000pt;}
.w7{width:7.360000pt;}
.w10{width:7.840000pt;}
.w2{width:8.640000pt;}
.wd{width:9.280000pt;}
.w6{width:29.120000pt;}
.w1d{width:29.920000pt;}
.w4{width:49.440000pt;}
.w15{width:60.640000pt;}
.w9{width:62.560000pt;}
.w1a{width:63.840000pt;}
.wa{width:68.640000pt;}
.w1c{width:74.400000pt;}
.wc{width:82.400000pt;}
.w13{width:102.720000pt;}
.w17{width:110.880000pt;}
.w14{width:121.920000pt;}
.w16{width:124.640000pt;}
.w1b{width:130.240000pt;}
.w18{width:144.640000pt;}
.w23{width:161.760000pt;}
.we{width:162.560000pt;}
.w22{width:171.040000pt;}
.w1f{width:174.240000pt;}
.w19{width:220.960000pt;}
.w25{width:231.520000pt;}
.w11{width:246.080000pt;}
.w12{width:251.360000pt;}
.wb{width:252.800000pt;}
.w1e{width:267.680000pt;}
.wf{width:316.320000pt;}
.w24{width:357.920000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:47.999981pt;}
.x16{left:49.599980pt;}
.x7{left:52.479979pt;}
.x19{left:64.319974pt;}
.x14{left:66.399973pt;}
.x15{left:67.359973pt;}
.x4{left:71.839971pt;}
.x24{left:73.599971pt;}
.xd{left:78.560000pt;}
.x18{left:95.519962pt;}
.x17{left:105.439958pt;}
.x40{left:121.919951pt;}
.xe{left:128.000000pt;}
.xf{left:131.360000pt;}
.x25{left:147.200000pt;}
.x29{left:148.639941pt;}
.x1d{left:153.759938pt;}
.x10{left:160.479936pt;}
.x11{left:163.040000pt;}
.xb{left:167.680070pt;}
.x1a{left:181.599927pt;}
.x1b{left:182.559927pt;}
.x12{left:207.840000pt;}
.x3a{left:213.120000pt;}
.x20{left:217.433246pt;}
.x8{left:219.040250pt;}
.x2{left:220.959912pt;}
.x1c{left:226.879909pt;}
.x23{left:229.759908pt;}
.xa{left:239.519904pt;}
.x13{left:243.840000pt;}
.x2a{left:251.360000pt;}
.x2e{left:258.080000pt;}
.x2d{left:275.360000pt;}
.x9{left:287.359885pt;}
.x1e{left:293.919882pt;}
.xc{left:306.719924pt;}
.x32{left:325.600000pt;}
.x1f{left:331.679867pt;}
.x3c{left:345.600000pt;}
.x5{left:367.839853pt;}
.x26{left:404.959838pt;}
.x3b{left:406.080000pt;}
.x34{left:453.600000pt;}
.x2c{left:465.600000pt;}
.x21{left:537.279785pt;}
.x27{left:558.720000pt;}
.x2f{left:576.640000pt;}
.x35{left:579.200000pt;}
.x39{left:582.079767pt;}
.x31{left:591.040000pt;}
.x38{left:597.919761pt;}
.x2b{left:599.360000pt;}
.x22{left:627.040000pt;}
.x3{left:640.159744pt;}
.x30{left:657.440000pt;}
.x3f{left:685.919726pt;}
.x33{left:691.360000pt;}
.x28{left:713.440000pt;}
.x36{left:717.918934pt;}
.x37{left:719.999577pt;}
.x3e{left:721.919711pt;}
.x3d{left:727.999972pt;}
.x6{left:739.040000pt;}
}




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