
    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_8548a761b8cce594525daf33.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c6d04f09c30fdf8874b95da7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c50f8a74d58b00c8c5b2eb64.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0c503e878f38cb5b34b70f31.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_75e740571b66ac518dd780de.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_0e769567a0b4b47c62a56f31.woff')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_1d809ea17bdcb1e9249e48e7.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_3a86c92fe26bc53a851b8381.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ccbaf61ae83313bf971dcbd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c902ebbec0e64c200b52e7e9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689941;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_f895d376c65506d986f80d5a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689941;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_743814619b45989d796dc9b0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_ebeda0bf8ac3815260c0d361.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2b3a62ba712e2a975b4c0048.woff')format("woff");}.fff{font-family:fff;line-height:0.891602;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:ff10;src:url('chunks/assets/font_f78a149eea6a145d10c8ff2e.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_21045bf4cbedfb1f542589de.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b8e9d2182f01b88eeb110678.woff')format("woff");}.ff12{font-family:ff12;line-height:0.687500;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:ff13;src:url('chunks/assets/font_1b13f5c6e23c1534b7f1bc90.woff')format("woff");}.ff13{font-family:ff13;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;}
.m1{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,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);}
.m2{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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls30{letter-spacing:-0.508896px;}
.ls1c{letter-spacing:-0.459648px;}
.ls21{letter-spacing:-0.417312px;}
.ls32{letter-spacing:-0.399168px;}
.ls22{letter-spacing:-0.381024px;}
.ls31{letter-spacing:-0.361152px;}
.ls1a{letter-spacing:-0.338688px;}
.ls1b{letter-spacing:-0.320544px;}
.ls20{letter-spacing:-0.302400px;}
.ls2f{letter-spacing:-0.273600px;}
.ls33{letter-spacing:-0.272160px;}
.ls12{letter-spacing:-0.260064px;}
.ls1d{letter-spacing:-0.241920px;}
.ls1e{letter-spacing:-0.223776px;}
.ls17{letter-spacing:-0.198720px;}
.ls15{letter-spacing:-0.175392px;}
.ls1f{letter-spacing:-0.157248px;}
.ls11{letter-spacing:-0.152352px;}
.ls10{letter-spacing:-0.145728px;}
.ls13{letter-spacing:-0.145152px;}
.ls16{letter-spacing:-0.132480px;}
.ls14{letter-spacing:-0.120960px;}
.lsf{letter-spacing:-0.119232px;}
.lse{letter-spacing:-0.079488px;}
.lsd{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060048px;}
.ls2e{letter-spacing:0.103680px;}
.ls0{letter-spacing:0.119520px;}
.ls24{letter-spacing:0.123552px;}
.ls25{letter-spacing:0.161568px;}
.lsb{letter-spacing:0.237600px;}
.ls1{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.240480px;}
.ls26{letter-spacing:0.242352px;}
.ls19{letter-spacing:0.283968px;}
.ls23{letter-spacing:0.285120px;}
.ls18{letter-spacing:0.359136px;}
.ls9{letter-spacing:4.315536px;}
.ls2b{letter-spacing:4.469760px;}
.ls8{letter-spacing:4.517568px;}
.ls35{letter-spacing:5.342400px;}
.ls4{letter-spacing:6.424992px;}
.ls5{letter-spacing:6.575040px;}
.ls6{letter-spacing:6.576480px;}
.ls36{letter-spacing:6.811632px;}
.ls34{letter-spacing:6.949296px;}
.lsa{letter-spacing:7.643664px;}
.ls2d{letter-spacing:8.879040px;}
.ls28{letter-spacing:9.615312px;}
.lsc{letter-spacing:11.172384px;}
.ls2c{letter-spacing:11.502720px;}
.ls3a{letter-spacing:16.185600px;}
.ls3b{letter-spacing:16.186608px;}
.ls7{letter-spacing:16.280496px;}
.ls37{letter-spacing:16.744752px;}
.ls27{letter-spacing:19.577808px;}
.ls38{letter-spacing:42.691536px;}
.ls39{letter-spacing:46.186560px;}
.ls2a{letter-spacing:63.587520px;}
.ls29{letter-spacing:63.588960px;}
.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:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws7{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.974848px;}
.ws11{word-spacing:-14.962752px;}
.wsb{word-spacing:-14.944608px;}
.ws12{word-spacing:-14.896224px;}
.ws6{word-spacing:-14.878080px;}
.ws4{word-spacing:-14.859936px;}
.ws14{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws15{word-spacing:-14.817600px;}
.ws9{word-spacing:-14.799456px;}
.ws8{word-spacing:-14.781312px;}
.wsc{word-spacing:-14.738976px;}
.wse{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.406400px;}
.ws10{word-spacing:-13.318848px;}
.ws13{word-spacing:-0.060480px;}
.wsd{word-spacing:0.000000px;}
._2c{margin-left:-4.251456px;}
._12{margin-left:-3.136032px;}
._d{margin-left:-2.065248px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._b{width:2.298240px;}
._9{width:3.326400px;}
._8{width:4.415040px;}
._a{width:5.564160px;}
._2{width:6.912720px;}
._e{width:8.876160px;}
._6{width:10.374336px;}
._3{width:11.975040px;}
._c{width:13.184640px;}
._5{width:15.936624px;}
._4{width:16.947936px;}
._14{width:18.361728px;}
._10{width:19.837440px;}
._7{width:21.047040px;}
._f{width:22.256640px;}
._2d{width:23.294304px;}
._11{width:24.373440px;}
._1e{width:25.583040px;}
._17{width:27.216000px;}
._32{width:28.304640px;}
._18{width:29.514240px;}
._16{width:30.784320px;}
._2b{width:31.993920px;}
._1a{width:33.264000px;}
._29{width:35.159040px;}
._35{width:36.187200px;}
._19{width:37.437120px;}
._20{width:39.029760px;}
._39{width:40.284432px;}
._33{width:42.577920px;}
._31{width:44.634240px;}
._1b{width:45.964800px;}
._2e{width:47.481552px;}
._24{width:48.864096px;}
._2f{width:49.960224px;}
._1f{width:51.574896px;}
._15{width:52.678080px;}
._13{width:53.827200px;}
._3a{width:55.944000px;}
._34{width:59.088960px;}
._38{width:60.117120px;}
._28{width:63.318528px;}
._27{width:64.491840px;}
._26{width:66.110112px;}
._25{width:67.137552px;}
._23{width:69.877152px;}
._1c{width:70.943040px;}
._37{width:77.353920px;}
._36{width:78.382080px;}
._30{width:80.498880px;}
._22{width:82.010880px;}
._21{width:87.635520px;}
._2a{width:88.898112px;}
._1d{width:100.517760px;}
.fc3{color:transparent;}
.fc2{color:rgb(36,63,96);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y3f{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:1.740000px;}
.yef{bottom:3.720000px;}
.yae{bottom:3.780000px;}
.yd5{bottom:4.020000px;}
.yc3{bottom:4.080000px;}
.ybc{bottom:4.500000px;}
.yde{bottom:4.740000px;}
.ycb{bottom:4.800000px;}
.yee{bottom:21.000000px;}
.yf5{bottom:21.300000px;}
.yf1{bottom:21.720000px;}
.yb5{bottom:21.780000px;}
.yf3{bottom:22.080000px;}
.yec{bottom:39.060000px;}
.y41{bottom:53.640000px;}
.yeb{bottom:56.340000px;}
.yb0{bottom:57.780000px;}
.y6{bottom:58.320000px;}
.y3d{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.y13a{bottom:113.400000px;}
.y78{bottom:117.000000px;}
.yea{bottom:120.960000px;}
.y184{bottom:123.120000px;}
.yac{bottom:124.560000px;}
.y10a{bottom:125.640000px;}
.y3c{bottom:126.360000px;}
.y162{bottom:129.240000px;}
.y139{bottom:130.680000px;}
.y77{bottom:134.280000px;}
.y183{bottom:140.400000px;}
.ye9{bottom:142.200000px;}
.y109{bottom:142.920000px;}
.y3b{bottom:143.640000px;}
.y161{bottom:146.520000px;}
.y138{bottom:147.960000px;}
.yab{bottom:150.840000px;}
.y76{bottom:152.640000px;}
.y182{bottom:157.680000px;}
.y3a{bottom:160.920000px;}
.ye8{bottom:163.080000px;}
.y160{bottom:163.800000px;}
.y137{bottom:165.240000px;}
.yaa{bottom:168.120000px;}
.y108{bottom:169.200000px;}
.y181{bottom:174.960000px;}
.y39{bottom:178.200000px;}
.y75{bottom:178.920000px;}
.y15f{bottom:181.080000px;}
.y136{bottom:182.520000px;}
.ye7{bottom:184.320000px;}
.ya9{bottom:185.400000px;}
.y107{bottom:186.480000px;}
.y180{bottom:192.240000px;}
.y38{bottom:195.480000px;}
.y74{bottom:196.200000px;}
.y135{bottom:199.800000px;}
.ya8{bottom:202.680000px;}
.y106{bottom:203.760000px;}
.ye6{bottom:205.560000px;}
.y15e{bottom:207.000000px;}
.y17f{bottom:209.520000px;}
.y37{bottom:212.760000px;}
.y73{bottom:214.200000px;}
.y134{bottom:217.080000px;}
.ya7{bottom:219.600000px;}
.y105{bottom:221.040000px;}
.ye5{bottom:226.440000px;}
.y17e{bottom:226.800000px;}
.y36{bottom:230.040000px;}
.y72{bottom:231.480000px;}
.y15d{bottom:233.280000px;}
.y133{bottom:234.360000px;}
.y104{bottom:237.960000px;}
.y17d{bottom:244.080000px;}
.ya6{bottom:245.880000px;}
.ye4{bottom:246.960000px;}
.y35{bottom:247.320000px;}
.y15c{bottom:250.560000px;}
.y132{bottom:251.280000px;}
.y71{bottom:258.840000px;}
.y17c{bottom:261.360000px;}
.ya5{bottom:263.160000px;}
.ye3{bottom:264.240000px;}
.y34{bottom:264.600000px;}
.y15b{bottom:267.840000px;}
.y131{bottom:268.560000px;}
.y70{bottom:276.120000px;}
.ye2{bottom:277.500000px;}
.y17b{bottom:278.280000px;}
.ya4{bottom:280.440000px;}
.y103{bottom:281.520000px;}
.y33{bottom:281.880000px;}
.y15a{bottom:285.120000px;}
.y130{bottom:285.840000px;}
.y6f{bottom:293.400000px;}
.ye1{bottom:295.500000px;}
.y17a{bottom:295.560000px;}
.ya3{bottom:297.720000px;}
.y32{bottom:298.800000px;}
.y159{bottom:302.400000px;}
.y12f{bottom:303.120000px;}
.y179{bottom:312.840000px;}
.ye0{bottom:313.500000px;}
.ya2{bottom:315.000000px;}
.y102{bottom:316.080000px;}
.y6e{bottom:319.680000px;}
.y151{bottom:320.400000px;}
.y31{bottom:325.080000px;}
.y12e{bottom:329.400000px;}
.y101{bottom:330.120000px;}
.ydf{bottom:331.500000px;}
.ya1{bottom:332.280000px;}
.y6d{bottom:336.960000px;}
.y150{bottom:337.680000px;}
.y12d{bottom:346.680000px;}
.y178{bottom:347.400000px;}
.ydd{bottom:349.500000px;}
.ya0{bottom:349.560000px;}
.y30{bottom:352.800000px;}
.y6c{bottom:354.240000px;}
.y14f{bottom:354.960000px;}
.y158{bottom:363.240000px;}
.y12c{bottom:363.960000px;}
.y177{bottom:364.680000px;}
.y2f{bottom:366.840000px;}
.y6b{bottom:371.520000px;}
.ydc{bottom:372.240000px;}
.y2e{bottom:380.520000px;}
.y12b{bottom:381.240000px;}
.y176{bottom:381.960000px;}
.y9f{bottom:384.120000px;}
.y6a{bottom:388.800000px;}
.ydb{bottom:389.520000px;}
.y2d{bottom:394.560000px;}
.y157{bottom:397.800000px;}
.y12a{bottom:398.520000px;}
.y175{bottom:399.240000px;}
.y9e{bottom:401.400000px;}
.yda{bottom:403.500000px;}
.y69{bottom:406.080000px;}
.y14e{bottom:406.800000px;}
.y2c{bottom:409.680000px;}
.y156{bottom:415.080000px;}
.y129{bottom:415.800000px;}
.y174{bottom:416.520000px;}
.y9d{bottom:418.680000px;}
.yd9{bottom:421.500000px;}
.y68{bottom:423.000000px;}
.y14d{bottom:424.080000px;}
.y2b{bottom:426.960000px;}
.y155{bottom:432.000000px;}
.y128{bottom:433.080000px;}
.y173{bottom:433.800000px;}
.yd8{bottom:439.500000px;}
.y67{bottom:440.280000px;}
.y14c{bottom:441.000000px;}
.y2a{bottom:444.240000px;}
.y9c{bottom:444.600000px;}
.y154{bottom:449.280000px;}
.y127{bottom:450.000000px;}
.y172{bottom:451.080000px;}
.yd7{bottom:457.500000px;}
.y66{bottom:457.560000px;}
.y14b{bottom:458.280000px;}
.y29{bottom:461.520000px;}
.y9b{bottom:461.880000px;}
.y126{bottom:467.280000px;}
.y171{bottom:468.000000px;}
.yd6{bottom:475.500000px;}
.y14a{bottom:475.560000px;}
.y28{bottom:478.800000px;}
.y9a{bottom:479.160000px;}
.y65{bottom:483.840000px;}
.y125{bottom:484.560000px;}
.y170{bottom:485.280000px;}
.y149{bottom:492.840000px;}
.y100{bottom:493.200000px;}
.yd4{bottom:493.500000px;}
.y27{bottom:495.720000px;}
.y99{bottom:497.520000px;}
.y124{bottom:501.840000px;}
.y16f{bottom:502.560000px;}
.y64{bottom:510.120000px;}
.yff{bottom:510.480000px;}
.y26{bottom:513.000000px;}
.y98{bottom:514.800000px;}
.yd3{bottom:515.520000px;}
.y123{bottom:519.120000px;}
.y16e{bottom:519.840000px;}
.yfe{bottom:524.520000px;}
.y63{bottom:527.400000px;}
.y25{bottom:530.280000px;}
.y97{bottom:532.080000px;}
.yd2{bottom:532.800000px;}
.y122{bottom:536.400000px;}
.y16d{bottom:537.120000px;}
.y62{bottom:544.680000px;}
.yd1{bottom:546.000000px;}
.y24{bottom:547.560000px;}
.y96{bottom:549.360000px;}
.y121{bottom:553.680000px;}
.y16c{bottom:554.400000px;}
.y61{bottom:561.960000px;}
.yd0{bottom:564.000000px;}
.y23{bottom:564.840000px;}
.y95{bottom:567.720000px;}
.y16b{bottom:571.680000px;}
.y60{bottom:579.240000px;}
.y120{bottom:579.960000px;}
.ycf{bottom:582.000000px;}
.y22{bottom:582.120000px;}
.y94{bottom:585.000000px;}
.y16a{bottom:588.960000px;}
.y5f{bottom:596.520000px;}
.y11f{bottom:597.240000px;}
.y21{bottom:599.400000px;}
.yce{bottom:600.000000px;}
.y169{bottom:606.240000px;}
.y93{bottom:612.360000px;}
.y5e{bottom:613.800000px;}
.y11e{bottom:614.520000px;}
.y20{bottom:616.680000px;}
.ycd{bottom:618.000000px;}
.y168{bottom:623.520000px;}
.y148{bottom:631.080000px;}
.y11d{bottom:631.800000px;}
.y1f{bottom:633.960000px;}
.ycc{bottom:636.000000px;}
.y92{bottom:638.640000px;}
.y5d{bottom:640.080000px;}
.y167{bottom:640.800000px;}
.y147{bottom:648.000000px;}
.y11c{bottom:649.080000px;}
.y1e{bottom:651.240000px;}
.yca{bottom:654.000000px;}
.y91{bottom:655.560000px;}
.y5c{bottom:657.000000px;}
.y166{bottom:658.080000px;}
.y146{bottom:665.280000px;}
.y11b{bottom:666.000000px;}
.y1d{bottom:668.520000px;}
.y90{bottom:672.840000px;}
.y5b{bottom:674.280000px;}
.y165{bottom:675.000000px;}
.yc9{bottom:676.800000px;}
.y145{bottom:682.560000px;}
.y11a{bottom:683.280000px;}
.y1c{bottom:685.440000px;}
.y8f{bottom:691.200000px;}
.y5a{bottom:691.560000px;}
.y164{bottom:692.280000px;}
.yc8{bottom:694.080000px;}
.y144{bottom:699.840000px;}
.y119{bottom:700.560000px;}
.y1b{bottom:702.720000px;}
.yc7{bottom:708.000000px;}
.y8e{bottom:708.480000px;}
.y59{bottom:708.840000px;}
.y163{bottom:709.560000px;}
.y143{bottom:717.120000px;}
.y153{bottom:717.840000px;}
.y1a{bottom:720.000000px;}
.yc6{bottom:726.000000px;}
.y58{bottom:726.120000px;}
.y8d{bottom:726.840000px;}
.y142{bottom:734.400000px;}
.y152{bottom:735.120000px;}
.y19{bottom:737.280000px;}
.yc5{bottom:744.000000px;}
.y8c{bottom:744.120000px;}
.y141{bottom:751.680000px;}
.y57{bottom:752.400000px;}
.y18{bottom:754.560000px;}
.y8b{bottom:761.400000px;}
.yc4{bottom:762.000000px;}
.y140{bottom:768.960000px;}
.y56{bottom:769.680000px;}
.y17{bottom:771.840000px;}
.y118{bottom:778.680000px;}
.y8a{bottom:779.760000px;}
.yc2{bottom:780.000000px;}
.yfd{bottom:786.240000px;}
.y55{bottom:786.960000px;}
.y16{bottom:789.120000px;}
.y117{bottom:795.960000px;}
.y89{bottom:797.040000px;}
.yfc{bottom:799.500000px;}
.yc1{bottom:801.720000px;}
.y13f{bottom:803.520000px;}
.y54{bottom:804.240000px;}
.y15{bottom:806.400000px;}
.y116{bottom:813.240000px;}
.y88{bottom:814.320000px;}
.yfb{bottom:817.500000px;}
.yc0{bottom:819.000000px;}
.y13e{bottom:820.800000px;}
.y53{bottom:821.520000px;}
.y14{bottom:825.840000px;}
.y115{bottom:830.520000px;}
.y87{bottom:831.600000px;}
.ybf{bottom:832.500000px;}
.yfa{bottom:835.500000px;}
.y13d{bottom:837.720000px;}
.y52{bottom:838.800000px;}
.y13{bottom:843.120000px;}
.y114{bottom:847.800000px;}
.y86{bottom:848.520000px;}
.ybe{bottom:850.500000px;}
.yf9{bottom:853.500000px;}
.y13c{bottom:855.000000px;}
.y51{bottom:855.720000px;}
.y12{bottom:860.400000px;}
.y113{bottom:864.720000px;}
.y85{bottom:866.880000px;}
.ybd{bottom:868.500000px;}
.yf8{bottom:871.500000px;}
.y50{bottom:873.000000px;}
.y11{bottom:879.840000px;}
.y13b{bottom:881.280000px;}
.y112{bottom:882.000000px;}
.y84{bottom:884.160000px;}
.ybb{bottom:886.500000px;}
.y4f{bottom:890.280000px;}
.yf7{bottom:894.240000px;}
.y111{bottom:899.280000px;}
.y10{bottom:902.520000px;}
.y4e{bottom:907.560000px;}
.yba{bottom:909.000000px;}
.yf6{bottom:911.520000px;}
.yf{bottom:914.400000px;}
.y110{bottom:916.560000px;}
.y83{bottom:919.800000px;}
.y4d{bottom:924.840000px;}
.yf4{bottom:925.500000px;}
.yb9{bottom:926.280000px;}
.y10f{bottom:933.840000px;}
.ye{bottom:937.080000px;}
.yb7{bottom:940.500000px;}
.y4c{bottom:942.120000px;}
.yd{bottom:948.960000px;}
.y10e{bottom:951.120000px;}
.y82{bottom:954.360000px;}
.yb8{bottom:958.500000px;}
.y4b{bottom:959.400000px;}
.yf2{bottom:960.000000px;}
.y10d{bottom:968.400000px;}
.yc{bottom:971.640000px;}
.yb4{bottom:976.500000px;}
.y4a{bottom:976.680000px;}
.y81{bottom:980.640000px;}
.y10c{bottom:985.680000px;}
.yb{bottom:993.240000px;}
.y49{bottom:993.960000px;}
.yb6{bottom:994.500000px;}
.yf0{bottom:996.000000px;}
.y80{bottom:997.920000px;}
.y10b{bottom:1002.960000px;}
.yaf{bottom:1012.500000px;}
.y7f{bottom:1016.280000px;}
.y48{bottom:1020.240000px;}
.ya{bottom:1023.480000px;}
.yb3{bottom:1030.500000px;}
.yed{bottom:1032.000000px;}
.y47{bottom:1037.520000px;}
.y7e{bottom:1043.280000px;}
.y9{bottom:1047.600000px;}
.yb2{bottom:1048.500000px;}
.y46{bottom:1054.800000px;}
.yb1{bottom:1066.500000px;}
.y7d{bottom:1069.560000px;}
.y8{bottom:1071.720000px;}
.yad{bottom:1084.500000px;}
.y7c{bottom:1086.840000px;}
.y45{bottom:1089.000000px;}
.y7b{bottom:1105.200000px;}
.y44{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y7a{bottom:1122.480000px;}
.y43{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y79{bottom:1139.760000px;}
.y42{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y40{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.he{height:18.000000px;}
.h11{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h10{height:36.000000px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h12{height:47.988281px;}
.h3{height:48.095156px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h13{height:70.500000px;}
.hf{height:72.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w1c{width:52.500000px;}
.w1f{width:55.500000px;}
.w1e{width:57.000000px;}
.w1d{width:66.000000px;}
.w19{width:67.500000px;}
.w10{width:69.000000px;}
.w14{width:85.500000px;}
.w1a{width:97.500000px;}
.w1b{width:102.000000px;}
.w18{width:117.000000px;}
.w17{width:127.500000px;}
.wd{width:132.000000px;}
.w16{width:141.000000px;}
.we{width:142.500000px;}
.w13{width:145.500000px;}
.wf{width:148.500000px;}
.w4{width:159.000000px;}
.w5{width:160.500000px;}
.w15{width:169.500000px;}
.w6{width:172.500000px;}
.w3{width:186.000000px;}
.w9{width:187.500000px;}
.wc{width:196.500000px;}
.w8{width:199.500000px;}
.w12{width:204.000000px;}
.wb{width:210.000000px;}
.wa{width:273.000000px;}
.w7{width:291.000000px;}
.w11{width:328.500000px;}
.w20{width:387.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x12{left:1.560048px;}
.x28{left:7.560000px;}
.x16{left:8.640036px;}
.x5{left:108.000000px;}
.x8{left:109.921140px;}
.x4{left:113.312628px;}
.xe{left:122.617656px;}
.x9{left:130.644288px;}
.x13{left:135.000000px;}
.xc{left:138.016836px;}
.x3a{left:156.791016px;}
.x11{left:160.500000px;}
.x2a{left:192.000000px;}
.x15{left:210.166272px;}
.x2e{left:225.000000px;}
.xb{left:236.965572px;}
.xa{left:246.154536px;}
.x25{left:249.940440px;}
.x20{left:251.493156px;}
.xd{left:263.750220px;}
.x1d{left:270.949968px;}
.x1a{left:275.857200px;}
.x35{left:281.262456px;}
.x38{left:287.304912px;}
.x29{left:290.212632px;}
.x17{left:294.000000px;}
.x21{left:295.500000px;}
.x2{left:298.937628px;}
.xf{left:327.125980px;}
.x2b{left:360.000000px;}
.x1e{left:379.500000px;}
.x2f{left:387.000000px;}
.x1b{left:399.000000px;}
.x22{left:427.500000px;}
.x26{left:435.000000px;}
.x3{left:446.474880px;}
.x18{left:453.000000px;}
.x10{left:473.040000px;}
.x30{left:489.000000px;}
.x36{left:493.500000px;}
.x14{left:500.040000px;}
.x1{left:514.061640px;}
.x2c{left:517.500000px;}
.x31{left:541.500000px;}
.x23{left:568.500000px;}
.x1f{left:588.000000px;}
.x1c{left:597.000000px;}
.x7{left:603.506520px;}
.x32{left:606.000000px;}
.x19{left:612.000000px;}
.x27{left:639.000000px;}
.x2d{left:657.000000px;}
.x33{left:672.000000px;}
.x37{left:710.174880px;}
.x24{left:715.500000px;}
.x39{left:716.834880px;}
.x34{left:729.000000px;}
.x6{left:751.498920px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls30{letter-spacing:-0.452352pt;}
.ls1c{letter-spacing:-0.408576pt;}
.ls21{letter-spacing:-0.370944pt;}
.ls32{letter-spacing:-0.354816pt;}
.ls22{letter-spacing:-0.338688pt;}
.ls31{letter-spacing:-0.321024pt;}
.ls1a{letter-spacing:-0.301056pt;}
.ls1b{letter-spacing:-0.284928pt;}
.ls20{letter-spacing:-0.268800pt;}
.ls2f{letter-spacing:-0.243200pt;}
.ls33{letter-spacing:-0.241920pt;}
.ls12{letter-spacing:-0.231168pt;}
.ls1d{letter-spacing:-0.215040pt;}
.ls1e{letter-spacing:-0.198912pt;}
.ls17{letter-spacing:-0.176640pt;}
.ls15{letter-spacing:-0.155904pt;}
.ls1f{letter-spacing:-0.139776pt;}
.ls11{letter-spacing:-0.135424pt;}
.ls10{letter-spacing:-0.129536pt;}
.ls13{letter-spacing:-0.129024pt;}
.ls16{letter-spacing:-0.117760pt;}
.ls14{letter-spacing:-0.107520pt;}
.lsf{letter-spacing:-0.105984pt;}
.lse{letter-spacing:-0.070656pt;}
.lsd{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053376pt;}
.ls2e{letter-spacing:0.092160pt;}
.ls0{letter-spacing:0.106240pt;}
.ls24{letter-spacing:0.109824pt;}
.ls25{letter-spacing:0.143616pt;}
.lsb{letter-spacing:0.211200pt;}
.ls1{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.213760pt;}
.ls26{letter-spacing:0.215424pt;}
.ls19{letter-spacing:0.252416pt;}
.ls23{letter-spacing:0.253440pt;}
.ls18{letter-spacing:0.319232pt;}
.ls9{letter-spacing:3.836032pt;}
.ls2b{letter-spacing:3.973120pt;}
.ls8{letter-spacing:4.015616pt;}
.ls35{letter-spacing:4.748800pt;}
.ls4{letter-spacing:5.711104pt;}
.ls5{letter-spacing:5.844480pt;}
.ls6{letter-spacing:5.845760pt;}
.ls36{letter-spacing:6.054784pt;}
.ls34{letter-spacing:6.177152pt;}
.lsa{letter-spacing:6.794368pt;}
.ls2d{letter-spacing:7.892480pt;}
.ls28{letter-spacing:8.546944pt;}
.lsc{letter-spacing:9.931008pt;}
.ls2c{letter-spacing:10.224640pt;}
.ls3a{letter-spacing:14.387200pt;}
.ls3b{letter-spacing:14.388096pt;}
.ls7{letter-spacing:14.471552pt;}
.ls37{letter-spacing:14.884224pt;}
.ls27{letter-spacing:17.402496pt;}
.ls38{letter-spacing:37.948032pt;}
.ls39{letter-spacing:41.054720pt;}
.ls2a{letter-spacing:56.522240pt;}
.ls29{letter-spacing:56.523520pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.310976pt;}
.ws11{word-spacing:-13.300224pt;}
.wsb{word-spacing:-13.284096pt;}
.ws12{word-spacing:-13.241088pt;}
.ws6{word-spacing:-13.224960pt;}
.ws4{word-spacing:-13.208832pt;}
.ws14{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws15{word-spacing:-13.171200pt;}
.ws9{word-spacing:-13.155072pt;}
.ws8{word-spacing:-13.138944pt;}
.wsc{word-spacing:-13.101312pt;}
.wse{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.916800pt;}
.ws10{word-spacing:-11.838976pt;}
.ws13{word-spacing:-0.053760pt;}
.wsd{word-spacing:0.000000pt;}
._2c{margin-left:-3.779072pt;}
._12{margin-left:-2.787584pt;}
._d{margin-left:-1.835776pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._b{width:2.042880pt;}
._9{width:2.956800pt;}
._8{width:3.924480pt;}
._a{width:4.945920pt;}
._2{width:6.144640pt;}
._e{width:7.889920pt;}
._6{width:9.221632pt;}
._3{width:10.644480pt;}
._c{width:11.719680pt;}
._5{width:14.165888pt;}
._4{width:15.064832pt;}
._14{width:16.321536pt;}
._10{width:17.633280pt;}
._7{width:18.708480pt;}
._f{width:19.783680pt;}
._2d{width:20.706048pt;}
._11{width:21.665280pt;}
._1e{width:22.740480pt;}
._17{width:24.192000pt;}
._32{width:25.159680pt;}
._18{width:26.234880pt;}
._16{width:27.363840pt;}
._2b{width:28.439040pt;}
._1a{width:29.568000pt;}
._29{width:31.252480pt;}
._35{width:32.166400pt;}
._19{width:33.277440pt;}
._20{width:34.693120pt;}
._39{width:35.808384pt;}
._33{width:37.847040pt;}
._31{width:39.674880pt;}
._1b{width:40.857600pt;}
._2e{width:42.205824pt;}
._24{width:43.434752pt;}
._2f{width:44.409088pt;}
._1f{width:45.844352pt;}
._15{width:46.824960pt;}
._13{width:47.846400pt;}
._3a{width:49.728000pt;}
._34{width:52.523520pt;}
._38{width:53.437440pt;}
._28{width:56.283136pt;}
._27{width:57.326080pt;}
._26{width:58.764544pt;}
._25{width:59.677824pt;}
._23{width:62.113024pt;}
._1c{width:63.060480pt;}
._37{width:68.759040pt;}
._36{width:69.672960pt;}
._30{width:71.554560pt;}
._22{width:72.898560pt;}
._21{width:77.898240pt;}
._2a{width:79.020544pt;}
._1d{width:89.349120pt;}
.fs1{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y3f{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:1.546667pt;}
.yef{bottom:3.306667pt;}
.yae{bottom:3.360000pt;}
.yd5{bottom:3.573333pt;}
.yc3{bottom:3.626667pt;}
.ybc{bottom:4.000000pt;}
.yde{bottom:4.213333pt;}
.ycb{bottom:4.266667pt;}
.yee{bottom:18.666667pt;}
.yf5{bottom:18.933333pt;}
.yf1{bottom:19.306667pt;}
.yb5{bottom:19.360000pt;}
.yf3{bottom:19.626667pt;}
.yec{bottom:34.720000pt;}
.y41{bottom:47.680000pt;}
.yeb{bottom:50.080000pt;}
.yb0{bottom:51.360000pt;}
.y6{bottom:51.840000pt;}
.y3d{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.y13a{bottom:100.800000pt;}
.y78{bottom:104.000000pt;}
.yea{bottom:107.520000pt;}
.y184{bottom:109.440000pt;}
.yac{bottom:110.720000pt;}
.y10a{bottom:111.680000pt;}
.y3c{bottom:112.320000pt;}
.y162{bottom:114.880000pt;}
.y139{bottom:116.160000pt;}
.y77{bottom:119.360000pt;}
.y183{bottom:124.800000pt;}
.ye9{bottom:126.400000pt;}
.y109{bottom:127.040000pt;}
.y3b{bottom:127.680000pt;}
.y161{bottom:130.240000pt;}
.y138{bottom:131.520000pt;}
.yab{bottom:134.080000pt;}
.y76{bottom:135.680000pt;}
.y182{bottom:140.160000pt;}
.y3a{bottom:143.040000pt;}
.ye8{bottom:144.960000pt;}
.y160{bottom:145.600000pt;}
.y137{bottom:146.880000pt;}
.yaa{bottom:149.440000pt;}
.y108{bottom:150.400000pt;}
.y181{bottom:155.520000pt;}
.y39{bottom:158.400000pt;}
.y75{bottom:159.040000pt;}
.y15f{bottom:160.960000pt;}
.y136{bottom:162.240000pt;}
.ye7{bottom:163.840000pt;}
.ya9{bottom:164.800000pt;}
.y107{bottom:165.760000pt;}
.y180{bottom:170.880000pt;}
.y38{bottom:173.760000pt;}
.y74{bottom:174.400000pt;}
.y135{bottom:177.600000pt;}
.ya8{bottom:180.160000pt;}
.y106{bottom:181.120000pt;}
.ye6{bottom:182.720000pt;}
.y15e{bottom:184.000000pt;}
.y17f{bottom:186.240000pt;}
.y37{bottom:189.120000pt;}
.y73{bottom:190.400000pt;}
.y134{bottom:192.960000pt;}
.ya7{bottom:195.200000pt;}
.y105{bottom:196.480000pt;}
.ye5{bottom:201.280000pt;}
.y17e{bottom:201.600000pt;}
.y36{bottom:204.480000pt;}
.y72{bottom:205.760000pt;}
.y15d{bottom:207.360000pt;}
.y133{bottom:208.320000pt;}
.y104{bottom:211.520000pt;}
.y17d{bottom:216.960000pt;}
.ya6{bottom:218.560000pt;}
.ye4{bottom:219.520000pt;}
.y35{bottom:219.840000pt;}
.y15c{bottom:222.720000pt;}
.y132{bottom:223.360000pt;}
.y71{bottom:230.080000pt;}
.y17c{bottom:232.320000pt;}
.ya5{bottom:233.920000pt;}
.ye3{bottom:234.880000pt;}
.y34{bottom:235.200000pt;}
.y15b{bottom:238.080000pt;}
.y131{bottom:238.720000pt;}
.y70{bottom:245.440000pt;}
.ye2{bottom:246.666667pt;}
.y17b{bottom:247.360000pt;}
.ya4{bottom:249.280000pt;}
.y103{bottom:250.240000pt;}
.y33{bottom:250.560000pt;}
.y15a{bottom:253.440000pt;}
.y130{bottom:254.080000pt;}
.y6f{bottom:260.800000pt;}
.ye1{bottom:262.666667pt;}
.y17a{bottom:262.720000pt;}
.ya3{bottom:264.640000pt;}
.y32{bottom:265.600000pt;}
.y159{bottom:268.800000pt;}
.y12f{bottom:269.440000pt;}
.y179{bottom:278.080000pt;}
.ye0{bottom:278.666667pt;}
.ya2{bottom:280.000000pt;}
.y102{bottom:280.960000pt;}
.y6e{bottom:284.160000pt;}
.y151{bottom:284.800000pt;}
.y31{bottom:288.960000pt;}
.y12e{bottom:292.800000pt;}
.y101{bottom:293.440000pt;}
.ydf{bottom:294.666667pt;}
.ya1{bottom:295.360000pt;}
.y6d{bottom:299.520000pt;}
.y150{bottom:300.160000pt;}
.y12d{bottom:308.160000pt;}
.y178{bottom:308.800000pt;}
.ydd{bottom:310.666667pt;}
.ya0{bottom:310.720000pt;}
.y30{bottom:313.600000pt;}
.y6c{bottom:314.880000pt;}
.y14f{bottom:315.520000pt;}
.y158{bottom:322.880000pt;}
.y12c{bottom:323.520000pt;}
.y177{bottom:324.160000pt;}
.y2f{bottom:326.080000pt;}
.y6b{bottom:330.240000pt;}
.ydc{bottom:330.880000pt;}
.y2e{bottom:338.240000pt;}
.y12b{bottom:338.880000pt;}
.y176{bottom:339.520000pt;}
.y9f{bottom:341.440000pt;}
.y6a{bottom:345.600000pt;}
.ydb{bottom:346.240000pt;}
.y2d{bottom:350.720000pt;}
.y157{bottom:353.600000pt;}
.y12a{bottom:354.240000pt;}
.y175{bottom:354.880000pt;}
.y9e{bottom:356.800000pt;}
.yda{bottom:358.666667pt;}
.y69{bottom:360.960000pt;}
.y14e{bottom:361.600000pt;}
.y2c{bottom:364.160000pt;}
.y156{bottom:368.960000pt;}
.y129{bottom:369.600000pt;}
.y174{bottom:370.240000pt;}
.y9d{bottom:372.160000pt;}
.yd9{bottom:374.666667pt;}
.y68{bottom:376.000000pt;}
.y14d{bottom:376.960000pt;}
.y2b{bottom:379.520000pt;}
.y155{bottom:384.000000pt;}
.y128{bottom:384.960000pt;}
.y173{bottom:385.600000pt;}
.yd8{bottom:390.666667pt;}
.y67{bottom:391.360000pt;}
.y14c{bottom:392.000000pt;}
.y2a{bottom:394.880000pt;}
.y9c{bottom:395.200000pt;}
.y154{bottom:399.360000pt;}
.y127{bottom:400.000000pt;}
.y172{bottom:400.960000pt;}
.yd7{bottom:406.666667pt;}
.y66{bottom:406.720000pt;}
.y14b{bottom:407.360000pt;}
.y29{bottom:410.240000pt;}
.y9b{bottom:410.560000pt;}
.y126{bottom:415.360000pt;}
.y171{bottom:416.000000pt;}
.yd6{bottom:422.666667pt;}
.y14a{bottom:422.720000pt;}
.y28{bottom:425.600000pt;}
.y9a{bottom:425.920000pt;}
.y65{bottom:430.080000pt;}
.y125{bottom:430.720000pt;}
.y170{bottom:431.360000pt;}
.y149{bottom:438.080000pt;}
.y100{bottom:438.400000pt;}
.yd4{bottom:438.666667pt;}
.y27{bottom:440.640000pt;}
.y99{bottom:442.240000pt;}
.y124{bottom:446.080000pt;}
.y16f{bottom:446.720000pt;}
.y64{bottom:453.440000pt;}
.yff{bottom:453.760000pt;}
.y26{bottom:456.000000pt;}
.y98{bottom:457.600000pt;}
.yd3{bottom:458.240000pt;}
.y123{bottom:461.440000pt;}
.y16e{bottom:462.080000pt;}
.yfe{bottom:466.240000pt;}
.y63{bottom:468.800000pt;}
.y25{bottom:471.360000pt;}
.y97{bottom:472.960000pt;}
.yd2{bottom:473.600000pt;}
.y122{bottom:476.800000pt;}
.y16d{bottom:477.440000pt;}
.y62{bottom:484.160000pt;}
.yd1{bottom:485.333333pt;}
.y24{bottom:486.720000pt;}
.y96{bottom:488.320000pt;}
.y121{bottom:492.160000pt;}
.y16c{bottom:492.800000pt;}
.y61{bottom:499.520000pt;}
.yd0{bottom:501.333333pt;}
.y23{bottom:502.080000pt;}
.y95{bottom:504.640000pt;}
.y16b{bottom:508.160000pt;}
.y60{bottom:514.880000pt;}
.y120{bottom:515.520000pt;}
.ycf{bottom:517.333333pt;}
.y22{bottom:517.440000pt;}
.y94{bottom:520.000000pt;}
.y16a{bottom:523.520000pt;}
.y5f{bottom:530.240000pt;}
.y11f{bottom:530.880000pt;}
.y21{bottom:532.800000pt;}
.yce{bottom:533.333333pt;}
.y169{bottom:538.880000pt;}
.y93{bottom:544.320000pt;}
.y5e{bottom:545.600000pt;}
.y11e{bottom:546.240000pt;}
.y20{bottom:548.160000pt;}
.ycd{bottom:549.333333pt;}
.y168{bottom:554.240000pt;}
.y148{bottom:560.960000pt;}
.y11d{bottom:561.600000pt;}
.y1f{bottom:563.520000pt;}
.ycc{bottom:565.333333pt;}
.y92{bottom:567.680000pt;}
.y5d{bottom:568.960000pt;}
.y167{bottom:569.600000pt;}
.y147{bottom:576.000000pt;}
.y11c{bottom:576.960000pt;}
.y1e{bottom:578.880000pt;}
.yca{bottom:581.333333pt;}
.y91{bottom:582.720000pt;}
.y5c{bottom:584.000000pt;}
.y166{bottom:584.960000pt;}
.y146{bottom:591.360000pt;}
.y11b{bottom:592.000000pt;}
.y1d{bottom:594.240000pt;}
.y90{bottom:598.080000pt;}
.y5b{bottom:599.360000pt;}
.y165{bottom:600.000000pt;}
.yc9{bottom:601.600000pt;}
.y145{bottom:606.720000pt;}
.y11a{bottom:607.360000pt;}
.y1c{bottom:609.280000pt;}
.y8f{bottom:614.400000pt;}
.y5a{bottom:614.720000pt;}
.y164{bottom:615.360000pt;}
.yc8{bottom:616.960000pt;}
.y144{bottom:622.080000pt;}
.y119{bottom:622.720000pt;}
.y1b{bottom:624.640000pt;}
.yc7{bottom:629.333333pt;}
.y8e{bottom:629.760000pt;}
.y59{bottom:630.080000pt;}
.y163{bottom:630.720000pt;}
.y143{bottom:637.440000pt;}
.y153{bottom:638.080000pt;}
.y1a{bottom:640.000000pt;}
.yc6{bottom:645.333333pt;}
.y58{bottom:645.440000pt;}
.y8d{bottom:646.080000pt;}
.y142{bottom:652.800000pt;}
.y152{bottom:653.440000pt;}
.y19{bottom:655.360000pt;}
.yc5{bottom:661.333333pt;}
.y8c{bottom:661.440000pt;}
.y141{bottom:668.160000pt;}
.y57{bottom:668.800000pt;}
.y18{bottom:670.720000pt;}
.y8b{bottom:676.800000pt;}
.yc4{bottom:677.333333pt;}
.y140{bottom:683.520000pt;}
.y56{bottom:684.160000pt;}
.y17{bottom:686.080000pt;}
.y118{bottom:692.160000pt;}
.y8a{bottom:693.120000pt;}
.yc2{bottom:693.333333pt;}
.yfd{bottom:698.880000pt;}
.y55{bottom:699.520000pt;}
.y16{bottom:701.440000pt;}
.y117{bottom:707.520000pt;}
.y89{bottom:708.480000pt;}
.yfc{bottom:710.666667pt;}
.yc1{bottom:712.640000pt;}
.y13f{bottom:714.240000pt;}
.y54{bottom:714.880000pt;}
.y15{bottom:716.800000pt;}
.y116{bottom:722.880000pt;}
.y88{bottom:723.840000pt;}
.yfb{bottom:726.666667pt;}
.yc0{bottom:728.000000pt;}
.y13e{bottom:729.600000pt;}
.y53{bottom:730.240000pt;}
.y14{bottom:734.080000pt;}
.y115{bottom:738.240000pt;}
.y87{bottom:739.200000pt;}
.ybf{bottom:740.000000pt;}
.yfa{bottom:742.666667pt;}
.y13d{bottom:744.640000pt;}
.y52{bottom:745.600000pt;}
.y13{bottom:749.440000pt;}
.y114{bottom:753.600000pt;}
.y86{bottom:754.240000pt;}
.ybe{bottom:756.000000pt;}
.yf9{bottom:758.666667pt;}
.y13c{bottom:760.000000pt;}
.y51{bottom:760.640000pt;}
.y12{bottom:764.800000pt;}
.y113{bottom:768.640000pt;}
.y85{bottom:770.560000pt;}
.ybd{bottom:772.000000pt;}
.yf8{bottom:774.666667pt;}
.y50{bottom:776.000000pt;}
.y11{bottom:782.080000pt;}
.y13b{bottom:783.360000pt;}
.y112{bottom:784.000000pt;}
.y84{bottom:785.920000pt;}
.ybb{bottom:788.000000pt;}
.y4f{bottom:791.360000pt;}
.yf7{bottom:794.880000pt;}
.y111{bottom:799.360000pt;}
.y10{bottom:802.240000pt;}
.y4e{bottom:806.720000pt;}
.yba{bottom:808.000000pt;}
.yf6{bottom:810.240000pt;}
.yf{bottom:812.800000pt;}
.y110{bottom:814.720000pt;}
.y83{bottom:817.600000pt;}
.y4d{bottom:822.080000pt;}
.yf4{bottom:822.666667pt;}
.yb9{bottom:823.360000pt;}
.y10f{bottom:830.080000pt;}
.ye{bottom:832.960000pt;}
.yb7{bottom:836.000000pt;}
.y4c{bottom:837.440000pt;}
.yd{bottom:843.520000pt;}
.y10e{bottom:845.440000pt;}
.y82{bottom:848.320000pt;}
.yb8{bottom:852.000000pt;}
.y4b{bottom:852.800000pt;}
.yf2{bottom:853.333333pt;}
.y10d{bottom:860.800000pt;}
.yc{bottom:863.680000pt;}
.yb4{bottom:868.000000pt;}
.y4a{bottom:868.160000pt;}
.y81{bottom:871.680000pt;}
.y10c{bottom:876.160000pt;}
.yb{bottom:882.880000pt;}
.y49{bottom:883.520000pt;}
.yb6{bottom:884.000000pt;}
.yf0{bottom:885.333333pt;}
.y80{bottom:887.040000pt;}
.y10b{bottom:891.520000pt;}
.yaf{bottom:900.000000pt;}
.y7f{bottom:903.360000pt;}
.y48{bottom:906.880000pt;}
.ya{bottom:909.760000pt;}
.yb3{bottom:916.000000pt;}
.yed{bottom:917.333333pt;}
.y47{bottom:922.240000pt;}
.y7e{bottom:927.360000pt;}
.y9{bottom:931.200000pt;}
.yb2{bottom:932.000000pt;}
.y46{bottom:937.600000pt;}
.yb1{bottom:948.000000pt;}
.y7d{bottom:950.720000pt;}
.y8{bottom:952.640000pt;}
.yad{bottom:964.000000pt;}
.y7c{bottom:966.080000pt;}
.y45{bottom:968.000000pt;}
.y7b{bottom:982.400000pt;}
.y44{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y7a{bottom:997.760000pt;}
.y43{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y79{bottom:1013.120000pt;}
.y42{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y40{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.he{height:16.000000pt;}
.h11{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h10{height:32.000000pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h12{height:42.656250pt;}
.h3{height:42.751250pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h13{height:62.666667pt;}
.hf{height:64.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w1c{width:46.666667pt;}
.w1f{width:49.333333pt;}
.w1e{width:50.666667pt;}
.w1d{width:58.666667pt;}
.w19{width:60.000000pt;}
.w10{width:61.333333pt;}
.w14{width:76.000000pt;}
.w1a{width:86.666667pt;}
.w1b{width:90.666667pt;}
.w18{width:104.000000pt;}
.w17{width:113.333333pt;}
.wd{width:117.333333pt;}
.w16{width:125.333333pt;}
.we{width:126.666667pt;}
.w13{width:129.333333pt;}
.wf{width:132.000000pt;}
.w4{width:141.333333pt;}
.w5{width:142.666667pt;}
.w15{width:150.666667pt;}
.w6{width:153.333333pt;}
.w3{width:165.333333pt;}
.w9{width:166.666667pt;}
.wc{width:174.666667pt;}
.w8{width:177.333333pt;}
.w12{width:181.333333pt;}
.wb{width:186.666667pt;}
.wa{width:242.666667pt;}
.w7{width:258.666667pt;}
.w11{width:292.000000pt;}
.w20{width:344.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x12{left:1.386709pt;}
.x28{left:6.720000pt;}
.x16{left:7.680032pt;}
.x5{left:96.000000pt;}
.x8{left:97.707680pt;}
.x4{left:100.722336pt;}
.xe{left:108.993472pt;}
.x9{left:116.128256pt;}
.x13{left:120.000000pt;}
.xc{left:122.681632pt;}
.x3a{left:139.369792pt;}
.x11{left:142.666667pt;}
.x2a{left:170.666667pt;}
.x15{left:186.814464pt;}
.x2e{left:200.000000pt;}
.xb{left:210.636064pt;}
.xa{left:218.804032pt;}
.x25{left:222.169280pt;}
.x20{left:223.549472pt;}
.xd{left:234.444640pt;}
.x1d{left:240.844416pt;}
.x1a{left:245.206400pt;}
.x35{left:250.011072pt;}
.x38{left:255.382144pt;}
.x29{left:257.966784pt;}
.x17{left:261.333333pt;}
.x21{left:262.666667pt;}
.x2{left:265.722336pt;}
.xf{left:290.778649pt;}
.x2b{left:320.000000pt;}
.x1e{left:337.333333pt;}
.x2f{left:344.000000pt;}
.x1b{left:354.666667pt;}
.x22{left:380.000000pt;}
.x26{left:386.666667pt;}
.x3{left:396.866560pt;}
.x18{left:402.666667pt;}
.x10{left:420.480000pt;}
.x30{left:434.666667pt;}
.x36{left:438.666667pt;}
.x14{left:444.480000pt;}
.x1{left:456.943680pt;}
.x2c{left:460.000000pt;}
.x31{left:481.333333pt;}
.x23{left:505.333333pt;}
.x1f{left:522.666667pt;}
.x1c{left:530.666667pt;}
.x7{left:536.450240pt;}
.x32{left:538.666667pt;}
.x19{left:544.000000pt;}
.x27{left:568.000000pt;}
.x2d{left:584.000000pt;}
.x33{left:597.333333pt;}
.x37{left:631.266560pt;}
.x24{left:636.000000pt;}
.x39{left:637.186560pt;}
.x34{left:648.000000pt;}
.x6{left:667.999040pt;}
}




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