
    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_645977551a65d055c77dd40b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b3d54cf92a09058173cd4517.woff')format("woff");}.ff2{font-family:ff2;line-height:1.079590;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_3e82df08c6b62fc86afe95f3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_dd0b55f6598a80380b68a5cc.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e19906ae638dc8b0e437b904.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e1caa134c1ea8b214b29e93b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_5e83dd9d88902e5ab7899fc3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_94fe0a7bb6aab9cfe3aac5c8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_8418035b2bbc0f8c96dd2369.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_a4f5eefba2fdb334ecfe2774.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_35e805c788ef4ffa7b153ae0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_23e10057ae30fb51f61a8208.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8e4378ff7867f0d8d86a4126.woff')format("woff");}.ffd{font-family:ffd;line-height:0.718750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a9f01705dc46d7cc9e4dd866.woff')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.480000px;}
.v1{vertical-align:27.360000px;}
.ls15{letter-spacing:-0.761760px;}
.ls17{letter-spacing:-0.755136px;}
.lsb{letter-spacing:-0.722016px;}
.ls18{letter-spacing:-0.682272px;}
.ls16{letter-spacing:-0.675648px;}
.ls1d{letter-spacing:-0.297792px;}
.lsd{letter-spacing:-0.260064px;}
.ls20{letter-spacing:-0.247104px;}
.ls1f{letter-spacing:-0.240768px;}
.lse{letter-spacing:-0.238464px;}
.ls21{letter-spacing:-0.228096px;}
.ls6{letter-spacing:-0.198720px;}
.ls1e{letter-spacing:-0.190080px;}
.ls22{letter-spacing:-0.177408px;}
.ls11{letter-spacing:-0.165600px;}
.ls4{letter-spacing:-0.158976px;}
.ls7{letter-spacing:-0.125856px;}
.ls9{letter-spacing:-0.119232px;}
.ls14{letter-spacing:-0.099360px;}
.ls8{letter-spacing:-0.079488px;}
.lsc{letter-spacing:-0.052992px;}
.lsa{letter-spacing:-0.039744px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.058464px;}
.ls19{letter-spacing:0.121104px;}
.ls12{letter-spacing:0.137808px;}
.ls1{letter-spacing:0.139680px;}
.ls2{letter-spacing:0.139824px;}
.ls13{letter-spacing:0.139968px;}
.ls0{letter-spacing:0.141120px;}
.ls3{letter-spacing:23.296608px;}
.ls10{letter-spacing:105.836256px;}
.lsf{letter-spacing:142.542288px;}
.ls1b{letter-spacing:149.585328px;}
.ls1c{letter-spacing:845.585280px;}
.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;}
}
.ws1{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.374976px;}
.ws9{word-spacing:-18.361728px;}
.ws7{word-spacing:-18.335232px;}
.wsb{word-spacing:-18.315360px;}
.ws6{word-spacing:-18.295488px;}
.ws3{word-spacing:-18.288864px;}
.ws0{word-spacing:-18.255744px;}
.ws12{word-spacing:-18.249120px;}
.ws2{word-spacing:-18.216000px;}
.wsf{word-spacing:-17.732448px;}
.ws8{word-spacing:-17.692704px;}
.wse{word-spacing:-17.659584px;}
.wsc{word-spacing:-17.652960px;}
.ws17{word-spacing:-17.614080px;}
.ws19{word-spacing:-17.436672px;}
.ws15{word-spacing:-17.424000px;}
.ws18{word-spacing:-17.385984px;}
.ws14{word-spacing:-17.373312px;}
.ws16{word-spacing:-17.366976px;}
.ws13{word-spacing:-17.316288px;}
.wsa{word-spacing:-0.179568px;}
.ws10{word-spacing:-0.162864px;}
.ws11{word-spacing:-0.100224px;}
.wsd{word-spacing:-0.041760px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-4.438080px;}
._8{margin-left:-2.782080px;}
._1{margin-left:-1.059840px;}
._0{width:1.054944px;}
._2{width:6.226560px;}
._7{width:17.182656px;}
._4{width:23.805504px;}
._6{width:179.170560px;}
._5{width:845.585280px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y10f{bottom:3.420000px;}
.y107{bottom:3.480000px;}
.yfd{bottom:3.540000px;}
.y123{bottom:3.720000px;}
.y11b{bottom:3.780000px;}
.y72{bottom:3.840000px;}
.y10b{bottom:3.900000px;}
.y104{bottom:3.960000px;}
.y5d{bottom:4.020000px;}
.y100{bottom:4.080000px;}
.y61{bottom:4.140000px;}
.y121{bottom:4.200000px;}
.y119{bottom:4.260000px;}
.y76{bottom:4.320000px;}
.y109{bottom:4.380000px;}
.y7a{bottom:4.440000px;}
.yef{bottom:4.500000px;}
.yfe{bottom:4.560000px;}
.y65{bottom:4.620000px;}
.y11d{bottom:4.680000px;}
.y68{bottom:4.740000px;}
.y111{bottom:4.800000px;}
.y114{bottom:4.860000px;}
.ye2{bottom:4.980000px;}
.y59{bottom:5.040000px;}
.y125{bottom:5.100000px;}
.yec{bottom:5.160000px;}
.y6e{bottom:5.220000px;}
.y7d{bottom:5.340000px;}
.y52{bottom:6.060000px;}
.yd9{bottom:6.360000px;}
.y105{bottom:6.480000px;}
.ydd{bottom:6.540000px;}
.y53{bottom:7.080000px;}
.yd7{bottom:7.200000px;}
.ydb{bottom:7.380000px;}
.y5b{bottom:13.380000px;}
.y70{bottom:13.560000px;}
.y74{bottom:13.680000px;}
.y5f{bottom:13.860000px;}
.y63{bottom:13.980000px;}
.y78{bottom:14.160000px;}
.y66{bottom:14.460000px;}
.y6a{bottom:14.580000px;}
.ye3{bottom:14.700000px;}
.y55{bottom:14.760000px;}
.y7b{bottom:15.060000px;}
.ye9{bottom:17.400000px;}
.y50{bottom:19.320000px;}
.yfc{bottom:19.680000px;}
.y71{bottom:22.920000px;}
.y5c{bottom:23.100000px;}
.y60{bottom:23.220000px;}
.y75{bottom:23.400000px;}
.y79{bottom:23.520000px;}
.y64{bottom:23.700000px;}
.y67{bottom:23.820000px;}
.ye1{bottom:24.060000px;}
.y58{bottom:24.120000px;}
.yeb{bottom:24.240000px;}
.y6d{bottom:24.300000px;}
.y7c{bottom:24.420000px;}
.ye8{bottom:36.480000px;}
.y10d{bottom:55.320000px;}
.y102{bottom:55.860000px;}
.y11f{bottom:56.100000px;}
.y116{bottom:56.640000px;}
.ya8{bottom:57.960000px;}
.ya7{bottom:78.840000px;}
.y57{bottom:91.860000px;}
.y6c{bottom:92.460000px;}
.y2e{bottom:115.920000px;}
.y45{bottom:135.000000px;}
.y9b{bottom:145.800000px;}
.y2d{bottom:153.720000px;}
.y44{bottom:154.080000px;}
.yce{bottom:172.440000px;}
.y43{bottom:172.800000px;}
.y83{bottom:175.320000px;}
.y1a{bottom:176.760000px;}
.y9a{bottom:183.600000px;}
.ycd{bottom:191.160000px;}
.y2c{bottom:191.880000px;}
.yc9{bottom:199.800000px;}
.y42{bottom:210.960000px;}
.y19{bottom:214.560000px;}
.yc8{bottom:218.880000px;}
.y99{bottom:221.760000px;}
.yd2{bottom:226.800000px;}
.y2b{bottom:229.680000px;}
.yc7{bottom:237.960000px;}
.y41{bottom:248.760000px;}
.ycc{bottom:251.280000px;}
.yc6{bottom:256.680000px;}
.y98{bottom:259.560000px;}
.y91{bottom:261.000000px;}
.y18{bottom:261.720000px;}
.yd1{bottom:264.600000px;}
.y2a{bottom:267.480000px;}
.y40{bottom:267.840000px;}
.yc5{bottom:275.760000px;}
.y3f{bottom:286.560000px;}
.ycb{bottom:288.360000px;}
.yc4{bottom:294.840000px;}
.y97{bottom:297.720000px;}
.y90{bottom:299.160000px;}
.y17{bottom:299.520000px;}
.yd0{bottom:302.760000px;}
.y29{bottom:305.640000px;}
.yc3{bottom:313.560000px;}
.ycf{bottom:322.560000px;}
.y3e{bottom:324.720000px;}
.yca{bottom:325.440000px;}
.yc2{bottom:332.640000px;}
.y96{bottom:335.520000px;}
.y8f{bottom:336.960000px;}
.y12f{bottom:338.040000px;}
.y28{bottom:343.440000px;}
.y3d{bottom:343.800000px;}
.y16{bottom:346.320000px;}
.yc1{bottom:351.720000px;}
.y12e{bottom:356.760000px;}
.y3c{bottom:362.520000px;}
.yc0{bottom:370.800000px;}
.y95{bottom:373.320000px;}
.y8e{bottom:374.760000px;}
.y12d{bottom:375.840000px;}
.y27{bottom:381.600000px;}
.ybf{bottom:389.520000px;}
.y15{bottom:393.480000px;}
.y12c{bottom:394.920000px;}
.y3b{bottom:400.680000px;}
.ybe{bottom:408.600000px;}
.y94{bottom:411.480000px;}
.y8d{bottom:412.920000px;}
.y26{bottom:419.400000px;}
.y12b{bottom:420.480000px;}
.ybd{bottom:427.680000px;}
.y14{bottom:431.280000px;}
.y3a{bottom:438.480000px;}
.y12a{bottom:439.560000px;}
.ybc{bottom:446.400000px;}
.y93{bottom:449.280000px;}
.y8c{bottom:450.720000px;}
.ya4{bottom:451.440000px;}
.y129{bottom:451.800000px;}
.y25{bottom:457.200000px;}
.y39{bottom:457.560000px;}
.ybb{bottom:465.480000px;}
.y128{bottom:470.880000px;}
.y38{bottom:476.280000px;}
.y13{bottom:478.440000px;}
.y92{bottom:483.840000px;}
.yba{bottom:484.560000px;}
.y8b{bottom:488.880000px;}
.ya3{bottom:489.240000px;}
.y127{bottom:489.600000px;}
.y24{bottom:495.360000px;}
.y37{bottom:514.440000px;}
.y126{bottom:515.520000px;}
.y11e{bottom:523.500000px;}
.y12{bottom:525.240000px;}
.y8a{bottom:526.680000px;}
.ya2{bottom:527.400000px;}
.y82{bottom:531.360000px;}
.y23{bottom:533.160000px;}
.y36{bottom:533.520000px;}
.y11{bottom:544.320000px;}
.y124{bottom:547.500000px;}
.yb9{bottom:550.440000px;}
.y35{bottom:552.240000px;}
.y81{bottom:557.280000px;}
.y10{bottom:563.400000px;}
.y89{bottom:564.480000px;}
.ya1{bottom:565.200000px;}
.y22{bottom:571.320000px;}
.y122{bottom:573.000000px;}
.y80{bottom:576.360000px;}
.yf{bottom:582.120000px;}
.y7f{bottom:588.240000px;}
.y34{bottom:590.400000px;}
.y120{bottom:597.000000px;}
.yb8{bottom:597.240000px;}
.ye{bottom:601.200000px;}
.y88{bottom:602.640000px;}
.ya0{bottom:603.360000px;}
.y21{bottom:609.120000px;}
.y7e{bottom:614.160000px;}
.yd{bottom:620.280000px;}
.y11c{bottom:621.000000px;}
.y6b{bottom:622.500000px;}
.y33{bottom:628.200000px;}
.yc{bottom:639.360000px;}
.y87{bottom:640.440000px;}
.y9f{bottom:641.160000px;}
.yb7{bottom:641.880000px;}
.y115{bottom:645.000000px;}
.y20{bottom:647.280000px;}
.yb{bottom:658.080000px;}
.y77{bottom:663.000000px;}
.y32{bottom:666.360000px;}
.yfb{bottom:669.600000px;}
.y11a{bottom:670.500000px;}
.yb6{bottom:673.200000px;}
.y86{bottom:678.600000px;}
.y9e{bottom:678.960000px;}
.y1f{bottom:685.080000px;}
.yfa{bottom:688.680000px;}
.y118{bottom:694.500000px;}
.ye6{bottom:695.880000px;}
.y73{bottom:702.000000px;}
.y31{bottom:704.160000px;}
.ya{bottom:704.880000px;}
.yf9{bottom:707.400000px;}
.ye5{bottom:714.960000px;}
.y85{bottom:716.400000px;}
.y9d{bottom:717.120000px;}
.yb5{bottom:717.840000px;}
.y117{bottom:718.500000px;}
.y1e{bottom:722.880000px;}
.y30{bottom:723.240000px;}
.yf8{bottom:733.320000px;}
.ye4{bottom:740.520000px;}
.y6f{bottom:741.000000px;}
.y2f{bottom:741.960000px;}
.y113{bottom:742.500000px;}
.yf7{bottom:745.560000px;}
.ye0{bottom:748.500000px;}
.yb4{bottom:749.160000px;}
.y84{bottom:750.960000px;}
.y9c{bottom:751.320000px;}
.y9{bottom:752.040000px;}
.y1d{bottom:761.040000px;}
.yf6{bottom:764.640000px;}
.y10c{bottom:768.000000px;}
.y69{bottom:778.500000px;}
.y4e{bottom:780.120000px;}
.yb3{bottom:786.960000px;}
.ydf{bottom:787.500000px;}
.yf5{bottom:790.200000px;}
.y112{bottom:792.000000px;}
.yf4{bottom:798.000000px;}
.y8{bottom:798.840000px;}
.yde{bottom:813.000000px;}
.y110{bottom:816.000000px;}
.y56{bottom:817.500000px;}
.y4d{bottom:817.920000px;}
.yf3{bottom:823.500000px;}
.yb2{bottom:824.760000px;}
.y1c{bottom:837.000000px;}
.y10e{bottom:841.500000px;}
.y7{bottom:843.840000px;}
.yf2{bottom:849.000000px;}
.y4c{bottom:856.080000px;}
.y62{bottom:856.500000px;}
.ydc{bottom:862.500000px;}
.yb1{bottom:862.920000px;}
.y10a{bottom:865.500000px;}
.yf1{bottom:873.000000px;}
.y1b{bottom:874.800000px;}
.y6{bottom:881.640000px;}
.yda{bottom:886.500000px;}
.y101{bottom:889.500000px;}
.y4b{bottom:893.880000px;}
.y5e{bottom:895.500000px;}
.yf0{bottom:897.000000px;}
.yb0{bottom:900.720000px;}
.yd8{bottom:912.000000px;}
.y5{bottom:912.600000px;}
.y4a{bottom:912.960000px;}
.y108{bottom:913.500000px;}
.yaf{bottom:919.800000px;}
.yee{bottom:922.500000px;}
.y49{bottom:931.680000px;}
.y5a{bottom:934.500000px;}
.yd6{bottom:936.000000px;}
.yae{bottom:938.880000px;}
.y106{bottom:939.000000px;}
.yed{bottom:948.000000px;}
.y4{bottom:950.760000px;}
.yad{bottom:957.960000px;}
.yd5{bottom:961.500000px;}
.y103{bottom:963.000000px;}
.y48{bottom:969.840000px;}
.y54{bottom:972.000000px;}
.yac{bottom:976.680000px;}
.yff{bottom:987.000000px;}
.y3{bottom:988.560000px;}
.yab{bottom:995.760000px;}
.ye7{bottom:996.000000px;}
.yd4{bottom:1004.040000px;}
.y47{bottom:1007.640000px;}
.y4f{bottom:1011.000000px;}
.yaa{bottom:1014.840000px;}
.y2{bottom:1026.720000px;}
.yd3{bottom:1027.440000px;}
.ya9{bottom:1029.960000px;}
.yea{bottom:1035.000000px;}
.y51{bottom:1036.500000px;}
.y46{bottom:1045.800000px;}
.y1{bottom:1064.520000px;}
.ya6{bottom:1100.160000px;}
.ya5{bottom:1119.960000px;}
.h6{height:24.000000px;}
.h7{height:25.500000px;}
.h11{height:27.000000px;}
.hf{height:30.015000px;}
.h3{height:30.211875px;}
.ha{height:39.000000px;}
.hc{height:40.310156px;}
.h8{height:40.500000px;}
.h13{height:46.127813px;}
.h1{height:48.224531px;}
.he{height:48.289219px;}
.hd{height:48.656250px;}
.h5{height:49.500000px;}
.h12{height:54.495000px;}
.h4{height:57.375000px;}
.h2{height:57.571875px;}
.h10{height:64.500000px;}
.h15{height:121.500000px;}
.h14{height:123.000000px;}
.h9{height:195.000000px;}
.hb{height:196.500000px;}
.h0{height:1188.000000px;}
.w10{width:67.500000px;}
.w11{width:78.000000px;}
.we{width:82.500000px;}
.w2{width:85.500000px;}
.w8{width:102.000000px;}
.w4{width:112.500000px;}
.w7{width:121.500000px;}
.w5{width:123.000000px;}
.wb{width:124.500000px;}
.wd{width:126.000000px;}
.wc{width:130.500000px;}
.w6{width:132.000000px;}
.w1{width:156.000000px;}
.w3{width:234.000000px;}
.w9{width:255.000000px;}
.wa{width:256.500000px;}
.wf{width:412.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:8.640036px;}
.x13{left:10.328592px;}
.x3c{left:11.892240px;}
.x29{left:12.988800px;}
.x3d{left:14.253120px;}
.x9{left:17.499756px;}
.x3e{left:18.633240px;}
.x10{left:21.001320px;}
.x1e{left:24.068484px;}
.x24{left:25.256400px;}
.x12{left:26.454120px;}
.xb{left:28.968480px;}
.xf{left:31.023720px;}
.x22{left:32.156880px;}
.x26{left:35.126208px;}
.x11{left:36.476520px;}
.xc{left:38.379600px;}
.x20{left:42.026760px;}
.x32{left:43.281360px;}
.x33{left:47.861568px;}
.x25{left:51.110604px;}
.x7{left:52.587504px;}
.x23{left:53.865972px;}
.x30{left:56.636724px;}
.x2c{left:65.813232px;}
.x31{left:67.478400px;}
.x34{left:71.708040px;}
.x2f{left:74.989776px;}
.x2e{left:76.654800px;}
.x2d{left:80.884800px;}
.x5{left:108.000000px;}
.x1{left:116.568612px;}
.x37{left:122.190240px;}
.x17{left:135.000000px;}
.x1a{left:149.109372px;}
.x6{left:162.000000px;}
.x1c{left:189.000000px;}
.x8{left:262.500000px;}
.x1f{left:265.500000px;}
.x27{left:267.000000px;}
.x19{left:276.480072px;}
.x35{left:289.500000px;}
.x1b{left:305.436384px;}
.x4{left:309.635388px;}
.x2{left:337.977180px;}
.xa{left:346.500000px;}
.x36{left:370.500000px;}
.x21{left:385.500000px;}
.x2a{left:391.500000px;}
.x38{left:438.000000px;}
.xd{left:457.500000px;}
.x3{left:459.000000px;}
.x39{left:504.000000px;}
.x28{left:522.000000px;}
.x3a{left:571.500000px;}
.x15{left:639.000000px;}
.x2b{left:648.000000px;}
.x3b{left:715.500000px;}
.x1d{left:765.000000px;}
.x18{left:774.000000px;}
.x16{left:783.000000px;}
.x14{left:810.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.760000pt;}
.v1{vertical-align:24.320000pt;}
.ls15{letter-spacing:-0.677120pt;}
.ls17{letter-spacing:-0.671232pt;}
.lsb{letter-spacing:-0.641792pt;}
.ls18{letter-spacing:-0.606464pt;}
.ls16{letter-spacing:-0.600576pt;}
.ls1d{letter-spacing:-0.264704pt;}
.lsd{letter-spacing:-0.231168pt;}
.ls20{letter-spacing:-0.219648pt;}
.ls1f{letter-spacing:-0.214016pt;}
.lse{letter-spacing:-0.211968pt;}
.ls21{letter-spacing:-0.202752pt;}
.ls6{letter-spacing:-0.176640pt;}
.ls1e{letter-spacing:-0.168960pt;}
.ls22{letter-spacing:-0.157696pt;}
.ls11{letter-spacing:-0.147200pt;}
.ls4{letter-spacing:-0.141312pt;}
.ls7{letter-spacing:-0.111872pt;}
.ls9{letter-spacing:-0.105984pt;}
.ls14{letter-spacing:-0.088320pt;}
.ls8{letter-spacing:-0.070656pt;}
.lsc{letter-spacing:-0.047104pt;}
.lsa{letter-spacing:-0.035328pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.051968pt;}
.ls19{letter-spacing:0.107648pt;}
.ls12{letter-spacing:0.122496pt;}
.ls1{letter-spacing:0.124160pt;}
.ls2{letter-spacing:0.124288pt;}
.ls13{letter-spacing:0.124416pt;}
.ls0{letter-spacing:0.125440pt;}
.ls3{letter-spacing:20.708096pt;}
.ls10{letter-spacing:94.076672pt;}
.lsf{letter-spacing:126.704256pt;}
.ls1b{letter-spacing:132.964736pt;}
.ls1c{letter-spacing:751.631360pt;}
.ws1{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.333312pt;}
.ws9{word-spacing:-16.321536pt;}
.ws7{word-spacing:-16.297984pt;}
.wsb{word-spacing:-16.280320pt;}
.ws6{word-spacing:-16.262656pt;}
.ws3{word-spacing:-16.256768pt;}
.ws0{word-spacing:-16.227328pt;}
.ws12{word-spacing:-16.221440pt;}
.ws2{word-spacing:-16.192000pt;}
.wsf{word-spacing:-15.762176pt;}
.ws8{word-spacing:-15.726848pt;}
.wse{word-spacing:-15.697408pt;}
.wsc{word-spacing:-15.691520pt;}
.ws17{word-spacing:-15.656960pt;}
.ws19{word-spacing:-15.499264pt;}
.ws15{word-spacing:-15.488000pt;}
.ws18{word-spacing:-15.454208pt;}
.ws14{word-spacing:-15.442944pt;}
.ws16{word-spacing:-15.437312pt;}
.ws13{word-spacing:-15.392256pt;}
.wsa{word-spacing:-0.159616pt;}
.ws10{word-spacing:-0.144768pt;}
.ws11{word-spacing:-0.089088pt;}
.wsd{word-spacing:-0.037120pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-3.944960pt;}
._8{margin-left:-2.472960pt;}
._1{margin-left:-0.942080pt;}
._0{width:0.937728pt;}
._2{width:5.534720pt;}
._7{width:15.273472pt;}
._4{width:21.160448pt;}
._6{width:159.262720pt;}
._5{width:751.631360pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:3.040000pt;}
.y107{bottom:3.093333pt;}
.yfd{bottom:3.146667pt;}
.y123{bottom:3.306667pt;}
.y11b{bottom:3.360000pt;}
.y72{bottom:3.413333pt;}
.y10b{bottom:3.466667pt;}
.y104{bottom:3.520000pt;}
.y5d{bottom:3.573333pt;}
.y100{bottom:3.626667pt;}
.y61{bottom:3.680000pt;}
.y121{bottom:3.733333pt;}
.y119{bottom:3.786667pt;}
.y76{bottom:3.840000pt;}
.y109{bottom:3.893333pt;}
.y7a{bottom:3.946667pt;}
.yef{bottom:4.000000pt;}
.yfe{bottom:4.053333pt;}
.y65{bottom:4.106667pt;}
.y11d{bottom:4.160000pt;}
.y68{bottom:4.213333pt;}
.y111{bottom:4.266667pt;}
.y114{bottom:4.320000pt;}
.ye2{bottom:4.426667pt;}
.y59{bottom:4.480000pt;}
.y125{bottom:4.533333pt;}
.yec{bottom:4.586667pt;}
.y6e{bottom:4.640000pt;}
.y7d{bottom:4.746667pt;}
.y52{bottom:5.386667pt;}
.yd9{bottom:5.653333pt;}
.y105{bottom:5.760000pt;}
.ydd{bottom:5.813333pt;}
.y53{bottom:6.293333pt;}
.yd7{bottom:6.400000pt;}
.ydb{bottom:6.560000pt;}
.y5b{bottom:11.893333pt;}
.y70{bottom:12.053333pt;}
.y74{bottom:12.160000pt;}
.y5f{bottom:12.320000pt;}
.y63{bottom:12.426667pt;}
.y78{bottom:12.586667pt;}
.y66{bottom:12.853333pt;}
.y6a{bottom:12.960000pt;}
.ye3{bottom:13.066667pt;}
.y55{bottom:13.120000pt;}
.y7b{bottom:13.386667pt;}
.ye9{bottom:15.466667pt;}
.y50{bottom:17.173333pt;}
.yfc{bottom:17.493333pt;}
.y71{bottom:20.373333pt;}
.y5c{bottom:20.533333pt;}
.y60{bottom:20.640000pt;}
.y75{bottom:20.800000pt;}
.y79{bottom:20.906667pt;}
.y64{bottom:21.066667pt;}
.y67{bottom:21.173333pt;}
.ye1{bottom:21.386667pt;}
.y58{bottom:21.440000pt;}
.yeb{bottom:21.546667pt;}
.y6d{bottom:21.600000pt;}
.y7c{bottom:21.706667pt;}
.ye8{bottom:32.426667pt;}
.y10d{bottom:49.173333pt;}
.y102{bottom:49.653333pt;}
.y11f{bottom:49.866667pt;}
.y116{bottom:50.346667pt;}
.ya8{bottom:51.520000pt;}
.ya7{bottom:70.080000pt;}
.y57{bottom:81.653333pt;}
.y6c{bottom:82.186667pt;}
.y2e{bottom:103.040000pt;}
.y45{bottom:120.000000pt;}
.y9b{bottom:129.600000pt;}
.y2d{bottom:136.640000pt;}
.y44{bottom:136.960000pt;}
.yce{bottom:153.280000pt;}
.y43{bottom:153.600000pt;}
.y83{bottom:155.840000pt;}
.y1a{bottom:157.120000pt;}
.y9a{bottom:163.200000pt;}
.ycd{bottom:169.920000pt;}
.y2c{bottom:170.560000pt;}
.yc9{bottom:177.600000pt;}
.y42{bottom:187.520000pt;}
.y19{bottom:190.720000pt;}
.yc8{bottom:194.560000pt;}
.y99{bottom:197.120000pt;}
.yd2{bottom:201.600000pt;}
.y2b{bottom:204.160000pt;}
.yc7{bottom:211.520000pt;}
.y41{bottom:221.120000pt;}
.ycc{bottom:223.360000pt;}
.yc6{bottom:228.160000pt;}
.y98{bottom:230.720000pt;}
.y91{bottom:232.000000pt;}
.y18{bottom:232.640000pt;}
.yd1{bottom:235.200000pt;}
.y2a{bottom:237.760000pt;}
.y40{bottom:238.080000pt;}
.yc5{bottom:245.120000pt;}
.y3f{bottom:254.720000pt;}
.ycb{bottom:256.320000pt;}
.yc4{bottom:262.080000pt;}
.y97{bottom:264.640000pt;}
.y90{bottom:265.920000pt;}
.y17{bottom:266.240000pt;}
.yd0{bottom:269.120000pt;}
.y29{bottom:271.680000pt;}
.yc3{bottom:278.720000pt;}
.ycf{bottom:286.720000pt;}
.y3e{bottom:288.640000pt;}
.yca{bottom:289.280000pt;}
.yc2{bottom:295.680000pt;}
.y96{bottom:298.240000pt;}
.y8f{bottom:299.520000pt;}
.y12f{bottom:300.480000pt;}
.y28{bottom:305.280000pt;}
.y3d{bottom:305.600000pt;}
.y16{bottom:307.840000pt;}
.yc1{bottom:312.640000pt;}
.y12e{bottom:317.120000pt;}
.y3c{bottom:322.240000pt;}
.yc0{bottom:329.600000pt;}
.y95{bottom:331.840000pt;}
.y8e{bottom:333.120000pt;}
.y12d{bottom:334.080000pt;}
.y27{bottom:339.200000pt;}
.ybf{bottom:346.240000pt;}
.y15{bottom:349.760000pt;}
.y12c{bottom:351.040000pt;}
.y3b{bottom:356.160000pt;}
.ybe{bottom:363.200000pt;}
.y94{bottom:365.760000pt;}
.y8d{bottom:367.040000pt;}
.y26{bottom:372.800000pt;}
.y12b{bottom:373.760000pt;}
.ybd{bottom:380.160000pt;}
.y14{bottom:383.360000pt;}
.y3a{bottom:389.760000pt;}
.y12a{bottom:390.720000pt;}
.ybc{bottom:396.800000pt;}
.y93{bottom:399.360000pt;}
.y8c{bottom:400.640000pt;}
.ya4{bottom:401.280000pt;}
.y129{bottom:401.600000pt;}
.y25{bottom:406.400000pt;}
.y39{bottom:406.720000pt;}
.ybb{bottom:413.760000pt;}
.y128{bottom:418.560000pt;}
.y38{bottom:423.360000pt;}
.y13{bottom:425.280000pt;}
.y92{bottom:430.080000pt;}
.yba{bottom:430.720000pt;}
.y8b{bottom:434.560000pt;}
.ya3{bottom:434.880000pt;}
.y127{bottom:435.200000pt;}
.y24{bottom:440.320000pt;}
.y37{bottom:457.280000pt;}
.y126{bottom:458.240000pt;}
.y11e{bottom:465.333333pt;}
.y12{bottom:466.880000pt;}
.y8a{bottom:468.160000pt;}
.ya2{bottom:468.800000pt;}
.y82{bottom:472.320000pt;}
.y23{bottom:473.920000pt;}
.y36{bottom:474.240000pt;}
.y11{bottom:483.840000pt;}
.y124{bottom:486.666667pt;}
.yb9{bottom:489.280000pt;}
.y35{bottom:490.880000pt;}
.y81{bottom:495.360000pt;}
.y10{bottom:500.800000pt;}
.y89{bottom:501.760000pt;}
.ya1{bottom:502.400000pt;}
.y22{bottom:507.840000pt;}
.y122{bottom:509.333333pt;}
.y80{bottom:512.320000pt;}
.yf{bottom:517.440000pt;}
.y7f{bottom:522.880000pt;}
.y34{bottom:524.800000pt;}
.y120{bottom:530.666667pt;}
.yb8{bottom:530.880000pt;}
.ye{bottom:534.400000pt;}
.y88{bottom:535.680000pt;}
.ya0{bottom:536.320000pt;}
.y21{bottom:541.440000pt;}
.y7e{bottom:545.920000pt;}
.yd{bottom:551.360000pt;}
.y11c{bottom:552.000000pt;}
.y6b{bottom:553.333333pt;}
.y33{bottom:558.400000pt;}
.yc{bottom:568.320000pt;}
.y87{bottom:569.280000pt;}
.y9f{bottom:569.920000pt;}
.yb7{bottom:570.560000pt;}
.y115{bottom:573.333333pt;}
.y20{bottom:575.360000pt;}
.yb{bottom:584.960000pt;}
.y77{bottom:589.333333pt;}
.y32{bottom:592.320000pt;}
.yfb{bottom:595.200000pt;}
.y11a{bottom:596.000000pt;}
.yb6{bottom:598.400000pt;}
.y86{bottom:603.200000pt;}
.y9e{bottom:603.520000pt;}
.y1f{bottom:608.960000pt;}
.yfa{bottom:612.160000pt;}
.y118{bottom:617.333333pt;}
.ye6{bottom:618.560000pt;}
.y73{bottom:624.000000pt;}
.y31{bottom:625.920000pt;}
.ya{bottom:626.560000pt;}
.yf9{bottom:628.800000pt;}
.ye5{bottom:635.520000pt;}
.y85{bottom:636.800000pt;}
.y9d{bottom:637.440000pt;}
.yb5{bottom:638.080000pt;}
.y117{bottom:638.666667pt;}
.y1e{bottom:642.560000pt;}
.y30{bottom:642.880000pt;}
.yf8{bottom:651.840000pt;}
.ye4{bottom:658.240000pt;}
.y6f{bottom:658.666667pt;}
.y2f{bottom:659.520000pt;}
.y113{bottom:660.000000pt;}
.yf7{bottom:662.720000pt;}
.ye0{bottom:665.333333pt;}
.yb4{bottom:665.920000pt;}
.y84{bottom:667.520000pt;}
.y9c{bottom:667.840000pt;}
.y9{bottom:668.480000pt;}
.y1d{bottom:676.480000pt;}
.yf6{bottom:679.680000pt;}
.y10c{bottom:682.666667pt;}
.y69{bottom:692.000000pt;}
.y4e{bottom:693.440000pt;}
.yb3{bottom:699.520000pt;}
.ydf{bottom:700.000000pt;}
.yf5{bottom:702.400000pt;}
.y112{bottom:704.000000pt;}
.yf4{bottom:709.333333pt;}
.y8{bottom:710.080000pt;}
.yde{bottom:722.666667pt;}
.y110{bottom:725.333333pt;}
.y56{bottom:726.666667pt;}
.y4d{bottom:727.040000pt;}
.yf3{bottom:732.000000pt;}
.yb2{bottom:733.120000pt;}
.y1c{bottom:744.000000pt;}
.y10e{bottom:748.000000pt;}
.y7{bottom:750.080000pt;}
.yf2{bottom:754.666667pt;}
.y4c{bottom:760.960000pt;}
.y62{bottom:761.333333pt;}
.ydc{bottom:766.666667pt;}
.yb1{bottom:767.040000pt;}
.y10a{bottom:769.333333pt;}
.yf1{bottom:776.000000pt;}
.y1b{bottom:777.600000pt;}
.y6{bottom:783.680000pt;}
.yda{bottom:788.000000pt;}
.y101{bottom:790.666667pt;}
.y4b{bottom:794.560000pt;}
.y5e{bottom:796.000000pt;}
.yf0{bottom:797.333333pt;}
.yb0{bottom:800.640000pt;}
.yd8{bottom:810.666667pt;}
.y5{bottom:811.200000pt;}
.y4a{bottom:811.520000pt;}
.y108{bottom:812.000000pt;}
.yaf{bottom:817.600000pt;}
.yee{bottom:820.000000pt;}
.y49{bottom:828.160000pt;}
.y5a{bottom:830.666667pt;}
.yd6{bottom:832.000000pt;}
.yae{bottom:834.560000pt;}
.y106{bottom:834.666667pt;}
.yed{bottom:842.666667pt;}
.y4{bottom:845.120000pt;}
.yad{bottom:851.520000pt;}
.yd5{bottom:854.666667pt;}
.y103{bottom:856.000000pt;}
.y48{bottom:862.080000pt;}
.y54{bottom:864.000000pt;}
.yac{bottom:868.160000pt;}
.yff{bottom:877.333333pt;}
.y3{bottom:878.720000pt;}
.yab{bottom:885.120000pt;}
.ye7{bottom:885.333333pt;}
.yd4{bottom:892.480000pt;}
.y47{bottom:895.680000pt;}
.y4f{bottom:898.666667pt;}
.yaa{bottom:902.080000pt;}
.y2{bottom:912.640000pt;}
.yd3{bottom:913.280000pt;}
.ya9{bottom:915.520000pt;}
.yea{bottom:920.000000pt;}
.y51{bottom:921.333333pt;}
.y46{bottom:929.600000pt;}
.y1{bottom:946.240000pt;}
.ya6{bottom:977.920000pt;}
.ya5{bottom:995.520000pt;}
.h6{height:21.333333pt;}
.h7{height:22.666667pt;}
.h11{height:24.000000pt;}
.hf{height:26.680000pt;}
.h3{height:26.855000pt;}
.ha{height:34.666667pt;}
.hc{height:35.831250pt;}
.h8{height:36.000000pt;}
.h13{height:41.002500pt;}
.h1{height:42.866250pt;}
.he{height:42.923750pt;}
.hd{height:43.250000pt;}
.h5{height:44.000000pt;}
.h12{height:48.440000pt;}
.h4{height:51.000000pt;}
.h2{height:51.175000pt;}
.h10{height:57.333333pt;}
.h15{height:108.000000pt;}
.h14{height:109.333333pt;}
.h9{height:173.333333pt;}
.hb{height:174.666667pt;}
.h0{height:1056.000000pt;}
.w10{width:60.000000pt;}
.w11{width:69.333333pt;}
.we{width:73.333333pt;}
.w2{width:76.000000pt;}
.w8{width:90.666667pt;}
.w4{width:100.000000pt;}
.w7{width:108.000000pt;}
.w5{width:109.333333pt;}
.wb{width:110.666667pt;}
.wd{width:112.000000pt;}
.wc{width:116.000000pt;}
.w6{width:117.333333pt;}
.w1{width:138.666667pt;}
.w3{width:208.000000pt;}
.w9{width:226.666667pt;}
.wa{width:228.000000pt;}
.wf{width:366.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.680032pt;}
.x13{left:9.180971pt;}
.x3c{left:10.570880pt;}
.x29{left:11.545600pt;}
.x3d{left:12.669440pt;}
.x9{left:15.555339pt;}
.x3e{left:16.562880pt;}
.x10{left:18.667840pt;}
.x1e{left:21.394208pt;}
.x24{left:22.450133pt;}
.x12{left:23.514773pt;}
.xb{left:25.749760pt;}
.xf{left:27.576640pt;}
.x22{left:28.583893pt;}
.x26{left:31.223296pt;}
.x11{left:32.423573pt;}
.xc{left:34.115200pt;}
.x20{left:37.357120pt;}
.x32{left:38.472320pt;}
.x33{left:42.543616pt;}
.x25{left:45.431648pt;}
.x7{left:46.744448pt;}
.x23{left:47.880864pt;}
.x30{left:50.343755pt;}
.x2c{left:58.500651pt;}
.x31{left:59.980800pt;}
.x34{left:63.740480pt;}
.x2f{left:66.657579pt;}
.x2e{left:68.137600pt;}
.x2d{left:71.897600pt;}
.x5{left:96.000000pt;}
.x1{left:103.616544pt;}
.x37{left:108.613547pt;}
.x17{left:120.000000pt;}
.x1a{left:132.541664pt;}
.x6{left:144.000000pt;}
.x1c{left:168.000000pt;}
.x8{left:233.333333pt;}
.x1f{left:236.000000pt;}
.x27{left:237.333333pt;}
.x19{left:245.760064pt;}
.x35{left:257.333333pt;}
.x1b{left:271.499008pt;}
.x4{left:275.231456pt;}
.x2{left:300.424160pt;}
.xa{left:308.000000pt;}
.x36{left:329.333333pt;}
.x21{left:342.666667pt;}
.x2a{left:348.000000pt;}
.x38{left:389.333333pt;}
.xd{left:406.666667pt;}
.x3{left:408.000000pt;}
.x39{left:448.000000pt;}
.x28{left:464.000000pt;}
.x3a{left:508.000000pt;}
.x15{left:568.000000pt;}
.x2b{left:576.000000pt;}
.x3b{left:636.000000pt;}
.x1d{left:680.000000pt;}
.x18{left:688.000000pt;}
.x16{left:696.000000pt;}
.x14{left:720.000000pt;}
}




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