
    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_c8dfe806ccf1115fc019dcc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_d77b91c6f38d26b23578fbbe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.805176;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_0aacb1b42ce15439befb5d8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_aa0e83e2628f30b1e5ca94aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_f8c4408f590530eafd34cabb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_02af13a238d97b8d2b0b7107.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_741f39ca83d047d5e6627ca1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_042f0480e7c19805a34b0003.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_ddca63f76f0fd4906bd2b41f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_f489089728b0d6daca7fcf9e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_ace736cbe5a52fd4b3f648ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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_1cfa01ba855ce7384a87ed8a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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_22f4d69dd868bcf95529043c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.040039;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_44d245cabfffbdd71d8a8c57.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-6.360000px;}
.ls15{letter-spacing:-3.546000px;}
.ls17{letter-spacing:-1.800000px;}
.lsc{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.177600px;}
.ls7{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.ls8{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.186600px;}
.lse{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306600px;}
.lsb{letter-spacing:0.312000px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:8.153280px;}
.ls16{letter-spacing:16.506720px;}
.ls1{letter-spacing:45.468720px;}
.ls13{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.026720px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.252000px;}
.wsf{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.wse{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws10{word-spacing:-13.140000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.200000px;}
.ws4{word-spacing:0.000000px;}
._4a{margin-left:-7.927200px;}
._3{margin-left:-6.915600px;}
._19{margin-left:-5.438160px;}
._5{margin-left:-4.406400px;}
._b{margin-left:-3.286800px;}
._21{margin-left:-2.286240px;}
._0{margin-left:-1.224000px;}
._4{width:1.149120px;}
._1{width:2.184000px;}
._8{width:3.250080px;}
._a{width:4.610880px;}
._6{width:5.858880px;}
._7{width:7.111440px;}
._c{width:9.069840px;}
._9{width:10.145520px;}
._d{width:11.832480px;}
._14{width:13.505760px;}
._1d{width:16.153920px;}
._1a{width:17.868240px;}
._22{width:18.885840px;}
._1e{width:19.886400px;}
._1f{width:20.989440px;}
._18{width:22.512240px;}
._15{width:24.069600px;}
._16{width:25.126560px;}
._1b{width:26.253360px;}
._27{width:27.698160px;}
._26{width:29.282400px;}
._25{width:30.702960px;}
._13{width:32.717520px;}
._12{width:34.003440px;}
._29{width:35.616960px;}
._e{width:37.110960px;}
._2f{width:38.352240px;}
._2a{width:40.243440px;}
._20{width:41.413680px;}
._1c{width:42.847920px;}
._2e{width:44.219520px;}
._28{width:45.324000px;}
._17{width:47.027520px;}
._2d{width:48.332160px;}
._32{width:49.407840px;}
._2c{width:50.855760px;}
._2b{width:52.050960px;}
._30{width:53.186400px;}
._31{width:54.381600px;}
._43{width:55.517040px;}
._49{width:57.358080px;}
._33{width:58.653360px;}
._3b{width:60.403680px;}
._3c{width:61.791840px;}
._42{width:63.138960px;}
._41{width:64.407600px;}
._47{width:67.096800px;}
._40{width:68.590800px;}
._23{width:70.801920px;}
._24{width:72.037200px;}
._35{width:73.564560px;}
._36{width:75.463200px;}
._48{width:77.734080px;}
._46{width:80.138160px;}
._10{width:83.650320px;}
._3e{width:84.739680px;}
._37{width:88.683840px;}
._45{width:94.063920px;}
._44{width:95.436720px;}
._38{width:112.335120px;}
._3a{width:114.022080px;}
._4b{width:118.384560px;}
._3f{width:123.868800px;}
._11{width:127.275120px;}
._f{width:147.666960px;}
._39{width:176.411520px;}
._3d{width:182.314080px;}
._34{width:226.012320px;}
._2{width:303.508320px;}
._4c{width:908.029440px;}
.fc3{color:transparent;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.yd8{bottom:5.760000px;}
.ye2{bottom:5.805000px;}
.y24{bottom:5.940000px;}
.y11{bottom:7.560000px;}
.y6{bottom:13.860000px;}
.y1d2{bottom:15.300000px;}
.y1d0{bottom:15.660000px;}
.y1ce{bottom:15.690000px;}
.y15e{bottom:19.800000px;}
.y176{bottom:19.830000px;}
.y169{bottom:19.845000px;}
.y162{bottom:19.980000px;}
.yd7{bottom:25.560000px;}
.ye1{bottom:25.605000px;}
.y23{bottom:25.740000px;}
.y5{bottom:45.180000px;}
.yd6{bottom:45.360000px;}
.ye0{bottom:45.405000px;}
.y22{bottom:45.540000px;}
.y9{bottom:59.940000px;}
.ye4{bottom:65.160000px;}
.y21{bottom:65.340000px;}
.ydf{bottom:65.385000px;}
.y4{bottom:76.320000px;}
.y3f{bottom:82.980000px;}
.y179{bottom:83.520000px;}
.y20{bottom:85.140000px;}
.yde{bottom:85.185000px;}
.y15b{bottom:85.860000px;}
.y205{bottom:86.220000px;}
.y112{bottom:86.580000px;}
.y129{bottom:86.940000px;}
.ycf{bottom:87.120000px;}
.y1d1{bottom:87.300000px;}
.y9a{bottom:92.700000px;}
.y38{bottom:96.120000px;}
.y76{bottom:98.100000px;}
.y123{bottom:98.820000px;}
.y1a2{bottom:99.720000px;}
.y3e{bottom:102.780000px;}
.y178{bottom:103.320000px;}
.ydb{bottom:104.940000px;}
.ydd{bottom:104.985000px;}
.y1f{bottom:105.120000px;}
.y15a{bottom:105.660000px;}
.y204{bottom:106.020000px;}
.y111{bottom:106.380000px;}
.y128{bottom:106.740000px;}
.ya5{bottom:107.100000px;}
.y3{bottom:107.670000px;}
.y21f{bottom:108.900000px;}
.y99{bottom:112.500000px;}
.y37{bottom:115.920000px;}
.y1cf{bottom:116.640000px;}
.y75{bottom:117.900000px;}
.y122{bottom:118.620000px;}
.y1a1{bottom:119.520000px;}
.yce{bottom:119.700000px;}
.yec{bottom:122.400000px;}
.y3d{bottom:122.760000px;}
.y177{bottom:123.120000px;}
.yda{bottom:124.740000px;}
.y1e{bottom:124.920000px;}
.y159{bottom:125.460000px;}
.y203{bottom:125.820000px;}
.y110{bottom:126.180000px;}
.ya4{bottom:126.900000px;}
.y127{bottom:127.620000px;}
.y21e{bottom:128.700000px;}
.y98{bottom:132.300000px;}
.y36{bottom:135.720000px;}
.y74{bottom:137.700000px;}
.y175{bottom:137.880000px;}
.y121{bottom:138.600000px;}
.y1a0{bottom:139.500000px;}
.y2{bottom:139.530000px;}
.yeb{bottom:142.200000px;}
.y3c{bottom:142.560000px;}
.y1d{bottom:144.720000px;}
.y158{bottom:145.260000px;}
.y202{bottom:145.620000px;}
.y10f{bottom:146.160000px;}
.ya3{bottom:146.700000px;}
.y126{bottom:147.420000px;}
.y1cd{bottom:147.960000px;}
.ycd{bottom:148.500000px;}
.y97{bottom:152.130000px;}
.y35{bottom:155.550000px;}
.y73{bottom:157.530000px;}
.y174{bottom:157.710000px;}
.y120{bottom:158.430000px;}
.y19f{bottom:159.330000px;}
.yea{bottom:162.030000px;}
.y3b{bottom:162.390000px;}
.y1c{bottom:164.550000px;}
.y157{bottom:165.090000px;}
.y21d{bottom:165.450000px;}
.y10e{bottom:165.990000px;}
.ya2{bottom:166.530000px;}
.y125{bottom:167.250000px;}
.ycc{bottom:168.330000px;}
.y96{bottom:172.110000px;}
.y201{bottom:174.450000px;}
.y34{bottom:175.530000px;}
.y72{bottom:177.330000px;}
.y173{bottom:177.690000px;}
.y19e{bottom:179.130000px;}
.y11f{bottom:179.310000px;}
.ye9{bottom:181.830000px;}
.y3a{bottom:182.190000px;}
.y1b{bottom:184.350000px;}
.y1cc{bottom:184.890000px;}
.y156{bottom:185.070000px;}
.y21c{bottom:185.430000px;}
.y10d{bottom:185.790000px;}
.ya1{bottom:186.330000px;}
.y124{bottom:187.230000px;}
.ycb{bottom:188.310000px;}
.y95{bottom:191.910000px;}
.y200{bottom:194.430000px;}
.y71{bottom:197.310000px;}
.y172{bottom:197.490000px;}
.y19d{bottom:198.930000px;}
.y11e{bottom:199.110000px;}
.y33{bottom:199.650000px;}
.ye8{bottom:201.810000px;}
.y39{bottom:201.990000px;}
.y1a{bottom:204.330000px;}
.y1cb{bottom:204.690000px;}
.y155{bottom:204.870000px;}
.y21b{bottom:205.230000px;}
.y10c{bottom:205.590000px;}
.ya0{bottom:206.310000px;}
.yca{bottom:208.110000px;}
.y94{bottom:211.710000px;}
.y1ff{bottom:214.230000px;}
.y70{bottom:217.110000px;}
.y171{bottom:217.290000px;}
.y19c{bottom:218.730000px;}
.y11d{bottom:218.910000px;}
.ye7{bottom:221.610000px;}
.y32{bottom:221.970000px;}
.y19{bottom:224.130000px;}
.y1ca{bottom:224.490000px;}
.y154{bottom:224.670000px;}
.y21a{bottom:225.030000px;}
.y10b{bottom:225.390000px;}
.y9f{bottom:226.110000px;}
.yc9{bottom:227.910000px;}
.y93{bottom:231.510000px;}
.y1fe{bottom:234.030000px;}
.y6f{bottom:236.910000px;}
.y170{bottom:237.090000px;}
.y19b{bottom:238.530000px;}
.y11c{bottom:239.970000px;}
.ye6{bottom:241.410000px;}
.y31{bottom:241.770000px;}
.y18{bottom:243.930000px;}
.y153{bottom:244.470000px;}
.y219{bottom:244.830000px;}
.y10a{bottom:245.370000px;}
.y9e{bottom:245.910000px;}
.yc8{bottom:247.710000px;}
.y92{bottom:251.310000px;}
.y1fd{bottom:253.830000px;}
.y6e{bottom:256.710000px;}
.y16f{bottom:256.890000px;}
.y19a{bottom:258.510000px;}
.y11b{bottom:259.770000px;}
.ye5{bottom:261.210000px;}
.y30{bottom:261.570000px;}
.y17{bottom:263.730000px;}
.y152{bottom:264.270000px;}
.y218{bottom:264.630000px;}
.y109{bottom:265.170000px;}
.y9d{bottom:265.710000px;}
.yc7{bottom:267.510000px;}
.y91{bottom:271.290000px;}
.y1fc{bottom:273.630000px;}
.y6d{bottom:276.510000px;}
.ye3{bottom:276.870000px;}
.y199{bottom:278.310000px;}
.y11a{bottom:280.650000px;}
.y2f{bottom:281.370000px;}
.y16{bottom:283.530000px;}
.y1c9{bottom:284.070000px;}
.y151{bottom:284.250000px;}
.y217{bottom:284.610000px;}
.y108{bottom:284.970000px;}
.y9c{bottom:285.510000px;}
.yc6{bottom:287.490000px;}
.y90{bottom:292.170000px;}
.y1fb{bottom:293.610000px;}
.y6c{bottom:296.490000px;}
.y16e{bottom:296.670000px;}
.y198{bottom:298.110000px;}
.y119{bottom:300.450000px;}
.y2e{bottom:301.170000px;}
.y15{bottom:303.510000px;}
.y1c8{bottom:303.870000px;}
.y150{bottom:304.050000px;}
.y216{bottom:304.410000px;}
.y107{bottom:304.770000px;}
.y9b{bottom:305.490000px;}
.yc5{bottom:307.290000px;}
.y8f{bottom:311.970000px;}
.y1fa{bottom:313.410000px;}
.y6b{bottom:316.290000px;}
.y16d{bottom:316.470000px;}
.y197{bottom:317.910000px;}
.y2d{bottom:321.150000px;}
.y118{bottom:321.330000px;}
.y14{bottom:323.310000px;}
.y1c7{bottom:323.670000px;}
.y14f{bottom:323.850000px;}
.y215{bottom:324.210000px;}
.y106{bottom:324.570000px;}
.y7c{bottom:325.290000px;}
.yc4{bottom:327.090000px;}
.y8e{bottom:331.770000px;}
.y1f9{bottom:333.210000px;}
.y6a{bottom:336.090000px;}
.y16c{bottom:336.270000px;}
.y196{bottom:337.710000px;}
.y2c{bottom:340.950000px;}
.y117{bottom:341.310000px;}
.y13{bottom:343.110000px;}
.y14e{bottom:343.650000px;}
.y214{bottom:344.010000px;}
.y105{bottom:344.550000px;}
.y7b{bottom:345.090000px;}
.yc3{bottom:346.890000px;}
.y8d{bottom:352.650000px;}
.y1f8{bottom:353.010000px;}
.y69{bottom:355.890000px;}
.y16b{bottom:356.070000px;}
.y195{bottom:357.690000px;}
.y2b{bottom:360.750000px;}
.y116{bottom:362.190000px;}
.y14d{bottom:363.450000px;}
.y213{bottom:363.810000px;}
.y104{bottom:364.350000px;}
.y7a{bottom:364.890000px;}
.yc2{bottom:366.690000px;}
.y8c{bottom:372.450000px;}
.y1f7{bottom:372.810000px;}
.y68{bottom:375.690000px;}
.y16a{bottom:376.050000px;}
.y194{bottom:377.490000px;}
.y2a{bottom:380.550000px;}
.y115{bottom:381.990000px;}
.y1c6{bottom:383.250000px;}
.y14c{bottom:383.430000px;}
.y212{bottom:383.790000px;}
.y103{bottom:384.150000px;}
.y79{bottom:384.690000px;}
.yc1{bottom:386.670000px;}
.y1f6{bottom:392.790000px;}
.y8b{bottom:393.510000px;}
.y67{bottom:395.670000px;}
.ydc{bottom:395.850000px;}
.y193{bottom:397.290000px;}
.y29{bottom:400.350000px;}
.y114{bottom:402.915000px;}
.y1c5{bottom:403.095000px;}
.y14b{bottom:403.275000px;}
.y211{bottom:403.635000px;}
.y102{bottom:403.995000px;}
.y78{bottom:404.715000px;}
.yc0{bottom:406.515000px;}
.y1f5{bottom:412.635000px;}
.y8a{bottom:413.355000px;}
.y66{bottom:415.515000px;}
.y168{bottom:415.695000px;}
.y192{bottom:417.135000px;}
.y28{bottom:420.375000px;}
.y113{bottom:422.715000px;}
.y1c4{bottom:422.895000px;}
.y14a{bottom:423.075000px;}
.y210{bottom:423.435000px;}
.y101{bottom:423.795000px;}
.y77{bottom:424.515000px;}
.ybf{bottom:426.315000px;}
.y1f4{bottom:432.435000px;}
.y89{bottom:434.235000px;}
.yd4{bottom:435.315000px;}
.y167{bottom:435.495000px;}
.y191{bottom:436.935000px;}
.y27{bottom:440.175000px;}
.y149{bottom:442.875000px;}
.y20f{bottom:443.235000px;}
.y100{bottom:443.775000px;}
.y65{bottom:444.315000px;}
.ybe{bottom:446.115000px;}
.y1f3{bottom:452.235000px;}
.y88{bottom:454.035000px;}
.yd3{bottom:455.115000px;}
.y166{bottom:455.295000px;}
.y190{bottom:456.915000px;}
.y26{bottom:459.975000px;}
.y148{bottom:462.675000px;}
.y20e{bottom:463.035000px;}
.yff{bottom:463.575000px;}
.y64{bottom:464.115000px;}
.ybd{bottom:465.915000px;}
.y1f2{bottom:472.035000px;}
.y87{bottom:473.835000px;}
.yd2{bottom:474.915000px;}
.y165{bottom:475.275000px;}
.y18f{bottom:476.715000px;}
.y25{bottom:479.775000px;}
.y1c3{bottom:482.475000px;}
.y20d{bottom:483.015000px;}
.yfe{bottom:483.375000px;}
.y63{bottom:483.915000px;}
.ybc{bottom:485.895000px;}
.y147{bottom:491.655000px;}
.y1f1{bottom:492.015000px;}
.y12{bottom:494.535000px;}
.y86{bottom:494.895000px;}
.y164{bottom:495.075000px;}
.y18e{bottom:496.515000px;}
.y1c2{bottom:502.275000px;}
.y20c{bottom:502.815000px;}
.yfd{bottom:503.175000px;}
.y62{bottom:503.895000px;}
.ybb{bottom:505.695000px;}
.y146{bottom:511.455000px;}
.y1f0{bottom:511.815000px;}
.y85{bottom:514.695000px;}
.yd9{bottom:514.875000px;}
.y18d{bottom:516.315000px;}
.y1c1{bottom:522.075000px;}
.y20b{bottom:522.615000px;}
.yfc{bottom:522.975000px;}
.y61{bottom:523.695000px;}
.yba{bottom:525.495000px;}
.y145{bottom:531.255000px;}
.y1ef{bottom:531.615000px;}
.y84{bottom:534.495000px;}
.y163{bottom:534.675000px;}
.y18c{bottom:536.115000px;}
.y1c0{bottom:542.055000px;}
.y20a{bottom:542.415000px;}
.yfb{bottom:542.955000px;}
.y60{bottom:543.495000px;}
.yb9{bottom:545.295000px;}
.y144{bottom:551.055000px;}
.y1ee{bottom:551.415000px;}
.y83{bottom:554.295000px;}
.y161{bottom:554.475000px;}
.y18b{bottom:556.095000px;}
.y1bf{bottom:561.855000px;}
.y209{bottom:562.215000px;}
.yfa{bottom:562.755000px;}
.y5f{bottom:563.295000px;}
.yb8{bottom:565.095000px;}
.y143{bottom:570.855000px;}
.y1ed{bottom:571.215000px;}
.y82{bottom:574.095000px;}
.y160{bottom:574.455000px;}
.y18a{bottom:575.895000px;}
.y1be{bottom:581.655000px;}
.y208{bottom:582.195000px;}
.yf9{bottom:582.555000px;}
.y5e{bottom:583.095000px;}
.yb7{bottom:585.075000px;}
.y142{bottom:590.835000px;}
.y1ec{bottom:591.195000px;}
.y81{bottom:594.075000px;}
.y15f{bottom:594.255000px;}
.y189{bottom:595.695000px;}
.y1bd{bottom:601.455000px;}
.y207{bottom:601.995000px;}
.yf8{bottom:602.355000px;}
.y5d{bottom:603.075000px;}
.yb6{bottom:604.875000px;}
.y141{bottom:610.635000px;}
.y1eb{bottom:610.995000px;}
.y80{bottom:613.875000px;}
.y15d{bottom:614.055000px;}
.y188{bottom:615.495000px;}
.y1bc{bottom:621.255000px;}
.y206{bottom:621.795000px;}
.yf7{bottom:622.155000px;}
.y5c{bottom:622.875000px;}
.yb5{bottom:624.675000px;}
.y140{bottom:630.435000px;}
.y1ea{bottom:630.795000px;}
.y7f{bottom:633.675000px;}
.y15c{bottom:633.855000px;}
.y187{bottom:635.295000px;}
.y1bb{bottom:641.235000px;}
.yf6{bottom:642.135000px;}
.y5b{bottom:642.675000px;}
.yb4{bottom:644.475000px;}
.y13f{bottom:650.265000px;}
.y1e9{bottom:650.625000px;}
.y7e{bottom:653.505000px;}
.yd5{bottom:655.305000px;}
.y1ba{bottom:661.065000px;}
.yf5{bottom:661.965000px;}
.y5a{bottom:662.505000px;}
.yb3{bottom:664.305000px;}
.y13e{bottom:670.065000px;}
.y1e8{bottom:670.425000px;}
.y7d{bottom:673.305000px;}
.y186{bottom:675.105000px;}
.y1b9{bottom:680.865000px;}
.yf4{bottom:681.765000px;}
.y59{bottom:682.305000px;}
.yb2{bottom:684.285000px;}
.y13d{bottom:690.045000px;}
.y1e7{bottom:690.225000px;}
.yd1{bottom:693.285000px;}
.y185{bottom:694.905000px;}
.y1b8{bottom:700.665000px;}
.yf3{bottom:701.565000px;}
.y58{bottom:702.285000px;}
.yb1{bottom:704.085000px;}
.y13c{bottom:709.845000px;}
.y1e6{bottom:710.205000px;}
.yd0{bottom:713.085000px;}
.y184{bottom:714.705000px;}
.y1b7{bottom:720.465000px;}
.yf2{bottom:721.365000px;}
.y57{bottom:722.085000px;}
.y13b{bottom:729.645000px;}
.y1e5{bottom:730.005000px;}
.yb0{bottom:732.885000px;}
.y183{bottom:734.505000px;}
.y1b6{bottom:740.445000px;}
.yf1{bottom:741.345000px;}
.y56{bottom:741.885000px;}
.y13a{bottom:749.445000px;}
.y1e4{bottom:749.805000px;}
.yaf{bottom:752.685000px;}
.y182{bottom:754.485000px;}
.y1b5{bottom:760.245000px;}
.yf0{bottom:761.145000px;}
.y55{bottom:761.685000px;}
.y139{bottom:769.245000px;}
.y1e3{bottom:769.605000px;}
.yae{bottom:772.485000px;}
.y181{bottom:774.285000px;}
.y1b4{bottom:780.045000px;}
.yef{bottom:780.945000px;}
.y54{bottom:781.485000px;}
.y138{bottom:789.225000px;}
.y1e2{bottom:789.405000px;}
.yad{bottom:792.465000px;}
.y180{bottom:794.085000px;}
.y1b3{bottom:799.845000px;}
.yee{bottom:800.745000px;}
.y53{bottom:801.465000px;}
.y1e1{bottom:809.385000px;}
.yac{bottom:812.265000px;}
.y17f{bottom:813.885000px;}
.y1b2{bottom:814.605000px;}
.yed{bottom:817.305000px;}
.y137{bottom:818.025000px;}
.y52{bottom:821.265000px;}
.y1e0{bottom:829.185000px;}
.yab{bottom:832.065000px;}
.y17e{bottom:833.685000px;}
.y1b1{bottom:834.585000px;}
.y136{bottom:837.825000px;}
.y51{bottom:841.065000px;}
.y1df{bottom:848.985000px;}
.yaa{bottom:851.865000px;}
.y10{bottom:852.405000px;}
.y17d{bottom:853.665000px;}
.y1b0{bottom:854.385000px;}
.y135{bottom:857.625000px;}
.y50{bottom:860.865000px;}
.y1de{bottom:868.785000px;}
.ya9{bottom:871.665000px;}
.y17c{bottom:873.465000px;}
.y1af{bottom:874.185000px;}
.y134{bottom:878.505000px;}
.y4f{bottom:880.665000px;}
.yf{bottom:884.985000px;}
.y1dd{bottom:888.585000px;}
.ya8{bottom:891.645000px;}
.y17b{bottom:893.265000px;}
.y1ae{bottom:893.985000px;}
.y133{bottom:898.530000px;}
.y4e{bottom:900.690000px;}
.y1dc{bottom:908.610000px;}
.ye{bottom:910.230000px;}
.ya7{bottom:911.490000px;}
.y17a{bottom:913.830000px;}
.y132{bottom:918.330000px;}
.y4d{bottom:920.490000px;}
.yd{bottom:925.350000px;}
.y1db{bottom:928.410000px;}
.ya6{bottom:931.290000px;}
.y1ad{bottom:933.810000px;}
.y131{bottom:938.130000px;}
.y4c{bottom:940.290000px;}
.yc{bottom:946.590000px;}
.y1da{bottom:948.210000px;}
.y1ac{bottom:953.610000px;}
.y130{bottom:957.930000px;}
.y4b{bottom:960.090000px;}
.y1d9{bottom:968.010000px;}
.yb{bottom:969.990000px;}
.y1ab{bottom:973.410000px;}
.y12f{bottom:977.730000px;}
.y4a{bottom:979.890000px;}
.y1d8{bottom:987.810000px;}
.y1aa{bottom:993.210000px;}
.y12e{bottom:998.790000px;}
.y49{bottom:999.870000px;}
.ya{bottom:1001.850000px;}
.y1d7{bottom:1003.470000px;}
.y1a9{bottom:1013.010000px;}
.y12d{bottom:1018.590000px;}
.y48{bottom:1019.670000px;}
.y8{bottom:1031.190000px;}
.y1d6{bottom:1032.810000px;}
.y1a8{bottom:1032.990000px;}
.y12c{bottom:1038.390000px;}
.y47{bottom:1039.470000px;}
.y1{bottom:1049.190000px;}
.y1a7{bottom:1052.790000px;}
.y12b{bottom:1058.190000px;}
.y46{bottom:1059.270000px;}
.y1d5{bottom:1062.510000px;}
.y1a6{bottom:1072.590000px;}
.y12a{bottom:1077.990000px;}
.y45{bottom:1079.070000px;}
.y1d4{bottom:1091.850000px;}
.y1a5{bottom:1092.390000px;}
.y44{bottom:1099.050000px;}
.y1a4{bottom:1112.190000px;}
.y43{bottom:1118.850000px;}
.y1d3{bottom:1121.550000px;}
.y1a3{bottom:1132.170000px;}
.y42{bottom:1138.650000px;}
.y41{bottom:1168.380000px;}
.y40{bottom:1191.420000px;}
.h19{height:19.800000px;}
.h1a{height:19.836000px;}
.h1b{height:19.980000px;}
.h1d{height:20.016000px;}
.hc{height:26.100000px;}
.h20{height:29.340000px;}
.h1f{height:29.700000px;}
.h1e{height:29.736000px;}
.hb{height:34.855313px;}
.hf{height:42.164648px;}
.h10{height:45.024258px;}
.h7{height:47.933437px;}
.h4{height:48.774375px;}
.h18{height:49.255313px;}
.h12{height:50.510039px;}
.h13{height:51.706406px;}
.h3{height:53.015625px;}
.ha{height:53.224453px;}
.h9{height:53.573906px;}
.h6{height:54.457031px;}
.hd{height:55.735313px;}
.h11{height:55.987031px;}
.h14{height:59.400000px;}
.h5{height:62.028281px;}
.h8{height:67.565039px;}
.h1c{height:79.380000px;}
.h17{height:118.980000px;}
.h16{height:119.016000px;}
.h15{height:138.816000px;}
.h2{height:158.430000px;}
.he{height:357.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:50.256000px;}
.w1a{width:67.176000px;}
.w13{width:72.540000px;}
.w1b{width:79.740000px;}
.w1c{width:84.096000px;}
.w17{width:91.800000px;}
.w10{width:94.176000px;}
.wb{width:96.840000px;}
.w15{width:101.880000px;}
.w16{width:102.096000px;}
.w11{width:104.040000px;}
.w1d{width:104.760000px;}
.wf{width:106.560000px;}
.w14{width:108.756000px;}
.w18{width:117.360000px;}
.we{width:125.496000px;}
.w8{width:131.616000px;}
.wa{width:138.816000px;}
.w3{width:146.736000px;}
.w7{width:163.290000px;}
.w9{width:175.530000px;}
.w19{width:176.610000px;}
.wd{width:218.730000px;}
.wc{width:242.355000px;}
.w6{width:616.830000px;}
.w2{width:637.890000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.180000px;}
.x5{left:56.520000px;}
.x8{left:80.999987px;}
.x9{left:108.035987px;}
.x16{left:130.896000px;}
.x4{left:138.630000px;}
.x12{left:174.090000px;}
.xa{left:185.610000px;}
.x17{left:234.930000px;}
.x1d{left:248.970000px;}
.x18{left:285.195000px;}
.xf{left:335.774987px;}
.x19{left:357.735000px;}
.xb{left:361.155000px;}
.x13{left:392.835000px;}
.x1e{left:425.595000px;}
.x7{left:462.524987px;}
.x1a{left:466.485000px;}
.x10{left:489.524987px;}
.x1f{left:492.765000px;}
.xc{left:499.965000px;}
.x11{left:516.524987px;}
.x14{left:518.325000px;}
.x1b{left:568.365000px;}
.x20{left:572.505000px;}
.xd{left:596.805000px;}
.x15{left:624.885000px;}
.x21{left:656.610000px;}
.x1c{left:670.470000px;}
.x6{left:673.350000px;}
.x3{left:692.070000px;}
.xe{left:770.549987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-5.653333pt;}
.ls15{letter-spacing:-3.152000pt;}
.ls17{letter-spacing:-1.600000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.157867pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.ls8{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.165867pt;}
.lse{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272533pt;}
.lsb{letter-spacing:0.277333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:7.247360pt;}
.ls16{letter-spacing:14.672640pt;}
.ls1{letter-spacing:40.416640pt;}
.ls13{letter-spacing:40.912640pt;}
.ls6{letter-spacing:56.912640pt;}
.ws5{word-spacing:-58.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.557333pt;}
.wsf{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws10{word-spacing:-11.680000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.066667pt;}
.ws4{word-spacing:0.000000pt;}
._4a{margin-left:-7.046400pt;}
._3{margin-left:-6.147200pt;}
._19{margin-left:-4.833920pt;}
._5{margin-left:-3.916800pt;}
._b{margin-left:-2.921600pt;}
._21{margin-left:-2.032213pt;}
._0{margin-left:-1.088000pt;}
._4{width:1.021440pt;}
._1{width:1.941333pt;}
._8{width:2.888960pt;}
._a{width:4.098560pt;}
._6{width:5.207893pt;}
._7{width:6.321280pt;}
._c{width:8.062080pt;}
._9{width:9.018240pt;}
._d{width:10.517760pt;}
._14{width:12.005120pt;}
._1d{width:14.359040pt;}
._1a{width:15.882880pt;}
._22{width:16.787413pt;}
._1e{width:17.676800pt;}
._1f{width:18.657280pt;}
._18{width:20.010880pt;}
._15{width:21.395200pt;}
._16{width:22.334720pt;}
._1b{width:23.336320pt;}
._27{width:24.620587pt;}
._26{width:26.028800pt;}
._25{width:27.291520pt;}
._13{width:29.082240pt;}
._12{width:30.225280pt;}
._29{width:31.659520pt;}
._e{width:32.987520pt;}
._2f{width:34.090880pt;}
._2a{width:35.771947pt;}
._20{width:36.812160pt;}
._1c{width:38.087040pt;}
._2e{width:39.306240pt;}
._28{width:40.288000pt;}
._17{width:41.802240pt;}
._2d{width:42.961920pt;}
._32{width:43.918080pt;}
._2c{width:45.205120pt;}
._2b{width:46.267520pt;}
._30{width:47.276800pt;}
._31{width:48.339200pt;}
._43{width:49.348480pt;}
._49{width:50.984960pt;}
._33{width:52.136320pt;}
._3b{width:53.692160pt;}
._3c{width:54.926080pt;}
._42{width:56.123520pt;}
._41{width:57.251200pt;}
._47{width:59.641600pt;}
._40{width:60.969600pt;}
._23{width:62.935040pt;}
._24{width:64.033067pt;}
._35{width:65.390720pt;}
._36{width:67.078400pt;}
._48{width:69.096960pt;}
._46{width:71.233920pt;}
._10{width:74.355840pt;}
._3e{width:75.324160pt;}
._37{width:78.830080pt;}
._45{width:83.612373pt;}
._44{width:84.832640pt;}
._38{width:99.853440pt;}
._3a{width:101.352960pt;}
._4b{width:105.230720pt;}
._3f{width:110.105600pt;}
._11{width:113.133440pt;}
._f{width:131.259520pt;}
._39{width:156.810240pt;}
._3d{width:162.056960pt;}
._34{width:200.899840pt;}
._2{width:269.785173pt;}
._4c{width:807.137280pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.yd8{bottom:5.120000pt;}
.ye2{bottom:5.160000pt;}
.y24{bottom:5.280000pt;}
.y11{bottom:6.720000pt;}
.y6{bottom:12.320000pt;}
.y1d2{bottom:13.600000pt;}
.y1d0{bottom:13.920000pt;}
.y1ce{bottom:13.946667pt;}
.y15e{bottom:17.600000pt;}
.y176{bottom:17.626667pt;}
.y169{bottom:17.640000pt;}
.y162{bottom:17.760000pt;}
.yd7{bottom:22.720000pt;}
.ye1{bottom:22.760000pt;}
.y23{bottom:22.880000pt;}
.y5{bottom:40.160000pt;}
.yd6{bottom:40.320000pt;}
.ye0{bottom:40.360000pt;}
.y22{bottom:40.480000pt;}
.y9{bottom:53.280000pt;}
.ye4{bottom:57.920000pt;}
.y21{bottom:58.080000pt;}
.ydf{bottom:58.120000pt;}
.y4{bottom:67.840000pt;}
.y3f{bottom:73.760000pt;}
.y179{bottom:74.240000pt;}
.y20{bottom:75.680000pt;}
.yde{bottom:75.720000pt;}
.y15b{bottom:76.320000pt;}
.y205{bottom:76.640000pt;}
.y112{bottom:76.960000pt;}
.y129{bottom:77.280000pt;}
.ycf{bottom:77.440000pt;}
.y1d1{bottom:77.600000pt;}
.y9a{bottom:82.400000pt;}
.y38{bottom:85.440000pt;}
.y76{bottom:87.200000pt;}
.y123{bottom:87.840000pt;}
.y1a2{bottom:88.640000pt;}
.y3e{bottom:91.360000pt;}
.y178{bottom:91.840000pt;}
.ydb{bottom:93.280000pt;}
.ydd{bottom:93.320000pt;}
.y1f{bottom:93.440000pt;}
.y15a{bottom:93.920000pt;}
.y204{bottom:94.240000pt;}
.y111{bottom:94.560000pt;}
.y128{bottom:94.880000pt;}
.ya5{bottom:95.200000pt;}
.y3{bottom:95.706667pt;}
.y21f{bottom:96.800000pt;}
.y99{bottom:100.000000pt;}
.y37{bottom:103.040000pt;}
.y1cf{bottom:103.680000pt;}
.y75{bottom:104.800000pt;}
.y122{bottom:105.440000pt;}
.y1a1{bottom:106.240000pt;}
.yce{bottom:106.400000pt;}
.yec{bottom:108.800000pt;}
.y3d{bottom:109.120000pt;}
.y177{bottom:109.440000pt;}
.yda{bottom:110.880000pt;}
.y1e{bottom:111.040000pt;}
.y159{bottom:111.520000pt;}
.y203{bottom:111.840000pt;}
.y110{bottom:112.160000pt;}
.ya4{bottom:112.800000pt;}
.y127{bottom:113.440000pt;}
.y21e{bottom:114.400000pt;}
.y98{bottom:117.600000pt;}
.y36{bottom:120.640000pt;}
.y74{bottom:122.400000pt;}
.y175{bottom:122.560000pt;}
.y121{bottom:123.200000pt;}
.y1a0{bottom:124.000000pt;}
.y2{bottom:124.026667pt;}
.yeb{bottom:126.400000pt;}
.y3c{bottom:126.720000pt;}
.y1d{bottom:128.640000pt;}
.y158{bottom:129.120000pt;}
.y202{bottom:129.440000pt;}
.y10f{bottom:129.920000pt;}
.ya3{bottom:130.400000pt;}
.y126{bottom:131.040000pt;}
.y1cd{bottom:131.520000pt;}
.ycd{bottom:132.000000pt;}
.y97{bottom:135.226667pt;}
.y35{bottom:138.266667pt;}
.y73{bottom:140.026667pt;}
.y174{bottom:140.186667pt;}
.y120{bottom:140.826667pt;}
.y19f{bottom:141.626667pt;}
.yea{bottom:144.026667pt;}
.y3b{bottom:144.346667pt;}
.y1c{bottom:146.266667pt;}
.y157{bottom:146.746667pt;}
.y21d{bottom:147.066667pt;}
.y10e{bottom:147.546667pt;}
.ya2{bottom:148.026667pt;}
.y125{bottom:148.666667pt;}
.ycc{bottom:149.626667pt;}
.y96{bottom:152.986667pt;}
.y201{bottom:155.066667pt;}
.y34{bottom:156.026667pt;}
.y72{bottom:157.626667pt;}
.y173{bottom:157.946667pt;}
.y19e{bottom:159.226667pt;}
.y11f{bottom:159.386667pt;}
.ye9{bottom:161.626667pt;}
.y3a{bottom:161.946667pt;}
.y1b{bottom:163.866667pt;}
.y1cc{bottom:164.346667pt;}
.y156{bottom:164.506667pt;}
.y21c{bottom:164.826667pt;}
.y10d{bottom:165.146667pt;}
.ya1{bottom:165.626667pt;}
.y124{bottom:166.426667pt;}
.ycb{bottom:167.386667pt;}
.y95{bottom:170.586667pt;}
.y200{bottom:172.826667pt;}
.y71{bottom:175.386667pt;}
.y172{bottom:175.546667pt;}
.y19d{bottom:176.826667pt;}
.y11e{bottom:176.986667pt;}
.y33{bottom:177.466667pt;}
.ye8{bottom:179.386667pt;}
.y39{bottom:179.546667pt;}
.y1a{bottom:181.626667pt;}
.y1cb{bottom:181.946667pt;}
.y155{bottom:182.106667pt;}
.y21b{bottom:182.426667pt;}
.y10c{bottom:182.746667pt;}
.ya0{bottom:183.386667pt;}
.yca{bottom:184.986667pt;}
.y94{bottom:188.186667pt;}
.y1ff{bottom:190.426667pt;}
.y70{bottom:192.986667pt;}
.y171{bottom:193.146667pt;}
.y19c{bottom:194.426667pt;}
.y11d{bottom:194.586667pt;}
.ye7{bottom:196.986667pt;}
.y32{bottom:197.306667pt;}
.y19{bottom:199.226667pt;}
.y1ca{bottom:199.546667pt;}
.y154{bottom:199.706667pt;}
.y21a{bottom:200.026667pt;}
.y10b{bottom:200.346667pt;}
.y9f{bottom:200.986667pt;}
.yc9{bottom:202.586667pt;}
.y93{bottom:205.786667pt;}
.y1fe{bottom:208.026667pt;}
.y6f{bottom:210.586667pt;}
.y170{bottom:210.746667pt;}
.y19b{bottom:212.026667pt;}
.y11c{bottom:213.306667pt;}
.ye6{bottom:214.586667pt;}
.y31{bottom:214.906667pt;}
.y18{bottom:216.826667pt;}
.y153{bottom:217.306667pt;}
.y219{bottom:217.626667pt;}
.y10a{bottom:218.106667pt;}
.y9e{bottom:218.586667pt;}
.yc8{bottom:220.186667pt;}
.y92{bottom:223.386667pt;}
.y1fd{bottom:225.626667pt;}
.y6e{bottom:228.186667pt;}
.y16f{bottom:228.346667pt;}
.y19a{bottom:229.786667pt;}
.y11b{bottom:230.906667pt;}
.ye5{bottom:232.186667pt;}
.y30{bottom:232.506667pt;}
.y17{bottom:234.426667pt;}
.y152{bottom:234.906667pt;}
.y218{bottom:235.226667pt;}
.y109{bottom:235.706667pt;}
.y9d{bottom:236.186667pt;}
.yc7{bottom:237.786667pt;}
.y91{bottom:241.146667pt;}
.y1fc{bottom:243.226667pt;}
.y6d{bottom:245.786667pt;}
.ye3{bottom:246.106667pt;}
.y199{bottom:247.386667pt;}
.y11a{bottom:249.466667pt;}
.y2f{bottom:250.106667pt;}
.y16{bottom:252.026667pt;}
.y1c9{bottom:252.506667pt;}
.y151{bottom:252.666667pt;}
.y217{bottom:252.986667pt;}
.y108{bottom:253.306667pt;}
.y9c{bottom:253.786667pt;}
.yc6{bottom:255.546667pt;}
.y90{bottom:259.706667pt;}
.y1fb{bottom:260.986667pt;}
.y6c{bottom:263.546667pt;}
.y16e{bottom:263.706667pt;}
.y198{bottom:264.986667pt;}
.y119{bottom:267.066667pt;}
.y2e{bottom:267.706667pt;}
.y15{bottom:269.786667pt;}
.y1c8{bottom:270.106667pt;}
.y150{bottom:270.266667pt;}
.y216{bottom:270.586667pt;}
.y107{bottom:270.906667pt;}
.y9b{bottom:271.546667pt;}
.yc5{bottom:273.146667pt;}
.y8f{bottom:277.306667pt;}
.y1fa{bottom:278.586667pt;}
.y6b{bottom:281.146667pt;}
.y16d{bottom:281.306667pt;}
.y197{bottom:282.586667pt;}
.y2d{bottom:285.466667pt;}
.y118{bottom:285.626667pt;}
.y14{bottom:287.386667pt;}
.y1c7{bottom:287.706667pt;}
.y14f{bottom:287.866667pt;}
.y215{bottom:288.186667pt;}
.y106{bottom:288.506667pt;}
.y7c{bottom:289.146667pt;}
.yc4{bottom:290.746667pt;}
.y8e{bottom:294.906667pt;}
.y1f9{bottom:296.186667pt;}
.y6a{bottom:298.746667pt;}
.y16c{bottom:298.906667pt;}
.y196{bottom:300.186667pt;}
.y2c{bottom:303.066667pt;}
.y117{bottom:303.386667pt;}
.y13{bottom:304.986667pt;}
.y14e{bottom:305.466667pt;}
.y214{bottom:305.786667pt;}
.y105{bottom:306.266667pt;}
.y7b{bottom:306.746667pt;}
.yc3{bottom:308.346667pt;}
.y8d{bottom:313.466667pt;}
.y1f8{bottom:313.786667pt;}
.y69{bottom:316.346667pt;}
.y16b{bottom:316.506667pt;}
.y195{bottom:317.946667pt;}
.y2b{bottom:320.666667pt;}
.y116{bottom:321.946667pt;}
.y14d{bottom:323.066667pt;}
.y213{bottom:323.386667pt;}
.y104{bottom:323.866667pt;}
.y7a{bottom:324.346667pt;}
.yc2{bottom:325.946667pt;}
.y8c{bottom:331.066667pt;}
.y1f7{bottom:331.386667pt;}
.y68{bottom:333.946667pt;}
.y16a{bottom:334.266667pt;}
.y194{bottom:335.546667pt;}
.y2a{bottom:338.266667pt;}
.y115{bottom:339.546667pt;}
.y1c6{bottom:340.666667pt;}
.y14c{bottom:340.826667pt;}
.y212{bottom:341.146667pt;}
.y103{bottom:341.466667pt;}
.y79{bottom:341.946667pt;}
.yc1{bottom:343.706667pt;}
.y1f6{bottom:349.146667pt;}
.y8b{bottom:349.786667pt;}
.y67{bottom:351.706667pt;}
.ydc{bottom:351.866667pt;}
.y193{bottom:353.146667pt;}
.y29{bottom:355.866667pt;}
.y114{bottom:358.146667pt;}
.y1c5{bottom:358.306667pt;}
.y14b{bottom:358.466667pt;}
.y211{bottom:358.786667pt;}
.y102{bottom:359.106667pt;}
.y78{bottom:359.746667pt;}
.yc0{bottom:361.346667pt;}
.y1f5{bottom:366.786667pt;}
.y8a{bottom:367.426667pt;}
.y66{bottom:369.346667pt;}
.y168{bottom:369.506667pt;}
.y192{bottom:370.786667pt;}
.y28{bottom:373.666667pt;}
.y113{bottom:375.746667pt;}
.y1c4{bottom:375.906667pt;}
.y14a{bottom:376.066667pt;}
.y210{bottom:376.386667pt;}
.y101{bottom:376.706667pt;}
.y77{bottom:377.346667pt;}
.ybf{bottom:378.946667pt;}
.y1f4{bottom:384.386667pt;}
.y89{bottom:385.986667pt;}
.yd4{bottom:386.946667pt;}
.y167{bottom:387.106667pt;}
.y191{bottom:388.386667pt;}
.y27{bottom:391.266667pt;}
.y149{bottom:393.666667pt;}
.y20f{bottom:393.986667pt;}
.y100{bottom:394.466667pt;}
.y65{bottom:394.946667pt;}
.ybe{bottom:396.546667pt;}
.y1f3{bottom:401.986667pt;}
.y88{bottom:403.586667pt;}
.yd3{bottom:404.546667pt;}
.y166{bottom:404.706667pt;}
.y190{bottom:406.146667pt;}
.y26{bottom:408.866667pt;}
.y148{bottom:411.266667pt;}
.y20e{bottom:411.586667pt;}
.yff{bottom:412.066667pt;}
.y64{bottom:412.546667pt;}
.ybd{bottom:414.146667pt;}
.y1f2{bottom:419.586667pt;}
.y87{bottom:421.186667pt;}
.yd2{bottom:422.146667pt;}
.y165{bottom:422.466667pt;}
.y18f{bottom:423.746667pt;}
.y25{bottom:426.466667pt;}
.y1c3{bottom:428.866667pt;}
.y20d{bottom:429.346667pt;}
.yfe{bottom:429.666667pt;}
.y63{bottom:430.146667pt;}
.ybc{bottom:431.906667pt;}
.y147{bottom:437.026667pt;}
.y1f1{bottom:437.346667pt;}
.y12{bottom:439.586667pt;}
.y86{bottom:439.906667pt;}
.y164{bottom:440.066667pt;}
.y18e{bottom:441.346667pt;}
.y1c2{bottom:446.466667pt;}
.y20c{bottom:446.946667pt;}
.yfd{bottom:447.266667pt;}
.y62{bottom:447.906667pt;}
.ybb{bottom:449.506667pt;}
.y146{bottom:454.626667pt;}
.y1f0{bottom:454.946667pt;}
.y85{bottom:457.506667pt;}
.yd9{bottom:457.666667pt;}
.y18d{bottom:458.946667pt;}
.y1c1{bottom:464.066667pt;}
.y20b{bottom:464.546667pt;}
.yfc{bottom:464.866667pt;}
.y61{bottom:465.506667pt;}
.yba{bottom:467.106667pt;}
.y145{bottom:472.226667pt;}
.y1ef{bottom:472.546667pt;}
.y84{bottom:475.106667pt;}
.y163{bottom:475.266667pt;}
.y18c{bottom:476.546667pt;}
.y1c0{bottom:481.826667pt;}
.y20a{bottom:482.146667pt;}
.yfb{bottom:482.626667pt;}
.y60{bottom:483.106667pt;}
.yb9{bottom:484.706667pt;}
.y144{bottom:489.826667pt;}
.y1ee{bottom:490.146667pt;}
.y83{bottom:492.706667pt;}
.y161{bottom:492.866667pt;}
.y18b{bottom:494.306667pt;}
.y1bf{bottom:499.426667pt;}
.y209{bottom:499.746667pt;}
.yfa{bottom:500.226667pt;}
.y5f{bottom:500.706667pt;}
.yb8{bottom:502.306667pt;}
.y143{bottom:507.426667pt;}
.y1ed{bottom:507.746667pt;}
.y82{bottom:510.306667pt;}
.y160{bottom:510.626667pt;}
.y18a{bottom:511.906667pt;}
.y1be{bottom:517.026667pt;}
.y208{bottom:517.506667pt;}
.yf9{bottom:517.826667pt;}
.y5e{bottom:518.306667pt;}
.yb7{bottom:520.066667pt;}
.y142{bottom:525.186667pt;}
.y1ec{bottom:525.506667pt;}
.y81{bottom:528.066667pt;}
.y15f{bottom:528.226667pt;}
.y189{bottom:529.506667pt;}
.y1bd{bottom:534.626667pt;}
.y207{bottom:535.106667pt;}
.yf8{bottom:535.426667pt;}
.y5d{bottom:536.066667pt;}
.yb6{bottom:537.666667pt;}
.y141{bottom:542.786667pt;}
.y1eb{bottom:543.106667pt;}
.y80{bottom:545.666667pt;}
.y15d{bottom:545.826667pt;}
.y188{bottom:547.106667pt;}
.y1bc{bottom:552.226667pt;}
.y206{bottom:552.706667pt;}
.yf7{bottom:553.026667pt;}
.y5c{bottom:553.666667pt;}
.yb5{bottom:555.266667pt;}
.y140{bottom:560.386667pt;}
.y1ea{bottom:560.706667pt;}
.y7f{bottom:563.266667pt;}
.y15c{bottom:563.426667pt;}
.y187{bottom:564.706667pt;}
.y1bb{bottom:569.986667pt;}
.yf6{bottom:570.786667pt;}
.y5b{bottom:571.266667pt;}
.yb4{bottom:572.866667pt;}
.y13f{bottom:578.013333pt;}
.y1e9{bottom:578.333333pt;}
.y7e{bottom:580.893333pt;}
.yd5{bottom:582.493333pt;}
.y1ba{bottom:587.613333pt;}
.yf5{bottom:588.413333pt;}
.y5a{bottom:588.893333pt;}
.yb3{bottom:590.493333pt;}
.y13e{bottom:595.613333pt;}
.y1e8{bottom:595.933333pt;}
.y7d{bottom:598.493333pt;}
.y186{bottom:600.093333pt;}
.y1b9{bottom:605.213333pt;}
.yf4{bottom:606.013333pt;}
.y59{bottom:606.493333pt;}
.yb2{bottom:608.253333pt;}
.y13d{bottom:613.373333pt;}
.y1e7{bottom:613.533333pt;}
.yd1{bottom:616.253333pt;}
.y185{bottom:617.693333pt;}
.y1b8{bottom:622.813333pt;}
.yf3{bottom:623.613333pt;}
.y58{bottom:624.253333pt;}
.yb1{bottom:625.853333pt;}
.y13c{bottom:630.973333pt;}
.y1e6{bottom:631.293333pt;}
.yd0{bottom:633.853333pt;}
.y184{bottom:635.293333pt;}
.y1b7{bottom:640.413333pt;}
.yf2{bottom:641.213333pt;}
.y57{bottom:641.853333pt;}
.y13b{bottom:648.573333pt;}
.y1e5{bottom:648.893333pt;}
.yb0{bottom:651.453333pt;}
.y183{bottom:652.893333pt;}
.y1b6{bottom:658.173333pt;}
.yf1{bottom:658.973333pt;}
.y56{bottom:659.453333pt;}
.y13a{bottom:666.173333pt;}
.y1e4{bottom:666.493333pt;}
.yaf{bottom:669.053333pt;}
.y182{bottom:670.653333pt;}
.y1b5{bottom:675.773333pt;}
.yf0{bottom:676.573333pt;}
.y55{bottom:677.053333pt;}
.y139{bottom:683.773333pt;}
.y1e3{bottom:684.093333pt;}
.yae{bottom:686.653333pt;}
.y181{bottom:688.253333pt;}
.y1b4{bottom:693.373333pt;}
.yef{bottom:694.173333pt;}
.y54{bottom:694.653333pt;}
.y138{bottom:701.533333pt;}
.y1e2{bottom:701.693333pt;}
.yad{bottom:704.413333pt;}
.y180{bottom:705.853333pt;}
.y1b3{bottom:710.973333pt;}
.yee{bottom:711.773333pt;}
.y53{bottom:712.413333pt;}
.y1e1{bottom:719.453333pt;}
.yac{bottom:722.013333pt;}
.y17f{bottom:723.453333pt;}
.y1b2{bottom:724.093333pt;}
.yed{bottom:726.493333pt;}
.y137{bottom:727.133333pt;}
.y52{bottom:730.013333pt;}
.y1e0{bottom:737.053333pt;}
.yab{bottom:739.613333pt;}
.y17e{bottom:741.053333pt;}
.y1b1{bottom:741.853333pt;}
.y136{bottom:744.733333pt;}
.y51{bottom:747.613333pt;}
.y1df{bottom:754.653333pt;}
.yaa{bottom:757.213333pt;}
.y10{bottom:757.693333pt;}
.y17d{bottom:758.813333pt;}
.y1b0{bottom:759.453333pt;}
.y135{bottom:762.333333pt;}
.y50{bottom:765.213333pt;}
.y1de{bottom:772.253333pt;}
.ya9{bottom:774.813333pt;}
.y17c{bottom:776.413333pt;}
.y1af{bottom:777.053333pt;}
.y134{bottom:780.893333pt;}
.y4f{bottom:782.813333pt;}
.yf{bottom:786.653333pt;}
.y1dd{bottom:789.853333pt;}
.ya8{bottom:792.573333pt;}
.y17b{bottom:794.013333pt;}
.y1ae{bottom:794.653333pt;}
.y133{bottom:798.693333pt;}
.y4e{bottom:800.613333pt;}
.y1dc{bottom:807.653333pt;}
.ye{bottom:809.093333pt;}
.ya7{bottom:810.213333pt;}
.y17a{bottom:812.293333pt;}
.y132{bottom:816.293333pt;}
.y4d{bottom:818.213333pt;}
.yd{bottom:822.533333pt;}
.y1db{bottom:825.253333pt;}
.ya6{bottom:827.813333pt;}
.y1ad{bottom:830.053333pt;}
.y131{bottom:833.893333pt;}
.y4c{bottom:835.813333pt;}
.yc{bottom:841.413333pt;}
.y1da{bottom:842.853333pt;}
.y1ac{bottom:847.653333pt;}
.y130{bottom:851.493333pt;}
.y4b{bottom:853.413333pt;}
.y1d9{bottom:860.453333pt;}
.yb{bottom:862.213333pt;}
.y1ab{bottom:865.253333pt;}
.y12f{bottom:869.093333pt;}
.y4a{bottom:871.013333pt;}
.y1d8{bottom:878.053333pt;}
.y1aa{bottom:882.853333pt;}
.y12e{bottom:887.813333pt;}
.y49{bottom:888.773333pt;}
.ya{bottom:890.533333pt;}
.y1d7{bottom:891.973333pt;}
.y1a9{bottom:900.453333pt;}
.y12d{bottom:905.413333pt;}
.y48{bottom:906.373333pt;}
.y8{bottom:916.613333pt;}
.y1d6{bottom:918.053333pt;}
.y1a8{bottom:918.213333pt;}
.y12c{bottom:923.013333pt;}
.y47{bottom:923.973333pt;}
.y1{bottom:932.613333pt;}
.y1a7{bottom:935.813333pt;}
.y12b{bottom:940.613333pt;}
.y46{bottom:941.573333pt;}
.y1d5{bottom:944.453333pt;}
.y1a6{bottom:953.413333pt;}
.y12a{bottom:958.213333pt;}
.y45{bottom:959.173333pt;}
.y1d4{bottom:970.533333pt;}
.y1a5{bottom:971.013333pt;}
.y44{bottom:976.933333pt;}
.y1a4{bottom:988.613333pt;}
.y43{bottom:994.533333pt;}
.y1d3{bottom:996.933333pt;}
.y1a3{bottom:1006.373333pt;}
.y42{bottom:1012.133333pt;}
.y41{bottom:1038.560000pt;}
.y40{bottom:1059.040000pt;}
.h19{height:17.600000pt;}
.h1a{height:17.632000pt;}
.h1b{height:17.760000pt;}
.h1d{height:17.792000pt;}
.hc{height:23.200000pt;}
.h20{height:26.080000pt;}
.h1f{height:26.400000pt;}
.h1e{height:26.432000pt;}
.hb{height:30.982500pt;}
.hf{height:37.479688pt;}
.h10{height:40.021563pt;}
.h7{height:42.607500pt;}
.h4{height:43.355000pt;}
.h18{height:43.782500pt;}
.h12{height:44.897813pt;}
.h13{height:45.961250pt;}
.h3{height:47.125000pt;}
.ha{height:47.310625pt;}
.h9{height:47.621250pt;}
.h6{height:48.406250pt;}
.hd{height:49.542500pt;}
.h11{height:49.766250pt;}
.h14{height:52.800000pt;}
.h5{height:55.136250pt;}
.h8{height:60.057813pt;}
.h1c{height:70.560000pt;}
.h17{height:105.760000pt;}
.h16{height:105.792000pt;}
.h15{height:123.392000pt;}
.h2{height:140.826667pt;}
.he{height:317.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:44.672000pt;}
.w1a{width:59.712000pt;}
.w13{width:64.480000pt;}
.w1b{width:70.880000pt;}
.w1c{width:74.752000pt;}
.w17{width:81.600000pt;}
.w10{width:83.712000pt;}
.wb{width:86.080000pt;}
.w15{width:90.560000pt;}
.w16{width:90.752000pt;}
.w11{width:92.480000pt;}
.w1d{width:93.120000pt;}
.wf{width:94.720000pt;}
.w14{width:96.672000pt;}
.w18{width:104.320000pt;}
.we{width:111.552000pt;}
.w8{width:116.992000pt;}
.wa{width:123.392000pt;}
.w3{width:130.432000pt;}
.w7{width:145.146667pt;}
.w9{width:156.026667pt;}
.w19{width:156.986667pt;}
.wd{width:194.426667pt;}
.wc{width:215.426667pt;}
.w6{width:548.293333pt;}
.w2{width:567.013333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.160000pt;}
.x5{left:50.240000pt;}
.x8{left:71.999988pt;}
.x9{left:96.031988pt;}
.x16{left:116.352000pt;}
.x4{left:123.226667pt;}
.x12{left:154.746667pt;}
.xa{left:164.986667pt;}
.x17{left:208.826667pt;}
.x1d{left:221.306667pt;}
.x18{left:253.506667pt;}
.xf{left:298.466655pt;}
.x19{left:317.986667pt;}
.xb{left:321.026667pt;}
.x13{left:349.186667pt;}
.x1e{left:378.306667pt;}
.x7{left:411.133322pt;}
.x1a{left:414.653333pt;}
.x10{left:435.133322pt;}
.x1f{left:438.013333pt;}
.xc{left:444.413333pt;}
.x11{left:459.133322pt;}
.x14{left:460.733333pt;}
.x1b{left:505.213333pt;}
.x20{left:508.893333pt;}
.xd{left:530.493333pt;}
.x15{left:555.453333pt;}
.x21{left:583.653333pt;}
.x1c{left:595.973333pt;}
.x6{left:598.533333pt;}
.x3{left:615.173333pt;}
.xe{left:684.933322pt;}
}




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