
    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_10ddb50b6d3d5dd2a1abc30e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_7e8c562e2271d38669d2af31.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_9a82be41a2bf86b6c5aa0bfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d29aa210db8ed0d95378f2eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_2ac572083de2931f75e9c5e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_56ff6ec32b356ce356945b72.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_336969af6321599d0c1d4370.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-88.200000px;}
.v5{vertical-align:-81.000000px;}
.v3{vertical-align:-74.880000px;}
.v6{vertical-align:-64.440000px;}
.v2{vertical-align:-60.840000px;}
.v4{vertical-align:-55.437912px;}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-0.268272px;}
.ls58{letter-spacing:-0.260820px;}
.ls57{letter-spacing:-0.207000px;}
.ls43{letter-spacing:-0.172800px;}
.ls35{letter-spacing:-0.124200px;}
.ls40{letter-spacing:-0.119232px;}
.ls2f{letter-spacing:-0.104328px;}
.ls32{letter-spacing:-0.081000px;}
.ls54{letter-spacing:-0.079488px;}
.ls41{letter-spacing:-0.069552px;}
.ls5b{letter-spacing:-0.067500px;}
.ls36{letter-spacing:-0.064584px;}
.ls45{letter-spacing:-0.050400px;}
.ls30{letter-spacing:-0.049680px;}
.ls59{letter-spacing:-0.049500px;}
.ls34{letter-spacing:-0.044712px;}
.ls44{letter-spacing:-0.043200px;}
.ls56{letter-spacing:-0.040572px;}
.ls39{letter-spacing:-0.028800px;}
.ls55{letter-spacing:-0.021600px;}
.ls3d{letter-spacing:-0.014400px;}
.ls3e{letter-spacing:-0.007200px;}
.ls5a{letter-spacing:-0.005796px;}
.ls2c{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.007200px;}
.ls1f{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.019872px;}
.ls3c{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.023904px;}
.ls20{letter-spacing:0.028800px;}
.lsd{letter-spacing:0.029808px;}
.ls22{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.037800px;}
.ls46{letter-spacing:0.039744px;}
.ls53{letter-spacing:0.040572px;}
.ls31{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.054648px;}
.ls2e{letter-spacing:0.059616px;}
.ls52{letter-spacing:0.063756px;}
.ls8{letter-spacing:0.064584px;}
.ls2{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065736px;}
.lsb{letter-spacing:0.069552px;}
.lse{letter-spacing:0.074520px;}
.ls21{letter-spacing:0.079200px;}
.ls18{letter-spacing:0.083664px;}
.ls11{letter-spacing:0.084456px;}
.ls42{letter-spacing:0.089424px;}
.ls47{letter-spacing:0.094392px;}
.ls3b{letter-spacing:0.095760px;}
.ls5c{letter-spacing:0.098532px;}
.ls4b{letter-spacing:0.104328px;}
.ls25{letter-spacing:0.108000px;}
.ls4f{letter-spacing:0.115920px;}
.ls1{letter-spacing:0.129600px;}
.ls26{letter-spacing:0.132768px;}
.ls4c{letter-spacing:0.133308px;}
.ls4{letter-spacing:0.137448px;}
.ls50{letter-spacing:0.139104px;}
.ls3a{letter-spacing:0.143640px;}
.ls3f{letter-spacing:0.144072px;}
.ls4a{letter-spacing:0.144900px;}
.ls4d{letter-spacing:0.150696px;}
.ls17{letter-spacing:0.155376px;}
.ls28{letter-spacing:0.157500px;}
.ls16{letter-spacing:0.161352px;}
.ls13{letter-spacing:0.162000px;}
.ls4e{letter-spacing:0.162288px;}
.ls23{letter-spacing:0.166500px;}
.ls49{letter-spacing:0.168084px;}
.ls27{letter-spacing:0.171000px;}
.ls14{letter-spacing:0.175500px;}
.ls3{letter-spacing:0.178848px;}
.ls48{letter-spacing:0.179676px;}
.ls29{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.184500px;}
.ls1b{letter-spacing:0.185256px;}
.ls1a{letter-spacing:0.197208px;}
.lsc{letter-spacing:0.198720px;}
.ls1c{letter-spacing:0.209160px;}
.ls1d{letter-spacing:0.221112px;}
.ls51{letter-spacing:0.231840px;}
.ls37{letter-spacing:0.238464px;}
.ls19{letter-spacing:0.239040px;}
.ls33{letter-spacing:0.319500px;}
.ls10{letter-spacing:0.360000px;}
.ls2b{letter-spacing:29.880000px;}
.ls38{letter-spacing:45.000000px;}
.ls15{letter-spacing:58.190184px;}
.lsf{letter-spacing:100.800000px;}
.ls0{letter-spacing:146.880000px;}
.ls12{letter-spacing:148.320000px;}
.ls2a{letter-spacing:163.080000px;}
.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;}
}
.ws8{word-spacing:-58.680000px;}
.ws9{word-spacing:-58.320000px;}
.ws1{word-spacing:-20.314800px;}
.ws0{word-spacing:-20.250000px;}
.wse{word-spacing:-17.992800px;}
.ws2{word-spacing:-16.637184px;}
.ws4d{word-spacing:-16.107084px;}
.ws49{word-spacing:-16.072308px;}
.ws4b{word-spacing:-15.852060px;}
.ws4{word-spacing:-13.865688px;}
.ws48{word-spacing:-13.850784px;}
.ws5{word-spacing:-13.830912px;}
.wsb{word-spacing:-13.766328px;}
.wsc{word-spacing:-13.746456px;}
.ws3{word-spacing:-13.542768px;}
.ws7{word-spacing:-12.681000px;}
.wsd{word-spacing:-12.676500px;}
.ws4c{word-spacing:-12.460500px;}
.ws4e{word-spacing:-12.442500px;}
.ws6{word-spacing:-12.429000px;}
.ws4a{word-spacing:-12.303000px;}
.ws61{word-spacing:-0.411516px;}
.ws5e{word-spacing:-0.399924px;}
.wsa{word-spacing:-0.364500px;}
.ws64{word-spacing:-0.359352px;}
.ws17{word-spacing:-0.322920px;}
.ws2a{word-spacing:-0.280872px;}
.ws2e{word-spacing:-0.262944px;}
.ws1c{word-spacing:-0.261000px;}
.ws2d{word-spacing:-0.250992px;}
.ws2b{word-spacing:-0.239040px;}
.ws2c{word-spacing:-0.227088px;}
.ws10{word-spacing:-0.218700px;}
.ws1e{word-spacing:-0.208656px;}
.ws24{word-spacing:-0.203184px;}
.ws46{word-spacing:-0.199800px;}
.ws1a{word-spacing:-0.198720px;}
.ws28{word-spacing:-0.197208px;}
.ws13{word-spacing:-0.193752px;}
.ws22{word-spacing:-0.188784px;}
.ws15{word-spacing:-0.183816px;}
.ws16{word-spacing:-0.178848px;}
.ws23{word-spacing:-0.144072px;}
.ws5f{word-spacing:-0.133308px;}
.ws29{word-spacing:-0.125496px;}
.ws3f{word-spacing:-0.085500px;}
.ws56{word-spacing:-0.081144px;}
.ws45{word-spacing:-0.081000px;}
.ws35{word-spacing:-0.079200px;}
.ws21{word-spacing:-0.076500px;}
.ws42{word-spacing:-0.072000px;}
.ws44{word-spacing:-0.070200px;}
.ws57{word-spacing:-0.069552px;}
.ws3d{word-spacing:-0.067500px;}
.ws5c{word-spacing:-0.063756px;}
.ws20{word-spacing:-0.063000px;}
.ws43{word-spacing:-0.058500px;}
.ws41{word-spacing:-0.054648px;}
.ws5b{word-spacing:-0.052164px;}
.ws58{word-spacing:-0.046368px;}
.ws4f{word-spacing:-0.044712px;}
.ws11{word-spacing:-0.041832px;}
.ws60{word-spacing:-0.040572px;}
.ws36{word-spacing:-0.036000px;}
.ws5a{word-spacing:-0.034776px;}
.ws33{word-spacing:-0.028800px;}
.ws32{word-spacing:-0.021600px;}
.ws26{word-spacing:-0.019152px;}
.ws5d{word-spacing:-0.017388px;}
.ws30{word-spacing:-0.014400px;}
.ws2f{word-spacing:-0.007200px;}
.ws59{word-spacing:-0.005796px;}
.wsf{word-spacing:0.000000px;}
.ws39{word-spacing:0.007200px;}
.ws40{word-spacing:0.010800px;}
.ws34{word-spacing:0.014400px;}
.ws62{word-spacing:0.034776px;}
.ws1d{word-spacing:0.045000px;}
.ws63{word-spacing:0.057960px;}
.ws51{word-spacing:0.064800px;}
.ws54{word-spacing:0.072000px;}
.ws3b{word-spacing:0.079200px;}
.ws12{word-spacing:0.081000px;}
.ws52{word-spacing:0.086400px;}
.ws3c{word-spacing:0.094392px;}
.ws38{word-spacing:0.100800px;}
.ws3a{word-spacing:0.108000px;}
.ws27{word-spacing:0.114912px;}
.ws1f{word-spacing:0.118800px;}
.ws50{word-spacing:0.144072px;}
.ws55{word-spacing:0.158400px;}
.ws31{word-spacing:0.165600px;}
.ws37{word-spacing:0.172800px;}
.ws14{word-spacing:0.173880px;}
.ws53{word-spacing:0.201600px;}
.ws19{word-spacing:0.208656px;}
.ws47{word-spacing:0.230400px;}
.ws1b{word-spacing:0.288144px;}
.ws18{word-spacing:0.342792px;}
.ws3e{word-spacing:0.357696px;}
.ws25{word-spacing:0.388800px;}
._8{margin-left:-2920.320000px;}
._4{margin-left:-58.680000px;}
._5{margin-left:-57.600000px;}
._6{margin-left:-45.000000px;}
._1{margin-left:-1.219500px;}
._0{width:1.066152px;}
._2{width:18.901008px;}
._7{width:81.076752px;}
._3{width:90.657000px;}
.fc12{color:rgb(157,25,97);}
.fc11{color:rgb(0,0,255);}
.fc10{color:transparent;}
.fcf{color:rgb(0,0,154);}
.fce{color:rgb(0,0,128);}
.fcd{color:rgb(0,119,0);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(51,51,51);}
.fc2{color:rgb(51,101,204);}
.fc1{color:rgb(107,104,103);}
.fc9{color:rgb(112,111,100);}
.fc5{color:rgb(128,0,128);}
.fc3{color:rgb(154,0,0);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(108,104,101);}
.fcb{color:rgb(53,0,106);}
.fc8{color:rgb(241,239,226);}
.fca{color:rgb(172,168,154);}
.fcc{color:rgb(255,0,0);}
.fs5{font-size:45.000000px;}
.fs2{font-size:49.680000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:57.960000px;}
.fs7{font-size:58.320000px;}
.fs6{font-size:58.680000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:81.000000px;}
.fs8{font-size:95.760000px;}
.y86{bottom:-35.879550px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.610450px;}
.y21{bottom:2.700450px;}
.yd4{bottom:3.150450px;}
.y3b{bottom:3.870450px;}
.y4a{bottom:4.050450px;}
.y99{bottom:4.050600px;}
.y69{bottom:41.250000px;}
.y68{bottom:45.120450px;}
.y38{bottom:48.630450px;}
.yca{bottom:48.720450px;}
.y67{bottom:65.100450px;}
.y37{bottom:67.351122px;}
.yc9{bottom:68.610450px;}
.y36{bottom:81.210600px;}
.yc7{bottom:84.540000px;}
.y66{bottom:84.990450px;}
.yc8{bottom:88.590450px;}
.y35{bottom:96.420450px;}
.y65{bottom:104.970450px;}
.yc6{bottom:108.480450px;}
.y34{bottom:115.050306px;}
.y64{bottom:124.950450px;}
.yc5{bottom:128.460450px;}
.y33{bottom:142.859970px;}
.y63{bottom:144.840450px;}
.yc4{bottom:148.350450px;}
.y32{bottom:156.540450px;}
.y62{bottom:164.820450px;}
.yc3{bottom:168.330450px;}
.y31{bottom:169.230450px;}
.y30{bottom:183.360450px;}
.y61{bottom:184.710450px;}
.yc2{bottom:188.310450px;}
.y2f{bottom:202.260450px;}
.y60{bottom:204.690450px;}
.yc1{bottom:208.200450px;}
.y2e{bottom:222.870450px;}
.y5f{bottom:224.580450px;}
.yc0{bottom:228.180450px;}
.ybe{bottom:244.020000px;}
.y5e{bottom:244.560450px;}
.y2b{bottom:247.890450px;}
.ybf{bottom:248.070450px;}
.y2d{bottom:249.150450px;}
.y5d{bottom:264.450450px;}
.y2c{bottom:267.330450px;}
.ybd{bottom:268.050450px;}
.y2a{bottom:268.500450px;}
.y5c{bottom:284.430450px;}
.ybc{bottom:287.940450px;}
.y5b{bottom:304.410450px;}
.ybb{bottom:307.920450px;}
.y29{bottom:310.800450px;}
.y5a{bottom:324.300450px;}
.y28{bottom:325.920450px;}
.yba{bottom:327.810450px;}
.y59{bottom:344.280450px;}
.y27{bottom:345.900450px;}
.yb9{bottom:347.790450px;}
.y84{bottom:360.480450px;}
.y58{bottom:364.170450px;}
.yb8{bottom:367.770450px;}
.y26{bottom:379.560450px;}
.y57{bottom:384.150450px;}
.yb7{bottom:387.660450px;}
.y83{bottom:395.490450px;}
.y25{bottom:398.280972px;}
.y56{bottom:404.040450px;}
.yb6{bottom:407.640450px;}
.y24{bottom:412.140450px;}
.y82{bottom:417.720450px;}
.y55{bottom:424.020450px;}
.y23{bottom:427.350450px;}
.yb5{bottom:427.530450px;}
.y20{bottom:443.370000px;}
.yb3{bottom:443.460000px;}
.y54{bottom:443.910450px;}
.y22{bottom:446.070450px;}
.yb4{bottom:447.510450px;}
.yeb{bottom:450.480450px;}
.y81{bottom:457.770600px;}
.y52{bottom:459.840000px;}
.y1f{bottom:459.930600px;}
.y53{bottom:463.890450px;}
.yb2{bottom:467.400450px;}
.y1e{bottom:475.140450px;}
.y51{bottom:483.870450px;}
.yb1{bottom:487.380450px;}
.y1d{bottom:493.770450px;}
.y4f{bottom:499.710000px;}
.yea{bottom:502.500450px;}
.y50{bottom:503.760450px;}
.yb0{bottom:507.270450px;}
.y1c{bottom:508.980450px;}
.ye9{bottom:517.170972px;}
.y4e{bottom:523.740450px;}
.y1a{bottom:525.000000px;}
.yaf{bottom:527.250450px;}
.y19{bottom:527.610450px;}
.ye8{bottom:535.170450px;}
.y18{bottom:541.560450px;}
.y4d{bottom:543.630450px;}
.yae{bottom:547.230450px;}
.ye7{bottom:552.630450px;}
.y17{bottom:555.420306px;}
.y4c{bottom:563.610450px;}
.yad{bottom:567.120450px;}
.y16{bottom:569.370450px;}
.y80{bottom:575.580450px;}
.y49{bottom:579.450000px;}
.y4b{bottom:583.500450px;}
.y15{bottom:584.490450px;}
.y8d{bottom:587.100450px;}
.y7f{bottom:599.970450px;}
.y14{bottom:603.210450px;}
.ye6{bottom:606.630450px;}
.yac{bottom:606.990450px;}
.y13{bottom:617.160450px;}
.ye5{bottom:621.212016px;}
.y7e{bottom:622.920450px;}
.yab{bottom:626.970450px;}
.y48{bottom:626.973690px;}
.y12{bottom:632.280450px;}
.y7d{bottom:635.610450px;}
.ye4{bottom:639.211494px;}
.yaa{bottom:646.860450px;}
.y7c{bottom:648.210450px;}
.y47{bottom:649.473330px;}
.y11{bottom:651.000972px;}
.ye3{bottom:657.210972px;}
.y7b{bottom:661.080450px;}
.y10{bottom:664.860450px;}
.ya9{bottom:666.840450px;}
.y46{bottom:671.972970px;}
.ye1{bottom:672.060000px;}
.ye2{bottom:675.210450px;}
.y7a{bottom:679.710450px;}
.yf{bottom:680.070450px;}
.ya7{bottom:682.680000px;}
.ya8{bottom:686.730450px;}
.ye0{bottom:692.670450px;}
.y45{bottom:694.472610px;}
.y79{bottom:700.320450px;}
.ya6{bottom:706.710450px;}
.ydf{bottom:709.500450px;}
.y44{bottom:716.972250px;}
.ya4{bottom:722.640000px;}
.y78{bottom:723.270450px;}
.ya5{bottom:726.690450px;}
.y77{bottom:735.960450px;}
.y43{bottom:739.471890px;}
.yde{bottom:745.500450px;}
.ya3{bottom:746.580600px;}
.y76{bottom:748.830306px;}
.ydd{bottom:760.172016px;}
.y42{bottom:761.971530px;}
.y75{bottom:762.780450px;}
.ya2{bottom:766.560600px;}
.ydc{bottom:778.171494px;}
.y74{bottom:781.320450px;}
.y41{bottom:784.471170px;}
.ya1{bottom:786.450600px;}
.ydb{bottom:796.170972px;}
.y73{bottom:802.020450px;}
.ya0{bottom:806.430600px;}
.y40{bottom:806.970810px;}
.yda{bottom:814.170450px;}
.y72{bottom:824.880450px;}
.y9f{bottom:826.320600px;}
.y3f{bottom:829.470450px;}
.yd9{bottom:831.630450px;}
.y71{bottom:837.570450px;}
.y9e{bottom:846.300600px;}
.y70{bottom:850.260450px;}
.y6f{bottom:862.860450px;}
.y9d{bottom:866.190600px;}
.y3e{bottom:872.400468px;}
.y6e{bottom:875.730450px;}
.yd8{bottom:876.630450px;}
.y9c{bottom:886.170600px;}
.yd7{bottom:891.211494px;}
.y6d{bottom:893.910450px;}
.ye{bottom:897.960450px;}
.y3d{bottom:899.220450px;}
.y9b{bottom:906.150600px;}
.y6c{bottom:906.600450px;}
.yd6{bottom:909.210972px;}
.yd{bottom:916.680450px;}
.y6b{bottom:919.200450px;}
.y98{bottom:921.990000px;}
.yd3{bottom:924.060000px;}
.y9a{bottom:926.040600px;}
.yd5{bottom:927.210450px;}
.y3c{bottom:929.190450px;}
.yc{bottom:931.800450px;}
.y6a{bottom:932.070450px;}
.yd2{bottom:944.670450px;}
.y3a{bottom:945.300000px;}
.y97{bottom:946.020450px;}
.y39{bottom:949.170450px;}
.yb{bottom:950.700450px;}
.yd1{bottom:961.500450px;}
.y96{bottom:965.910450px;}
.ya{bottom:971.310450px;}
.y95{bottom:985.890450px;}
.y9{bottom:990.569910px;}
.y1{bottom:1004.700450px;}
.y94{bottom:1005.780450px;}
.yd0{bottom:1007.130450px;}
.y8{bottom:1007.310180px;}
.ycf{bottom:1021.711494px;}
.y7{bottom:1024.050450px;}
.y93{bottom:1025.760450px;}
.yce{bottom:1039.710972px;}
.y92{bottom:1045.650450px;}
.y2{bottom:1047.270450px;}
.y8c{bottom:1047.630450px;}
.ycd{bottom:1057.710450px;}
.y6{bottom:1064.910450px;}
.y91{bottom:1065.630450px;}
.y8b{bottom:1066.349730px;}
.ycc{bottom:1075.170450px;}
.y8a{bottom:1080.210450px;}
.y3{bottom:1084.530450px;}
.y90{bottom:1085.610450px;}
.y5{bottom:1085.700162px;}
.ycb{bottom:1092.000450px;}
.y89{bottom:1095.420450px;}
.y8f{bottom:1105.500450px;}
.y88{bottom:1114.050306px;}
.y4{bottom:1123.230450px;}
.y8e{bottom:1125.480450px;}
.y87{bottom:1128.000450px;}
.y85{bottom:1206.480450px;}
.h14{height:-19.769490px;}
.h10{height:-6.300000px;}
.h9{height:14.130000px;}
.ha{height:14.220000px;}
.h18{height:16.110000px;}
.h13{height:20.070000px;}
.h12{height:20.250000px;}
.hd{height:46.933594px;}
.hc{height:48.015000px;}
.h3{height:50.068125px;}
.h8{height:51.814687px;}
.hf{height:51.815264px;}
.he{height:51.815287px;}
.h16{height:51.817567px;}
.hb{height:55.035000px;}
.h7{height:56.320312px;}
.h17{height:60.450469px;}
.h6{height:62.327813px;}
.h5{height:63.763920px;}
.h1{height:70.664062px;}
.h2{height:75.093750px;}
.h4{height:81.632812px;}
.h11{height:99.874688px;}
.h0{height:939.000000px;}
.h15{height:1195.500000px;}
.w1{width:-68.580000px;}
.w2{width:-39.510000px;}
.we{width:-14.250000px;}
.w3{width:46.980000px;}
.wc{width:191.520000px;}
.w8{width:226.170000px;}
.w7{width:324.360000px;}
.w4{width:333.000000px;}
.wd{width:345.960000px;}
.wb{width:348.930000px;}
.w5{width:363.960000px;}
.wa{width:367.920000px;}
.w9{width:374.940000px;}
.w6{width:376.920000px;}
.w0{width:393.000000px;}
.xb{left:-144.000000px;}
.x10{left:-140.580000px;}
.xa{left:-139.500000px;}
.x13{left:-125.370000px;}
.x11{left:-119.610000px;}
.xc{left:-106.650000px;}
.x14{left:-102.510000px;}
.xd{left:-99.090000px;}
.xe{left:-72.720000px;}
.xf{left:-68.580000px;}
.x1{left:-39.960000px;}
.x23{left:-37.080000px;}
.x12{left:-35.730000px;}
.x24{left:-27.990000px;}
.x2{left:-2.250000px;}
.x0{left:0.000000px;}
.x15{left:11.250000px;}
.x1b{left:18.000000px;}
.x1a{left:20.250000px;}
.x19{left:24.210000px;}
.x17{left:28.980000px;}
.x1c{left:34.200000px;}
.x25{left:106.470000px;}
.x26{left:115.470000px;}
.x1d{left:118.440000px;}
.x1e{left:138.690000px;}
.x3{left:175.680000px;}
.x16{left:287.640000px;}
.x18{left:325.620000px;}
.x20{left:401.670000px;}
.x4{left:403.830000px;}
.x27{left:407.250000px;}
.x1f{left:408.420000px;}
.x7{left:409.680000px;}
.x28{left:416.880000px;}
.x8{left:432.450054px;}
.x6{left:450.990000px;}
.x9{left:459.089568px;}
.x5{left:491.579586px;}
.x22{left:497.610000px;}
.x21{left:500.130000px;}
@media print{
.v1{vertical-align:-78.400000pt;}
.v5{vertical-align:-72.000000pt;}
.v3{vertical-align:-66.560000pt;}
.v6{vertical-align:-57.280000pt;}
.v2{vertical-align:-54.080000pt;}
.v4{vertical-align:-49.278144pt;}
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-0.238464pt;}
.ls58{letter-spacing:-0.231840pt;}
.ls57{letter-spacing:-0.184000pt;}
.ls43{letter-spacing:-0.153600pt;}
.ls35{letter-spacing:-0.110400pt;}
.ls40{letter-spacing:-0.105984pt;}
.ls2f{letter-spacing:-0.092736pt;}
.ls32{letter-spacing:-0.072000pt;}
.ls54{letter-spacing:-0.070656pt;}
.ls41{letter-spacing:-0.061824pt;}
.ls5b{letter-spacing:-0.060000pt;}
.ls36{letter-spacing:-0.057408pt;}
.ls45{letter-spacing:-0.044800pt;}
.ls30{letter-spacing:-0.044160pt;}
.ls59{letter-spacing:-0.044000pt;}
.ls34{letter-spacing:-0.039744pt;}
.ls44{letter-spacing:-0.038400pt;}
.ls56{letter-spacing:-0.036064pt;}
.ls39{letter-spacing:-0.025600pt;}
.ls55{letter-spacing:-0.019200pt;}
.ls3d{letter-spacing:-0.012800pt;}
.ls3e{letter-spacing:-0.006400pt;}
.ls5a{letter-spacing:-0.005152pt;}
.ls2c{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.006400pt;}
.ls1f{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.017664pt;}
.ls3c{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.021248pt;}
.ls20{letter-spacing:0.025600pt;}
.lsd{letter-spacing:0.026496pt;}
.ls22{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.033600pt;}
.ls46{letter-spacing:0.035328pt;}
.ls53{letter-spacing:0.036064pt;}
.ls31{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.048576pt;}
.ls2e{letter-spacing:0.052992pt;}
.ls52{letter-spacing:0.056672pt;}
.ls8{letter-spacing:0.057408pt;}
.ls2{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058432pt;}
.lsb{letter-spacing:0.061824pt;}
.lse{letter-spacing:0.066240pt;}
.ls21{letter-spacing:0.070400pt;}
.ls18{letter-spacing:0.074368pt;}
.ls11{letter-spacing:0.075072pt;}
.ls42{letter-spacing:0.079488pt;}
.ls47{letter-spacing:0.083904pt;}
.ls3b{letter-spacing:0.085120pt;}
.ls5c{letter-spacing:0.087584pt;}
.ls4b{letter-spacing:0.092736pt;}
.ls25{letter-spacing:0.096000pt;}
.ls4f{letter-spacing:0.103040pt;}
.ls1{letter-spacing:0.115200pt;}
.ls26{letter-spacing:0.118016pt;}
.ls4c{letter-spacing:0.118496pt;}
.ls4{letter-spacing:0.122176pt;}
.ls50{letter-spacing:0.123648pt;}
.ls3a{letter-spacing:0.127680pt;}
.ls3f{letter-spacing:0.128064pt;}
.ls4a{letter-spacing:0.128800pt;}
.ls4d{letter-spacing:0.133952pt;}
.ls17{letter-spacing:0.138112pt;}
.ls28{letter-spacing:0.140000pt;}
.ls16{letter-spacing:0.143424pt;}
.ls13{letter-spacing:0.144000pt;}
.ls4e{letter-spacing:0.144256pt;}
.ls23{letter-spacing:0.148000pt;}
.ls49{letter-spacing:0.149408pt;}
.ls27{letter-spacing:0.152000pt;}
.ls14{letter-spacing:0.156000pt;}
.ls3{letter-spacing:0.158976pt;}
.ls48{letter-spacing:0.159712pt;}
.ls29{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.164000pt;}
.ls1b{letter-spacing:0.164672pt;}
.ls1a{letter-spacing:0.175296pt;}
.lsc{letter-spacing:0.176640pt;}
.ls1c{letter-spacing:0.185920pt;}
.ls1d{letter-spacing:0.196544pt;}
.ls51{letter-spacing:0.206080pt;}
.ls37{letter-spacing:0.211968pt;}
.ls19{letter-spacing:0.212480pt;}
.ls33{letter-spacing:0.284000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:26.560000pt;}
.ls38{letter-spacing:40.000000pt;}
.ls15{letter-spacing:51.724608pt;}
.lsf{letter-spacing:89.600000pt;}
.ls0{letter-spacing:130.560000pt;}
.ls12{letter-spacing:131.840000pt;}
.ls2a{letter-spacing:144.960000pt;}
.ws8{word-spacing:-52.160000pt;}
.ws9{word-spacing:-51.840000pt;}
.ws1{word-spacing:-18.057600pt;}
.ws0{word-spacing:-18.000000pt;}
.wse{word-spacing:-15.993600pt;}
.ws2{word-spacing:-14.788608pt;}
.ws4d{word-spacing:-14.317408pt;}
.ws49{word-spacing:-14.286496pt;}
.ws4b{word-spacing:-14.090720pt;}
.ws4{word-spacing:-12.325056pt;}
.ws48{word-spacing:-12.311808pt;}
.ws5{word-spacing:-12.294144pt;}
.wsb{word-spacing:-12.236736pt;}
.wsc{word-spacing:-12.219072pt;}
.ws3{word-spacing:-12.038016pt;}
.ws7{word-spacing:-11.272000pt;}
.wsd{word-spacing:-11.268000pt;}
.ws4c{word-spacing:-11.076000pt;}
.ws4e{word-spacing:-11.060000pt;}
.ws6{word-spacing:-11.048000pt;}
.ws4a{word-spacing:-10.936000pt;}
.ws61{word-spacing:-0.365792pt;}
.ws5e{word-spacing:-0.355488pt;}
.wsa{word-spacing:-0.324000pt;}
.ws64{word-spacing:-0.319424pt;}
.ws17{word-spacing:-0.287040pt;}
.ws2a{word-spacing:-0.249664pt;}
.ws2e{word-spacing:-0.233728pt;}
.ws1c{word-spacing:-0.232000pt;}
.ws2d{word-spacing:-0.223104pt;}
.ws2b{word-spacing:-0.212480pt;}
.ws2c{word-spacing:-0.201856pt;}
.ws10{word-spacing:-0.194400pt;}
.ws1e{word-spacing:-0.185472pt;}
.ws24{word-spacing:-0.180608pt;}
.ws46{word-spacing:-0.177600pt;}
.ws1a{word-spacing:-0.176640pt;}
.ws28{word-spacing:-0.175296pt;}
.ws13{word-spacing:-0.172224pt;}
.ws22{word-spacing:-0.167808pt;}
.ws15{word-spacing:-0.163392pt;}
.ws16{word-spacing:-0.158976pt;}
.ws23{word-spacing:-0.128064pt;}
.ws5f{word-spacing:-0.118496pt;}
.ws29{word-spacing:-0.111552pt;}
.ws3f{word-spacing:-0.076000pt;}
.ws56{word-spacing:-0.072128pt;}
.ws45{word-spacing:-0.072000pt;}
.ws35{word-spacing:-0.070400pt;}
.ws21{word-spacing:-0.068000pt;}
.ws42{word-spacing:-0.064000pt;}
.ws44{word-spacing:-0.062400pt;}
.ws57{word-spacing:-0.061824pt;}
.ws3d{word-spacing:-0.060000pt;}
.ws5c{word-spacing:-0.056672pt;}
.ws20{word-spacing:-0.056000pt;}
.ws43{word-spacing:-0.052000pt;}
.ws41{word-spacing:-0.048576pt;}
.ws5b{word-spacing:-0.046368pt;}
.ws58{word-spacing:-0.041216pt;}
.ws4f{word-spacing:-0.039744pt;}
.ws11{word-spacing:-0.037184pt;}
.ws60{word-spacing:-0.036064pt;}
.ws36{word-spacing:-0.032000pt;}
.ws5a{word-spacing:-0.030912pt;}
.ws33{word-spacing:-0.025600pt;}
.ws32{word-spacing:-0.019200pt;}
.ws26{word-spacing:-0.017024pt;}
.ws5d{word-spacing:-0.015456pt;}
.ws30{word-spacing:-0.012800pt;}
.ws2f{word-spacing:-0.006400pt;}
.ws59{word-spacing:-0.005152pt;}
.wsf{word-spacing:0.000000pt;}
.ws39{word-spacing:0.006400pt;}
.ws40{word-spacing:0.009600pt;}
.ws34{word-spacing:0.012800pt;}
.ws62{word-spacing:0.030912pt;}
.ws1d{word-spacing:0.040000pt;}
.ws63{word-spacing:0.051520pt;}
.ws51{word-spacing:0.057600pt;}
.ws54{word-spacing:0.064000pt;}
.ws3b{word-spacing:0.070400pt;}
.ws12{word-spacing:0.072000pt;}
.ws52{word-spacing:0.076800pt;}
.ws3c{word-spacing:0.083904pt;}
.ws38{word-spacing:0.089600pt;}
.ws3a{word-spacing:0.096000pt;}
.ws27{word-spacing:0.102144pt;}
.ws1f{word-spacing:0.105600pt;}
.ws50{word-spacing:0.128064pt;}
.ws55{word-spacing:0.140800pt;}
.ws31{word-spacing:0.147200pt;}
.ws37{word-spacing:0.153600pt;}
.ws14{word-spacing:0.154560pt;}
.ws53{word-spacing:0.179200pt;}
.ws19{word-spacing:0.185472pt;}
.ws47{word-spacing:0.204800pt;}
.ws1b{word-spacing:0.256128pt;}
.ws18{word-spacing:0.304704pt;}
.ws3e{word-spacing:0.317952pt;}
.ws25{word-spacing:0.345600pt;}
._8{margin-left:-2595.840000pt;}
._4{margin-left:-52.160000pt;}
._5{margin-left:-51.200000pt;}
._6{margin-left:-40.000000pt;}
._1{margin-left:-1.084000pt;}
._0{width:0.947691pt;}
._2{width:16.800896pt;}
._7{width:72.068224pt;}
._3{width:80.584000pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:44.160000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:51.520000pt;}
.fs7{font-size:51.840000pt;}
.fs6{font-size:52.160000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:72.000000pt;}
.fs8{font-size:85.120000pt;}
.y86{bottom:-31.892933pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.320400pt;}
.y21{bottom:2.400400pt;}
.yd4{bottom:2.800400pt;}
.y3b{bottom:3.440400pt;}
.y4a{bottom:3.600400pt;}
.y99{bottom:3.600533pt;}
.y69{bottom:36.666667pt;}
.y68{bottom:40.107067pt;}
.y38{bottom:43.227067pt;}
.yca{bottom:43.307067pt;}
.y67{bottom:57.867067pt;}
.y37{bottom:59.867664pt;}
.yc9{bottom:60.987067pt;}
.y36{bottom:72.187200pt;}
.yc7{bottom:75.146667pt;}
.y66{bottom:75.547067pt;}
.yc8{bottom:78.747067pt;}
.y35{bottom:85.707067pt;}
.y65{bottom:93.307067pt;}
.yc6{bottom:96.427067pt;}
.y34{bottom:102.266939pt;}
.y64{bottom:111.067067pt;}
.yc5{bottom:114.187067pt;}
.y33{bottom:126.986640pt;}
.y63{bottom:128.747067pt;}
.yc4{bottom:131.867067pt;}
.y32{bottom:139.147067pt;}
.y62{bottom:146.507067pt;}
.yc3{bottom:149.627067pt;}
.y31{bottom:150.427067pt;}
.y30{bottom:162.987067pt;}
.y61{bottom:164.187067pt;}
.yc2{bottom:167.387067pt;}
.y2f{bottom:179.787067pt;}
.y60{bottom:181.947067pt;}
.yc1{bottom:185.067067pt;}
.y2e{bottom:198.107067pt;}
.y5f{bottom:199.627067pt;}
.yc0{bottom:202.827067pt;}
.ybe{bottom:216.906667pt;}
.y5e{bottom:217.387067pt;}
.y2b{bottom:220.347067pt;}
.ybf{bottom:220.507067pt;}
.y2d{bottom:221.467067pt;}
.y5d{bottom:235.067067pt;}
.y2c{bottom:237.627067pt;}
.ybd{bottom:238.267067pt;}
.y2a{bottom:238.667067pt;}
.y5c{bottom:252.827067pt;}
.ybc{bottom:255.947067pt;}
.y5b{bottom:270.587067pt;}
.ybb{bottom:273.707067pt;}
.y29{bottom:276.267067pt;}
.y5a{bottom:288.267067pt;}
.y28{bottom:289.707067pt;}
.yba{bottom:291.387067pt;}
.y59{bottom:306.027067pt;}
.y27{bottom:307.467067pt;}
.yb9{bottom:309.147067pt;}
.y84{bottom:320.427067pt;}
.y58{bottom:323.707067pt;}
.yb8{bottom:326.907067pt;}
.y26{bottom:337.387067pt;}
.y57{bottom:341.467067pt;}
.yb7{bottom:344.587067pt;}
.y83{bottom:351.547067pt;}
.y25{bottom:354.027531pt;}
.y56{bottom:359.147067pt;}
.yb6{bottom:362.347067pt;}
.y24{bottom:366.347067pt;}
.y82{bottom:371.307067pt;}
.y55{bottom:376.907067pt;}
.y23{bottom:379.867067pt;}
.yb5{bottom:380.027067pt;}
.y20{bottom:394.106667pt;}
.yb3{bottom:394.186667pt;}
.y54{bottom:394.587067pt;}
.y22{bottom:396.507067pt;}
.yb4{bottom:397.787067pt;}
.yeb{bottom:400.427067pt;}
.y81{bottom:406.907200pt;}
.y52{bottom:408.746667pt;}
.y1f{bottom:408.827200pt;}
.y53{bottom:412.347067pt;}
.yb2{bottom:415.467067pt;}
.y1e{bottom:422.347067pt;}
.y51{bottom:430.107067pt;}
.yb1{bottom:433.227067pt;}
.y1d{bottom:438.907067pt;}
.y4f{bottom:444.186667pt;}
.yea{bottom:446.667067pt;}
.y50{bottom:447.787067pt;}
.yb0{bottom:450.907067pt;}
.y1c{bottom:452.427067pt;}
.ye9{bottom:459.707531pt;}
.y4e{bottom:465.547067pt;}
.y1a{bottom:466.666667pt;}
.yaf{bottom:468.667067pt;}
.y19{bottom:468.987067pt;}
.ye8{bottom:475.707067pt;}
.y18{bottom:481.387067pt;}
.y4d{bottom:483.227067pt;}
.yae{bottom:486.427067pt;}
.ye7{bottom:491.227067pt;}
.y17{bottom:493.706939pt;}
.y4c{bottom:500.987067pt;}
.yad{bottom:504.107067pt;}
.y16{bottom:506.107067pt;}
.y80{bottom:511.627067pt;}
.y49{bottom:515.066667pt;}
.y4b{bottom:518.667067pt;}
.y15{bottom:519.547067pt;}
.y8d{bottom:521.867067pt;}
.y7f{bottom:533.307067pt;}
.y14{bottom:536.187067pt;}
.ye6{bottom:539.227067pt;}
.yac{bottom:539.547067pt;}
.y13{bottom:548.587067pt;}
.ye5{bottom:552.188459pt;}
.y7e{bottom:553.707067pt;}
.yab{bottom:557.307067pt;}
.y48{bottom:557.309947pt;}
.y12{bottom:562.027067pt;}
.y7d{bottom:564.987067pt;}
.ye4{bottom:568.187995pt;}
.yaa{bottom:574.987067pt;}
.y7c{bottom:576.187067pt;}
.y47{bottom:577.309627pt;}
.y11{bottom:578.667531pt;}
.ye3{bottom:584.187531pt;}
.y7b{bottom:587.627067pt;}
.y10{bottom:590.987067pt;}
.ya9{bottom:592.747067pt;}
.y46{bottom:597.309307pt;}
.ye1{bottom:597.386667pt;}
.ye2{bottom:600.187067pt;}
.y7a{bottom:604.187067pt;}
.yf{bottom:604.507067pt;}
.ya7{bottom:606.826667pt;}
.ya8{bottom:610.427067pt;}
.ye0{bottom:615.707067pt;}
.y45{bottom:617.308987pt;}
.y79{bottom:622.507067pt;}
.ya6{bottom:628.187067pt;}
.ydf{bottom:630.667067pt;}
.y44{bottom:637.308667pt;}
.ya4{bottom:642.346667pt;}
.y78{bottom:642.907067pt;}
.ya5{bottom:645.947067pt;}
.y77{bottom:654.187067pt;}
.y43{bottom:657.308347pt;}
.yde{bottom:662.667067pt;}
.ya3{bottom:663.627200pt;}
.y76{bottom:665.626939pt;}
.ydd{bottom:675.708459pt;}
.y42{bottom:677.308027pt;}
.y75{bottom:678.027067pt;}
.ya2{bottom:681.387200pt;}
.ydc{bottom:691.707995pt;}
.y74{bottom:694.507067pt;}
.y41{bottom:697.307707pt;}
.ya1{bottom:699.067200pt;}
.ydb{bottom:707.707531pt;}
.y73{bottom:712.907067pt;}
.ya0{bottom:716.827200pt;}
.y40{bottom:717.307387pt;}
.yda{bottom:723.707067pt;}
.y72{bottom:733.227067pt;}
.y9f{bottom:734.507200pt;}
.y3f{bottom:737.307067pt;}
.yd9{bottom:739.227067pt;}
.y71{bottom:744.507067pt;}
.y9e{bottom:752.267200pt;}
.y70{bottom:755.787067pt;}
.y6f{bottom:766.987067pt;}
.y9d{bottom:769.947200pt;}
.y3e{bottom:775.467083pt;}
.y6e{bottom:778.427067pt;}
.yd8{bottom:779.227067pt;}
.y9c{bottom:787.707200pt;}
.yd7{bottom:792.187995pt;}
.y6d{bottom:794.587067pt;}
.ye{bottom:798.187067pt;}
.y3d{bottom:799.307067pt;}
.y9b{bottom:805.467200pt;}
.y6c{bottom:805.867067pt;}
.yd6{bottom:808.187531pt;}
.yd{bottom:814.827067pt;}
.y6b{bottom:817.067067pt;}
.y98{bottom:819.546667pt;}
.yd3{bottom:821.386667pt;}
.y9a{bottom:823.147200pt;}
.yd5{bottom:824.187067pt;}
.y3c{bottom:825.947067pt;}
.yc{bottom:828.267067pt;}
.y6a{bottom:828.507067pt;}
.yd2{bottom:839.707067pt;}
.y3a{bottom:840.266667pt;}
.y97{bottom:840.907067pt;}
.y39{bottom:843.707067pt;}
.yb{bottom:845.067067pt;}
.yd1{bottom:854.667067pt;}
.y96{bottom:858.587067pt;}
.ya{bottom:863.387067pt;}
.y95{bottom:876.347067pt;}
.y9{bottom:880.506587pt;}
.y1{bottom:893.067067pt;}
.y94{bottom:894.027067pt;}
.yd0{bottom:895.227067pt;}
.y8{bottom:895.386827pt;}
.ycf{bottom:908.187995pt;}
.y7{bottom:910.267067pt;}
.y93{bottom:911.787067pt;}
.yce{bottom:924.187531pt;}
.y92{bottom:929.467067pt;}
.y2{bottom:930.907067pt;}
.y8c{bottom:931.227067pt;}
.ycd{bottom:940.187067pt;}
.y6{bottom:946.587067pt;}
.y91{bottom:947.227067pt;}
.y8b{bottom:947.866427pt;}
.ycc{bottom:955.707067pt;}
.y8a{bottom:960.187067pt;}
.y3{bottom:964.027067pt;}
.y90{bottom:964.987067pt;}
.y5{bottom:965.066811pt;}
.ycb{bottom:970.667067pt;}
.y89{bottom:973.707067pt;}
.y8f{bottom:982.667067pt;}
.y88{bottom:990.266939pt;}
.y4{bottom:998.427067pt;}
.y8e{bottom:1000.427067pt;}
.y87{bottom:1002.667067pt;}
.y85{bottom:1072.427067pt;}
.h14{height:-17.572880pt;}
.h10{height:-5.600000pt;}
.h9{height:12.560000pt;}
.ha{height:12.640000pt;}
.h18{height:14.320000pt;}
.h13{height:17.840000pt;}
.h12{height:18.000000pt;}
.hd{height:41.718750pt;}
.hc{height:42.680000pt;}
.h3{height:44.505000pt;}
.h8{height:46.057500pt;}
.hf{height:46.058012pt;}
.he{height:46.058033pt;}
.h16{height:46.060060pt;}
.hb{height:48.920000pt;}
.h7{height:50.062500pt;}
.h17{height:53.733750pt;}
.h6{height:55.402500pt;}
.h5{height:56.679040pt;}
.h1{height:62.812500pt;}
.h2{height:66.750000pt;}
.h4{height:72.562500pt;}
.h11{height:88.777500pt;}
.h0{height:834.666667pt;}
.h15{height:1062.666667pt;}
.w1{width:-60.960000pt;}
.w2{width:-35.120000pt;}
.we{width:-12.666667pt;}
.w3{width:41.760000pt;}
.wc{width:170.240000pt;}
.w8{width:201.040000pt;}
.w7{width:288.320000pt;}
.w4{width:296.000000pt;}
.wd{width:307.520000pt;}
.wb{width:310.160000pt;}
.w5{width:323.520000pt;}
.wa{width:327.040000pt;}
.w9{width:333.280000pt;}
.w6{width:335.040000pt;}
.w0{width:349.333333pt;}
.xb{left:-128.000000pt;}
.x10{left:-124.960000pt;}
.xa{left:-124.000000pt;}
.x13{left:-111.440000pt;}
.x11{left:-106.320000pt;}
.xc{left:-94.800000pt;}
.x14{left:-91.120000pt;}
.xd{left:-88.080000pt;}
.xe{left:-64.640000pt;}
.xf{left:-60.960000pt;}
.x1{left:-35.520000pt;}
.x23{left:-32.960000pt;}
.x12{left:-31.760000pt;}
.x24{left:-24.880000pt;}
.x2{left:-2.000000pt;}
.x0{left:0.000000pt;}
.x15{left:10.000000pt;}
.x1b{left:16.000000pt;}
.x1a{left:18.000000pt;}
.x19{left:21.520000pt;}
.x17{left:25.760000pt;}
.x1c{left:30.400000pt;}
.x25{left:94.640000pt;}
.x26{left:102.640000pt;}
.x1d{left:105.280000pt;}
.x1e{left:123.280000pt;}
.x3{left:156.160000pt;}
.x16{left:255.680000pt;}
.x18{left:289.440000pt;}
.x20{left:357.040000pt;}
.x4{left:358.960000pt;}
.x27{left:362.000000pt;}
.x1f{left:363.040000pt;}
.x7{left:364.160000pt;}
.x28{left:370.560000pt;}
.x8{left:384.400048pt;}
.x6{left:400.880000pt;}
.x9{left:408.079616pt;}
.x5{left:436.959632pt;}
.x22{left:442.320000pt;}
.x21{left:444.560000pt;}
}




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