
    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_ffdab2b61192f9658a6e4a5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969727;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_fc2319a870fd9c7a9fe6337d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.099121;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_728470f537e5d0ed7a94b577.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754883;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_15e81418826db8b70dc775d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.256000;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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.237029;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_e74c0d7eb775c412acf0d971.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.237000;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_4c4839a811055bf2a2e89b4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.262000;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_e48bd080aa29e23287d28678.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_cc9b24cdaef2cb1bf6c1c40f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.754395;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_63904932a3385e0559791da6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096680;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;}
.m5{transform:matrix(0.217499,-0.123554,0.123485,0.217374,0,0);-ms-transform:matrix(0.217499,-0.123554,0.123485,0.217374,0,0);-webkit-transform:matrix(0.217499,-0.123554,0.123485,0.217374,0,0);}
.m7{transform:matrix(0.235649,-0.083911,0.083861,0.235515,0,0);-ms-transform:matrix(0.235649,-0.083911,0.083861,0.235515,0,0);-webkit-transform:matrix(0.235649,-0.083911,0.083861,0.235515,0,0);}
.m8{transform:matrix(0.247705,-0.034810,0.034793,0.247567,0,0);-ms-transform:matrix(0.247705,-0.034810,0.034793,0.247567,0,0);-webkit-transform:matrix(0.247705,-0.034810,0.034793,0.247567,0,0);}
.m9{transform:matrix(0.247709,-0.034811,0.034791,0.247567,0,0);-ms-transform:matrix(0.247709,-0.034811,0.034791,0.247567,0,0);-webkit-transform:matrix(0.247709,-0.034811,0.034791,0.247567,0,0);}
.m6{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.007852px;}
.ls2b{letter-spacing:0.016248px;}
.ls7{letter-spacing:0.039085px;}
.ls13{letter-spacing:0.065233px;}
.lsc{letter-spacing:0.067952px;}
.ls2c{letter-spacing:0.081481px;}
.ls23{letter-spacing:0.092312px;}
.ls18{letter-spacing:0.116268px;}
.ls4{letter-spacing:0.127332px;}
.ls2a{letter-spacing:0.203830px;}
.ls12{letter-spacing:0.267066px;}
.ls3{letter-spacing:0.273616px;}
.ls29{letter-spacing:0.303849px;}
.lse{letter-spacing:0.309243px;}
.lsa{letter-spacing:0.335018px;}
.ls14{letter-spacing:0.397060px;}
.lsf{letter-spacing:0.440880px;}
.ls6{letter-spacing:0.446576px;}
.ls17{letter-spacing:0.467943px;}
.ls1c{letter-spacing:0.497080px;}
.ls1b{letter-spacing:0.513328px;}
.ls15{letter-spacing:0.519322px;}
.lsd{letter-spacing:0.534132px;}
.ls22{letter-spacing:0.549101px;}
.ls16{letter-spacing:0.568394px;}
.ls8{letter-spacing:0.573714px;}
.ls10{letter-spacing:0.576488px;}
.ls19{letter-spacing:0.590291px;}
.ls25{letter-spacing:0.613779px;}
.ls1a{letter-spacing:0.619471px;}
.ls20{letter-spacing:0.680863px;}
.lsb{letter-spacing:0.682172px;}
.ls21{letter-spacing:0.700747px;}
.ls11{letter-spacing:0.775603px;}
.ls24{letter-spacing:0.828907px;}
.ls5{letter-spacing:0.929142px;}
.ls28{letter-spacing:1.180583px;}
.ls1d{letter-spacing:1.231919px;}
.ls1f{letter-spacing:1.280602px;}
.ls1e{letter-spacing:1.402950px;}
.ls1{letter-spacing:19.105644px;}
.ls2{letter-spacing:35.557582px;}
.ls9{letter-spacing:111.512115px;}
.ls26{letter-spacing:119.825124px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-215.999914px;}
.ws11{word-spacing:-197.999921px;}
.ws1{word-spacing:-161.999935px;}
.ws10{word-spacing:-145.727942px;}
.ws2{word-spacing:-143.999942px;}
.ws12{word-spacing:-131.908339px;}
.ws3{word-spacing:-90.300204px;}
.ws13{word-spacing:-83.879966px;}
.wsb{word-spacing:-60.045424px;}
.ws9{word-spacing:-53.442699px;}
.ws8{word-spacing:-53.425753px;}
.wsf{word-spacing:-46.910878px;}
.wse{word-spacing:-46.637261px;}
.wsc{word-spacing:-46.629722px;}
.wsd{word-spacing:-40.025112px;}
.ws7{word-spacing:-33.426707px;}
.ws6{word-spacing:-30.023988px;}
.wsa{word-spacing:-26.621269px;}
.ws5{word-spacing:-10.150428px;}
.ws4{word-spacing:0.000000px;}
._36{margin-left:-465.327678px;}
._39{margin-left:-460.652360px;}
._3a{margin-left:-245.442538px;}
._13{margin-left:-168.278837px;}
._d{margin-left:-166.347797px;}
._14{margin-left:-165.214878px;}
._11{margin-left:-164.188878px;}
._e{margin-left:-159.871256px;}
._5{margin-left:-153.394931px;}
._a{margin-left:-149.059164px;}
._9{margin-left:-141.881487px;}
._8{margin-left:-137.072033px;}
._f{margin-left:-133.246243px;}
._38{margin-left:-131.797063px;}
._12{margin-left:-127.981461px;}
._1b{margin-left:-126.019912px;}
._1e{margin-left:-124.580704px;}
._1d{margin-left:-120.982686px;}
._20{margin-left:-119.346810px;}
._10{margin-left:-117.415177px;}
._2{margin-left:-114.377570px;}
._22{margin-left:-111.617667px;}
._24{margin-left:-109.407106px;}
._7{margin-left:-108.071021px;}
._4{margin-left:-105.901518px;}
._3{margin-left:-98.705697px;}
._1a{margin-left:-95.357374px;}
._6{margin-left:-92.229155px;}
._25{margin-left:-85.711790px;}
._23{margin-left:-84.272510px;}
._1f{margin-left:-80.685202px;}
._15{margin-left:-79.245994px;}
._21{margin-left:-77.796113px;}
._1{margin-left:-74.582610px;}
._c{margin-left:-71.830339px;}
._18{margin-left:-70.610750px;}
._1c{margin-left:-67.012731px;}
._19{margin-left:-65.573524px;}
._17{margin-left:-62.695109px;}
._37{margin-left:-60.557088px;}
._16{margin-left:-54.059864px;}
._34{margin-left:-44.264430px;}
._b{margin-left:-42.985711px;}
._27{margin-left:-36.876631px;}
._35{margin-left:-26.493433px;}
._2e{margin-left:-2.299161px;}
._26{margin-left:-1.117029px;}
._0{width:1.070928px;}
._2c{width:2.367142px;}
._33{width:5.606530px;}
._32{width:7.123101px;}
._28{width:9.166853px;}
._2b{width:22.250052px;}
._30{width:41.290920px;}
._31{width:54.502682px;}
._2f{width:59.365803px;}
._2a{width:61.109832px;}
._29{width:68.430961px;}
._2d{width:75.238170px;}
.fc7{color:rgb(205,50,0);}
.fc6{color:rgb(205,255,154);}
.fc5{color:transparent;}
.fc4{color:rgb(255,255,154);}
.fc1{color:rgb(255,205,255);}
.fc3{color:rgb(50,50,154);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:84.239966px;}
.fsa{font-size:95.759962px;}
.fs4{font-size:107.999957px;}
.fs3{font-size:120.239952px;}
.fse{font-size:143.975223px;}
.fs2{font-size:143.999942px;}
.fs1{font-size:161.999935px;}
.fsd{font-size:167.732814px;}
.fs5{font-size:167.759933px;}
.fs7{font-size:192.178966px;}
.fs8{font-size:192.239923px;}
.fsc{font-size:215.990733px;}
.fs0{font-size:215.999914px;}
.fs6{font-size:239.759904px;}
.fs9{font-size:287.999885px;}
.fsf{font-size:395.999842px;}
.y0{bottom:0.000000px;}
.y5f{bottom:14.580335px;}
.ya9{bottom:32.040090px;}
.ya8{bottom:32.400046px;}
.y5e{bottom:41.280000px;}
.y47{bottom:52.260487px;}
.yaa{bottom:61.980332px;}
.y57{bottom:66.840226px;}
.y7{bottom:74.040327px;}
.ya5{bottom:74.760327px;}
.y46{bottom:74.940413px;}
.y60{bottom:88.440322px;}
.y45{bottom:98.160318px;}
.y56{bottom:100.860317px;}
.y5d{bottom:103.155633px;}
.y29{bottom:103.560173px;}
.y95{bottom:104.784909px;}
.ya4{bottom:109.320313px;}
.y94{bottom:113.623277px;}
.y81{bottom:126.600306px;}
.y43{bottom:130.020235px;}
.y44{bottom:130.020305px;}
.y28{bottom:143.160300px;}
.ya3{bottom:143.700300px;}
.y55{bottom:148.200298px;}
.y49{bottom:153.059890px;}
.y7f{bottom:155.399940px;}
.y80{bottom:155.400295px;}
.y42{bottom:161.880292px;}
.y5c{bottom:162.218949px;}
.y11{bottom:173.580288px;}
.y10{bottom:173.580378px;}
.y93{bottom:177.892792px;}
.y27{bottom:184.200283px;}
.y7e{bottom:184.380017px;}
.ya2{bottom:188.160282px;}
.y41{bottom:193.740280px;}
.y1b{bottom:195.540203px;}
.y54{bottom:195.720279px;}
.y8e{bottom:197.880278px;}
.y5b{bottom:202.380276px;}
.y18{bottom:207.060274px;}
.y68{bottom:210.840273px;}
.y7d{bottom:213.180065px;}
.y92{bottom:222.900268px;}
.y40{bottom:225.600267px;}
.y48{bottom:228.120665px;}
.yf{bottom:229.020265px;}
.ya1{bottom:237.300262px;}
.y26{bottom:240.180261px;}
.y7c{bottom:242.160141px;}
.y53{bottom:243.060260px;}
.y1a{bottom:253.140090px;}
.y3f{bottom:257.460254px;}
.y8d{bottom:259.620253px;}
.y2d{bottom:264.300251px;}
.y67{bottom:265.200251px;}
.y7b{bottom:270.960189px;}
.ya0{bottom:271.860248px;}
.y25{bottom:283.380244px;}
.y3e{bottom:289.320241px;}
.y52{bottom:290.580241px;}
.ye{bottom:293.640240px;}
.y7a{bottom:299.760237px;}
.y9f{bottom:306.240235px;}
.y19{bottom:310.560233px;}
.y66{bottom:313.800231px;}
.y3d{bottom:320.820167px;}
.y8c{bottom:327.299978px;}
.y79{bottom:329.280225px;}
.y51{bottom:330.360225px;}
.y6b{bottom:335.186297px;}
.y24{bottom:337.920366px;}
.y9e{bottom:340.800221px;}
.y3c{bottom:343.860219px;}
.y3{bottom:351.240217px;}
.y84{bottom:357.720214px;}
.yd{bottom:358.440214px;}
.y6a{bottom:358.958820px;}
.y78{bottom:361.140213px;}
.y65{bottom:368.160210px;}
.y23{bottom:373.920207px;}
.y9d{bottom:375.360207px;}
.y3b{bottom:375.720207px;}
.y2c{bottom:376.620206px;}
.y8b{bottom:377.880017px;}
.y77{bottom:390.120201px;}
.y3a{bottom:407.580194px;}
.y69{bottom:408.660194px;}
.y9c{bottom:409.740193px;}
.y22{bottom:414.960191px;}
.y64{bottom:416.580190px;}
.y76{bottom:418.920189px;}
.y2{bottom:421.260368px;}
.yc{bottom:423.060188px;}
.y91{bottom:424.095227px;}
.y5a{bottom:432.031695px;}
.y8a{bottom:438.359989px;}
.y39{bottom:439.440181px;}
.y50{bottom:440.340181px;}
.y90{bottom:444.093569px;}
.y75{bottom:447.720178px;}
.y59{bottom:450.041040px;}
.y9b{bottom:454.200175px;}
.y21{bottom:458.160174px;}
.y63{bottom:471.120169px;}
.y38{bottom:471.300168px;}
.y74{bottom:476.700166px;}
.y17{bottom:480.480381px;}
.y1{bottom:486.240163px;}
.yb{bottom:487.680162px;}
.y4f{bottom:487.860162px;}
.y89{bottom:488.760106px;}
.y2b{bottom:488.940161px;}
.y8f{bottom:499.020157px;}
.y58{bottom:499.380157px;}
.y20{bottom:501.180157px;}
.y37{bottom:502.980159px;}
.y9a{bottom:503.340156px;}
.y73{bottom:505.500155px;}
.y62{bottom:519.540149px;}
.y36{bottom:525.660086px;}
.y72{bottom:534.480143px;}
.y4e{bottom:535.200143px;}
.y99{bottom:537.900142px;}
.y35{bottom:548.700138px;}
.y88{bottom:549.420000px;}
.ya{bottom:552.480136px;}
.y16{bottom:552.480280px;}
.y1f{bottom:555.899992px;}
.y71{bottom:563.280132px;}
.y61{bottom:574.080127px;}
.y34{bottom:580.200129px;}
.y98{bottom:582.180124px;}
.y4d{bottom:582.720124px;}
.y70{bottom:592.080120px;}
.y1e{bottom:595.500119px;}
.y87{bottom:599.820117px;}
.y2a{bottom:601.260116px;}
.y33{bottom:602.880055px;}
.y9{bottom:614.940111px;}
.y6f{bottom:621.600108px;}
.y4c{bottom:622.500108px;}
.y15{bottom:624.480179px;}
.y32{bottom:625.920107px;}
.y97{bottom:631.500104px;}
.y1d{bottom:636.360102px;}
.y8{bottom:649.500097px;}
.y6e{bottom:654.540239px;}
.y83{bottom:655.260095px;}
.y30{bottom:657.780024px;}
.y31{bottom:657.780094px;}
.y86{bottom:661.560092px;}
.y96{bottom:675.780087px;}
.y4b{bottom:675.959912px;}
.y6{bottom:677.760086px;}
.y2f{bottom:689.640081px;}
.y6d{bottom:690.540081px;}
.y14{bottom:696.480078px;}
.y82{bottom:699.180077px;}
.y1c{bottom:708.360074px;}
.y85{bottom:722.760068px;}
.y12{bottom:722.940068px;}
.y4a{bottom:727.620066px;}
.y2e{bottom:728.880065px;}
.y6c{bottom:729.600065px;}
.y5{bottom:730.680065px;}
.ya7{bottom:745.980000px;}
.ya6{bottom:774.960047px;}
.y4{bottom:779.280045px;}
.y13{bottom:803.220036px;}
.h11{height:80.280688px;}
.h5{height:88.183793px;}
.h1c{height:90.000000px;}
.h10{height:90.876204px;}
.h23{height:91.259243px;}
.h7{height:102.491959px;}
.h22{height:102.923959px;}
.h2c{height:105.300000px;}
.h8{height:114.107714px;}
.he{height:114.588674px;}
.h4{height:116.085891px;}
.h3{height:130.596627px;}
.h2e{height:136.386860px;}
.h6{height:136.655945px;}
.hd{height:137.231945px;}
.h1e{height:137.557174px;}
.h1{height:143.964786px;}
.h15{height:159.204176px;}
.h9{height:159.875216px;}
.h1d{height:160.025316px;}
.h2a{height:160.116966px;}
.h1b{height:160.135289px;}
.h19{height:160.148732px;}
.h21{height:160.168288px;}
.h29{height:160.168290px;}
.h17{height:160.171923px;}
.h27{height:160.175582px;}
.h25{height:160.176225px;}
.h1f{height:160.176814px;}
.h1a{height:160.176842px;}
.h16{height:160.178053px;}
.h20{height:160.188408px;}
.h26{height:160.204334px;}
.h18{height:160.216549px;}
.h28{height:160.606318px;}
.h2{height:174.128837px;}
.hc{height:182.435687px;}
.h24{height:183.204647px;}
.hb{height:183.401360px;}
.h2b{height:197.437421px;}
.h13{height:206.139883px;}
.h14{height:206.151762px;}
.h12{height:206.264338px;}
.ha{height:228.491189px;}
.h2d{height:263.935441px;}
.hf{height:274.463890px;}
.h0{height:892.500000px;}
.w3{width:48.060000px;}
.w6{width:61.920000px;}
.w4{width:106.380000px;}
.w2{width:118.980000px;}
.w5{width:132.300000px;}
.w1{width:240.660000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x3d{left:6.480823px;}
.x8{left:119.865702px;}
.x19{left:121.305701px;}
.x1a{left:127.425699px;}
.x2e{left:129.045698px;}
.x1{left:133.725697px;}
.x9{left:141.105767px;}
.x3a{left:148.485691px;}
.x41{left:156.226438px;}
.x3f{left:160.546436px;}
.x1c{left:167.926543px;}
.x40{left:169.908155px;}
.x1b{left:181.426427px;}
.x3c{left:186.825600px;}
.x54{left:188.087773px;}
.x2f{left:193.125819px;}
.x2{left:197.265736px;}
.x51{left:203.388884px;}
.x37{left:206.086418px;}
.xa{left:208.966416px;}
.xf{left:213.646415px;}
.x1d{left:215.266502px;}
.x38{left:217.428875px;}
.x1e{left:223.546411px;}
.x3b{left:224.987823px;}
.x22{left:227.686409px;}
.x3{left:228.946408px;}
.x50{left:231.286407px;}
.x24{left:234.346406px;}
.x14{left:237.232548px;}
.x53{left:240.826404px;}
.x13{left:243.890727px;}
.x21{left:247.666401px;}
.x12{left:248.748012px;}
.x11{left:260.446396px;}
.x42{left:268.546393px;}
.x15{left:270.346392px;}
.x27{left:284.926386px;}
.x2d{left:302.568117px;}
.x1f{left:306.166378px;}
.x23{left:320.206372px;}
.x2a{left:325.066370px;}
.x4{left:326.146370px;}
.x56{left:333.346367px;}
.x32{left:336.946365px;}
.x2c{left:358.726357px;}
.x36{left:363.226355px;}
.x29{left:371.866351px;}
.x57{left:381.945600px;}
.x30{left:393.466343px;}
.x25{left:401.386339px;}
.x10{left:409.306336px;}
.x33{left:415.426334px;}
.x35{left:417.046333px;}
.x52{left:423.349661px;}
.x3e{left:424.966330px;}
.x34{left:432.886327px;}
.x31{left:437.206325px;}
.x5{left:446.566791px;}
.x39{left:452.868626px;}
.x55{left:488.328744px;}
.x6{left:494.086302px;}
.x44{left:495.346302px;}
.x58{left:498.765600px;}
.x43{left:502.006299px;}
.x4b{left:505.966298px;}
.x28{left:511.366295px;}
.x45{left:514.246294px;}
.x46{left:520.726292px;}
.x59{left:523.245600px;}
.x26{left:525.226290px;}
.x48{left:543.406283px;}
.x2b{left:555.646278px;}
.x4a{left:583.546267px;}
.x4f{left:608.566257px;}
.x20{left:619.006252px;}
.x7{left:625.846250px;}
.x47{left:637.006245px;}
.x17{left:675.166050px;}
.xd{left:694.606222px;}
.x16{left:707.026217px;}
.x49{left:708.826216px;}
.xe{left:727.726209px;}
.x5a{left:751.665600px;}
.x18{left:765.706153px;}
.x4c{left:912.406135px;}
.x4d{left:920.146132px;}
.xc{left:935.086126px;}
.xb{left:953.806118px;}
.x4e{left:1020.406092px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.006980pt;}
.ls2b{letter-spacing:0.014443pt;}
.ls7{letter-spacing:0.034742pt;}
.ls13{letter-spacing:0.057985pt;}
.lsc{letter-spacing:0.060401pt;}
.ls2c{letter-spacing:0.072428pt;}
.ls23{letter-spacing:0.082055pt;}
.ls18{letter-spacing:0.103349pt;}
.ls4{letter-spacing:0.113184pt;}
.ls2a{letter-spacing:0.181182pt;}
.ls12{letter-spacing:0.237392pt;}
.ls3{letter-spacing:0.243215pt;}
.ls29{letter-spacing:0.270088pt;}
.lse{letter-spacing:0.274883pt;}
.lsa{letter-spacing:0.297794pt;}
.ls14{letter-spacing:0.352943pt;}
.lsf{letter-spacing:0.391893pt;}
.ls6{letter-spacing:0.396957pt;}
.ls17{letter-spacing:0.415950pt;}
.ls1c{letter-spacing:0.441849pt;}
.ls1b{letter-spacing:0.456292pt;}
.ls15{letter-spacing:0.461620pt;}
.lsd{letter-spacing:0.474784pt;}
.ls22{letter-spacing:0.488090pt;}
.ls16{letter-spacing:0.505239pt;}
.ls8{letter-spacing:0.509968pt;}
.ls10{letter-spacing:0.512434pt;}
.ls19{letter-spacing:0.524703pt;}
.ls25{letter-spacing:0.545581pt;}
.ls1a{letter-spacing:0.550641pt;}
.ls20{letter-spacing:0.605211pt;}
.lsb{letter-spacing:0.606375pt;}
.ls21{letter-spacing:0.622886pt;}
.ls11{letter-spacing:0.689425pt;}
.ls24{letter-spacing:0.736806pt;}
.ls5{letter-spacing:0.825904pt;}
.ls28{letter-spacing:1.049407pt;}
.ls1d{letter-spacing:1.095039pt;}
.ls1f{letter-spacing:1.138313pt;}
.ls1e{letter-spacing:1.247067pt;}
.ls1{letter-spacing:16.982794pt;}
.ls2{letter-spacing:31.606739pt;}
.ls9{letter-spacing:99.121880pt;}
.ls26{letter-spacing:106.511221pt;}
.ws0{word-spacing:-191.999923pt;}
.ws11{word-spacing:-175.999930pt;}
.ws1{word-spacing:-143.999942pt;}
.ws10{word-spacing:-129.535948pt;}
.ws2{word-spacing:-127.999949pt;}
.ws12{word-spacing:-117.251857pt;}
.ws3{word-spacing:-80.266848pt;}
.ws13{word-spacing:-74.559970pt;}
.wsb{word-spacing:-53.373710pt;}
.ws9{word-spacing:-47.504621pt;}
.ws8{word-spacing:-47.489558pt;}
.wsf{word-spacing:-41.698558pt;}
.wse{word-spacing:-41.455343pt;}
.wsc{word-spacing:-41.448642pt;}
.wsd{word-spacing:-35.577877pt;}
.ws7{word-spacing:-29.712628pt;}
.ws6{word-spacing:-26.687989pt;}
.wsa{word-spacing:-23.663351pt;}
.ws5{word-spacing:-9.022603pt;}
.ws4{word-spacing:0.000000pt;}
._36{margin-left:-413.624603pt;}
._39{margin-left:-409.468764pt;}
._3a{margin-left:-218.171145pt;}
._13{margin-left:-149.581188pt;}
._d{margin-left:-147.864709pt;}
._14{margin-left:-146.857669pt;}
._11{margin-left:-145.945670pt;}
._e{margin-left:-142.107783pt;}
._5{margin-left:-136.351049pt;}
._a{margin-left:-132.497035pt;}
._9{margin-left:-126.116878pt;}
._8{margin-left:-121.841807pt;}
._f{margin-left:-118.441105pt;}
._38{margin-left:-117.152945pt;}
._12{margin-left:-113.761298pt;}
._1b{margin-left:-112.017699pt;}
._1e{margin-left:-110.738404pt;}
._1d{margin-left:-107.540165pt;}
._20{margin-left:-106.086054pt;}
._10{margin-left:-104.369046pt;}
._2{margin-left:-101.668951pt;}
._22{margin-left:-99.215704pt;}
._24{margin-left:-97.250761pt;}
._7{margin-left:-96.063130pt;}
._4{margin-left:-94.134682pt;}
._3{margin-left:-87.738397pt;}
._1a{margin-left:-84.762110pt;}
._6{margin-left:-81.981471pt;}
._25{margin-left:-76.188258pt;}
._23{margin-left:-74.908898pt;}
._1f{margin-left:-71.720179pt;}
._15{margin-left:-70.440884pt;}
._21{margin-left:-69.152100pt;}
._1{margin-left:-66.295653pt;}
._c{margin-left:-63.849190pt;}
._18{margin-left:-62.765111pt;}
._1c{margin-left:-59.566872pt;}
._19{margin-left:-58.287577pt;}
._17{margin-left:-55.728986pt;}
._37{margin-left:-53.828522pt;}
._16{margin-left:-48.053213pt;}
._34{margin-left:-39.346160pt;}
._b{margin-left:-38.209521pt;}
._27{margin-left:-32.779228pt;}
._35{margin-left:-23.549719pt;}
._2e{margin-left:-2.043699pt;}
._26{margin-left:-0.992915pt;}
._0{width:0.951936pt;}
._2c{width:2.104127pt;}
._33{width:4.983582pt;}
._32{width:6.331645pt;}
._28{width:8.148314pt;}
._2b{width:19.777824pt;}
._30{width:36.703040pt;}
._31{width:48.446829pt;}
._2f{width:52.769603pt;}
._2a{width:54.319850pt;}
._29{width:60.827521pt;}
._2d{width:66.878373pt;}
.fsb{font-size:74.879970pt;}
.fsa{font-size:85.119966pt;}
.fs4{font-size:95.999962pt;}
.fs3{font-size:106.879957pt;}
.fse{font-size:127.977976pt;}
.fs2{font-size:127.999949pt;}
.fs1{font-size:143.999942pt;}
.fsd{font-size:149.095835pt;}
.fs5{font-size:149.119940pt;}
.fs7{font-size:170.825747pt;}
.fs8{font-size:170.879932pt;}
.fsc{font-size:191.991763pt;}
.fs0{font-size:191.999923pt;}
.fs6{font-size:213.119915pt;}
.fs9{font-size:255.999898pt;}
.fsf{font-size:351.999859pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:12.960297pt;}
.ya9{bottom:28.480080pt;}
.ya8{bottom:28.800041pt;}
.y5e{bottom:36.693333pt;}
.y47{bottom:46.453766pt;}
.yaa{bottom:55.093629pt;}
.y57{bottom:59.413534pt;}
.y7{bottom:65.813624pt;}
.ya5{bottom:66.453624pt;}
.y46{bottom:66.613701pt;}
.y60{bottom:78.613619pt;}
.y45{bottom:87.253616pt;}
.y56{bottom:89.653615pt;}
.y5d{bottom:91.693896pt;}
.y29{bottom:92.053487pt;}
.y95{bottom:93.142141pt;}
.ya4{bottom:97.173612pt;}
.y94{bottom:100.998468pt;}
.y81{bottom:112.533606pt;}
.y43{bottom:115.573542pt;}
.y44{bottom:115.573604pt;}
.y28{bottom:127.253600pt;}
.ya3{bottom:127.733600pt;}
.y55{bottom:131.733598pt;}
.y49{bottom:136.053235pt;}
.y7f{bottom:138.133280pt;}
.y80{bottom:138.133595pt;}
.y42{bottom:143.893593pt;}
.y5c{bottom:144.194621pt;}
.y11{bottom:154.293589pt;}
.y10{bottom:154.293669pt;}
.y93{bottom:158.126926pt;}
.y27{bottom:163.733585pt;}
.y7e{bottom:163.893348pt;}
.ya2{bottom:167.253584pt;}
.y41{bottom:172.213582pt;}
.y1b{bottom:173.813514pt;}
.y54{bottom:173.973581pt;}
.y8e{bottom:175.893580pt;}
.y5b{bottom:179.893579pt;}
.y18{bottom:184.053577pt;}
.y68{bottom:187.413576pt;}
.y7d{bottom:189.493391pt;}
.y92{bottom:198.133571pt;}
.y40{bottom:200.533570pt;}
.y48{bottom:202.773925pt;}
.yf{bottom:203.573569pt;}
.ya1{bottom:210.933566pt;}
.y26{bottom:213.493565pt;}
.y7c{bottom:215.253459pt;}
.y53{bottom:216.053564pt;}
.y1a{bottom:225.013413pt;}
.y3f{bottom:228.853559pt;}
.y8d{bottom:230.773558pt;}
.y2d{bottom:234.933557pt;}
.y67{bottom:235.733556pt;}
.y7b{bottom:240.853502pt;}
.ya0{bottom:241.653554pt;}
.y25{bottom:251.893550pt;}
.y3e{bottom:257.173548pt;}
.y52{bottom:258.293547pt;}
.ye{bottom:261.013546pt;}
.y7a{bottom:266.453544pt;}
.y9f{bottom:272.213542pt;}
.y19{bottom:276.053540pt;}
.y66{bottom:278.933539pt;}
.y3d{bottom:285.173482pt;}
.y8c{bottom:290.933313pt;}
.y79{bottom:292.693534pt;}
.y51{bottom:293.653533pt;}
.y6b{bottom:297.943375pt;}
.y24{bottom:300.373659pt;}
.y9e{bottom:302.933529pt;}
.y3c{bottom:305.653528pt;}
.y3{bottom:312.213526pt;}
.y84{bottom:317.973523pt;}
.yd{bottom:318.613523pt;}
.y6a{bottom:319.074507pt;}
.y78{bottom:321.013522pt;}
.y65{bottom:327.253520pt;}
.y23{bottom:332.373518pt;}
.y9d{bottom:333.653517pt;}
.y3b{bottom:333.973517pt;}
.y2c{bottom:334.773517pt;}
.y8b{bottom:335.893348pt;}
.y77{bottom:346.773512pt;}
.y3a{bottom:362.293506pt;}
.y69{bottom:363.253505pt;}
.y9c{bottom:364.213505pt;}
.y22{bottom:368.853503pt;}
.y64{bottom:370.293503pt;}
.y76{bottom:372.373502pt;}
.y2{bottom:374.453661pt;}
.yc{bottom:376.053500pt;}
.y91{bottom:376.973535pt;}
.y5a{bottom:384.028173pt;}
.y8a{bottom:389.653324pt;}
.y39{bottom:390.613494pt;}
.y50{bottom:391.413494pt;}
.y90{bottom:394.749839pt;}
.y75{bottom:397.973491pt;}
.y59{bottom:400.036480pt;}
.y9b{bottom:403.733489pt;}
.y21{bottom:407.253488pt;}
.y63{bottom:418.773483pt;}
.y38{bottom:418.933483pt;}
.y74{bottom:423.733481pt;}
.y17{bottom:427.093672pt;}
.y1{bottom:432.213478pt;}
.yb{bottom:433.493477pt;}
.y4f{bottom:433.653477pt;}
.y89{bottom:434.453427pt;}
.y2b{bottom:434.613477pt;}
.y8f{bottom:443.573473pt;}
.y58{bottom:443.893473pt;}
.y20{bottom:445.493472pt;}
.y37{bottom:447.093475pt;}
.y9a{bottom:447.413472pt;}
.y73{bottom:449.333471pt;}
.y62{bottom:461.813466pt;}
.y36{bottom:467.253409pt;}
.y72{bottom:475.093461pt;}
.y4e{bottom:475.733460pt;}
.y99{bottom:478.133459pt;}
.y35{bottom:487.733456pt;}
.y88{bottom:488.373334pt;}
.ya{bottom:491.093454pt;}
.y16{bottom:491.093582pt;}
.y1f{bottom:494.133327pt;}
.y71{bottom:500.693450pt;}
.y61{bottom:510.293447pt;}
.y34{bottom:515.733448pt;}
.y98{bottom:517.493444pt;}
.y4d{bottom:517.973443pt;}
.y70{bottom:526.293440pt;}
.y1e{bottom:529.333439pt;}
.y87{bottom:533.173437pt;}
.y2a{bottom:534.453437pt;}
.y33{bottom:535.893382pt;}
.y9{bottom:546.613432pt;}
.y6f{bottom:552.533430pt;}
.y4c{bottom:553.333429pt;}
.y15{bottom:555.093493pt;}
.y32{bottom:556.373428pt;}
.y97{bottom:561.333426pt;}
.y1d{bottom:565.653424pt;}
.y8{bottom:577.333420pt;}
.y6e{bottom:581.813546pt;}
.y83{bottom:582.453418pt;}
.y30{bottom:584.693354pt;}
.y31{bottom:584.693417pt;}
.y86{bottom:588.053415pt;}
.y96{bottom:600.693410pt;}
.y4b{bottom:600.853255pt;}
.y6{bottom:602.453410pt;}
.y2f{bottom:613.013405pt;}
.y6d{bottom:613.813405pt;}
.y14{bottom:619.093403pt;}
.y82{bottom:621.493402pt;}
.y1c{bottom:629.653399pt;}
.y85{bottom:642.453394pt;}
.y12{bottom:642.613394pt;}
.y4a{bottom:646.773392pt;}
.y2e{bottom:647.893392pt;}
.y6c{bottom:648.533391pt;}
.y5{bottom:649.493391pt;}
.ya7{bottom:663.093333pt;}
.ya6{bottom:688.853375pt;}
.y4{bottom:692.693374pt;}
.y13{bottom:713.973365pt;}
.h11{height:71.360611pt;}
.h5{height:78.385594pt;}
.h1c{height:80.000000pt;}
.h10{height:80.778848pt;}
.h23{height:81.119328pt;}
.h7{height:91.103964pt;}
.h22{height:91.487963pt;}
.h2c{height:93.600000pt;}
.h8{height:101.429079pt;}
.he{height:101.856599pt;}
.h4{height:103.187459pt;}
.h3{height:116.085891pt;}
.h2e{height:121.232764pt;}
.h6{height:121.471951pt;}
.hd{height:121.983951pt;}
.h1e{height:122.273044pt;}
.h1{height:127.968699pt;}
.h15{height:141.514823pt;}
.h9{height:142.111303pt;}
.h1d{height:142.244726pt;}
.h2a{height:142.326192pt;}
.h1b{height:142.342479pt;}
.h19{height:142.354429pt;}
.h21{height:142.371812pt;}
.h29{height:142.371813pt;}
.h17{height:142.375043pt;}
.h27{height:142.378295pt;}
.h25{height:142.378867pt;}
.h1f{height:142.379390pt;}
.h1a{height:142.379415pt;}
.h16{height:142.380492pt;}
.h20{height:142.389696pt;}
.h26{height:142.403853pt;}
.h18{height:142.414710pt;}
.h28{height:142.761172pt;}
.h2{height:154.781188pt;}
.hc{height:162.165055pt;}
.h24{height:162.848575pt;}
.hb{height:163.023431pt;}
.h2b{height:175.499930pt;}
.h13{height:183.235451pt;}
.h14{height:183.246011pt;}
.h12{height:183.346078pt;}
.ha{height:203.103279pt;}
.h2d{height:234.609281pt;}
.hf{height:243.967902pt;}
.h0{height:793.333333pt;}
.w3{width:42.720000pt;}
.w6{width:55.040000pt;}
.w4{width:94.560000pt;}
.w2{width:105.760000pt;}
.w5{width:117.600000pt;}
.w1{width:213.920000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3d{left:5.760731pt;}
.x8{left:106.547291pt;}
.x19{left:107.827290pt;}
.x1a{left:113.267288pt;}
.x2e{left:114.707287pt;}
.x1{left:118.867286pt;}
.x9{left:125.427348pt;}
.x3a{left:131.987281pt;}
.x41{left:138.867944pt;}
.x3f{left:142.707943pt;}
.x1c{left:149.268038pt;}
.x40{left:151.029471pt;}
.x1b{left:161.267935pt;}
.x3c{left:166.067200pt;}
.x54{left:167.189131pt;}
.x2f{left:171.667394pt;}
.x2{left:175.347321pt;}
.x51{left:180.790119pt;}
.x37{left:183.187927pt;}
.xa{left:185.747926pt;}
.xf{left:189.907924pt;}
.x1d{left:191.348001pt;}
.x38{left:193.270112pt;}
.x1e{left:198.707921pt;}
.x3b{left:199.989176pt;}
.x22{left:202.387919pt;}
.x3{left:203.507919pt;}
.x50{left:205.587918pt;}
.x24{left:208.307917pt;}
.x14{left:210.873376pt;}
.x53{left:214.067914pt;}
.x13{left:216.791758pt;}
.x21{left:220.147912pt;}
.x12{left:221.109344pt;}
.x11{left:231.507907pt;}
.x42{left:238.707905pt;}
.x15{left:240.307904pt;}
.x27{left:253.267899pt;}
.x2d{left:268.949437pt;}
.x1f{left:272.147891pt;}
.x23{left:284.627886pt;}
.x2a{left:288.947884pt;}
.x4{left:289.907884pt;}
.x56{left:296.307881pt;}
.x32{left:299.507880pt;}
.x2c{left:318.867872pt;}
.x36{left:322.867871pt;}
.x29{left:330.547868pt;}
.x57{left:339.507200pt;}
.x30{left:349.747860pt;}
.x25{left:356.787857pt;}
.x10{left:363.827854pt;}
.x33{left:369.267852pt;}
.x35{left:370.707852pt;}
.x52{left:376.310809pt;}
.x3e{left:377.747849pt;}
.x34{left:384.787846pt;}
.x31{left:388.627845pt;}
.x5{left:396.948259pt;}
.x39{left:402.549890pt;}
.x55{left:434.069995pt;}
.x6{left:439.187824pt;}
.x44{left:440.307824pt;}
.x58{left:443.347200pt;}
.x43{left:446.227822pt;}
.x4b{left:449.747820pt;}
.x28{left:454.547818pt;}
.x45{left:457.107817pt;}
.x46{left:462.867815pt;}
.x59{left:465.107200pt;}
.x26{left:466.867813pt;}
.x48{left:483.027807pt;}
.x2b{left:493.907802pt;}
.x4a{left:518.707793pt;}
.x4f{left:540.947784pt;}
.x20{left:550.227780pt;}
.x7{left:556.307777pt;}
.x47{left:566.227774pt;}
.x17{left:600.147600pt;}
.xd{left:617.427753pt;}
.x16{left:628.467749pt;}
.x49{left:630.067748pt;}
.xe{left:646.867741pt;}
.x5a{left:668.147200pt;}
.x18{left:680.627692pt;}
.x4c{left:811.027676pt;}
.x4d{left:817.907673pt;}
.xc{left:831.187668pt;}
.xb{left:847.827661pt;}
.x4e{left:907.027637pt;}
}




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