
    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_558aab98da1eed7e3c3987ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f75d211d0259bdaa24583e2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_7799168202560287083b35db.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_a21f65c88b06500d9b4546e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_91c88c3a2389393395b3da27.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_6f74c5490cb8ae0a8fed8e3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9653aa221dfdeda947cfe08e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097656;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_ccf56996b4cabcda56200fbd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_3cedb79426069c7b05f10d11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_153094908b2aa5161109e395.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_84e181cd674de612c1927883.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_d62dfbf3860eb5f2c5283d93.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899902;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.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,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);}
.v3{vertical-align:-66.240000px;}
.vb{vertical-align:-43.380000px;}
.v7{vertical-align:-34.560000px;}
.va{vertical-align:-30.420000px;}
.v6{vertical-align:-22.320000px;}
.v4{vertical-align:-12.240000px;}
.v1{vertical-align:-9.360000px;}
.vc{vertical-align:-6.007398px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.776345px;}
.v2{vertical-align:9.360000px;}
.v5{vertical-align:12.240000px;}
.v9{vertical-align:30.420000px;}
.v8{vertical-align:46.080000px;}
.ls4b{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.513600px;}
.ls22{letter-spacing:-0.360000px;}
.ls58{letter-spacing:-0.259800px;}
.ls2d{letter-spacing:-0.233400px;}
.ls41{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.206400px;}
.ls47{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053400px;}
.ls20{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.017400px;}
.ls2a{letter-spacing:-0.017280px;}
.lse{letter-spacing:-0.013200px;}
.ls2b{letter-spacing:-0.012960px;}
.ls3e{letter-spacing:-0.008640px;}
.ls36{letter-spacing:-0.004320px;}
.lsf{letter-spacing:-0.004200px;}
.ls2{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.001895px;}
.ls7{letter-spacing:0.004320px;}
.ls9{letter-spacing:0.012960px;}
.ls56{letter-spacing:0.014533px;}
.ls26{letter-spacing:0.017280px;}
.ls1a{letter-spacing:0.017400px;}
.ls57{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.053400px;}
.ls3a{letter-spacing:0.072720px;}
.ls4d{letter-spacing:0.076063px;}
.lsb{letter-spacing:0.078480px;}
.ls0{letter-spacing:0.106800px;}
.ls53{letter-spacing:0.118507px;}
.ls12{letter-spacing:0.120000px;}
.ls3f{letter-spacing:0.126000px;}
.ls4c{letter-spacing:0.130060px;}
.ls42{letter-spacing:0.135600px;}
.ls50{letter-spacing:0.135837px;}
.ls1d{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.182640px;}
.ls25{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.206640px;}
.ls48{letter-spacing:0.258480px;}
.ls3{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.298800px;}
.ls4f{letter-spacing:0.302588px;}
.ls38{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.382800px;}
.ls51{letter-spacing:0.418877px;}
.ls55{letter-spacing:0.476641px;}
.ls52{letter-spacing:0.534404px;}
.ls33{letter-spacing:0.558720px;}
.ls4e{letter-spacing:0.592168px;}
.ls10{letter-spacing:0.612000px;}
.ls1e{letter-spacing:0.666000px;}
.ls3d{letter-spacing:0.714000px;}
.lsa{letter-spacing:0.732960px;}
.ls40{letter-spacing:0.798480px;}
.ls19{letter-spacing:0.828000px;}
.ls21{letter-spacing:0.900000px;}
.ls37{letter-spacing:0.978000px;}
.ls15{letter-spacing:1.080000px;}
.ls49{letter-spacing:2.340000px;}
.ls14{letter-spacing:3.060000px;}
.ls27{letter-spacing:3.240000px;}
.ls3b{letter-spacing:3.780000px;}
.ls13{letter-spacing:5.220000px;}
.ls46{letter-spacing:5.400000px;}
.ls24{letter-spacing:5.940000px;}
.ls4a{letter-spacing:6.660000px;}
.ls59{letter-spacing:7.380000px;}
.ls3c{letter-spacing:7.560000px;}
.ls39{letter-spacing:11.700000px;}
.ls29{letter-spacing:12.420000px;}
.ls34{letter-spacing:13.679280px;}
.ls32{letter-spacing:16.559280px;}
.ls30{letter-spacing:17.279280px;}
.ls2f{letter-spacing:17.459280px;}
.ls2e{letter-spacing:19.439280px;}
.ls35{letter-spacing:20.340000px;}
.ls43{letter-spacing:27.172800px;}
.ls31{letter-spacing:28.799280px;}
.ls1f{letter-spacing:39.905280px;}
.ls44{letter-spacing:44.039280px;}
.ls28{letter-spacing:66.540960px;}
.ls45{letter-spacing:165.780000px;}
.ls1c{letter-spacing:1193.376000px;}
.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;}
}
.ws1b{word-spacing:-30.139800px;}
.wsa{word-spacing:-29.880000px;}
.ws6{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.020000px;}
.ws11{word-spacing:-15.768000px;}
.ws15{word-spacing:-15.606000px;}
.wsc{word-spacing:-15.552000px;}
.ws14{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.199800px;}
.ws23{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993400px;}
.ws0{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.886600px;}
.wsd{word-spacing:-14.833200px;}
.ws27{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.426400px;}
.ws24{word-spacing:-14.323440px;}
.ws22{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.626000px;}
.ws26{word-spacing:-13.500000px;}
.ws1d{word-spacing:-10.434000px;}
.ws12{word-spacing:-9.737400px;}
.ws1a{word-spacing:-9.737280px;}
.ws1e{word-spacing:-9.724320px;}
.ws3{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.715800px;}
.ws1c{word-spacing:-9.715680px;}
.ws1f{word-spacing:-9.711360px;}
.ws19{word-spacing:-9.707040px;}
.ws9{word-spacing:-9.706800px;}
.ws18{word-spacing:-9.702720px;}
.ws8{word-spacing:-9.702600px;}
.ws25{word-spacing:-9.106846px;}
.ws21{word-spacing:-9.000000px;}
.ws2{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.wse{word-spacing:41.760014px;}
.ws28{word-spacing:76.938840px;}
._16{margin-left:-3.510000px;}
._c{margin-left:-2.269565px;}
._1{margin-left:-1.072871px;}
._0{width:1.943395px;}
._5{width:3.075011px;}
._4{width:4.243199px;}
._8{width:5.617201px;}
._9{width:7.148372px;}
._2{width:9.102698px;}
._3{width:10.197878px;}
._10{width:11.280145px;}
._7{width:12.394721px;}
._6{width:13.576217px;}
._18{width:14.590356px;}
._12{width:16.055600px;}
._e{width:17.171199px;}
._d{width:18.286799px;}
._f{width:19.865359px;}
._b{width:20.890243px;}
._a{width:22.035604px;}
._11{width:23.142956px;}
._1c{width:24.165583px;}
._1b{width:25.257886px;}
._19{width:26.712600px;}
._1f{width:32.210640px;}
._20{width:33.551236px;}
._13{width:34.600801px;}
._14{width:35.645167px;}
._1e{width:50.056560px;}
._1d{width:51.135840px;}
._1a{width:54.163439px;}
._28{width:55.648700px;}
._27{width:57.213626px;}
._15{width:58.320014px;}
._21{width:70.815600px;}
._29{width:74.779210px;}
._22{width:77.715840px;}
._2b{width:88.652944px;}
._2a{width:90.058141px;}
._23{width:92.655549px;}
._25{width:117.449794px;}
._24{width:118.564139px;}
._26{width:375.474000px;}
._17{width:849.216000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs1{font-size:38.880000px;}
.fs7{font-size:40.295781px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:46.031691px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:63.378054px;}
.fs2{font-size:66.240000px;}
.fs9{font-size:69.402782px;}
.y0{bottom:0.000000px;}
.y153{bottom:1.501850px;}
.y15a{bottom:2.931495px;}
.y14f{bottom:3.047022px;}
.y151{bottom:4.447785px;}
.y148{bottom:5.949635px;}
.y13{bottom:11.160000px;}
.y16{bottom:11.340000px;}
.y1d{bottom:11.385000px;}
.y15e{bottom:17.280000px;}
.y160{bottom:17.460000px;}
.y68{bottom:20.160000px;}
.yc0{bottom:22.320000px;}
.y11a{bottom:32.400000px;}
.y67{bottom:32.760000px;}
.yb4{bottom:34.020000px;}
.yab{bottom:34.050000px;}
.ya2{bottom:34.245000px;}
.yac{bottom:34.590000px;}
.yb6{bottom:34.740000px;}
.ya3{bottom:34.785000px;}
.y147{bottom:37.705090px;}
.y14a{bottom:39.149176px;}
.yb5{bottom:39.600000px;}
.y11b{bottom:42.660000px;}
.y11e{bottom:42.705000px;}
.y65{bottom:50.220000px;}
.y51{bottom:54.900000px;}
.y53{bottom:54.945000px;}
.yc4{bottom:58.500000px;}
.ybf{bottom:59.400000px;}
.y64{bottom:67.500000px;}
.yc3{bottom:68.580000px;}
.ybe{bottom:69.480000px;}
.yc5{bottom:78.480000px;}
.yc1{bottom:79.200000px;}
.y63{bottom:81.045000px;}
.y124{bottom:99.210000px;}
.y121{bottom:100.440000px;}
.y158{bottom:102.818936px;}
.y14d{bottom:104.219699px;}
.y183{bottom:110.700000px;}
.y78{bottom:110.880000px;}
.y180{bottom:111.420000px;}
.y12e{bottom:122.220000px;}
.y118{bottom:122.400000px;}
.ya0{bottom:124.020000px;}
.y197{bottom:125.280000px;}
.ye9{bottom:127.260000px;}
.y145{bottom:129.600000px;}
.y14c{bottom:137.477004px;}
.y157{bottom:137.520326px;}
.y13c{bottom:140.040000px;}
.yf0{bottom:140.220000px;}
.y92{bottom:141.300000px;}
.y162{bottom:141.660000px;}
.y142{bottom:142.560000px;}
.y182{bottom:142.920000px;}
.y77{bottom:145.260000px;}
.y17f{bottom:145.980000px;}
.ye4{bottom:149.400000px;}
.yf3{bottom:152.850000px;}
.y161{bottom:155.880000px;}
.y117{bottom:156.780000px;}
.y97{bottom:158.220000px;}
.y4b{bottom:158.580000px;}
.ydb{bottom:158.760000px;}
.y196{bottom:159.840000px;}
.y144{bottom:163.980000px;}
.y13b{bottom:174.600000px;}
.y91{bottom:175.860000px;}
.y141{bottom:176.940000px;}
.y76{bottom:179.820000px;}
.y17e{bottom:180.540000px;}
.yda{bottom:181.980000px;}
.yf2{bottom:187.230000px;}
.y12d{bottom:191.160000px;}
.y116{bottom:191.340000px;}
.y4a{bottom:193.140000px;}
.y195{bottom:194.220000px;}
.ye1{bottom:201.990000px;}
.yde{bottom:202.005000px;}
.ybc{bottom:205.020000px;}
.ye6{bottom:206.130000px;}
.y90{bottom:210.270000px;}
.y140{bottom:211.530000px;}
.y75{bottom:214.410000px;}
.y17d{bottom:214.950000px;}
.yeb{bottom:221.625000px;}
.yf1{bottom:221.790000px;}
.yef{bottom:221.805000px;}
.y13a{bottom:225.570000px;}
.y12c{bottom:225.750000px;}
.yed{bottom:225.930000px;}
.y4e{bottom:227.370000px;}
.y49{bottom:227.550000px;}
.y132{bottom:228.270000px;}
.y194{bottom:228.810000px;}
.y143{bottom:230.790000px;}
.ye0{bottom:236.370000px;}
.ydd{bottom:236.385000px;}
.ye3{bottom:236.565000px;}
.ybb{bottom:239.610000px;}
.ye5{bottom:240.690000px;}
.y9f{bottom:244.110000px;}
.y8f{bottom:244.830000px;}
.y13f{bottom:246.090000px;}
.y74{bottom:248.790000px;}
.y17c{bottom:249.510000px;}
.y10d{bottom:256.350000px;}
.y131{bottom:259.410000px;}
.y115{bottom:260.310000px;}
.y48{bottom:262.110000px;}
.y193{bottom:263.190000px;}
.yba{bottom:273.990000px;}
.y8e{bottom:279.390000px;}
.y13e{bottom:280.470000px;}
.y73{bottom:283.350000px;}
.y17b{bottom:283.890000px;}
.yd9{bottom:288.930000px;}
.y130{bottom:290.370000px;}
.y10c{bottom:290.910000px;}
.y139{bottom:294.330000px;}
.y114{bottom:294.870000px;}
.y47{bottom:296.490000px;}
.y192{bottom:297.750000px;}
.yb9{bottom:308.550000px;}
.y8d{bottom:313.770000px;}
.y9e{bottom:315.030000px;}
.y72{bottom:317.910000px;}
.y17a{bottom:318.450000px;}
.y154{bottom:321.420887px;}
.yd8{bottom:323.670000px;}
.y10b{bottom:325.290000px;}
.y138{bottom:325.470000px;}
.y113{bottom:327.090000px;}
.y12b{bottom:329.250000px;}
.y46{bottom:331.050000px;}
.y191{bottom:332.310000px;}
.yb8{bottom:343.110000px;}
.y8c{bottom:348.330000px;}
.y9d{bottom:349.590000px;}
.y71{bottom:352.290000px;}
.y179{bottom:353.010000px;}
.y31{bottom:353.730000px;}
.y137{bottom:356.430000px;}
.yd7{bottom:358.230000px;}
.y10a{bottom:359.850000px;}
.y12a{bottom:363.810000px;}
.y45{bottom:365.610000px;}
.y190{bottom:366.690000px;}
.yee{bottom:376.230000px;}
.yb7{bottom:377.490000px;}
.y30{bottom:379.290000px;}
.y8b{bottom:382.890000px;}
.y9c{bottom:383.970000px;}
.y70{bottom:386.850000px;}
.y178{bottom:387.390000px;}
.y136{bottom:387.570000px;}
.y112{bottom:389.190000px;}
.yd6{bottom:390.450000px;}
.yb3{bottom:390.990000px;}
.y109{bottom:394.410000px;}
.y61{bottom:395.670000px;}
.y129{bottom:398.190000px;}
.y96{bottom:399.990000px;}
.y18f{bottom:401.250000px;}
.ye2{bottom:404.310000px;}
.y2f{bottom:404.670000px;}
.y135{bottom:415.290000px;}
.y8a{bottom:417.270000px;}
.y13d{bottom:418.530000px;}
.y6f{bottom:421.410000px;}
.y177{bottom:421.950000px;}
.y111{bottom:422.490000px;}
.y108{bottom:428.790000px;}
.y60{bottom:430.050000px;}
.y2e{bottom:430.230000px;}
.y44{bottom:434.550000px;}
.y18e{bottom:435.810000px;}
.y128{bottom:440.490000px;}
.y110{bottom:451.515000px;}
.y89{bottom:451.875000px;}
.yd5{bottom:452.595000px;}
.y9b{bottom:453.135000px;}
.y2d{bottom:455.835000px;}
.y176{bottom:456.555000px;}
.yb2{bottom:460.335000px;}
.y107{bottom:463.395000px;}
.y5f{bottom:464.655000px;}
.y43{bottom:469.155000px;}
.y18d{bottom:470.235000px;}
.y6e{bottom:473.115000px;}
.y127{bottom:479.955000px;}
.y2c{bottom:481.215000px;}
.yd4{bottom:483.555000px;}
.y88{bottom:486.435000px;}
.y9a{bottom:487.515000px;}
.y15f{bottom:489.495000px;}
.y6d{bottom:489.855000px;}
.y175{bottom:490.935000px;}
.yb1{bottom:494.715000px;}
.y106{bottom:497.955000px;}
.y5e{bottom:499.215000px;}
.y42{bottom:503.535000px;}
.y18c{bottom:504.795000px;}
.y6c{bottom:505.515000px;}
.y2b{bottom:506.775000px;}
.y126{bottom:514.515000px;}
.yd3{bottom:514.695000px;}
.y6b{bottom:520.635000px;}
.y87{bottom:520.815000px;}
.y99{bottom:522.075000px;}
.y174{bottom:525.495000px;}
.y15b{bottom:528.238577px;}
.yb0{bottom:529.275000px;}
.y150{bottom:531.170072px;}
.y105{bottom:532.335000px;}
.y5d{bottom:533.595000px;}
.y6a{bottom:537.015000px;}
.y41{bottom:538.095000px;}
.y18b{bottom:539.355000px;}
.yd2{bottom:545.655000px;}
.y125{bottom:548.895000px;}
.y2a{bottom:553.215000px;}
.y69{bottom:554.115000px;}
.y86{bottom:555.375000px;}
.y98{bottom:556.635000px;}
.y173{bottom:560.055000px;}
.yaf{bottom:563.655000px;}
.y159{bottom:565.842581px;}
.y104{bottom:566.895000px;}
.y5c{bottom:568.155000px;}
.y66{bottom:568.515000px;}
.y14e{bottom:568.672990px;}
.y40{bottom:572.655000px;}
.y18a{bottom:573.735000px;}
.yd1{bottom:578.955000px;}
.y15c{bottom:587.518314px;}
.y155{bottom:588.962400px;}
.y85{bottom:589.935000px;}
.y10{bottom:591.015000px;}
.y172{bottom:594.435000px;}
.yae{bottom:598.215000px;}
.y103{bottom:601.455000px;}
.y29{bottom:601.995000px;}
.y5b{bottom:602.535000px;}
.y3f{bottom:607.035000px;}
.y189{bottom:608.295000px;}
.y123{bottom:610.635000px;}
.yec{bottom:612.255000px;}
.yd0{bottom:613.515000px;}
.y84{bottom:624.315000px;}
.y181{bottom:625.395000px;}
.yf{bottom:625.575000px;}
.y28{bottom:627.555000px;}
.y171{bottom:628.995000px;}
.yad{bottom:632.775000px;}
.y102{bottom:635.835000px;}
.y5a{bottom:637.095000px;}
.y14b{bottom:641.007266px;}
.y3e{bottom:641.595000px;}
.y156{bottom:642.408030px;}
.y1a5{bottom:642.855000px;}
.yaa{bottom:646.275000px;}
.ycf{bottom:647.895000px;}
.y27{bottom:653.115000px;}
.ydf{bottom:655.095000px;}
.y83{bottom:658.875000px;}
.y188{bottom:659.595000px;}
.ye{bottom:659.955000px;}
.y170{bottom:663.555000px;}
.y101{bottom:670.395000px;}
.y59{bottom:671.655000px;}
.y95{bottom:675.825000px;}
.y185{bottom:676.185000px;}
.y1a4{bottom:677.265000px;}
.y26{bottom:678.525000px;}
.yce{bottom:682.485000px;}
.yd{bottom:694.545000px;}
.y16f{bottom:697.965000px;}
.y25{bottom:704.085000px;}
.y100{bottom:704.985000px;}
.y58{bottom:706.065000px;}
.y3d{bottom:710.565000px;}
.y1a3{bottom:711.825000px;}
.ya9{bottom:715.425000px;}
.ycd{bottom:717.045000px;}
.y94{bottom:727.125000px;}
.y82{bottom:727.845000px;}
.yc{bottom:729.105000px;}
.y24{bottom:729.645000px;}
.y16e{bottom:732.525000px;}
.yff{bottom:739.365000px;}
.y12f{bottom:739.725000px;}
.y57{bottom:740.625000px;}
.y122{bottom:744.225000px;}
.y3c{bottom:745.125000px;}
.y1a2{bottom:746.385000px;}
.ya8{bottom:749.985000px;}
.ycc{bottom:751.425000px;}
.y23{bottom:755.025000px;}
.y120{bottom:757.725000px;}
.y81{bottom:762.405000px;}
.yb{bottom:763.485000px;}
.y16d{bottom:767.085000px;}
.yfe{bottom:773.925000px;}
.y56{bottom:775.185000px;}
.y3b{bottom:779.685000px;}
.y22{bottom:780.585000px;}
.y1a1{bottom:780.765000px;}
.ya7{bottom:784.365000px;}
.ycb{bottom:785.985000px;}
.y134{bottom:788.325000px;}
.y80{bottom:796.785000px;}
.ya{bottom:798.045000px;}
.y10f{bottom:798.765000px;}
.y16c{bottom:801.465000px;}
.y21{bottom:806.145000px;}
.yfd{bottom:808.485000px;}
.y55{bottom:809.565000px;}
.y3a{bottom:814.065000px;}
.y1a0{bottom:815.325000px;}
.y133{bottom:816.045000px;}
.ya6{bottom:818.925000px;}
.yca{bottom:820.545000px;}
.y15d{bottom:823.065000px;}
.y10e{bottom:829.725000px;}
.y7f{bottom:831.345000px;}
.y20{bottom:831.525000px;}
.y9{bottom:832.605000px;}
.y16b{bottom:836.025000px;}
.y62{bottom:837.465000px;}
.yfc{bottom:842.865000px;}
.y54{bottom:844.125000px;}
.y149{bottom:846.284116px;}
.y184{bottom:848.625000px;}
.y19f{bottom:849.885000px;}
.yea{bottom:852.405000px;}
.ya5{bottom:853.485000px;}
.yc9{bottom:854.925000px;}
.y1f{bottom:857.085000px;}
.y7e{bottom:865.905000px;}
.y8{bottom:866.985000px;}
.y16a{bottom:870.585000px;}
.yfb{bottom:877.425000px;}
.y1e{bottom:882.645000px;}
.y39{bottom:883.185000px;}
.y187{bottom:884.265000px;}
.ya4{bottom:887.865000px;}
.yc8{bottom:889.485000px;}
.y11f{bottom:892.725000px;}
.y52{bottom:892.905000px;}
.y7d{bottom:900.285000px;}
.y186{bottom:901.185000px;}
.ya1{bottom:901.365000px;}
.y7{bottom:901.545000px;}
.y169{bottom:904.965000px;}
.ydc{bottom:905.865000px;}
.y11d{bottom:906.225000px;}
.y1c{bottom:908.025000px;}
.yfa{bottom:912.030000px;}
.y38{bottom:917.610000px;}
.y19e{bottom:918.870000px;}
.yc7{bottom:924.090000px;}
.y1b{bottom:933.630000px;}
.y7c{bottom:934.890000px;}
.y6{bottom:936.150000px;}
.y168{bottom:939.570000px;}
.yf9{bottom:946.410000px;}
.y37{bottom:952.170000px;}
.y19d{bottom:953.430000px;}
.yc6{bottom:958.470000px;}
.y1a{bottom:959.190000px;}
.y146{bottom:963.399504px;}
.y7b{bottom:969.450000px;}
.y5{bottom:970.530000px;}
.yc2{bottom:971.970000px;}
.y167{bottom:973.950000px;}
.yf8{bottom:980.970000px;}
.y11c{bottom:983.490000px;}
.y19{bottom:984.570000px;}
.y36{bottom:986.550000px;}
.y19c{bottom:987.810000px;}
.y119{bottom:996.990000px;}
.y50{bottom:997.350000px;}
.y7a{bottom:1003.830000px;}
.y4{bottom:1005.090000px;}
.y166{bottom:1008.510000px;}
.y18{bottom:1010.130000px;}
.yf7{bottom:1015.350000px;}
.y35{bottom:1021.110000px;}
.y19b{bottom:1022.370000px;}
.y17{bottom:1035.690000px;}
.y3{bottom:1039.650000px;}
.y165{bottom:1043.070000px;}
.yf6{bottom:1049.910000px;}
.y79{bottom:1054.770000px;}
.y34{bottom:1055.670000px;}
.y152{bottom:1055.994310px;}
.y19a{bottom:1056.750000px;}
.y15{bottom:1061.070000px;}
.ybd{bottom:1063.950000px;}
.y93{bottom:1074.030000px;}
.y164{bottom:1077.450000px;}
.yf5{bottom:1082.310000px;}
.y14{bottom:1086.630000px;}
.y33{bottom:1090.050000px;}
.y199{bottom:1091.310000px;}
.y4d{bottom:1108.590000px;}
.y163{bottom:1112.010000px;}
.y12{bottom:1112.190000px;}
.yf4{bottom:1113.270000px;}
.ye8{bottom:1121.010000px;}
.y2{bottom:1125.510000px;}
.y198{bottom:1125.870000px;}
.y32{bottom:1141.170000px;}
.y11{bottom:1141.710000px;}
.y1{bottom:1142.790000px;}
.y4f{bottom:1142.970000px;}
.y4c{bottom:1143.150000px;}
.ye7{bottom:1144.410000px;}
.h30{height:13.873336px;}
.h2a{height:15.271211px;}
.h31{height:15.307313px;}
.h2f{height:16.705189px;}
.h29{height:16.813495px;}
.h2c{height:18.211371px;}
.h6{height:24.660000px;}
.h9{height:24.696000px;}
.h7{height:24.840000px;}
.h8{height:24.876000px;}
.h2b{height:34.905867px;}
.h15{height:36.621562px;}
.h12{height:48.096000px;}
.h13{height:48.240000px;}
.h11{height:48.276000px;}
.h26{height:50.999528px;}
.h25{height:51.478784px;}
.h14{height:52.406719px;}
.h2d{height:52.628183px;}
.h27{height:52.912762px;}
.hf{height:52.998047px;}
.he{height:54.421875px;}
.h20{height:56.160000px;}
.h21{height:56.196000px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:60.226875px;}
.h24{height:61.990313px;}
.h5{height:66.757500px;}
.ha{height:68.400000px;}
.hb{height:68.436000px;}
.h10{height:68.956875px;}
.h18{height:91.980000px;}
.h16{height:92.736000px;}
.h17{height:98.486719px;}
.h23{height:112.716000px;}
.h22{height:113.940000px;}
.h28{height:151.239145px;}
.h2e{height:151.282468px;}
.h1d{height:235.110000px;}
.h1f{height:235.290000px;}
.h1e{height:239.430000px;}
.h1a{height:249.870000px;}
.h19{height:249.915000px;}
.h1b{height:250.050000px;}
.h1c{height:254.190000px;}
.hd{height:268.230000px;}
.hc{height:318.315000px;}
.h32{height:332.715000px;}
.h33{height:332.850000px;}
.h34{height:332.895000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:35.570032px;}
.wd{width:38.363573px;}
.w14{width:38.506424px;}
.wf{width:71.640765px;}
.we{width:74.578601px;}
.w4{width:81.540000px;}
.wc{width:103.521187px;}
.w13{width:104.954031px;}
.w2{width:121.140000px;}
.w8{width:171.390000px;}
.w7{width:175.170000px;}
.wb{width:200.338453px;}
.w12{width:201.853545px;}
.wa{width:210.511213px;}
.w11{width:211.910870px;}
.w9{width:418.554991px;}
.w6{width:473.115000px;}
.w3{width:525.705000px;}
.w5{width:636.405000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:4.860000px;}
.x1c{left:7.740000px;}
.x3e{left:9.426758px;}
.xe{left:12.960000px;}
.xd{left:15.300000px;}
.x40{left:19.263313px;}
.x41{left:20.706258px;}
.x47{left:25.583411px;}
.x9{left:27.000000px;}
.x3b{left:28.190812px;}
.x39{left:30.053654px;}
.x45{left:32.091092px;}
.xa{left:34.734000px;}
.x44{left:37.617570px;}
.xc{left:39.954000px;}
.x8{left:41.394000px;}
.xb{left:43.374000px;}
.x11{left:44.994000px;}
.x12{left:47.514000px;}
.x3c{left:48.680628px;}
.x5{left:50.394000px;}
.x10{left:52.194000px;}
.x48{left:53.345668px;}
.xf{left:54.894000px;}
.x16{left:56.340000px;}
.x21{left:84.054000px;}
.x29{left:101.154000px;}
.x28{left:116.094000px;}
.x17{left:119.916000px;}
.x32{left:121.314000px;}
.x4{left:122.796000px;}
.x3{left:127.656000px;}
.x38{left:131.498443px;}
.x22{left:138.234000px;}
.x33{left:142.245000px;}
.x1{left:145.296000px;}
.x2a{left:146.559000px;}
.x1d{left:149.799000px;}
.x1f{left:153.039000px;}
.x13{left:154.650000px;}
.x42{left:172.994573px;}
.x4f{left:175.710000px;}
.x23{left:191.379000px;}
.x2b{left:212.979000px;}
.x3a{left:216.337748px;}
.x14{left:226.830000px;}
.x37{left:227.943353px;}
.x6{left:244.650000px;}
.x20{left:261.039000px;}
.x3d{left:266.987995px;}
.x24{left:283.359000px;}
.x2c{left:291.279000px;}
.x25{left:306.039000px;}
.x1a{left:309.819000px;}
.x19{left:318.099000px;}
.x2{left:326.775000px;}
.x3f{left:339.269428px;}
.x26{left:366.909000px;}
.x2d{left:374.829000px;}
.x27{left:381.489000px;}
.x2e{left:399.129000px;}
.x31{left:438.195000px;}
.x43{left:457.764053px;}
.x46{left:463.492544px;}
.x4a{left:505.438948px;}
.x49{left:512.711390px;}
.x4c{left:529.674000px;}
.x4d{left:554.514000px;}
.x4e{left:573.234000px;}
.x1b{left:581.514000px;}
.x18{left:583.854000px;}
.x2f{left:592.665000px;}
.x34{left:594.105000px;}
.x1e{left:595.545000px;}
.x15{left:659.670000px;}
.x4b{left:668.823585px;}
.x36{left:730.950000px;}
.x35{left:743.910000px;}
.x30{left:762.450000px;}
@media print{
.v3{vertical-align:-58.880000pt;}
.vb{vertical-align:-38.560000pt;}
.v7{vertical-align:-30.720000pt;}
.va{vertical-align:-27.040000pt;}
.v6{vertical-align:-19.840000pt;}
.v4{vertical-align:-10.880000pt;}
.v1{vertical-align:-8.320000pt;}
.vc{vertical-align:-5.339910pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.134529pt;}
.v2{vertical-align:8.320000pt;}
.v5{vertical-align:10.880000pt;}
.v9{vertical-align:27.040000pt;}
.v8{vertical-align:40.960000pt;}
.ls4b{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.456533pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls58{letter-spacing:-0.230933pt;}
.ls2d{letter-spacing:-0.207467pt;}
.ls41{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls47{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047467pt;}
.ls20{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.015467pt;}
.ls2a{letter-spacing:-0.015360pt;}
.lse{letter-spacing:-0.011733pt;}
.ls2b{letter-spacing:-0.011520pt;}
.ls3e{letter-spacing:-0.007680pt;}
.ls36{letter-spacing:-0.003840pt;}
.lsf{letter-spacing:-0.003733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.001684pt;}
.ls7{letter-spacing:0.003840pt;}
.ls9{letter-spacing:0.011520pt;}
.ls56{letter-spacing:0.012918pt;}
.ls26{letter-spacing:0.015360pt;}
.ls1a{letter-spacing:0.015467pt;}
.ls57{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.047467pt;}
.ls3a{letter-spacing:0.064640pt;}
.ls4d{letter-spacing:0.067611pt;}
.lsb{letter-spacing:0.069760pt;}
.ls0{letter-spacing:0.094933pt;}
.ls53{letter-spacing:0.105340pt;}
.ls12{letter-spacing:0.106667pt;}
.ls3f{letter-spacing:0.112000pt;}
.ls4c{letter-spacing:0.115609pt;}
.ls42{letter-spacing:0.120533pt;}
.ls50{letter-spacing:0.120744pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.162347pt;}
.ls25{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.183680pt;}
.ls48{letter-spacing:0.229760pt;}
.ls3{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.265600pt;}
.ls4f{letter-spacing:0.268967pt;}
.ls38{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.340267pt;}
.ls51{letter-spacing:0.372335pt;}
.ls55{letter-spacing:0.423681pt;}
.ls52{letter-spacing:0.475026pt;}
.ls33{letter-spacing:0.496640pt;}
.ls4e{letter-spacing:0.526371pt;}
.ls10{letter-spacing:0.544000pt;}
.ls1e{letter-spacing:0.592000pt;}
.ls3d{letter-spacing:0.634667pt;}
.lsa{letter-spacing:0.651520pt;}
.ls40{letter-spacing:0.709760pt;}
.ls19{letter-spacing:0.736000pt;}
.ls21{letter-spacing:0.800000pt;}
.ls37{letter-spacing:0.869333pt;}
.ls15{letter-spacing:0.960000pt;}
.ls49{letter-spacing:2.080000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls27{letter-spacing:2.880000pt;}
.ls3b{letter-spacing:3.360000pt;}
.ls13{letter-spacing:4.640000pt;}
.ls46{letter-spacing:4.800000pt;}
.ls24{letter-spacing:5.280000pt;}
.ls4a{letter-spacing:5.920000pt;}
.ls59{letter-spacing:6.560000pt;}
.ls3c{letter-spacing:6.720000pt;}
.ls39{letter-spacing:10.400000pt;}
.ls29{letter-spacing:11.040000pt;}
.ls34{letter-spacing:12.159360pt;}
.ls32{letter-spacing:14.719360pt;}
.ls30{letter-spacing:15.359360pt;}
.ls2f{letter-spacing:15.519360pt;}
.ls2e{letter-spacing:17.279360pt;}
.ls35{letter-spacing:18.080000pt;}
.ls43{letter-spacing:24.153600pt;}
.ls31{letter-spacing:25.599360pt;}
.ls1f{letter-spacing:35.471360pt;}
.ls44{letter-spacing:39.146027pt;}
.ls28{letter-spacing:59.147520pt;}
.ls45{letter-spacing:147.360000pt;}
.ls1c{letter-spacing:1060.778667pt;}
.ws1b{word-spacing:-26.790933pt;}
.wsa{word-spacing:-26.560000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.240000pt;}
.ws11{word-spacing:-14.016000pt;}
.ws15{word-spacing:-13.872000pt;}
.wsc{word-spacing:-13.824000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws23{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327467pt;}
.ws0{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.232533pt;}
.wsd{word-spacing:-13.185067pt;}
.ws27{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.823467pt;}
.ws24{word-spacing:-12.731947pt;}
.ws22{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.112000pt;}
.ws26{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-9.274667pt;}
.ws12{word-spacing:-8.655467pt;}
.ws1a{word-spacing:-8.655360pt;}
.ws1e{word-spacing:-8.643840pt;}
.ws3{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.636267pt;}
.ws1c{word-spacing:-8.636160pt;}
.ws1f{word-spacing:-8.632320pt;}
.ws19{word-spacing:-8.628480pt;}
.ws9{word-spacing:-8.628267pt;}
.ws18{word-spacing:-8.624640pt;}
.ws8{word-spacing:-8.624533pt;}
.ws25{word-spacing:-8.094975pt;}
.ws21{word-spacing:-8.000000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.wse{word-spacing:37.120013pt;}
.ws28{word-spacing:68.390080pt;}
._16{margin-left:-3.120000pt;}
._c{margin-left:-2.017391pt;}
._1{margin-left:-0.953663pt;}
._0{width:1.727462pt;}
._5{width:2.733343pt;}
._4{width:3.771732pt;}
._8{width:4.993068pt;}
._9{width:6.354108pt;}
._2{width:8.091287pt;}
._3{width:9.064781pt;}
._10{width:10.026796pt;}
._7{width:11.017529pt;}
._6{width:12.067748pt;}
._18{width:12.969206pt;}
._12{width:14.271644pt;}
._e{width:15.263288pt;}
._d{width:16.254932pt;}
._f{width:17.658097pt;}
._b{width:18.569105pt;}
._a{width:19.587203pt;}
._11{width:20.571517pt;}
._1c{width:21.480518pt;}
._1b{width:22.451454pt;}
._19{width:23.744534pt;}
._1f{width:28.631680pt;}
._20{width:29.823321pt;}
._13{width:30.756268pt;}
._14{width:31.684593pt;}
._1e{width:44.494720pt;}
._1d{width:45.454080pt;}
._1a{width:48.145279pt;}
._28{width:49.465511pt;}
._27{width:50.856557pt;}
._15{width:51.840013pt;}
._21{width:62.947200pt;}
._29{width:66.470409pt;}
._22{width:69.080747pt;}
._2b{width:78.802617pt;}
._2a{width:80.051681pt;}
._23{width:82.360488pt;}
._25{width:104.399817pt;}
._24{width:105.390346pt;}
._26{width:333.754667pt;}
._17{width:754.858667pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:34.560000pt;}
.fs7{font-size:35.818472pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:40.917059pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:56.336048pt;}
.fs2{font-size:58.880000pt;}
.fs9{font-size:61.691361pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:1.334977pt;}
.y15a{bottom:2.605773pt;}
.y14f{bottom:2.708464pt;}
.y151{bottom:3.953587pt;}
.y148{bottom:5.288564pt;}
.y13{bottom:9.920000pt;}
.y16{bottom:10.080000pt;}
.y1d{bottom:10.120000pt;}
.y15e{bottom:15.360000pt;}
.y160{bottom:15.520000pt;}
.y68{bottom:17.920000pt;}
.yc0{bottom:19.840000pt;}
.y11a{bottom:28.800000pt;}
.y67{bottom:29.120000pt;}
.yb4{bottom:30.240000pt;}
.yab{bottom:30.266667pt;}
.ya2{bottom:30.440000pt;}
.yac{bottom:30.746667pt;}
.yb6{bottom:30.880000pt;}
.ya3{bottom:30.920000pt;}
.y147{bottom:33.515636pt;}
.y14a{bottom:34.799268pt;}
.yb5{bottom:35.200000pt;}
.y11b{bottom:37.920000pt;}
.y11e{bottom:37.960000pt;}
.y65{bottom:44.640000pt;}
.y51{bottom:48.800000pt;}
.y53{bottom:48.840000pt;}
.yc4{bottom:52.000000pt;}
.ybf{bottom:52.800000pt;}
.y64{bottom:60.000000pt;}
.yc3{bottom:60.960000pt;}
.ybe{bottom:61.760000pt;}
.yc5{bottom:69.760000pt;}
.yc1{bottom:70.400000pt;}
.y63{bottom:72.040000pt;}
.y124{bottom:88.186667pt;}
.y121{bottom:89.280000pt;}
.y158{bottom:91.394609pt;}
.y14d{bottom:92.639733pt;}
.y183{bottom:98.400000pt;}
.y78{bottom:98.560000pt;}
.y180{bottom:99.040000pt;}
.y12e{bottom:108.640000pt;}
.y118{bottom:108.800000pt;}
.ya0{bottom:110.240000pt;}
.y197{bottom:111.360000pt;}
.ye9{bottom:113.120000pt;}
.y145{bottom:115.200000pt;}
.y14c{bottom:122.201781pt;}
.y157{bottom:122.240290pt;}
.y13c{bottom:124.480000pt;}
.yf0{bottom:124.640000pt;}
.y92{bottom:125.600000pt;}
.y162{bottom:125.920000pt;}
.y142{bottom:126.720000pt;}
.y182{bottom:127.040000pt;}
.y77{bottom:129.120000pt;}
.y17f{bottom:129.760000pt;}
.ye4{bottom:132.800000pt;}
.yf3{bottom:135.866667pt;}
.y161{bottom:138.560000pt;}
.y117{bottom:139.360000pt;}
.y97{bottom:140.640000pt;}
.y4b{bottom:140.960000pt;}
.ydb{bottom:141.120000pt;}
.y196{bottom:142.080000pt;}
.y144{bottom:145.760000pt;}
.y13b{bottom:155.200000pt;}
.y91{bottom:156.320000pt;}
.y141{bottom:157.280000pt;}
.y76{bottom:159.840000pt;}
.y17e{bottom:160.480000pt;}
.yda{bottom:161.760000pt;}
.yf2{bottom:166.426667pt;}
.y12d{bottom:169.920000pt;}
.y116{bottom:170.080000pt;}
.y4a{bottom:171.680000pt;}
.y195{bottom:172.640000pt;}
.ye1{bottom:179.546667pt;}
.yde{bottom:179.560000pt;}
.ybc{bottom:182.240000pt;}
.ye6{bottom:183.226667pt;}
.y90{bottom:186.906667pt;}
.y140{bottom:188.026667pt;}
.y75{bottom:190.586667pt;}
.y17d{bottom:191.066667pt;}
.yeb{bottom:197.000000pt;}
.yf1{bottom:197.146667pt;}
.yef{bottom:197.160000pt;}
.y13a{bottom:200.506667pt;}
.y12c{bottom:200.666667pt;}
.yed{bottom:200.826667pt;}
.y4e{bottom:202.106667pt;}
.y49{bottom:202.266667pt;}
.y132{bottom:202.906667pt;}
.y194{bottom:203.386667pt;}
.y143{bottom:205.146667pt;}
.ye0{bottom:210.106667pt;}
.ydd{bottom:210.120000pt;}
.ye3{bottom:210.280000pt;}
.ybb{bottom:212.986667pt;}
.ye5{bottom:213.946667pt;}
.y9f{bottom:216.986667pt;}
.y8f{bottom:217.626667pt;}
.y13f{bottom:218.746667pt;}
.y74{bottom:221.146667pt;}
.y17c{bottom:221.786667pt;}
.y10d{bottom:227.866667pt;}
.y131{bottom:230.586667pt;}
.y115{bottom:231.386667pt;}
.y48{bottom:232.986667pt;}
.y193{bottom:233.946667pt;}
.yba{bottom:243.546667pt;}
.y8e{bottom:248.346667pt;}
.y13e{bottom:249.306667pt;}
.y73{bottom:251.866667pt;}
.y17b{bottom:252.346667pt;}
.yd9{bottom:256.826667pt;}
.y130{bottom:258.106667pt;}
.y10c{bottom:258.586667pt;}
.y139{bottom:261.626667pt;}
.y114{bottom:262.106667pt;}
.y47{bottom:263.546667pt;}
.y192{bottom:264.666667pt;}
.yb9{bottom:274.266667pt;}
.y8d{bottom:278.906667pt;}
.y9e{bottom:280.026667pt;}
.y72{bottom:282.586667pt;}
.y17a{bottom:283.066667pt;}
.y154{bottom:285.707455pt;}
.yd8{bottom:287.706667pt;}
.y10b{bottom:289.146667pt;}
.y138{bottom:289.306667pt;}
.y113{bottom:290.746667pt;}
.y12b{bottom:292.666667pt;}
.y46{bottom:294.266667pt;}
.y191{bottom:295.386667pt;}
.yb8{bottom:304.986667pt;}
.y8c{bottom:309.626667pt;}
.y9d{bottom:310.746667pt;}
.y71{bottom:313.146667pt;}
.y179{bottom:313.786667pt;}
.y31{bottom:314.426667pt;}
.y137{bottom:316.826667pt;}
.yd7{bottom:318.426667pt;}
.y10a{bottom:319.866667pt;}
.y12a{bottom:323.386667pt;}
.y45{bottom:324.986667pt;}
.y190{bottom:325.946667pt;}
.yee{bottom:334.426667pt;}
.yb7{bottom:335.546667pt;}
.y30{bottom:337.146667pt;}
.y8b{bottom:340.346667pt;}
.y9c{bottom:341.306667pt;}
.y70{bottom:343.866667pt;}
.y178{bottom:344.346667pt;}
.y136{bottom:344.506667pt;}
.y112{bottom:345.946667pt;}
.yd6{bottom:347.066667pt;}
.yb3{bottom:347.546667pt;}
.y109{bottom:350.586667pt;}
.y61{bottom:351.706667pt;}
.y129{bottom:353.946667pt;}
.y96{bottom:355.546667pt;}
.y18f{bottom:356.666667pt;}
.ye2{bottom:359.386667pt;}
.y2f{bottom:359.706667pt;}
.y135{bottom:369.146667pt;}
.y8a{bottom:370.906667pt;}
.y13d{bottom:372.026667pt;}
.y6f{bottom:374.586667pt;}
.y177{bottom:375.066667pt;}
.y111{bottom:375.546667pt;}
.y108{bottom:381.146667pt;}
.y60{bottom:382.266667pt;}
.y2e{bottom:382.426667pt;}
.y44{bottom:386.266667pt;}
.y18e{bottom:387.386667pt;}
.y128{bottom:391.546667pt;}
.y110{bottom:401.346667pt;}
.y89{bottom:401.666667pt;}
.yd5{bottom:402.306667pt;}
.y9b{bottom:402.786667pt;}
.y2d{bottom:405.186667pt;}
.y176{bottom:405.826667pt;}
.yb2{bottom:409.186667pt;}
.y107{bottom:411.906667pt;}
.y5f{bottom:413.026667pt;}
.y43{bottom:417.026667pt;}
.y18d{bottom:417.986667pt;}
.y6e{bottom:420.546667pt;}
.y127{bottom:426.626667pt;}
.y2c{bottom:427.746667pt;}
.yd4{bottom:429.826667pt;}
.y88{bottom:432.386667pt;}
.y9a{bottom:433.346667pt;}
.y15f{bottom:435.106667pt;}
.y6d{bottom:435.426667pt;}
.y175{bottom:436.386667pt;}
.yb1{bottom:439.746667pt;}
.y106{bottom:442.626667pt;}
.y5e{bottom:443.746667pt;}
.y42{bottom:447.586667pt;}
.y18c{bottom:448.706667pt;}
.y6c{bottom:449.346667pt;}
.y2b{bottom:450.466667pt;}
.y126{bottom:457.346667pt;}
.yd3{bottom:457.506667pt;}
.y6b{bottom:462.786667pt;}
.y87{bottom:462.946667pt;}
.y99{bottom:464.066667pt;}
.y174{bottom:467.106667pt;}
.y15b{bottom:469.545401pt;}
.yb0{bottom:470.466667pt;}
.y150{bottom:472.151175pt;}
.y105{bottom:473.186667pt;}
.y5d{bottom:474.306667pt;}
.y6a{bottom:477.346667pt;}
.y41{bottom:478.306667pt;}
.y18b{bottom:479.426667pt;}
.yd2{bottom:485.026667pt;}
.y125{bottom:487.906667pt;}
.y2a{bottom:491.746667pt;}
.y69{bottom:492.546667pt;}
.y86{bottom:493.666667pt;}
.y98{bottom:494.786667pt;}
.y173{bottom:497.826667pt;}
.yaf{bottom:501.026667pt;}
.y159{bottom:502.971183pt;}
.y104{bottom:503.906667pt;}
.y5c{bottom:505.026667pt;}
.y66{bottom:505.346667pt;}
.y14e{bottom:505.487102pt;}
.y40{bottom:509.026667pt;}
.y18a{bottom:509.986667pt;}
.yd1{bottom:514.626667pt;}
.y15c{bottom:522.238501pt;}
.y155{bottom:523.522134pt;}
.y85{bottom:524.386667pt;}
.y10{bottom:525.346667pt;}
.y172{bottom:528.386667pt;}
.yae{bottom:531.746667pt;}
.y103{bottom:534.626667pt;}
.y29{bottom:535.106667pt;}
.y5b{bottom:535.586667pt;}
.y3f{bottom:539.586667pt;}
.y189{bottom:540.706667pt;}
.y123{bottom:542.786667pt;}
.yec{bottom:544.226667pt;}
.yd0{bottom:545.346667pt;}
.y84{bottom:554.946667pt;}
.y181{bottom:555.906667pt;}
.yf{bottom:556.066667pt;}
.y28{bottom:557.826667pt;}
.y171{bottom:559.106667pt;}
.yad{bottom:562.466667pt;}
.y102{bottom:565.186667pt;}
.y5a{bottom:566.306667pt;}
.y14b{bottom:569.784236pt;}
.y3e{bottom:570.306667pt;}
.y156{bottom:571.029360pt;}
.y1a5{bottom:571.426667pt;}
.yaa{bottom:574.466667pt;}
.ycf{bottom:575.906667pt;}
.y27{bottom:580.546667pt;}
.ydf{bottom:582.306667pt;}
.y83{bottom:585.666667pt;}
.y188{bottom:586.306667pt;}
.ye{bottom:586.626667pt;}
.y170{bottom:589.826667pt;}
.y101{bottom:595.906667pt;}
.y59{bottom:597.026667pt;}
.y95{bottom:600.733333pt;}
.y185{bottom:601.053333pt;}
.y1a4{bottom:602.013333pt;}
.y26{bottom:603.133333pt;}
.yce{bottom:606.653333pt;}
.yd{bottom:617.373333pt;}
.y16f{bottom:620.413333pt;}
.y25{bottom:625.853333pt;}
.y100{bottom:626.653333pt;}
.y58{bottom:627.613333pt;}
.y3d{bottom:631.613333pt;}
.y1a3{bottom:632.733333pt;}
.ya9{bottom:635.933333pt;}
.ycd{bottom:637.373333pt;}
.y94{bottom:646.333333pt;}
.y82{bottom:646.973333pt;}
.yc{bottom:648.093333pt;}
.y24{bottom:648.573333pt;}
.y16e{bottom:651.133333pt;}
.yff{bottom:657.213333pt;}
.y12f{bottom:657.533333pt;}
.y57{bottom:658.333333pt;}
.y122{bottom:661.533333pt;}
.y3c{bottom:662.333333pt;}
.y1a2{bottom:663.453333pt;}
.ya8{bottom:666.653333pt;}
.ycc{bottom:667.933333pt;}
.y23{bottom:671.133333pt;}
.y120{bottom:673.533333pt;}
.y81{bottom:677.693333pt;}
.yb{bottom:678.653333pt;}
.y16d{bottom:681.853333pt;}
.yfe{bottom:687.933333pt;}
.y56{bottom:689.053333pt;}
.y3b{bottom:693.053333pt;}
.y22{bottom:693.853333pt;}
.y1a1{bottom:694.013333pt;}
.ya7{bottom:697.213333pt;}
.ycb{bottom:698.653333pt;}
.y134{bottom:700.733333pt;}
.y80{bottom:708.253333pt;}
.ya{bottom:709.373333pt;}
.y10f{bottom:710.013333pt;}
.y16c{bottom:712.413333pt;}
.y21{bottom:716.573333pt;}
.yfd{bottom:718.653333pt;}
.y55{bottom:719.613333pt;}
.y3a{bottom:723.613333pt;}
.y1a0{bottom:724.733333pt;}
.y133{bottom:725.373333pt;}
.ya6{bottom:727.933333pt;}
.yca{bottom:729.373333pt;}
.y15d{bottom:731.613333pt;}
.y10e{bottom:737.533333pt;}
.y7f{bottom:738.973333pt;}
.y20{bottom:739.133333pt;}
.y9{bottom:740.093333pt;}
.y16b{bottom:743.133333pt;}
.y62{bottom:744.413333pt;}
.yfc{bottom:749.213333pt;}
.y54{bottom:750.333333pt;}
.y149{bottom:752.252547pt;}
.y184{bottom:754.333333pt;}
.y19f{bottom:755.453333pt;}
.yea{bottom:757.693333pt;}
.ya5{bottom:758.653333pt;}
.yc9{bottom:759.933333pt;}
.y1f{bottom:761.853333pt;}
.y7e{bottom:769.693333pt;}
.y8{bottom:770.653333pt;}
.y16a{bottom:773.853333pt;}
.yfb{bottom:779.933333pt;}
.y1e{bottom:784.573333pt;}
.y39{bottom:785.053333pt;}
.y187{bottom:786.013333pt;}
.ya4{bottom:789.213333pt;}
.yc8{bottom:790.653333pt;}
.y11f{bottom:793.533333pt;}
.y52{bottom:793.693333pt;}
.y7d{bottom:800.253333pt;}
.y186{bottom:801.053333pt;}
.ya1{bottom:801.213333pt;}
.y7{bottom:801.373333pt;}
.y169{bottom:804.413333pt;}
.ydc{bottom:805.213333pt;}
.y11d{bottom:805.533333pt;}
.y1c{bottom:807.133333pt;}
.yfa{bottom:810.693333pt;}
.y38{bottom:815.653333pt;}
.y19e{bottom:816.773333pt;}
.yc7{bottom:821.413333pt;}
.y1b{bottom:829.893333pt;}
.y7c{bottom:831.013333pt;}
.y6{bottom:832.133333pt;}
.y168{bottom:835.173333pt;}
.yf9{bottom:841.253333pt;}
.y37{bottom:846.373333pt;}
.y19d{bottom:847.493333pt;}
.yc6{bottom:851.973333pt;}
.y1a{bottom:852.613333pt;}
.y146{bottom:856.355115pt;}
.y7b{bottom:861.733333pt;}
.y5{bottom:862.693333pt;}
.yc2{bottom:863.973333pt;}
.y167{bottom:865.733333pt;}
.yf8{bottom:871.973333pt;}
.y11c{bottom:874.213333pt;}
.y19{bottom:875.173333pt;}
.y36{bottom:876.933333pt;}
.y19c{bottom:878.053333pt;}
.y119{bottom:886.213333pt;}
.y50{bottom:886.533333pt;}
.y7a{bottom:892.293333pt;}
.y4{bottom:893.413333pt;}
.y166{bottom:896.453333pt;}
.y18{bottom:897.893333pt;}
.yf7{bottom:902.533333pt;}
.y35{bottom:907.653333pt;}
.y19b{bottom:908.773333pt;}
.y17{bottom:920.613333pt;}
.y3{bottom:924.133333pt;}
.y165{bottom:927.173333pt;}
.yf6{bottom:933.253333pt;}
.y79{bottom:937.573333pt;}
.y34{bottom:938.373333pt;}
.y152{bottom:938.661609pt;}
.y19a{bottom:939.333333pt;}
.y15{bottom:943.173333pt;}
.ybd{bottom:945.733333pt;}
.y93{bottom:954.693333pt;}
.y164{bottom:957.733333pt;}
.yf5{bottom:962.053333pt;}
.y14{bottom:965.893333pt;}
.y33{bottom:968.933333pt;}
.y199{bottom:970.053333pt;}
.y4d{bottom:985.413333pt;}
.y163{bottom:988.453333pt;}
.y12{bottom:988.613333pt;}
.yf4{bottom:989.573333pt;}
.ye8{bottom:996.453333pt;}
.y2{bottom:1000.453333pt;}
.y198{bottom:1000.773333pt;}
.y32{bottom:1014.373333pt;}
.y11{bottom:1014.853333pt;}
.y1{bottom:1015.813333pt;}
.y4f{bottom:1015.973333pt;}
.y4c{bottom:1016.133333pt;}
.ye7{bottom:1017.253333pt;}
.h30{height:12.331854pt;}
.h2a{height:13.574410pt;}
.h31{height:13.606501pt;}
.h2f{height:14.849057pt;}
.h29{height:14.945329pt;}
.h2c{height:16.187885pt;}
.h6{height:21.920000pt;}
.h9{height:21.952000pt;}
.h7{height:22.080000pt;}
.h8{height:22.112000pt;}
.h2b{height:31.027437pt;}
.h15{height:32.552500pt;}
.h12{height:42.752000pt;}
.h13{height:42.880000pt;}
.h11{height:42.912000pt;}
.h26{height:45.332914pt;}
.h25{height:45.758919pt;}
.h14{height:46.583750pt;}
.h2d{height:46.780608pt;}
.h27{height:47.033566pt;}
.hf{height:47.109375pt;}
.he{height:48.375000pt;}
.h20{height:49.920000pt;}
.h21{height:49.952000pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:53.535000pt;}
.h24{height:55.102500pt;}
.h5{height:59.340000pt;}
.ha{height:60.800000pt;}
.hb{height:60.832000pt;}
.h10{height:61.295000pt;}
.h18{height:81.760000pt;}
.h16{height:82.432000pt;}
.h17{height:87.543750pt;}
.h23{height:100.192000pt;}
.h22{height:101.280000pt;}
.h28{height:134.434796pt;}
.h2e{height:134.473305pt;}
.h1d{height:208.986667pt;}
.h1f{height:209.146667pt;}
.h1e{height:212.826667pt;}
.h1a{height:222.106667pt;}
.h19{height:222.146667pt;}
.h1b{height:222.266667pt;}
.h1c{height:225.946667pt;}
.hd{height:238.426667pt;}
.hc{height:282.946667pt;}
.h32{height:295.746667pt;}
.h33{height:295.866667pt;}
.h34{height:295.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:31.617806pt;}
.wd{width:34.100954pt;}
.w14{width:34.227933pt;}
.wf{width:63.680680pt;}
.we{width:66.292090pt;}
.w4{width:72.480000pt;}
.wc{width:92.018833pt;}
.w13{width:93.292472pt;}
.w2{width:107.680000pt;}
.w8{width:152.346667pt;}
.w7{width:155.706667pt;}
.wb{width:178.078625pt;}
.w12{width:179.425373pt;}
.wa{width:187.121079pt;}
.w11{width:188.365218pt;}
.w9{width:372.048881pt;}
.w6{width:420.546667pt;}
.w3{width:467.293333pt;}
.w5{width:565.693333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:4.320000pt;}
.x1c{left:6.880000pt;}
.x3e{left:8.379341pt;}
.xe{left:11.520000pt;}
.xd{left:13.600000pt;}
.x40{left:17.122945pt;}
.x41{left:18.405562pt;}
.x47{left:22.740810pt;}
.x9{left:24.000000pt;}
.x3b{left:25.058500pt;}
.x39{left:26.714359pt;}
.x45{left:28.525415pt;}
.xa{left:30.874667pt;}
.x44{left:33.437840pt;}
.xc{left:35.514667pt;}
.x8{left:36.794667pt;}
.xb{left:38.554667pt;}
.x11{left:39.994667pt;}
.x12{left:42.234667pt;}
.x3c{left:43.271669pt;}
.x5{left:44.794667pt;}
.x10{left:46.394667pt;}
.x48{left:47.418372pt;}
.xf{left:48.794667pt;}
.x16{left:50.080000pt;}
.x21{left:74.714667pt;}
.x29{left:89.914667pt;}
.x28{left:103.194667pt;}
.x17{left:106.592000pt;}
.x32{left:107.834667pt;}
.x4{left:109.152000pt;}
.x3{left:113.472000pt;}
.x38{left:116.887505pt;}
.x22{left:122.874667pt;}
.x33{left:126.440000pt;}
.x1{left:129.152000pt;}
.x2a{left:130.274667pt;}
.x1d{left:133.154667pt;}
.x1f{left:136.034667pt;}
.x13{left:137.466667pt;}
.x42{left:153.772954pt;}
.x4f{left:156.186667pt;}
.x23{left:170.114667pt;}
.x2b{left:189.314667pt;}
.x3a{left:192.300220pt;}
.x14{left:201.626667pt;}
.x37{left:202.616314pt;}
.x6{left:217.466667pt;}
.x20{left:232.034667pt;}
.x3d{left:237.322663pt;}
.x24{left:251.874667pt;}
.x2c{left:258.914667pt;}
.x25{left:272.034667pt;}
.x1a{left:275.394667pt;}
.x19{left:282.754667pt;}
.x2{left:290.466667pt;}
.x3f{left:301.572825pt;}
.x26{left:326.141333pt;}
.x2d{left:333.181333pt;}
.x27{left:339.101333pt;}
.x2e{left:354.781333pt;}
.x31{left:389.506667pt;}
.x43{left:406.901381pt;}
.x46{left:411.993372pt;}
.x4a{left:449.279065pt;}
.x49{left:455.743458pt;}
.x4c{left:470.821333pt;}
.x4d{left:492.901333pt;}
.x4e{left:509.541333pt;}
.x1b{left:516.901333pt;}
.x18{left:518.981333pt;}
.x2f{left:526.813333pt;}
.x34{left:528.093333pt;}
.x1e{left:529.373333pt;}
.x15{left:586.373333pt;}
.x4b{left:594.509854pt;}
.x36{left:649.733333pt;}
.x35{left:661.253333pt;}
.x30{left:677.733333pt;}
}




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