
    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_6444d6b3e1fa43ec0b48bbba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984027;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_7f617d3271b4402afc81a9d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.859000;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_bd66a7ebcb51fc96aa2aa8c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952148;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_09491857a1ce87010cc5af10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978000;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_c35cecd6ba02aa60ed4c7d06.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_bcff3f974ea97603e5288729.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_6eb789a3f0f41dfa795fe709.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_38f88caa37cce042a7661585.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_82ca5a80e3fe2f2389db8a00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_8b6706867ef9b2cb2a0eb4d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;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_25696b347fffac65aecfebaf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.vb{vertical-align:-64.828556px;}
.v6{vertical-align:-25.193711px;}
.v2{vertical-align:-22.350177px;}
.ve{vertical-align:-20.189355px;}
.va{vertical-align:-17.990486px;}
.v5{vertical-align:-14.399228px;}
.v9{vertical-align:-2.868724px;}
.vc{vertical-align:-1.434362px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.434362px;}
.vd{vertical-align:3.621855px;}
.v1{vertical-align:28.131904px;}
.v7{vertical-align:36.685446px;}
.v3{vertical-align:53.317456px;}
.v4{vertical-align:56.916000px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.018887px;}
.ls3{letter-spacing:0.031599px;}
.ls4{letter-spacing:0.031744px;}
.ls2{letter-spacing:0.063261px;}
.ls0{letter-spacing:0.063382px;}
.ls1{letter-spacing:0.095069px;}
.ls5{letter-spacing:0.171366px;}
.ls17{letter-spacing:0.232933px;}
.ls1a{letter-spacing:0.252720px;}
.ls18{letter-spacing:0.256721px;}
.ls1c{letter-spacing:0.293760px;}
.ls7{letter-spacing:30.733300px;}
.lsb{letter-spacing:30.733411px;}
.lsc{letter-spacing:35.622597px;}
.lsd{letter-spacing:35.650287px;}
.lse{letter-spacing:35.652033px;}
.ls10{letter-spacing:35.657045px;}
.lsf{letter-spacing:35.664835px;}
.ls8{letter-spacing:61.046256px;}
.lsa{letter-spacing:61.077433px;}
.ls9{letter-spacing:61.085206px;}
.ls15{letter-spacing:84.793330px;}
.ls12{letter-spacing:84.809811px;}
.ls11{letter-spacing:84.809880px;}
.ls16{letter-spacing:84.823588px;}
.ls14{letter-spacing:84.862372px;}
.ls1d{letter-spacing:88.578302px;}
.ls13{letter-spacing:93.635901px;}
.ls19{letter-spacing:340.577412px;}
.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:-95.039814px;}
.ws17{word-spacing:-84.240136px;}
.ws15{word-spacing:-67.352368px;}
.ws1b{word-spacing:-63.360367px;}
.ws2{word-spacing:-35.028000px;}
.ws4{word-spacing:-26.421120px;}
.ws1a{word-spacing:-26.326028px;}
.ws12{word-spacing:-23.418720px;}
.wse{word-spacing:-21.478998px;}
.wsb{word-spacing:-20.416320px;}
.ws16{word-spacing:-19.038271px;}
.ws22{word-spacing:-18.360115px;}
.ws19{word-spacing:-17.614080px;}
.wsd{word-spacing:-16.012800px;}
.ws2c{word-spacing:-14.611680px;}
.ws1e{word-spacing:-14.559311px;}
.ws26{word-spacing:-14.040023px;}
.ws1f{word-spacing:-11.567392px;}
.ws1c{word-spacing:-5.084815px;}
.wsf{word-spacing:-1.516320px;}
.ws1d{word-spacing:-1.033200px;}
.ws2b{word-spacing:-0.756000px;}
.ws9{word-spacing:-0.336960px;}
.ws10{word-spacing:-0.084147px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.105120px;}
.ws14{word-spacing:0.589681px;}
.ws11{word-spacing:0.842462px;}
.ws7{word-spacing:3.875040px;}
.ws20{word-spacing:8.929440px;}
.ws21{word-spacing:9.350640px;}
.ws8{word-spacing:12.804480px;}
.ws13{word-spacing:22.913280px;}
.ws5{word-spacing:38.160731px;}
.ws6{word-spacing:38.413440px;}
.ws28{word-spacing:51.886873px;}
.ws29{word-spacing:56.941281px;}
.ws27{word-spacing:75.811072px;}
.ws2a{word-spacing:81.370921px;}
.ws25{word-spacing:99.903751px;}
.ws24{word-spacing:137.484684px;}
.wsc{word-spacing:449.526262px;}
.wsa{word-spacing:589.062193px;}
.ws18{word-spacing:908.579911px;}
.ws23{word-spacing:2533.391414px;}
._1a{margin-left:-2958.563605px;}
._18{margin-left:-2661.183509px;}
._1b{margin-left:-2495.289629px;}
._19{margin-left:-2198.263648px;}
._14{margin-left:-1148.278297px;}
._8{margin-left:-639.550057px;}
._1d{margin-left:-16.174080px;}
._d{margin-left:-13.356000px;}
._6{margin-left:-12.260160px;}
._a{margin-left:-10.454400px;}
._15{margin-left:-8.969758px;}
._5{margin-left:-7.250400px;}
._3{margin-left:-5.417280px;}
._b{margin-left:-3.780000px;}
._4{margin-left:-2.445122px;}
._2{margin-left:-1.008000px;}
._0{width:1.008000px;}
._1{width:2.394000px;}
._7{width:3.597120px;}
._1c{width:7.444800px;}
._20{width:18.200160px;}
._21{width:19.409762px;}
._1e{width:22.472640px;}
._e{width:23.696642px;}
._9{width:25.015680px;}
._11{width:26.033760px;}
._c{width:33.996244px;}
._12{width:35.212320px;}
._10{width:62.840160px;}
._13{width:113.319360px;}
._27{width:135.520462px;}
._17{width:183.976228px;}
._28{width:263.031572px;}
._1f{width:278.145881px;}
._29{width:297.736314px;}
._2a{width:374.252580px;}
._23{width:587.216666px;}
._25{width:657.385737px;}
._26{width:701.318268px;}
._24{width:733.243950px;}
._16{width:1046.871275px;}
._f{width:1076.133930px;}
._22{width:1858.925241px;}
._2b{width:4336.147565px;}
.fc12{color:rgb(34,34,34);}
.fc11{color:rgb(133,64,6);}
.fc10{color:rgb(49,124,153);}
.fcd{color:rgb(248,145,52);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,31,31);}
.fc2{color:rgb(0,91,127);}
.fc5{color:rgb(187,0,86);}
.fc6{color:rgb(192,0,0);}
.fc8{color:rgb(222,172,67);}
.fce{color:rgb(71,120,146);}
.fc9{color:rgb(150,90,80);}
.fc7{color:rgb(119,137,53);}
.fca{color:transparent;}
.fcf{color:rgb(40,118,148);}
.fc3{color:rgb(23,156,125);}
.fcc{color:rgb(58,151,211);}
.fcb{color:rgb(68,114,196);}
.fsf{font-size:31.680000px;}
.fs14{font-size:41.759538px;}
.fs7{font-size:41.760000px;}
.fs17{font-size:48.959815px;}
.fs5{font-size:48.960000px;}
.fs8{font-size:52.560000px;}
.fs13{font-size:52.560690px;}
.fse{font-size:55.440000px;}
.fs18{font-size:56.160091px;}
.fsb{font-size:57.600000px;}
.fs3{font-size:63.360000px;}
.fs12{font-size:63.360367px;}
.fs6{font-size:73.440000px;}
.fs16{font-size:73.440459px;}
.fsa{font-size:84.240000px;}
.fsd{font-size:84.240136px;}
.fs4{font-size:95.039814px;}
.fs2{font-size:95.040000px;}
.fs9{font-size:105.120000px;}
.fs0{font-size:126.000000px;}
.fs11{font-size:147.600000px;}
.fs10{font-size:168.480000px;}
.fs1{font-size:218.880000px;}
.fs15{font-size:231.840000px;}
.fsc{font-size:315.360000px;}
.y0{bottom:0.000000px;}
.y98{bottom:116.637603px;}
.yc{bottom:122.043042px;}
.ya{bottom:122.938635px;}
.ybb{bottom:131.408301px;}
.y56{bottom:139.496334px;}
.y4e{bottom:141.295897px;}
.yba{bottom:156.785575px;}
.y9{bottom:166.684348px;}
.ycb{bottom:167.943622px;}
.yc8{bottom:173.696378px;}
.y55{bottom:177.486442px;}
.y4d{bottom:179.286006px;}
.ya1{bottom:181.620015px;}
.yb9{bottom:182.162914px;}
.y5f{bottom:183.058595px;}
.yf2{bottom:184.142559px;}
.y7f{bottom:187.200353px;}
.y40{bottom:190.254227px;}
.yca{bottom:194.216777px;}
.yb5{bottom:199.449336px;}
.yd4{bottom:202.860275px;}
.y50{bottom:203.220162px;}
.y48{bottom:203.222914px;}
.yf1{bottom:209.519833px;}
.y84{bottom:211.679574px;}
.y54{bottom:215.290252px;}
.y4c{bottom:217.080365px;}
.y5e{bottom:217.803950px;}
.y2d{bottom:222.288133px;}
.y62{bottom:229.674268px;}
.y8a{bottom:231.123766px;}
.yce{bottom:233.998249px;}
.y5d{bottom:234.366667px;}
.yf0{bottom:234.728656px;}
.y83{bottom:240.126573px;}
.yd3{bottom:240.663975px;}
.y47{bottom:241.023862px;}
.y8{bottom:243.721448px;}
.y1a{bottom:244.617119px;}
.y3f{bottom:245.163625px;}
.ya2{bottom:246.959826px;}
.y15{bottom:249.297842px;}
.yc0{bottom:252.359441px;}
.y53{bottom:253.075766px;}
.y4b{bottom:254.875330px;}
.yef{bottom:259.916398px;}
.y7{bottom:265.863640px;}
.y19{bottom:270.895673px;}
.yb2{bottom:271.793251px;}
.y14{bottom:275.576396px;}
.yd2{bottom:278.454808px;}
.y46{bottom:278.999786px;}
.yee{bottom:285.118315px;}
.y6{bottom:287.822166px;}
.y52{bottom:291.061983px;}
.y4a{bottom:292.861547px;}
.y82{bottom:296.997274px;}
.y18{bottom:297.174264px;}
.y17{bottom:297.720733px;}
.y13{bottom:301.854986px;}
.yb1{bottom:304.014103px;}
.y3e{bottom:306.179288px;}
.y78{bottom:313.925035px;}
.y5c{bottom:314.281456px;}
.yd1{bottom:316.441026px;}
.y38{bottom:318.425355px;}
.y45{bottom:320.400040px;}
.y5{bottom:324.545757px;}
.y81{bottom:325.258643px;}
.y51{bottom:328.863110px;}
.y49{bottom:330.662674px;}
.y97{bottom:332.100388px;}
.yed{bottom:335.690301px;}
.y77{bottom:342.359338px;}
.y5b{bottom:342.718982px;}
.y3d{bottom:344.884348px;}
.y2a{bottom:351.352803px;}
.y37{bottom:352.626672px;}
.y4{bottom:353.152818px;}
.yd0{bottom:354.242090px;}
.y96{bottom:358.373544px;}
.yec{bottom:360.899123px;}
.yb8{bottom:371.339991px;}
.ydd{bottom:374.218233px;}
.ydb{bottom:374.934244px;}
.y44{bottom:378.900020px;}
.y2c{bottom:380.362357px;}
.y3c{bottom:381.427203px;}
.y80{bottom:382.140993px;}
.y11{bottom:383.939253px;}
.y95{bottom:384.665077px;}
.yeb{bottom:386.274345px;}
.y36{bottom:386.816412px;}
.ycd{bottom:394.379182px;}
.ya8{bottom:394.553521px;}
.ye1{bottom:398.526855px;}
.y76{bottom:399.056058px;}
.yab{bottom:399.244510px;}
.yae{bottom:399.787210px;}
.ydc{bottom:400.491388px;}
.yda{bottom:401.225777px;}
.ya9{bottom:402.116288px;}
.yb0{bottom:402.122174px;}
.ya4{bottom:402.668649px;}
.y3{bottom:408.051355px;}
.yb7{bottom:409.139991px;}
.ya7{bottom:410.216419px;}
.y94{bottom:410.938233px;}
.yad{bottom:412.027829px;}
.yaa{bottom:415.078194px;}
.yaf{bottom:417.955858px;}
.y3a{bottom:418.492818px;}
.y35{bottom:421.017765px;}
.yc1{bottom:423.900592px;}
.yac{bottom:424.622080px;}
.ye0{bottom:424.800010px;}
.ya6{bottom:426.063255px;}
.yea{bottom:430.014244px;}
.ybf{bottom:433.259949px;}
.y93{bottom:437.211360px;}
.y10{bottom:440.635973px;}
.ybc{bottom:446.929204px;}
.y7e{bottom:449.824373px;}
.y61{bottom:451.083601px;}
.y2{bottom:454.500020px;}
.y34{bottom:455.219117px;}
.y75{bottom:455.938407px;}
.ye9{bottom:456.305777px;}
.y32{bottom:456.651372px;}
.y3b{bottom:459.360010px;}
.y60{bottom:460.619312px;}
.y7b{bottom:461.518745px;}
.y92{bottom:463.502894px;}
.y5a{bottom:471.786115px;}
.y79{bottom:475.556615px;}
.y7d{bottom:477.540469px;}
.ye8{bottom:482.578933px;}
.y7a{bottom:489.246418px;}
.y33{bottom:489.420434px;}
.y91{bottom:489.776049px;}
.ybe{bottom:489.953968px;}
.y1{bottom:492.300020px;}
.y89{bottom:493.736209px;}
.y29{bottom:496.260010px;}
.y39{bottom:496.972095px;}
.yf{bottom:497.518322px;}
.yb6{bottom:504.184320px;}
.y7c{bottom:505.975855px;}
.y86{bottom:506.695145px;}
.ye7{bottom:508.852088px;}
.ya0{bottom:509.398288px;}
.ya5{bottom:510.303206px;}
.y6f{bottom:514.984322px;}
.y90{bottom:516.067583px;}
.y9d{bottom:521.104237px;}
.y88{bottom:521.463882px;}
.y9a{bottom:522.542852px;}
.y43{bottom:529.212255px;}
.y2b{bottom:529.369939px;}
.y85{bottom:534.422818px;}
.ye6{bottom:535.143622px;}
.y9b{bottom:535.316124px;}
.y9f{bottom:537.125961px;}
.y31{bottom:540.896462px;}
.y6e{bottom:541.257477px;}
.y8f{bottom:542.340738px;}
.y67{bottom:545.755699px;}
.y73{bottom:546.838933px;}
.y9c{bottom:548.820334px;}
.y87{bottom:549.899268px;}
.y99{bottom:550.258913px;}
.ye{bottom:554.400671px;}
.ycc{bottom:554.940520px;}
.ydf{bottom:558.185399px;}
.ye5{bottom:561.416777px;}
.y41{bottom:563.048649px;}
.y9e{bottom:565.561347px;}
.y30{bottom:567.185556px;}
.y6d{bottom:567.549010px;}
.y6a{bottom:570.065770px;}
.yc2{bottom:571.140100px;}
.y66{bottom:572.047205px;}
.y72{bottom:573.112088px;}
.yb4{bottom:573.122902px;}
.y42{bottom:580.153518px;}
.yd9{bottom:580.860010px;}
.yd7{bottom:581.392438px;}
.yde{bottom:584.458583px;}
.y1c{bottom:586.803764px;}
.ye4{bottom:587.708283px;}
.y8e{bottom:589.495330px;}
.y2f{bottom:593.463037px;}
.y6c{bottom:593.822166px;}
.y65{bottom:598.320360px;}
.y71{bottom:599.403622px;}
.y59{bottom:604.264085px;}
.yd8{bottom:607.133166px;}
.yd6{bottom:607.683972px;}
.yd{bottom:611.097392px;}
.ye3{bottom:613.981438px;}
.y8d{bottom:617.037374px;}
.y2e{bottom:619.740010px;}
.y6b{bottom:620.095322px;}
.yc7{bottom:622.795850px;}
.y64{bottom:624.593544px;}
.y70{bottom:625.676777px;}
.y16{bottom:626.040181px;}
.yb3{bottom:626.582884px;}
.y4f{bottom:631.073522px;}
.y1b{bottom:634.323680px;}
.y22{bottom:637.372088px;}
.y20{bottom:638.280365px;}
.ya3{bottom:638.629203px;}
.ye2{bottom:641.874602px;}
.ybd{bottom:644.401264px;}
.y8c{bottom:645.484356px;}
.yd5{bottom:645.842888px;}
.y25{bottom:647.818933px;}
.yc6{bottom:649.080943px;}
.y21{bottom:650.334244px;}
.ycf{bottom:650.694614px;}
.y63{bottom:650.885049px;}
.y1f{bottom:664.563252px;}
.y24{bottom:674.092088px;}
.y8b{bottom:674.279386px;}
.yc5{bottom:675.357063px;}
.y1e{bottom:690.846123px;}
.y12{bottom:694.802521px;}
.yc9{bottom:698.029203px;}
.y23{bottom:700.383608px;}
.yc4{bottom:701.642156px;}
.y28{bottom:702.187203px;}
.y1d{bottom:717.129010px;}
.y74{bottom:724.125617px;}
.y58{bottom:726.469926px;}
.yc3{bottom:727.918276px;}
.yb{bottom:729.369015px;}
.y27{bottom:730.627926px;}
.y57{bottom:754.910649px;}
.y69{bottom:757.437131px;}
.y26{bottom:759.068649px;}
.y68{bottom:767.162890px;}
.h32{height:24.140160px;}
.h3f{height:30.524428px;}
.h8{height:31.821120px;}
.h6{height:37.307520px;}
.h3e{height:38.419606px;}
.h40{height:38.778908px;}
.h9{height:40.050720px;}
.h2f{height:42.245280px;}
.h17{height:43.891200px;}
.h30{height:47.187372px;}
.h35{height:48.280320px;}
.h3c{height:49.098097px;}
.h42{height:51.279227px;}
.h44{height:52.713589px;}
.h45{height:54.901081px;}
.h16{height:55.961280px;}
.h46{height:58.820017px;}
.h23{height:64.157417px;}
.h21{height:64.161767px;}
.h20{height:64.167905px;}
.h29{height:64.175406px;}
.h1e{height:64.178744px;}
.h2b{height:64.186879px;}
.h13{height:64.190880px;}
.h1d{height:64.193600px;}
.h2a{height:64.195476px;}
.h1f{height:64.197730px;}
.h47{height:64.199090px;}
.h28{height:64.199569px;}
.h27{height:64.205964px;}
.h48{height:64.218501px;}
.h22{height:64.221925px;}
.h24{height:64.233141px;}
.h25{height:69.391167px;}
.h3a{height:69.470020px;}
.h3b{height:70.119706px;}
.h2c{height:72.358133px;}
.ha{height:72.396401px;}
.h10{height:72.405413px;}
.h31{height:72.405902px;}
.h1a{height:72.409865px;}
.h3d{height:72.413479px;}
.h19{height:72.414158px;}
.hb{height:72.417836px;}
.h7{height:72.420480px;}
.h37{height:72.421110px;}
.hc{height:72.421450px;}
.h2d{height:72.421942px;}
.h38{height:72.424724px;}
.hd{height:72.425064px;}
.h2e{height:72.433267px;}
.h12{height:72.440020px;}
.h11{height:72.440357px;}
.h39{height:72.446160px;}
.he{height:72.446499px;}
.h1b{height:72.452024px;}
.h43{height:73.046004px;}
.h5{height:76.348899px;}
.h4{height:76.412224px;}
.hf{height:80.101440px;}
.h26{height:83.787675px;}
.h34{height:84.965766px;}
.h1c{height:94.529346px;}
.h2{height:96.012000px;}
.h14{height:109.278736px;}
.h36{height:112.471200px;}
.h15{height:112.877280px;}
.h33{height:128.381760px;}
.h3{height:164.160000px;}
.h41{height:176.662080px;}
.h18{height:240.304320px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x71{left:23.756985px;}
.x6e{left:37.974600px;}
.xd{left:48.239205px;}
.x3{left:49.864500px;}
.x20{left:51.131521px;}
.x1f{left:52.200718px;}
.x1{left:56.700000px;}
.x7f{left:59.045760px;}
.x5{left:69.664319px;}
.x21{left:74.701441px;}
.x22{left:79.548479px;}
.x23{left:80.997840px;}
.x43{left:84.424403px;}
.x42{left:86.756315px;}
.x6{left:89.456404px;}
.x7{left:92.521437px;}
.x78{left:98.281078px;}
.x3c{left:100.074887px;}
.x4f{left:104.576281px;}
.x77{left:107.828279px;}
.x6b{left:108.896641px;}
.x3d{left:113.045409px;}
.x50{left:117.535199px;}
.x18{left:126.545756px;}
.x6d{left:132.122704px;}
.xf{left:140.931364px;}
.x4{left:144.001255px;}
.x72{left:151.919201px;}
.x1e{left:154.080050px;}
.x1d{left:167.943887px;}
.x1b{left:173.698258px;}
.x1c{left:182.701047px;}
.x41{left:198.363126px;}
.x57{left:202.864529px;}
.x33{left:225.363608px;}
.x8{left:238.136214px;}
.x74{left:239.226837px;}
.x4a{left:243.539526px;}
.x24{left:247.674235px;}
.x4b{left:256.324428px;}
.x7a{left:259.206467px;}
.x26{left:262.072807px;}
.x79{left:268.735311px;}
.x7d{left:270.534611px;}
.x25{left:278.633512px;}
.x5b{left:284.034245px;}
.x5a{left:295.558010px;}
.x28{left:314.098551px;}
.x61{left:317.346713px;}
.xa{left:346.135663px;}
.x10{left:357.120350px;}
.xb{left:365.048639px;}
.x3b{left:367.734015px;}
.x4e{left:372.235418px;}
.x1a{left:380.516385px;}
.x64{left:384.835494px;}
.x59{left:400.326145px;}
.xc{left:409.313530px;}
.x65{left:410.413479px;}
.x70{left:417.414611px;}
.x7c{left:418.681428px;}
.x7b{left:423.179650px;}
.x7e{left:425.346117px;}
.x2a{left:429.303880px;}
.x30{left:435.425747px;}
.x6f{left:446.402892px;}
.x2b{left:447.840887px;}
.x5e{left:478.613676px;}
.x5c{left:481.672236px;}
.x63{left:483.502309px;}
.x5d{left:492.472776px;}
.x2{left:499.856769px;}
.x66{left:502.028290px;}
.x27{left:516.946502px;}
.x32{left:530.457226px;}
.x29{left:536.949021px;}
.x58{left:547.740908px;}
.x56{left:550.620673px;}
.x62{left:552.426210px;}
.x31{left:560.878554px;}
.x40{left:571.317851px;}
.x53{left:575.993271px;}
.x3e{left:578.522398px;}
.x51{left:583.197817px;}
.x47{left:591.655350px;}
.x6c{left:597.600212px;}
.x45{left:598.859896px;}
.x3f{left:602.815990px;}
.x52{left:607.503058px;}
.x9{left:619.375663px;}
.x46{left:623.153524px;}
.x60{left:646.382898px;}
.x5f{left:651.244674px;}
.x15{left:670.147207px;}
.x16{left:671.760000px;}
.x19{left:678.956903px;}
.xe{left:701.824500px;}
.x39{left:749.154929px;}
.x4d{left:762.837510px;}
.x75{left:767.521456px;}
.x12{left:768.604689px;}
.x3a{left:778.686506px;}
.x44{left:784.075607px;}
.x2c{left:804.424153px;}
.x34{left:816.662892px;}
.x2d{left:822.961597px;}
.x2f{left:824.219352px;}
.x67{left:827.830050px;}
.x2e{left:829.627952px;}
.x13{left:843.476767px;}
.x11{left:852.656767px;}
.x17{left:854.783266px;}
.x36{left:855.898603px;}
.x69{left:879.126087px;}
.x37{left:902.338922px;}
.x38{left:931.861778px;}
.x68{left:985.320975px;}
.x76{left:991.256445px;}
.x14{left:997.563615px;}
.x6a{left:1004.410565px;}
.x35{left:1009.800000px;}
.x54{left:1027.069806px;}
.x48{left:1042.920452px;}
.x73{left:1045.443586px;}
.x55{left:1049.221496px;}
.x49{left:1065.057627px;}
.x4c{left:1209.421587px;}
@media print{
.vb{vertical-align:-57.625383pt;}
.v6{vertical-align:-22.394410pt;}
.v2{vertical-align:-19.866824pt;}
.ve{vertical-align:-17.946093pt;}
.va{vertical-align:-15.991543pt;}
.v5{vertical-align:-12.799314pt;}
.v9{vertical-align:-2.549977pt;}
.vc{vertical-align:-1.274989pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.274988pt;}
.vd{vertical-align:3.219426pt;}
.v1{vertical-align:25.006136pt;}
.v7{vertical-align:32.609285pt;}
.v3{vertical-align:47.393294pt;}
.v4{vertical-align:50.592000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.016788pt;}
.ls3{letter-spacing:0.028088pt;}
.ls4{letter-spacing:0.028216pt;}
.ls2{letter-spacing:0.056232pt;}
.ls0{letter-spacing:0.056340pt;}
.ls1{letter-spacing:0.084506pt;}
.ls5{letter-spacing:0.152325pt;}
.ls17{letter-spacing:0.207051pt;}
.ls1a{letter-spacing:0.224640pt;}
.ls18{letter-spacing:0.228196pt;}
.ls1c{letter-spacing:0.261120pt;}
.ls7{letter-spacing:27.318489pt;}
.lsb{letter-spacing:27.318587pt;}
.lsc{letter-spacing:31.664531pt;}
.lsd{letter-spacing:31.689144pt;}
.lse{letter-spacing:31.690696pt;}
.ls10{letter-spacing:31.695151pt;}
.lsf{letter-spacing:31.702076pt;}
.ls8{letter-spacing:54.263339pt;}
.lsa{letter-spacing:54.291051pt;}
.ls9{letter-spacing:54.297961pt;}
.ls15{letter-spacing:75.371849pt;}
.ls12{letter-spacing:75.386499pt;}
.ls11{letter-spacing:75.386560pt;}
.ls16{letter-spacing:75.398745pt;}
.ls14{letter-spacing:75.433220pt;}
.ls1d{letter-spacing:78.736269pt;}
.ls13{letter-spacing:83.231912pt;}
.ls19{letter-spacing:302.735478pt;}
.ws0{word-spacing:-84.479834pt;}
.ws17{word-spacing:-74.880121pt;}
.ws15{word-spacing:-59.868772pt;}
.ws1b{word-spacing:-56.320326pt;}
.ws2{word-spacing:-31.136000pt;}
.ws4{word-spacing:-23.485440pt;}
.ws1a{word-spacing:-23.400914pt;}
.ws12{word-spacing:-20.816640pt;}
.wse{word-spacing:-19.092443pt;}
.wsb{word-spacing:-18.147840pt;}
.ws16{word-spacing:-16.922907pt;}
.ws22{word-spacing:-16.320102pt;}
.ws19{word-spacing:-15.656960pt;}
.wsd{word-spacing:-14.233600pt;}
.ws2c{word-spacing:-12.988160pt;}
.ws1e{word-spacing:-12.941610pt;}
.ws26{word-spacing:-12.480020pt;}
.ws1f{word-spacing:-10.282126pt;}
.ws1c{word-spacing:-4.519836pt;}
.wsf{word-spacing:-1.347840pt;}
.ws1d{word-spacing:-0.918400pt;}
.ws2b{word-spacing:-0.672000pt;}
.ws9{word-spacing:-0.299520pt;}
.ws10{word-spacing:-0.074798pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.093440pt;}
.ws14{word-spacing:0.524161pt;}
.ws11{word-spacing:0.748855pt;}
.ws7{word-spacing:3.444480pt;}
.ws20{word-spacing:7.937280pt;}
.ws21{word-spacing:8.311680pt;}
.ws8{word-spacing:11.381760pt;}
.ws13{word-spacing:20.367360pt;}
.ws5{word-spacing:33.920649pt;}
.ws6{word-spacing:34.145280pt;}
.ws28{word-spacing:46.121665pt;}
.ws29{word-spacing:50.614472pt;}
.ws27{word-spacing:67.387619pt;}
.ws2a{word-spacing:72.329707pt;}
.ws25{word-spacing:88.803334pt;}
.ws24{word-spacing:122.208608pt;}
.wsc{word-spacing:399.578900pt;}
.wsa{word-spacing:523.610838pt;}
.ws18{word-spacing:807.626587pt;}
.ws23{word-spacing:2251.903479pt;}
._1a{margin-left:-2629.834316pt;}
._18{margin-left:-2365.496452pt;}
._1b{margin-left:-2218.035226pt;}
._19{margin-left:-1954.012131pt;}
._14{margin-left:-1020.691819pt;}
._8{margin-left:-568.488939pt;}
._1d{margin-left:-14.376960pt;}
._d{margin-left:-11.872000pt;}
._6{margin-left:-10.897920pt;}
._a{margin-left:-9.292800pt;}
._15{margin-left:-7.973118pt;}
._5{margin-left:-6.444800pt;}
._3{margin-left:-4.815360pt;}
._b{margin-left:-3.360000pt;}
._4{margin-left:-2.173442pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.896000pt;}
._1{width:2.128000pt;}
._7{width:3.197440pt;}
._1c{width:6.617600pt;}
._20{width:16.177920pt;}
._21{width:17.253122pt;}
._1e{width:19.975680pt;}
._e{width:21.063682pt;}
._9{width:22.236160pt;}
._11{width:23.141120pt;}
._c{width:30.218884pt;}
._12{width:31.299840pt;}
._10{width:55.857920pt;}
._13{width:100.728320pt;}
._27{width:120.462633pt;}
._17{width:163.534425pt;}
._28{width:233.805841pt;}
._1f{width:247.240783pt;}
._29{width:264.654502pt;}
._2a{width:332.668960pt;}
._23{width:521.970370pt;}
._25{width:584.342877pt;}
._26{width:623.394016pt;}
._24{width:651.772400pt;}
._16{width:930.552245pt;}
._f{width:956.563493pt;}
._22{width:1652.377992pt;}
._2b{width:3854.353391pt;}
.fsf{font-size:28.160000pt;}
.fs14{font-size:37.119590pt;}
.fs7{font-size:37.120000pt;}
.fs17{font-size:43.519835pt;}
.fs5{font-size:43.520000pt;}
.fs8{font-size:46.720000pt;}
.fs13{font-size:46.720613pt;}
.fse{font-size:49.280000pt;}
.fs18{font-size:49.920081pt;}
.fsb{font-size:51.200000pt;}
.fs3{font-size:56.320000pt;}
.fs12{font-size:56.320326pt;}
.fs6{font-size:65.280000pt;}
.fs16{font-size:65.280408pt;}
.fsa{font-size:74.880000pt;}
.fsd{font-size:74.880121pt;}
.fs4{font-size:84.479834pt;}
.fs2{font-size:84.480000pt;}
.fs9{font-size:93.440000pt;}
.fs0{font-size:112.000000pt;}
.fs11{font-size:131.200000pt;}
.fs10{font-size:149.760000pt;}
.fs1{font-size:194.560000pt;}
.fs15{font-size:206.080000pt;}
.fsc{font-size:280.320000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:103.677869pt;}
.yc{bottom:108.482704pt;}
.ya{bottom:109.278787pt;}
.ybb{bottom:116.807378pt;}
.y56{bottom:123.996741pt;}
.y4e{bottom:125.596353pt;}
.yba{bottom:139.364956pt;}
.y9{bottom:148.163865pt;}
.ycb{bottom:149.283219pt;}
.yc8{bottom:154.396781pt;}
.y55{bottom:157.765726pt;}
.y4d{bottom:159.365338pt;}
.ya1{bottom:161.440013pt;}
.yb9{bottom:161.922590pt;}
.y5f{bottom:162.718751pt;}
.yf2{bottom:163.682274pt;}
.y7f{bottom:166.400314pt;}
.y40{bottom:169.114869pt;}
.yca{bottom:172.637135pt;}
.yb5{bottom:177.288298pt;}
.yd4{bottom:180.320244pt;}
.y50{bottom:180.640144pt;}
.y48{bottom:180.642590pt;}
.yf1{bottom:186.239852pt;}
.y84{bottom:188.159621pt;}
.y54{bottom:191.369113pt;}
.y4c{bottom:192.960325pt;}
.y5e{bottom:193.603511pt;}
.y2d{bottom:197.589452pt;}
.y62{bottom:204.154905pt;}
.y8a{bottom:205.443348pt;}
.yce{bottom:207.998443pt;}
.y5d{bottom:208.325926pt;}
.yf0{bottom:208.647694pt;}
.y83{bottom:213.445842pt;}
.yd3{bottom:213.923533pt;}
.y47{bottom:214.243433pt;}
.y8{bottom:216.641287pt;}
.y1a{bottom:217.437439pt;}
.y3f{bottom:217.923222pt;}
.ya2{bottom:219.519845pt;}
.y15{bottom:221.598082pt;}
.yc0{bottom:224.319503pt;}
.y53{bottom:224.956237pt;}
.y4b{bottom:226.555849pt;}
.yef{bottom:231.036798pt;}
.y7{bottom:236.323236pt;}
.y19{bottom:240.796154pt;}
.yb2{bottom:241.594001pt;}
.y14{bottom:244.956796pt;}
.yd2{bottom:247.515385pt;}
.y46{bottom:247.999810pt;}
.yee{bottom:253.438502pt;}
.y6{bottom:255.841925pt;}
.y52{bottom:258.721763pt;}
.y4a{bottom:260.321375pt;}
.y82{bottom:263.997577pt;}
.y18{bottom:264.154901pt;}
.y17{bottom:264.640652pt;}
.y13{bottom:268.315543pt;}
.yb1{bottom:270.234758pt;}
.y3e{bottom:272.159367pt;}
.y78{bottom:279.044475pt;}
.y5c{bottom:279.361294pt;}
.yd1{bottom:281.280912pt;}
.y38{bottom:283.044760pt;}
.y45{bottom:284.800036pt;}
.y5{bottom:288.485118pt;}
.y81{bottom:289.118794pt;}
.y51{bottom:292.322765pt;}
.y49{bottom:293.922377pt;}
.y97{bottom:295.200345pt;}
.yed{bottom:298.391378pt;}
.y77{bottom:304.319411pt;}
.y5b{bottom:304.639096pt;}
.y3d{bottom:306.563865pt;}
.y2a{bottom:312.313603pt;}
.y37{bottom:313.445931pt;}
.y4{bottom:313.913616pt;}
.yd0{bottom:314.881857pt;}
.y96{bottom:318.554261pt;}
.yec{bottom:320.799221pt;}
.yb8{bottom:330.079992pt;}
.ydd{bottom:332.638429pt;}
.ydb{bottom:333.274883pt;}
.y44{bottom:336.800018pt;}
.y2c{bottom:338.099873pt;}
.y3c{bottom:339.046403pt;}
.y80{bottom:339.680882pt;}
.y11{bottom:341.279336pt;}
.y95{bottom:341.924513pt;}
.yeb{bottom:343.354973pt;}
.y36{bottom:343.836811pt;}
.ycd{bottom:350.559273pt;}
.ya8{bottom:350.714241pt;}
.ye1{bottom:354.246093pt;}
.y76{bottom:354.716496pt;}
.yab{bottom:354.884009pt;}
.yae{bottom:355.366409pt;}
.ydc{bottom:355.992345pt;}
.yda{bottom:356.645135pt;}
.ya9{bottom:357.436700pt;}
.yb0{bottom:357.441932pt;}
.ya4{bottom:357.927688pt;}
.y3{bottom:362.712316pt;}
.yb7{bottom:363.679992pt;}
.ya7{bottom:364.636816pt;}
.y94{bottom:365.278429pt;}
.yad{bottom:366.246959pt;}
.yaa{bottom:368.958395pt;}
.yaf{bottom:371.516318pt;}
.y3a{bottom:371.993616pt;}
.y35{bottom:374.238013pt;}
.yc1{bottom:376.800526pt;}
.yac{bottom:377.441849pt;}
.ye0{bottom:377.600009pt;}
.ya6{bottom:378.722894pt;}
.yea{bottom:382.234883pt;}
.ybf{bottom:385.119955pt;}
.y93{bottom:388.632320pt;}
.y10{bottom:391.676420pt;}
.ybc{bottom:397.270404pt;}
.y7e{bottom:399.843887pt;}
.y61{bottom:400.963201pt;}
.y2{bottom:404.000018pt;}
.y34{bottom:404.639215pt;}
.y75{bottom:405.278584pt;}
.ye9{bottom:405.605135pt;}
.y32{bottom:405.912331pt;}
.y3b{bottom:408.320009pt;}
.y60{bottom:409.439388pt;}
.y7b{bottom:410.238884pt;}
.y92{bottom:412.002572pt;}
.y5a{bottom:419.365436pt;}
.y79{bottom:422.716992pt;}
.y7d{bottom:424.480417pt;}
.ye8{bottom:428.959051pt;}
.y7a{bottom:434.885705pt;}
.y33{bottom:435.040386pt;}
.y91{bottom:435.356488pt;}
.ybe{bottom:435.514638pt;}
.y1{bottom:437.600018pt;}
.y89{bottom:438.876630pt;}
.y29{bottom:441.120009pt;}
.y39{bottom:441.752973pt;}
.yf{bottom:442.238509pt;}
.yb6{bottom:448.163840pt;}
.y7c{bottom:449.756315pt;}
.y86{bottom:450.395684pt;}
.ye7{bottom:452.312967pt;}
.ya0{bottom:452.798478pt;}
.ya5{bottom:453.602850pt;}
.y6f{bottom:457.763841pt;}
.y90{bottom:458.726740pt;}
.y9d{bottom:463.203767pt;}
.y88{bottom:463.523451pt;}
.y9a{bottom:464.482536pt;}
.y43{bottom:470.410894pt;}
.y2b{bottom:470.551057pt;}
.y85{bottom:475.042505pt;}
.ye6{bottom:475.683219pt;}
.y9b{bottom:475.836555pt;}
.y9f{bottom:477.445299pt;}
.y31{bottom:480.796855pt;}
.y6e{bottom:481.117757pt;}
.y8f{bottom:482.080656pt;}
.y67{bottom:485.116177pt;}
.y73{bottom:486.079051pt;}
.y9c{bottom:487.840296pt;}
.y87{bottom:488.799349pt;}
.y99{bottom:489.119034pt;}
.ye{bottom:492.800597pt;}
.ycc{bottom:493.280462pt;}
.ydf{bottom:496.164799pt;}
.ye5{bottom:499.037135pt;}
.y41{bottom:500.487688pt;}
.y9e{bottom:502.721197pt;}
.y30{bottom:504.164938pt;}
.y6d{bottom:504.488009pt;}
.y6a{bottom:506.725128pt;}
.yc2{bottom:507.680089pt;}
.y66{bottom:508.486404pt;}
.y72{bottom:509.432967pt;}
.yb4{bottom:509.442580pt;}
.y42{bottom:515.692016pt;}
.yd9{bottom:516.320009pt;}
.yd7{bottom:516.793278pt;}
.yde{bottom:519.518740pt;}
.y1c{bottom:521.603346pt;}
.ye4{bottom:522.407362pt;}
.y8e{bottom:523.995849pt;}
.y2f{bottom:527.522699pt;}
.y6c{bottom:527.841925pt;}
.y65{bottom:531.840320pt;}
.y71{bottom:532.803219pt;}
.y59{bottom:537.123631pt;}
.yd8{bottom:539.673925pt;}
.yd6{bottom:540.163530pt;}
.yd{bottom:543.197681pt;}
.ye3{bottom:545.761278pt;}
.y8d{bottom:548.477666pt;}
.y2e{bottom:550.880009pt;}
.y6b{bottom:551.195841pt;}
.yc7{bottom:553.596311pt;}
.y64{bottom:555.194261pt;}
.y70{bottom:556.157135pt;}
.y16{bottom:556.480161pt;}
.yb3{bottom:556.962564pt;}
.y4f{bottom:560.954242pt;}
.y1b{bottom:563.843271pt;}
.y22{bottom:566.552967pt;}
.y20{bottom:567.360325pt;}
.ya3{bottom:567.670403pt;}
.ye2{bottom:570.555202pt;}
.ybd{bottom:572.801124pt;}
.y8c{bottom:573.763872pt;}
.yd5{bottom:574.082567pt;}
.y25{bottom:575.839051pt;}
.yc6{bottom:576.960838pt;}
.y21{bottom:578.074883pt;}
.ycf{bottom:578.395213pt;}
.y63{bottom:578.564488pt;}
.y1f{bottom:590.722891pt;}
.y24{bottom:599.192967pt;}
.y8b{bottom:599.359455pt;}
.yc5{bottom:600.317389pt;}
.y1e{bottom:614.085443pt;}
.y12{bottom:617.602241pt;}
.yc9{bottom:620.470403pt;}
.y23{bottom:622.563207pt;}
.yc4{bottom:623.681917pt;}
.y28{bottom:624.166403pt;}
.y1d{bottom:637.448009pt;}
.y74{bottom:643.667215pt;}
.y58{bottom:645.751046pt;}
.yc3{bottom:647.038468pt;}
.yb{bottom:648.328013pt;}
.y27{bottom:649.447046pt;}
.y57{bottom:671.031688pt;}
.y69{bottom:673.277450pt;}
.y26{bottom:674.727688pt;}
.y68{bottom:681.922569pt;}
.h32{height:21.457920pt;}
.h3f{height:27.132825pt;}
.h8{height:28.285440pt;}
.h6{height:33.162240pt;}
.h3e{height:34.150761pt;}
.h40{height:34.470140pt;}
.h9{height:35.600640pt;}
.h2f{height:37.551360pt;}
.h17{height:39.014400pt;}
.h30{height:41.944330pt;}
.h35{height:42.915840pt;}
.h3c{height:43.642753pt;}
.h42{height:45.581535pt;}
.h44{height:46.856524pt;}
.h45{height:48.800961pt;}
.h16{height:49.743360pt;}
.h46{height:52.284460pt;}
.h23{height:57.028815pt;}
.h21{height:57.032681pt;}
.h20{height:57.038138pt;}
.h29{height:57.044805pt;}
.h1e{height:57.047773pt;}
.h2b{height:57.055003pt;}
.h13{height:57.058560pt;}
.h1d{height:57.060978pt;}
.h2a{height:57.062645pt;}
.h1f{height:57.064649pt;}
.h47{height:57.065858pt;}
.h28{height:57.066284pt;}
.h27{height:57.071968pt;}
.h48{height:57.083112pt;}
.h22{height:57.086156pt;}
.h24{height:57.096125pt;}
.h25{height:61.681037pt;}
.h3a{height:61.751129pt;}
.h3b{height:62.328628pt;}
.h2c{height:64.318340pt;}
.ha{height:64.352357pt;}
.h10{height:64.360367pt;}
.h31{height:64.360802pt;}
.h1a{height:64.364325pt;}
.h3d{height:64.367537pt;}
.h19{height:64.368141pt;}
.hb{height:64.371410pt;}
.h7{height:64.373760pt;}
.h37{height:64.374320pt;}
.hc{height:64.374622pt;}
.h2d{height:64.375059pt;}
.h38{height:64.377533pt;}
.hd{height:64.377834pt;}
.h2e{height:64.385126pt;}
.h12{height:64.391129pt;}
.h11{height:64.391428pt;}
.h39{height:64.396586pt;}
.he{height:64.396888pt;}
.h1b{height:64.401799pt;}
.h43{height:64.929781pt;}
.h5{height:67.865688pt;}
.h4{height:67.921976pt;}
.hf{height:71.201280pt;}
.h26{height:74.477933pt;}
.h34{height:75.525125pt;}
.h1c{height:84.026085pt;}
.h2{height:85.344000pt;}
.h14{height:97.136654pt;}
.h36{height:99.974400pt;}
.h15{height:100.335360pt;}
.h33{height:114.117120pt;}
.h3{height:145.920000pt;}
.h41{height:157.032960pt;}
.h18{height:213.603840pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x71{left:21.117320pt;}
.x6e{left:33.755200pt;}
.xd{left:42.879294pt;}
.x3{left:44.324000pt;}
.x20{left:45.450241pt;}
.x1f{left:46.400639pt;}
.x1{left:50.400000pt;}
.x7f{left:52.485120pt;}
.x5{left:61.923839pt;}
.x21{left:66.401281pt;}
.x22{left:70.709759pt;}
.x23{left:71.998080pt;}
.x43{left:75.043913pt;}
.x42{left:77.116724pt;}
.x6{left:79.516803pt;}
.x7{left:82.241277pt;}
.x78{left:87.360958pt;}
.x3c{left:88.955455pt;}
.x4f{left:92.956694pt;}
.x77{left:95.847359pt;}
.x6b{left:96.797015pt;}
.x3d{left:100.484808pt;}
.x50{left:104.475732pt;}
.x18{left:112.485116pt;}
.x6d{left:117.442404pt;}
.xf{left:125.272323pt;}
.x4{left:128.001116pt;}
.x72{left:135.039290pt;}
.x1e{left:136.960044pt;}
.x1d{left:149.283455pt;}
.x1b{left:154.398452pt;}
.x1c{left:162.400931pt;}
.x41{left:176.322779pt;}
.x57{left:180.324026pt;}
.x33{left:200.323208pt;}
.x8{left:211.676635pt;}
.x74{left:212.646077pt;}
.x4a{left:216.479578pt;}
.x24{left:220.154876pt;}
.x4b{left:227.843936pt;}
.x7a{left:230.405748pt;}
.x26{left:232.953606pt;}
.x79{left:238.875832pt;}
.x7d{left:240.475210pt;}
.x25{left:247.674233pt;}
.x5b{left:252.474884pt;}
.x5a{left:262.718231pt;}
.x28{left:279.198712pt;}
.x61{left:282.085967pt;}
.xa{left:307.676145pt;}
.x10{left:317.440311pt;}
.xb{left:324.487679pt;}
.x3b{left:326.874680pt;}
.x4e{left:330.875927pt;}
.x1a{left:338.236787pt;}
.x64{left:342.075995pt;}
.x59{left:355.845462pt;}
.xc{left:363.834249pt;}
.x65{left:364.811981pt;}
.x70{left:371.035210pt;}
.x7c{left:372.161269pt;}
.x7b{left:376.159689pt;}
.x7e{left:378.085437pt;}
.x2a{left:381.603449pt;}
.x30{left:387.045108pt;}
.x6f{left:396.802570pt;}
.x2b{left:398.080789pt;}
.x5e{left:425.434379pt;}
.x5c{left:428.153099pt;}
.x63{left:429.779831pt;}
.x5d{left:437.753579pt;}
.x2{left:444.317128pt;}
.x66{left:446.247369pt;}
.x27{left:459.508002pt;}
.x32{left:471.517534pt;}
.x29{left:477.288019pt;}
.x58{left:486.880807pt;}
.x56{left:489.440598pt;}
.x62{left:491.045520pt;}
.x31{left:498.558715pt;}
.x40{left:507.838090pt;}
.x53{left:511.994018pt;}
.x3e{left:514.242131pt;}
.x51{left:518.398060pt;}
.x47{left:525.915866pt;}
.x6c{left:531.200189pt;}
.x45{left:532.319908pt;}
.x3f{left:535.836436pt;}
.x52{left:540.002718pt;}
.x9{left:550.556145pt;}
.x46{left:553.914243pt;}
.x60{left:574.562576pt;}
.x5f{left:578.884154pt;}
.x15{left:595.686406pt;}
.x16{left:597.120000pt;}
.x19{left:603.517247pt;}
.xe{left:623.844000pt;}
.x39{left:665.915493pt;}
.x4d{left:678.077787pt;}
.x75{left:682.241294pt;}
.x12{left:683.204168pt;}
.x3a{left:692.165783pt;}
.x44{left:696.956095pt;}
.x2c{left:715.043692pt;}
.x34{left:725.922570pt;}
.x2d{left:731.521419pt;}
.x2f{left:732.639424pt;}
.x67{left:735.848934pt;}
.x2e{left:737.447068pt;}
.x13{left:749.757126pt;}
.x11{left:757.917126pt;}
.x17{left:759.807347pt;}
.x36{left:760.798758pt;}
.x69{left:781.445411pt;}
.x37{left:802.079042pt;}
.x38{left:828.321580pt;}
.x68{left:875.840866pt;}
.x76{left:881.116840pt;}
.x14{left:886.723213pt;}
.x6a{left:892.809391pt;}
.x35{left:897.600000pt;}
.x54{left:912.950939pt;}
.x48{left:927.040402pt;}
.x73{left:929.283188pt;}
.x55{left:932.641330pt;}
.x49{left:946.717891pt;}
.x4c{left:1075.041411pt;}
}




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