
    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_1eb7a868adc101597db307e6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_3584f5b6cb48d6452e11b25b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_4401140dfa9b084b8a2f05ac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_296eab0be9126d345fea05ca.woff')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_48ae916b781b69c988fd62b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.977051;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_91b0e3df7e0050c85e28b181.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d2b079d4dcf57a7a75bb1cb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5c48219e71e0b83a99f3df41.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-36.150000px;}
.v6{vertical-align:-31.500000px;}
.v5{vertical-align:-28.050000px;}
.v10{vertical-align:-27.000000px;}
.vc{vertical-align:-22.650000px;}
.vd{vertical-align:-17.700000px;}
.vf{vertical-align:-10.650000px;}
.v8{vertical-align:-8.100000px;}
.v9{vertical-align:-6.180000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.100000px;}
.v4{vertical-align:9.000000px;}
.ve{vertical-align:22.500000px;}
.v11{vertical-align:27.000000px;}
.v7{vertical-align:31.500000px;}
.va{vertical-align:36.150000px;}
.v2{vertical-align:64.500000px;}
.v3{vertical-align:87.300000px;}
.ls23{letter-spacing:-15.900000px;}
.lse{letter-spacing:-4.116000px;}
.ls2b{letter-spacing:-2.334000px;}
.ls9{letter-spacing:-1.632000px;}
.lsc{letter-spacing:-1.584000px;}
.ls6{letter-spacing:-1.482000px;}
.ls24{letter-spacing:-0.576600px;}
.ls1f{letter-spacing:-0.143400px;}
.ls1a{letter-spacing:-0.137400px;}
.ls8{letter-spacing:-0.013920px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.012600px;}
.ls28{letter-spacing:0.013980px;}
.ls27{letter-spacing:0.092100px;}
.ls26{letter-spacing:0.122400px;}
.lsa{letter-spacing:0.136200px;}
.ls10{letter-spacing:0.361950px;}
.lsd{letter-spacing:0.384600px;}
.ls16{letter-spacing:0.750000px;}
.ls1d{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.852000px;}
.ls11{letter-spacing:0.860400px;}
.ls18{letter-spacing:0.930000px;}
.ls25{letter-spacing:1.043250px;}
.ls17{letter-spacing:1.103250px;}
.ls15{letter-spacing:1.223250px;}
.ls4{letter-spacing:1.362000px;}
.ls1b{letter-spacing:1.374000px;}
.ls1c{letter-spacing:1.419750px;}
.ls1{letter-spacing:1.422000px;}
.ls3{letter-spacing:1.434000px;}
.lsb{letter-spacing:1.512000px;}
.ls7{letter-spacing:1.572000px;}
.ls5{letter-spacing:1.698000px;}
.ls29{letter-spacing:1.758000px;}
.ls1e{letter-spacing:2.334750px;}
.ls14{letter-spacing:92.550000px;}
.ls13{letter-spacing:92.602500px;}
.ls22{letter-spacing:111.675000px;}
.ls21{letter-spacing:111.727500px;}
.ls12{letter-spacing:119.572500px;}
.lsf{letter-spacing:194.475000px;}
.ls2a{letter-spacing:392.226300px;}
.ls2{letter-spacing:2449.464600px;}
.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;}
}
.ws2c{word-spacing:-193.800000px;}
.ws0{word-spacing:-80.189100px;}
.ws32{word-spacing:-73.934100px;}
.ws38{word-spacing:-73.892400px;}
.ws3{word-spacing:-66.386400px;}
.ws20{word-spacing:-60.131400px;}
.ws39{word-spacing:-55.127400px;}
.ws2b{word-spacing:-53.876400px;}
.ws1e{word-spacing:-46.370400px;}
.ws21{word-spacing:-46.328700px;}
.ws36{word-spacing:-40.925700px;}
.ws3f{word-spacing:-40.500000px;}
.ws40{word-spacing:-40.115400px;}
.ws37{word-spacing:-40.073700px;}
.ws45{word-spacing:-33.860400px;}
.ws23{word-spacing:-33.818700px;}
.ws2f{word-spacing:-33.675300px;}
.ws44{word-spacing:-31.484700px;}
.ws3e{word-spacing:-30.079680px;}
.ws1{word-spacing:-30.065700px;}
.ws2a{word-spacing:-27.732450px;}
.ws29{word-spacing:-26.312700px;}
.ws41{word-spacing:-23.810700px;}
.ws42{word-spacing:-23.769000px;}
.ws2e{word-spacing:-22.559700px;}
.ws28{word-spacing:-20.057700px;}
.wsd{word-spacing:-16.304700px;}
.ws1b{word-spacing:-4.753800px;}
.ws13{word-spacing:-4.695300px;}
.ws8{word-spacing:-4.564800px;}
.ws17{word-spacing:-4.485300px;}
.ws1a{word-spacing:-4.447350px;}
.wsb{word-spacing:-4.444800px;}
.ws11{word-spacing:-4.362750px;}
.ws16{word-spacing:-4.245300px;}
.wsc{word-spacing:-4.243800px;}
.ws34{word-spacing:-2.018550px;}
.ws7{word-spacing:-1.490250px;}
.ws1d{word-spacing:-1.400850px;}
.ws1c{word-spacing:-1.392900px;}
.ws9{word-spacing:-1.386750px;}
.ws18{word-spacing:-1.256400px;}
.ws3d{word-spacing:-1.145400px;}
.ws10{word-spacing:-0.763050px;}
.wse{word-spacing:-0.662400px;}
.ws3c{word-spacing:-0.565800px;}
.ws4{word-spacing:-0.328500px;}
.ws31{word-spacing:-0.216300px;}
.ws2d{word-spacing:-0.193800px;}
.ws3a{word-spacing:-0.177600px;}
.ws3b{word-spacing:-0.160200px;}
.ws43{word-spacing:-0.144150px;}
.ws26{word-spacing:-0.134250px;}
.ws14{word-spacing:-0.117540px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:0.104100px;}
.ws19{word-spacing:0.134100px;}
.ws5{word-spacing:0.712650px;}
.ws15{word-spacing:0.877200px;}
.ws12{word-spacing:1.724850px;}
.ws35{word-spacing:1.832400px;}
.ws33{word-spacing:31.403250px;}
.ws1f{word-spacing:38.657700px;}
.wsf{word-spacing:41.233200px;}
.ws25{word-spacing:107.987400px;}
.ws2{word-spacing:614.157750px;}
.ws27{word-spacing:1386.561300px;}
.ws30{word-spacing:4398.137700px;}
.ws24{word-spacing:4509.137700px;}
.ws22{word-spacing:4679.957700px;}
._17{margin-left:-5553.280800px;}
._11{margin-left:-24.225600px;}
._12{margin-left:-22.858800px;}
._16{margin-left:-15.814500px;}
._e{margin-left:-13.057200px;}
._21{margin-left:-11.351400px;}
._14{margin-left:-9.477900px;}
._9{margin-left:-7.992000px;}
._1{margin-left:-6.634350px;}
._13{margin-left:-5.256600px;}
._6{margin-left:-3.960000px;}
._2{margin-left:-2.883300px;}
._3{margin-left:-1.477950px;}
._0{width:1.153200px;}
._4{width:2.956500px;}
._8{width:4.032300px;}
._f{width:5.791800px;}
._20{width:9.691050px;}
._7{width:19.420500px;}
._a{width:22.377600px;}
._c{width:27.213450px;}
._b{width:28.635000px;}
._5{width:31.860000px;}
._1a{width:39.511350px;}
._1b{width:41.666850px;}
._d{width:59.759850px;}
._1e{width:62.260350px;}
._22{width:176.106300px;}
._23{width:392.226300px;}
._10{width:638.254350px;}
._1c{width:752.725950px;}
._1d{width:885.025950px;}
._15{width:1168.069950px;}
._1f{width:1180.708350px;}
._19{width:1467.639150px;}
._18{width:1478.593800px;}
.fc6{color:rgb(232,127,82);}
.fc5{color:rgb(59,137,214);}
.fc4{color:rgb(12,13,14);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:58.650000px;}
.fs11{font-size:63.000000px;}
.fs8{font-size:63.150000px;}
.fs1a{font-size:67.500000px;}
.fs1b{font-size:67.650000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:72.150000px;}
.fs1e{font-size:81.150000px;}
.fs10{font-size:85.500000px;}
.fsb{font-size:85.650000px;}
.fse{font-size:87.469675px;}
.fsf{font-size:87.501078px;}
.fs17{font-size:94.500000px;}
.fs16{font-size:94.650000px;}
.fs2{font-size:108.150000px;}
.fs14{font-size:121.650000px;}
.fs15{font-size:121.800000px;}
.fs20{font-size:130.650000px;}
.fs1f{font-size:130.800000px;}
.fs18{font-size:144.000000px;}
.fs9{font-size:144.150000px;}
.fsa{font-size:144.300000px;}
.fsd{font-size:166.650000px;}
.fsc{font-size:166.800000px;}
.fs1d{font-size:193.650000px;}
.fs1c{font-size:193.800000px;}
.fs19{font-size:198.300000px;}
.fs7{font-size:216.300000px;}
.fs4{font-size:238.800000px;}
.fs12{font-size:265.800000px;}
.fs13{font-size:265.950000px;}
.fs0{font-size:288.300000px;}
.fs1{font-size:288.450000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:6.300000px;}
.ydd{bottom:7.912500px;}
.yf{bottom:7.950000px;}
.y8b{bottom:9.300000px;}
.yea{bottom:9.862500px;}
.y57{bottom:10.762500px;}
.y77{bottom:11.250000px;}
.y107{bottom:11.437500px;}
.y64{bottom:12.000000px;}
.y63{bottom:12.825000px;}
.y73{bottom:13.162500px;}
.y11{bottom:13.275000px;}
.y4{bottom:13.387500px;}
.y5{bottom:13.537500px;}
.yce{bottom:13.687500px;}
.yf7{bottom:14.437500px;}
.y54{bottom:15.525000px;}
.yb7{bottom:16.762500px;}
.y12b{bottom:16.800000px;}
.y50{bottom:17.427141px;}
.yef{bottom:21.300000px;}
.ye3{bottom:22.312500px;}
.yd6{bottom:34.875000px;}
.y9b{bottom:36.712500px;}
.y62{bottom:38.737500px;}
.ycd{bottom:42.975000px;}
.y3a{bottom:44.962500px;}
.yc8{bottom:46.462500px;}
.y9f{bottom:48.712500px;}
.y12a{bottom:49.462500px;}
.ya5{bottom:49.687500px;}
.y10{bottom:50.250000px;}
.yb6{bottom:52.837500px;}
.y126{bottom:54.150000px;}
.ye2{bottom:54.975000px;}
.y3{bottom:55.087500px;}
.yc0{bottom:62.475000px;}
.y51{bottom:62.731020px;}
.y18{bottom:65.887500px;}
.y9a{bottom:66.000000px;}
.yd4{bottom:70.762500px;}
.yee{bottom:71.962500px;}
.ycc{bottom:72.262500px;}
.y42{bottom:74.325000px;}
.y33{bottom:79.237500px;}
.yd7{bottom:79.725000px;}
.y139{bottom:79.950000px;}
.y125{bottom:83.437500px;}
.ya1{bottom:89.437500px;}
.yc7{bottom:90.412500px;}
.y3f{bottom:97.650000px;}
.ycf{bottom:99.225000px;}
.ycb{bottom:100.425000px;}
.yfb{bottom:104.475000px;}
.ybf{bottom:105.300000px;}
.y32{bottom:106.312500px;}
.y71{bottom:110.850000px;}
.ye{bottom:115.650000px;}
.y138{bottom:115.987500px;}
.y123{bottom:116.625000px;}
.yca{bottom:120.450000px;}
.yd3{bottom:120.975000px;}
.ya6{bottom:124.725000px;}
.yb5{bottom:124.912500px;}
.y17{bottom:130.125000px;}
.y39{bottom:132.975000px;}
.yfa{bottom:133.762500px;}
.yf0{bottom:135.600000px;}
.y31{bottom:138.975000px;}
.ya0{bottom:140.100000px;}
.y124{bottom:140.887500px;}
.ybe{bottom:149.212500px;}
.ya4{bottom:149.812500px;}
.y137{bottom:152.055000px;}
.ya8{bottom:153.675000px;}
.yb2{bottom:160.200000px;}
.y16{bottom:162.795000px;}
.yf9{bottom:163.050000px;}
.yd9{bottom:168.075000px;}
.y30{bottom:171.645000px;}
.y122{bottom:171.825000px;}
.y7d{bottom:172.500000px;}
.yd{bottom:179.895000px;}
.y78{bottom:182.100000px;}
.y25{bottom:182.130000px;}
.y136{bottom:188.100000px;}
.yf8{bottom:191.205000px;}
.y66{bottom:199.350000px;}
.ye0{bottom:201.870000px;}
.y11a{bottom:202.875000px;}
.y2f{bottom:204.300000px;}
.y2{bottom:209.130000px;}
.y27{bottom:210.570000px;}
.y24{bottom:213.675000px;}
.y118{bottom:217.245000px;}
.yb1{bottom:218.775000px;}
.y15{bottom:228.105000px;}
.y41{bottom:228.705000px;}
.ya{bottom:229.380000px;}
.y47{bottom:230.520000px;}
.ye1{bottom:231.975000px;}
.ybd{bottom:234.825000px;}
.ya9{bottom:236.625000px;}
.y7e{bottom:238.575000px;}
.y26{bottom:242.100000px;}
.yc{bottom:245.205000px;}
.y5c{bottom:246.825000px;}
.y70{bottom:247.425000px;}
.y7b{bottom:251.250000px;}
.ydf{bottom:252.570000px;}
.y119{bottom:253.575000px;}
.y4d{bottom:256.320000px;}
.y135{bottom:260.220000px;}
.y10d{bottom:260.355000px;}
.y14{bottom:260.775000px;}
.y38{bottom:261.300000px;}
.yad{bottom:262.695000px;}
.y10b{bottom:274.695000px;}
.yf3{bottom:277.350000px;}
.y1{bottom:277.845000px;}
.ybc{bottom:278.775000px;}
.y46{bottom:281.220000px;}
.y6f{bottom:283.500000px;}
.ya2{bottom:286.320000px;}
.y121{bottom:291.270000px;}
.y5b{bottom:297.525000px;}
.y37{bottom:305.220000px;}
.yb9{bottom:305.925000px;}
.y2e{bottom:308.595000px;}
.yb{bottom:310.530000px;}
.y92{bottom:311.130000px;}
.y12{bottom:311.295000px;}
.y99{bottom:313.200000px;}
.y10c{bottom:314.445000px;}
.y2a{bottom:314.850000px;}
.y3d{bottom:315.675000px;}
.y10a{bottom:318.645000px;}
.y6e{bottom:319.530000px;}
.yac{bottom:320.175000px;}
.y4c{bottom:320.505000px;}
.y4f{bottom:327.375000px;}
.y89{bottom:327.825000px;}
.y120{bottom:330.675000px;}
.yd5{bottom:331.095000px;}
.y45{bottom:331.920000px;}
.y134{bottom:332.280000px;}
.yff{bottom:333.000000px;}
.yb0{bottom:333.675000px;}
.y7a{bottom:335.700000px;}
.y2d{bottom:340.125000px;}
.y29{bottom:346.380000px;}
.y36{bottom:348.030000px;}
.y6d{bottom:355.575000px;}
.y109{bottom:361.425000px;}
.y88{bottom:363.870000px;}
.y91{bottom:365.205000px;}
.yfe{bottom:365.670000px;}
.y98{bottom:367.275000px;}
.y133{bottom:368.355000px;}
.yb8{bottom:370.125000px;}
.yd8{bottom:371.370000px;}
.yab{bottom:377.625000px;}
.y11f{bottom:378.000000px;}
.y28{bottom:379.050000px;}
.y44{bottom:382.620000px;}
.y4b{bottom:385.875000px;}
.y35{bottom:390.825000px;}
.y6c{bottom:391.650000px;}
.y76{bottom:395.925000px;}
.y52{bottom:396.945000px;}
.y5a{bottom:397.800000px;}
.y10f{bottom:397.845000px;}
.yc3{bottom:397.995000px;}
.yfd{bottom:398.325000px;}
.y7c{bottom:400.950000px;}
.yc6{bottom:401.400000px;}
.y80{bottom:401.775000px;}
.y90{bottom:419.280000px;}
.y97{bottom:421.350000px;}
.y1f{bottom:427.425000px;}
.y43{bottom:433.275000px;}
.y65{bottom:434.370000px;}
.y34{bottom:434.775000px;}
.y87{bottom:435.945000px;}
.yaa{bottom:436.200000px;}
.y116{bottom:438.750000px;}
.y132{bottom:440.445000px;}
.yc2{bottom:440.820000px;}
.yf1{bottom:440.970000px;}
.y108{bottom:442.530000px;}
.yc5{bottom:444.225000px;}
.yaf{bottom:448.620000px;}
.y4a{bottom:451.200000px;}
.y10e{bottom:451.920000px;}
.y1e{bottom:460.080000px;}
.y23{bottom:463.575000px;}
.yfc{bottom:463.650000px;}
.y2c{bottom:472.005000px;}
.y8f{bottom:473.370000px;}
.y115{bottom:474.825000px;}
.y96{bottom:475.425000px;}
.y131{bottom:476.505000px;}
.y129{bottom:484.125000px;}
.yc1{bottom:484.725000px;}
.y6b{bottom:485.130000px;}
.yc4{bottom:488.175000px;}
.y22{bottom:495.150000px;}
.y11e{bottom:497.400000px;}
.y59{bottom:499.170000px;}
.y2b{bottom:503.595000px;}
.yae{bottom:507.195000px;}
.y86{bottom:508.050000px;}
.y114{bottom:510.870000px;}
.y130{bottom:512.550000px;}
.y128{bottom:516.780000px;}
.y6a{bottom:521.175000px;}
.yd0{bottom:521.370000px;}
.y9e{bottom:524.505000px;}
.y1d{bottom:525.450000px;}
.ye9{bottom:526.380000px;}
.y8e{bottom:527.445000px;}
.y95{bottom:529.500000px;}
.yf2{bottom:542.325000px;}
.y113{bottom:546.900000px;}
.y61{bottom:547.755000px;}
.y111{bottom:548.550000px;}
.y127{bottom:549.495000px;}
.y58{bottom:549.870000px;}
.y11d{bottom:552.630000px;}
.y3e{bottom:552.825000px;}
.ye8{bottom:554.580000px;}
.y1c{bottom:556.995000px;}
.y69{bottom:557.250000px;}
.y9{bottom:557.445000px;}
.yed{bottom:559.995000px;}
.yde{bottom:561.330000px;}
.y7f{bottom:565.995000px;}
.y21{bottom:576.630000px;}
.y75{bottom:578.670000px;}
.y85{bottom:580.170000px;}
.y49{bottom:580.755000px;}
.y8d{bottom:581.505000px;}
.ye7{bottom:582.750000px;}
.y112{bottom:582.975000px;}
.y94{bottom:583.575000px;}
.y60{bottom:583.800000px;}
.y12f{bottom:584.655000px;}
.yf6{bottom:586.650000px;}
.y40{bottom:587.250000px;}
.y1b{bottom:589.650000px;}
.y68{bottom:593.280000px;}
.yec{bottom:598.320000px;}
.y110{bottom:599.250000px;}
.y103{bottom:601.845000px;}
.y84{bottom:616.200000px;}
.y106{bottom:618.450000px;}
.y5f{bottom:619.845000px;}
.y8{bottom:621.630000px;}
.yf5{bottom:631.695000px;}
.y8c{bottom:635.595000px;}
.y93{bottom:637.650000px;}
.yeb{bottom:637.725000px;}
.ye6{bottom:637.950000px;}
.y102{bottom:643.530000px;}
.y48{bottom:644.970000px;}
.y105{bottom:649.995000px;}
.y83{bottom:652.245000px;}
.ydc{bottom:654.450000px;}
.y1a{bottom:654.975000px;}
.y12e{bottom:656.745000px;}
.ybb{bottom:664.905000px;}
.ye5{bottom:666.120000px;}
.y11c{bottom:669.780000px;}
.y72{bottom:673.950000px;}
.yf4{bottom:676.755000px;}
.y5e{bottom:679.125000px;}
.y3c{bottom:682.650000px;}
.y104{bottom:682.695000px;}
.ya7{bottom:686.070000px;}
.y7{bottom:687.000000px;}
.y101{bottom:687.450000px;}
.y19{bottom:687.675000px;}
.yb4{bottom:689.220000px;}
.y56{bottom:689.325000px;}
.y67{bottom:692.625000px;}
.yd2{bottom:696.495000px;}
.y79{bottom:701.250000px;}
.y117{bottom:708.600000px;}
.yc9{bottom:710.970000px;}
.ydb{bottom:712.200000px;}
.y12d{bottom:716.445000px;}
.y82{bottom:716.700000px;}
.y20{bottom:721.755000px;}
.y4e{bottom:738.405000px;}
.y53{bottom:739.530000px;}
.y3b{bottom:741.255000px;}
.ye4{bottom:743.100000px;}
.yba{bottom:743.775000px;}
.y11b{bottom:747.525000px;}
.y55{bottom:747.900000px;}
.y5d{bottom:750.075000px;}
.ya3{bottom:751.650000px;}
.y6{bottom:752.325000px;}
.y12c{bottom:752.505000px;}
.yb3{bottom:753.405000px;}
.y74{bottom:753.870000px;}
.yd1{bottom:755.070000px;}
.y13{bottom:759.405000px;}
.y8a{bottom:760.845000px;}
.y81{bottom:764.025000px;}
.yda{bottom:768.525000px;}
.y100{bottom:769.200000px;}
.y9d{bottom:778.695000px;}
.h17{height:47.373047px;}
.h5{height:50.430981px;}
.h27{height:54.140625px;}
.h7{height:54.253418px;}
.ha{height:54.300366px;}
.h25{height:58.040771px;}
.h26{height:58.169751px;}
.h33{height:64.291992px;}
.h32{height:64.404785px;}
.h2d{height:70.344214px;}
.h15{height:73.518311px;}
.hd{height:73.647290px;}
.h13{height:75.211961px;}
.h14{height:75.238964px;}
.h2e{height:81.257080px;}
.h3{height:81.323730px;}
.h28{height:81.386060px;}
.h20{height:84.894214px;}
.h1c{height:91.475098px;}
.h34{height:91.587891px;}
.h9{height:92.994214px;}
.h16{height:100.145947px;}
.h1b{height:104.602368px;}
.h1d{height:104.731348px;}
.h2c{height:105.927905px;}
.hb{height:108.394043px;}
.hc{height:108.506836px;}
.h30{height:112.341138px;}
.h2f{height:112.470117px;}
.h22{height:123.820313px;}
.h1e{height:123.949292px;}
.h1f{height:124.078271px;}
.hf{height:125.312988px;}
.he{height:125.425781px;}
.h6{height:126.410156px;}
.h18{height:140.574609px;}
.h21{height:143.296216px;}
.h23{height:143.425195px;}
.h2b{height:145.728516px;}
.h24{height:149.112305px;}
.h8{height:162.647461px;}
.h2a{height:166.512524px;}
.h29{height:166.641504px;}
.h4{height:179.566406px;}
.h10{height:180.294214px;}
.h11{height:185.988428px;}
.h19{height:199.869141px;}
.h1a{height:199.981934px;}
.h31{height:205.335352px;}
.h1{height:216.788086px;}
.h2{height:216.900879px;}
.h12{height:391.493503px;}
.h0{height:810.000000px;}
.w2{width:516.375000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5{left:10.799979px;}
.x1{left:21.412479px;}
.xb{left:25.087479px;}
.x35{left:28.308208px;}
.x6c{left:39.487479px;}
.xa{left:41.624979px;}
.x49{left:47.924979px;}
.x4e{left:50.062479px;}
.x43{left:51.337479px;}
.x2b{left:53.062479px;}
.xa6{left:55.312479px;}
.x8f{left:56.812479px;}
.xa0{left:60.599979px;}
.x9b{left:63.449979px;}
.x97{left:65.249979px;}
.x8{left:67.499979px;}
.x44{left:69.262479px;}
.xb5{left:70.837479px;}
.x9d{left:72.674979px;}
.x6e{left:74.549979px;}
.xc4{left:76.574979px;}
.x65{left:78.449979px;}
.xa7{left:89.624979px;}
.xac{left:90.937479px;}
.x6{left:92.249979px;}
.x82{left:95.362479px;}
.x5f{left:102.487479px;}
.x98{left:104.549979px;}
.xbb{left:106.687479px;}
.xbd{left:109.874979px;}
.xb4{left:112.499979px;}
.x45{left:121.387479px;}
.x62{left:122.662479px;}
.x7e{left:124.162479px;}
.x80{left:136.612479px;}
.x9f{left:143.624979px;}
.x2c{left:150.524979px;}
.x34{left:153.611581px;}
.xab{left:156.674979px;}
.x61{left:157.829979px;}
.xb6{left:160.649979px;}
.x41{left:162.299979px;}
.xb8{left:163.874979px;}
.x64{left:166.094979px;}
.xb9{left:168.929979px;}
.x83{left:180.749979px;}
.x8d{left:184.649979px;}
.x42{left:187.304979px;}
.x27{left:188.579979px;}
.x92{left:190.004979px;}
.x32{left:191.924979px;}
.x56{left:194.519979px;}
.x4f{left:197.174979px;}
.x74{left:200.369979px;}
.x59{left:202.049979px;}
.x7{left:205.619979px;}
.x8e{left:214.199979px;}
.x9e{left:216.599979px;}
.x63{left:219.374979px;}
.x9{left:221.369979px;}
.x93{left:226.019979px;}
.x91{left:230.699979px;}
.x96{left:232.499979px;}
.xd{left:235.694979px;}
.x7b{left:240.029979px;}
.x77{left:243.824979px;}
.xae{left:245.519979px;}
.x89{left:252.794979px;}
.x7d{left:266.594979px;}
.x6d{left:278.174979px;}
.x3c{left:283.904979px;}
.x4d{left:285.044979px;}
.x4c{left:301.349979px;}
.x3f{left:304.049979px;}
.x5d{left:306.374979px;}
.x37{left:307.724979px;}
.xbc{left:308.954979px;}
.x9a{left:314.699979px;}
.x54{left:319.154979px;}
.x46{left:320.819979px;}
.x5c{left:324.149979px;}
.x3e{left:331.079979px;}
.xa1{left:357.119979px;}
.xc7{left:359.549979px;}
.xa2{left:369.944979px;}
.x24{left:372.224979px;}
.x22{left:373.469979px;}
.x21{left:376.019979px;}
.xb7{left:377.819979px;}
.x40{left:382.694979px;}
.xc8{left:406.349979px;}
.xaa{left:407.504979px;}
.x23{left:421.319979px;}
.xba{left:431.099979px;}
.x2d{left:439.424979px;}
.x9c{left:442.094979px;}
.x6f{left:464.504979px;}
.xad{left:477.269979px;}
.x70{left:479.699979px;}
.x25{left:485.024979px;}
.x28{left:497.819979px;}
.xbf{left:500.669979px;}
.xa3{left:503.099979px;}
.xe{left:510.719979px;}
.x79{left:512.654979px;}
.x26{left:561.194979px;}
.x81{left:568.949979px;}
.x4b{left:581.924979px;}
.x4a{left:584.669979px;}
.x7f{left:589.049979px;}
.x57{left:595.649979px;}
.x50{left:598.319979px;}
.x78{left:600.629979px;}
.x5a{left:603.194979px;}
.x58{left:604.919979px;}
.x51{left:607.574979px;}
.x84{left:608.594979px;}
.x99{left:610.904979px;}
.x5b{left:612.494979px;}
.x7c{left:614.369979px;}
.xa8{left:616.829979px;}
.x85{left:628.799979px;}
.xc1{left:630.599979px;}
.xc0{left:634.724979px;}
.x7a{left:637.994979px;}
.x3d{left:639.299979px;}
.xc3{left:657.224979px;}
.xc6{left:659.474979px;}
.xc5{left:664.469979px;}
.x20{left:693.854979px;}
.xa5{left:695.954979px;}
.xc{left:698.324979px;}
.x1d{left:719.474979px;}
.x88{left:731.354979px;}
.xc2{left:737.849979px;}
.x30{left:755.324979px;}
.xa4{left:760.574979px;}
.xbe{left:761.924979px;}
.x47{left:776.399979px;}
.x1c{left:778.004979px;}
.x1e{left:781.004979px;}
.x86{left:787.754979px;}
.x29{left:789.404979px;}
.x1f{left:802.754979px;}
.x48{left:810.194979px;}
.x31{left:822.869979px;}
.x94{left:835.829979px;}
.xa9{left:841.904979px;}
.x14{left:860.204979px;}
.x6b{left:866.579979px;}
.x13{left:874.994979px;}
.x72{left:876.854979px;}
.x2e{left:882.374979px;}
.x71{left:888.494979px;}
.x33{left:910.125000px;}
.xb1{left:912.494979px;}
.x10{left:919.649979px;}
.x8b{left:924.824979px;}
.x69{left:934.229979px;}
.x8a{left:948.104979px;}
.xf{left:949.649979px;}
.x87{left:957.194979px;}
.x66{left:959.474979px;}
.x67{left:968.279979px;}
.x1b{left:979.274979px;}
.x1a{left:983.069979px;}
.x12{left:990.569979px;}
.x11{left:998.069979px;}
.x4{left:1003.919979px;}
.x3a{left:1009.229979px;}
.x68{left:1010.879979px;}
.x53{left:1036.724979px;}
.x55{left:1045.649979px;}
.x5e{left:1048.049979px;}
.x8c{left:1060.019979px;}
.x90{left:1062.629979px;}
.x2{left:1065.299979px;}
.x39{left:1083.794979px;}
.x2f{left:1099.349979px;}
.x36{left:1108.169979px;}
.x17{left:1110.269979px;}
.x16{left:1115.774979px;}
.x6a{left:1120.079979px;}
.x15{left:1133.549979px;}
.xb3{left:1153.199979px;}
.x18{left:1155.494979px;}
.xb2{left:1156.874979px;}
.x52{left:1163.444979px;}
.x73{left:1173.044979px;}
.x19{left:1181.624979px;}
.x38{left:1183.949979px;}
.x75{left:1217.819979px;}
.x2a{left:1222.169979px;}
.x60{left:1230.329979px;}
.x3b{left:1232.819979px;}
.x3{left:1237.904979px;}
.xb0{left:1253.174979px;}
.xaf{left:1280.099979px;}
.x76{left:1290.974979px;}
.x95{left:1337.699979px;}
@media print{
.vb{vertical-align:-32.133333pt;}
.v6{vertical-align:-28.000000pt;}
.v5{vertical-align:-24.933333pt;}
.v10{vertical-align:-24.000000pt;}
.vc{vertical-align:-20.133333pt;}
.vd{vertical-align:-15.733333pt;}
.vf{vertical-align:-9.466667pt;}
.v8{vertical-align:-7.200000pt;}
.v9{vertical-align:-5.493333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.533333pt;}
.v4{vertical-align:8.000000pt;}
.ve{vertical-align:20.000000pt;}
.v11{vertical-align:24.000000pt;}
.v7{vertical-align:28.000000pt;}
.va{vertical-align:32.133333pt;}
.v2{vertical-align:57.333333pt;}
.v3{vertical-align:77.600000pt;}
.ls23{letter-spacing:-14.133333pt;}
.lse{letter-spacing:-3.658667pt;}
.ls2b{letter-spacing:-2.074667pt;}
.ls9{letter-spacing:-1.450667pt;}
.lsc{letter-spacing:-1.408000pt;}
.ls6{letter-spacing:-1.317333pt;}
.ls24{letter-spacing:-0.512533pt;}
.ls1f{letter-spacing:-0.127467pt;}
.ls1a{letter-spacing:-0.122133pt;}
.ls8{letter-spacing:-0.012373pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.011200pt;}
.ls28{letter-spacing:0.012427pt;}
.ls27{letter-spacing:0.081867pt;}
.ls26{letter-spacing:0.108800pt;}
.lsa{letter-spacing:0.121067pt;}
.ls10{letter-spacing:0.321733pt;}
.lsd{letter-spacing:0.341867pt;}
.ls16{letter-spacing:0.666667pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.757333pt;}
.ls11{letter-spacing:0.764800pt;}
.ls18{letter-spacing:0.826667pt;}
.ls25{letter-spacing:0.927333pt;}
.ls17{letter-spacing:0.980667pt;}
.ls15{letter-spacing:1.087333pt;}
.ls4{letter-spacing:1.210667pt;}
.ls1b{letter-spacing:1.221333pt;}
.ls1c{letter-spacing:1.262000pt;}
.ls1{letter-spacing:1.264000pt;}
.ls3{letter-spacing:1.274667pt;}
.lsb{letter-spacing:1.344000pt;}
.ls7{letter-spacing:1.397333pt;}
.ls5{letter-spacing:1.509333pt;}
.ls29{letter-spacing:1.562667pt;}
.ls1e{letter-spacing:2.075333pt;}
.ls14{letter-spacing:82.266667pt;}
.ls13{letter-spacing:82.313333pt;}
.ls22{letter-spacing:99.266667pt;}
.ls21{letter-spacing:99.313333pt;}
.ls12{letter-spacing:106.286667pt;}
.lsf{letter-spacing:172.866667pt;}
.ls2a{letter-spacing:348.645600pt;}
.ls2{letter-spacing:2177.301867pt;}
.ws2c{word-spacing:-172.266667pt;}
.ws0{word-spacing:-71.279200pt;}
.ws32{word-spacing:-65.719200pt;}
.ws38{word-spacing:-65.682133pt;}
.ws3{word-spacing:-59.010133pt;}
.ws20{word-spacing:-53.450133pt;}
.ws39{word-spacing:-49.002133pt;}
.ws2b{word-spacing:-47.890133pt;}
.ws1e{word-spacing:-41.218133pt;}
.ws21{word-spacing:-41.181067pt;}
.ws36{word-spacing:-36.378400pt;}
.ws3f{word-spacing:-36.000000pt;}
.ws40{word-spacing:-35.658133pt;}
.ws37{word-spacing:-35.621067pt;}
.ws45{word-spacing:-30.098133pt;}
.ws23{word-spacing:-30.061067pt;}
.ws2f{word-spacing:-29.933600pt;}
.ws44{word-spacing:-27.986400pt;}
.ws3e{word-spacing:-26.737493pt;}
.ws1{word-spacing:-26.725067pt;}
.ws2a{word-spacing:-24.651067pt;}
.ws29{word-spacing:-23.389067pt;}
.ws41{word-spacing:-21.165067pt;}
.ws42{word-spacing:-21.128000pt;}
.ws2e{word-spacing:-20.053067pt;}
.ws28{word-spacing:-17.829067pt;}
.wsd{word-spacing:-14.493067pt;}
.ws1b{word-spacing:-4.225600pt;}
.ws13{word-spacing:-4.173600pt;}
.ws8{word-spacing:-4.057600pt;}
.ws17{word-spacing:-3.986933pt;}
.ws1a{word-spacing:-3.953200pt;}
.wsb{word-spacing:-3.950933pt;}
.ws11{word-spacing:-3.878000pt;}
.ws16{word-spacing:-3.773600pt;}
.wsc{word-spacing:-3.772267pt;}
.ws34{word-spacing:-1.794267pt;}
.ws7{word-spacing:-1.324667pt;}
.ws1d{word-spacing:-1.245200pt;}
.ws1c{word-spacing:-1.238133pt;}
.ws9{word-spacing:-1.232667pt;}
.ws18{word-spacing:-1.116800pt;}
.ws3d{word-spacing:-1.018133pt;}
.ws10{word-spacing:-0.678267pt;}
.wse{word-spacing:-0.588800pt;}
.ws3c{word-spacing:-0.502933pt;}
.ws4{word-spacing:-0.292000pt;}
.ws31{word-spacing:-0.192267pt;}
.ws2d{word-spacing:-0.172267pt;}
.ws3a{word-spacing:-0.157867pt;}
.ws3b{word-spacing:-0.142400pt;}
.ws43{word-spacing:-0.128133pt;}
.ws26{word-spacing:-0.119333pt;}
.ws14{word-spacing:-0.104480pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:0.092533pt;}
.ws19{word-spacing:0.119200pt;}
.ws5{word-spacing:0.633467pt;}
.ws15{word-spacing:0.779733pt;}
.ws12{word-spacing:1.533200pt;}
.ws35{word-spacing:1.628800pt;}
.ws33{word-spacing:27.914000pt;}
.ws1f{word-spacing:34.362400pt;}
.wsf{word-spacing:36.651733pt;}
.ws25{word-spacing:95.988800pt;}
.ws2{word-spacing:545.918000pt;}
.ws27{word-spacing:1232.498933pt;}
.ws30{word-spacing:3909.455733pt;}
.ws24{word-spacing:4008.122400pt;}
.ws22{word-spacing:4159.962400pt;}
._17{margin-left:-4936.249600pt;}
._11{margin-left:-21.533867pt;}
._12{margin-left:-20.318933pt;}
._16{margin-left:-14.057333pt;}
._e{margin-left:-11.606400pt;}
._21{margin-left:-10.090133pt;}
._14{margin-left:-8.424800pt;}
._9{margin-left:-7.104000pt;}
._1{margin-left:-5.897200pt;}
._13{margin-left:-4.672533pt;}
._6{margin-left:-3.520000pt;}
._2{margin-left:-2.562933pt;}
._3{margin-left:-1.313733pt;}
._0{width:1.025067pt;}
._4{width:2.628000pt;}
._8{width:3.584267pt;}
._f{width:5.148267pt;}
._20{width:8.614267pt;}
._7{width:17.262667pt;}
._a{width:19.891200pt;}
._c{width:24.189733pt;}
._b{width:25.453333pt;}
._5{width:28.320000pt;}
._1a{width:35.121200pt;}
._1b{width:37.037200pt;}
._d{width:53.119867pt;}
._1e{width:55.342533pt;}
._22{width:156.538933pt;}
._23{width:348.645600pt;}
._10{width:567.337200pt;}
._1c{width:669.089733pt;}
._1d{width:786.689733pt;}
._15{width:1038.284400pt;}
._1f{width:1049.518533pt;}
._19{width:1304.568133pt;}
._18{width:1314.305600pt;}
.fs5{font-size:52.133333pt;}
.fs11{font-size:56.000000pt;}
.fs8{font-size:56.133333pt;}
.fs1a{font-size:60.000000pt;}
.fs1b{font-size:60.133333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:64.133333pt;}
.fs1e{font-size:72.133333pt;}
.fs10{font-size:76.000000pt;}
.fsb{font-size:76.133333pt;}
.fse{font-size:77.750822pt;}
.fsf{font-size:77.778736pt;}
.fs17{font-size:84.000000pt;}
.fs16{font-size:84.133333pt;}
.fs2{font-size:96.133333pt;}
.fs14{font-size:108.133333pt;}
.fs15{font-size:108.266667pt;}
.fs20{font-size:116.133333pt;}
.fs1f{font-size:116.266667pt;}
.fs18{font-size:128.000000pt;}
.fs9{font-size:128.133333pt;}
.fsa{font-size:128.266667pt;}
.fsd{font-size:148.133333pt;}
.fsc{font-size:148.266667pt;}
.fs1d{font-size:172.133333pt;}
.fs1c{font-size:172.266667pt;}
.fs19{font-size:176.266667pt;}
.fs7{font-size:192.266667pt;}
.fs4{font-size:212.266667pt;}
.fs12{font-size:236.266667pt;}
.fs13{font-size:236.400000pt;}
.fs0{font-size:256.266667pt;}
.fs1{font-size:256.400000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:5.600000pt;}
.ydd{bottom:7.033333pt;}
.yf{bottom:7.066667pt;}
.y8b{bottom:8.266667pt;}
.yea{bottom:8.766667pt;}
.y57{bottom:9.566667pt;}
.y77{bottom:10.000000pt;}
.y107{bottom:10.166667pt;}
.y64{bottom:10.666667pt;}
.y63{bottom:11.400000pt;}
.y73{bottom:11.700000pt;}
.y11{bottom:11.800000pt;}
.y4{bottom:11.900000pt;}
.y5{bottom:12.033333pt;}
.yce{bottom:12.166667pt;}
.yf7{bottom:12.833333pt;}
.y54{bottom:13.800000pt;}
.yb7{bottom:14.900000pt;}
.y12b{bottom:14.933333pt;}
.y50{bottom:15.490792pt;}
.yef{bottom:18.933333pt;}
.ye3{bottom:19.833333pt;}
.yd6{bottom:31.000000pt;}
.y9b{bottom:32.633333pt;}
.y62{bottom:34.433333pt;}
.ycd{bottom:38.200000pt;}
.y3a{bottom:39.966667pt;}
.yc8{bottom:41.300000pt;}
.y9f{bottom:43.300000pt;}
.y12a{bottom:43.966667pt;}
.ya5{bottom:44.166667pt;}
.y10{bottom:44.666667pt;}
.yb6{bottom:46.966667pt;}
.y126{bottom:48.133333pt;}
.ye2{bottom:48.866667pt;}
.y3{bottom:48.966667pt;}
.yc0{bottom:55.533333pt;}
.y51{bottom:55.760907pt;}
.y18{bottom:58.566667pt;}
.y9a{bottom:58.666667pt;}
.yd4{bottom:62.900000pt;}
.yee{bottom:63.966667pt;}
.ycc{bottom:64.233333pt;}
.y42{bottom:66.066667pt;}
.y33{bottom:70.433333pt;}
.yd7{bottom:70.866667pt;}
.y139{bottom:71.066667pt;}
.y125{bottom:74.166667pt;}
.ya1{bottom:79.500000pt;}
.yc7{bottom:80.366667pt;}
.y3f{bottom:86.800000pt;}
.ycf{bottom:88.200000pt;}
.ycb{bottom:89.266667pt;}
.yfb{bottom:92.866667pt;}
.ybf{bottom:93.600000pt;}
.y32{bottom:94.500000pt;}
.y71{bottom:98.533333pt;}
.ye{bottom:102.800000pt;}
.y138{bottom:103.100000pt;}
.y123{bottom:103.666667pt;}
.yca{bottom:107.066667pt;}
.yd3{bottom:107.533333pt;}
.ya6{bottom:110.866667pt;}
.yb5{bottom:111.033333pt;}
.y17{bottom:115.666667pt;}
.y39{bottom:118.200000pt;}
.yfa{bottom:118.900000pt;}
.yf0{bottom:120.533333pt;}
.y31{bottom:123.533333pt;}
.ya0{bottom:124.533333pt;}
.y124{bottom:125.233333pt;}
.ybe{bottom:132.633333pt;}
.ya4{bottom:133.166667pt;}
.y137{bottom:135.160000pt;}
.ya8{bottom:136.600000pt;}
.yb2{bottom:142.400000pt;}
.y16{bottom:144.706667pt;}
.yf9{bottom:144.933333pt;}
.yd9{bottom:149.400000pt;}
.y30{bottom:152.573333pt;}
.y122{bottom:152.733333pt;}
.y7d{bottom:153.333333pt;}
.yd{bottom:159.906667pt;}
.y78{bottom:161.866667pt;}
.y25{bottom:161.893333pt;}
.y136{bottom:167.200000pt;}
.yf8{bottom:169.960000pt;}
.y66{bottom:177.200000pt;}
.ye0{bottom:179.440000pt;}
.y11a{bottom:180.333333pt;}
.y2f{bottom:181.600000pt;}
.y2{bottom:185.893333pt;}
.y27{bottom:187.173333pt;}
.y24{bottom:189.933333pt;}
.y118{bottom:193.106667pt;}
.yb1{bottom:194.466667pt;}
.y15{bottom:202.760000pt;}
.y41{bottom:203.293333pt;}
.ya{bottom:203.893333pt;}
.y47{bottom:204.906667pt;}
.ye1{bottom:206.200000pt;}
.ybd{bottom:208.733333pt;}
.ya9{bottom:210.333333pt;}
.y7e{bottom:212.066667pt;}
.y26{bottom:215.200000pt;}
.yc{bottom:217.960000pt;}
.y5c{bottom:219.400000pt;}
.y70{bottom:219.933333pt;}
.y7b{bottom:223.333333pt;}
.ydf{bottom:224.506667pt;}
.y119{bottom:225.400000pt;}
.y4d{bottom:227.840000pt;}
.y135{bottom:231.306667pt;}
.y10d{bottom:231.426667pt;}
.y14{bottom:231.800000pt;}
.y38{bottom:232.266667pt;}
.yad{bottom:233.506667pt;}
.y10b{bottom:244.173333pt;}
.yf3{bottom:246.533333pt;}
.y1{bottom:246.973333pt;}
.ybc{bottom:247.800000pt;}
.y46{bottom:249.973333pt;}
.y6f{bottom:252.000000pt;}
.ya2{bottom:254.506667pt;}
.y121{bottom:258.906667pt;}
.y5b{bottom:264.466667pt;}
.y37{bottom:271.306667pt;}
.yb9{bottom:271.933333pt;}
.y2e{bottom:274.306667pt;}
.yb{bottom:276.026667pt;}
.y92{bottom:276.560000pt;}
.y12{bottom:276.706667pt;}
.y99{bottom:278.400000pt;}
.y10c{bottom:279.506667pt;}
.y2a{bottom:279.866667pt;}
.y3d{bottom:280.600000pt;}
.y10a{bottom:283.240000pt;}
.y6e{bottom:284.026667pt;}
.yac{bottom:284.600000pt;}
.y4c{bottom:284.893333pt;}
.y4f{bottom:291.000000pt;}
.y89{bottom:291.400000pt;}
.y120{bottom:293.933333pt;}
.yd5{bottom:294.306667pt;}
.y45{bottom:295.040000pt;}
.y134{bottom:295.360000pt;}
.yff{bottom:296.000000pt;}
.yb0{bottom:296.600000pt;}
.y7a{bottom:298.400000pt;}
.y2d{bottom:302.333333pt;}
.y29{bottom:307.893333pt;}
.y36{bottom:309.360000pt;}
.y6d{bottom:316.066667pt;}
.y109{bottom:321.266667pt;}
.y88{bottom:323.440000pt;}
.y91{bottom:324.626667pt;}
.yfe{bottom:325.040000pt;}
.y98{bottom:326.466667pt;}
.y133{bottom:327.426667pt;}
.yb8{bottom:329.000000pt;}
.yd8{bottom:330.106667pt;}
.yab{bottom:335.666667pt;}
.y11f{bottom:336.000000pt;}
.y28{bottom:336.933333pt;}
.y44{bottom:340.106667pt;}
.y4b{bottom:343.000000pt;}
.y35{bottom:347.400000pt;}
.y6c{bottom:348.133333pt;}
.y76{bottom:351.933333pt;}
.y52{bottom:352.840000pt;}
.y5a{bottom:353.600000pt;}
.y10f{bottom:353.640000pt;}
.yc3{bottom:353.773333pt;}
.yfd{bottom:354.066667pt;}
.y7c{bottom:356.400000pt;}
.yc6{bottom:356.800000pt;}
.y80{bottom:357.133333pt;}
.y90{bottom:372.693333pt;}
.y97{bottom:374.533333pt;}
.y1f{bottom:379.933333pt;}
.y43{bottom:385.133333pt;}
.y65{bottom:386.106667pt;}
.y34{bottom:386.466667pt;}
.y87{bottom:387.506667pt;}
.yaa{bottom:387.733333pt;}
.y116{bottom:390.000000pt;}
.y132{bottom:391.506667pt;}
.yc2{bottom:391.840000pt;}
.yf1{bottom:391.973333pt;}
.y108{bottom:393.360000pt;}
.yc5{bottom:394.866667pt;}
.yaf{bottom:398.773333pt;}
.y4a{bottom:401.066667pt;}
.y10e{bottom:401.706667pt;}
.y1e{bottom:408.960000pt;}
.y23{bottom:412.066667pt;}
.yfc{bottom:412.133333pt;}
.y2c{bottom:419.560000pt;}
.y8f{bottom:420.773333pt;}
.y115{bottom:422.066667pt;}
.y96{bottom:422.600000pt;}
.y131{bottom:423.560000pt;}
.y129{bottom:430.333333pt;}
.yc1{bottom:430.866667pt;}
.y6b{bottom:431.226667pt;}
.yc4{bottom:433.933333pt;}
.y22{bottom:440.133333pt;}
.y11e{bottom:442.133333pt;}
.y59{bottom:443.706667pt;}
.y2b{bottom:447.640000pt;}
.yae{bottom:450.840000pt;}
.y86{bottom:451.600000pt;}
.y114{bottom:454.106667pt;}
.y130{bottom:455.600000pt;}
.y128{bottom:459.360000pt;}
.y6a{bottom:463.266667pt;}
.yd0{bottom:463.440000pt;}
.y9e{bottom:466.226667pt;}
.y1d{bottom:467.066667pt;}
.ye9{bottom:467.893333pt;}
.y8e{bottom:468.840000pt;}
.y95{bottom:470.666667pt;}
.yf2{bottom:482.066667pt;}
.y113{bottom:486.133333pt;}
.y61{bottom:486.893333pt;}
.y111{bottom:487.600000pt;}
.y127{bottom:488.440000pt;}
.y58{bottom:488.773333pt;}
.y11d{bottom:491.226667pt;}
.y3e{bottom:491.400000pt;}
.ye8{bottom:492.960000pt;}
.y1c{bottom:495.106667pt;}
.y69{bottom:495.333333pt;}
.y9{bottom:495.506667pt;}
.yed{bottom:497.773333pt;}
.yde{bottom:498.960000pt;}
.y7f{bottom:503.106667pt;}
.y21{bottom:512.560000pt;}
.y75{bottom:514.373333pt;}
.y85{bottom:515.706667pt;}
.y49{bottom:516.226667pt;}
.y8d{bottom:516.893333pt;}
.ye7{bottom:518.000000pt;}
.y112{bottom:518.200000pt;}
.y94{bottom:518.733333pt;}
.y60{bottom:518.933333pt;}
.y12f{bottom:519.693333pt;}
.yf6{bottom:521.466667pt;}
.y40{bottom:522.000000pt;}
.y1b{bottom:524.133333pt;}
.y68{bottom:527.360000pt;}
.yec{bottom:531.840000pt;}
.y110{bottom:532.666667pt;}
.y103{bottom:534.973333pt;}
.y84{bottom:547.733333pt;}
.y106{bottom:549.733333pt;}
.y5f{bottom:550.973333pt;}
.y8{bottom:552.560000pt;}
.yf5{bottom:561.506667pt;}
.y8c{bottom:564.973333pt;}
.y93{bottom:566.800000pt;}
.yeb{bottom:566.866667pt;}
.ye6{bottom:567.066667pt;}
.y102{bottom:572.026667pt;}
.y48{bottom:573.306667pt;}
.y105{bottom:577.773333pt;}
.y83{bottom:579.773333pt;}
.ydc{bottom:581.733333pt;}
.y1a{bottom:582.200000pt;}
.y12e{bottom:583.773333pt;}
.ybb{bottom:591.026667pt;}
.ye5{bottom:592.106667pt;}
.y11c{bottom:595.360000pt;}
.y72{bottom:599.066667pt;}
.yf4{bottom:601.560000pt;}
.y5e{bottom:603.666667pt;}
.y3c{bottom:606.800000pt;}
.y104{bottom:606.840000pt;}
.ya7{bottom:609.840000pt;}
.y7{bottom:610.666667pt;}
.y101{bottom:611.066667pt;}
.y19{bottom:611.266667pt;}
.yb4{bottom:612.640000pt;}
.y56{bottom:612.733333pt;}
.y67{bottom:615.666667pt;}
.yd2{bottom:619.106667pt;}
.y79{bottom:623.333333pt;}
.y117{bottom:629.866667pt;}
.yc9{bottom:631.973333pt;}
.ydb{bottom:633.066667pt;}
.y12d{bottom:636.840000pt;}
.y82{bottom:637.066667pt;}
.y20{bottom:641.560000pt;}
.y4e{bottom:656.360000pt;}
.y53{bottom:657.360000pt;}
.y3b{bottom:658.893333pt;}
.ye4{bottom:660.533333pt;}
.yba{bottom:661.133333pt;}
.y11b{bottom:664.466667pt;}
.y55{bottom:664.800000pt;}
.y5d{bottom:666.733333pt;}
.ya3{bottom:668.133333pt;}
.y6{bottom:668.733333pt;}
.y12c{bottom:668.893333pt;}
.yb3{bottom:669.693333pt;}
.y74{bottom:670.106667pt;}
.yd1{bottom:671.173333pt;}
.y13{bottom:675.026667pt;}
.y8a{bottom:676.306667pt;}
.y81{bottom:679.133333pt;}
.yda{bottom:683.133333pt;}
.y100{bottom:683.733333pt;}
.y9d{bottom:692.173333pt;}
.h17{height:42.109375pt;}
.h5{height:44.827539pt;}
.h27{height:48.125000pt;}
.h7{height:48.225260pt;}
.ha{height:48.266992pt;}
.h25{height:51.591797pt;}
.h26{height:51.706445pt;}
.h33{height:57.148438pt;}
.h32{height:57.248698pt;}
.h2d{height:62.528190pt;}
.h15{height:65.349609pt;}
.hd{height:65.464258pt;}
.h13{height:66.855077pt;}
.h14{height:66.879079pt;}
.h2e{height:72.228516pt;}
.h3{height:72.287760pt;}
.h28{height:72.343164pt;}
.h20{height:75.461523pt;}
.h1c{height:81.311198pt;}
.h34{height:81.411458pt;}
.h9{height:82.661523pt;}
.h16{height:89.018620pt;}
.h1b{height:92.979883pt;}
.h1d{height:93.094531pt;}
.h2c{height:94.158138pt;}
.hb{height:96.350260pt;}
.hc{height:96.450521pt;}
.h30{height:99.858789pt;}
.h2f{height:99.973438pt;}
.h22{height:110.062500pt;}
.h1e{height:110.177148pt;}
.h1f{height:110.291797pt;}
.hf{height:111.389323pt;}
.he{height:111.489583pt;}
.h6{height:112.364583pt;}
.h18{height:124.955208pt;}
.h21{height:127.374414pt;}
.h23{height:127.489063pt;}
.h2b{height:129.536458pt;}
.h24{height:132.544271pt;}
.h8{height:144.575521pt;}
.h2a{height:148.011133pt;}
.h29{height:148.125781pt;}
.h4{height:159.614583pt;}
.h10{height:160.261523pt;}
.h11{height:165.323047pt;}
.h19{height:177.661458pt;}
.h1a{height:177.761719pt;}
.h31{height:182.520312pt;}
.h1{height:192.700521pt;}
.h2{height:192.800781pt;}
.h12{height:347.994225pt;}
.h0{height:720.000000pt;}
.w2{width:459.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.599981pt;}
.x1{left:19.033314pt;}
.xb{left:22.299981pt;}
.x35{left:25.162852pt;}
.x6c{left:35.099981pt;}
.xa{left:36.999981pt;}
.x49{left:42.599981pt;}
.x4e{left:44.499981pt;}
.x43{left:45.633314pt;}
.x2b{left:47.166648pt;}
.xa6{left:49.166648pt;}
.x8f{left:50.499981pt;}
.xa0{left:53.866648pt;}
.x9b{left:56.399981pt;}
.x97{left:57.999981pt;}
.x8{left:59.999981pt;}
.x44{left:61.566648pt;}
.xb5{left:62.966648pt;}
.x9d{left:64.599981pt;}
.x6e{left:66.266648pt;}
.xc4{left:68.066648pt;}
.x65{left:69.733314pt;}
.xa7{left:79.666648pt;}
.xac{left:80.833314pt;}
.x6{left:81.999981pt;}
.x82{left:84.766648pt;}
.x5f{left:91.099981pt;}
.x98{left:92.933314pt;}
.xbb{left:94.833314pt;}
.xbd{left:97.666648pt;}
.xb4{left:99.999981pt;}
.x45{left:107.899981pt;}
.x62{left:109.033314pt;}
.x7e{left:110.366648pt;}
.x80{left:121.433314pt;}
.x9f{left:127.666648pt;}
.x2c{left:133.799981pt;}
.x34{left:136.543628pt;}
.xab{left:139.266648pt;}
.x61{left:140.293314pt;}
.xb6{left:142.799981pt;}
.x41{left:144.266648pt;}
.xb8{left:145.666648pt;}
.x64{left:147.639981pt;}
.xb9{left:150.159981pt;}
.x83{left:160.666648pt;}
.x8d{left:164.133314pt;}
.x42{left:166.493314pt;}
.x27{left:167.626648pt;}
.x92{left:168.893314pt;}
.x32{left:170.599981pt;}
.x56{left:172.906648pt;}
.x4f{left:175.266648pt;}
.x74{left:178.106648pt;}
.x59{left:179.599981pt;}
.x7{left:182.773314pt;}
.x8e{left:190.399981pt;}
.x9e{left:192.533314pt;}
.x63{left:194.999981pt;}
.x9{left:196.773314pt;}
.x93{left:200.906648pt;}
.x91{left:205.066648pt;}
.x96{left:206.666648pt;}
.xd{left:209.506648pt;}
.x7b{left:213.359981pt;}
.x77{left:216.733314pt;}
.xae{left:218.239981pt;}
.x89{left:224.706648pt;}
.x7d{left:236.973314pt;}
.x6d{left:247.266648pt;}
.x3c{left:252.359981pt;}
.x4d{left:253.373314pt;}
.x4c{left:267.866648pt;}
.x3f{left:270.266648pt;}
.x5d{left:272.333314pt;}
.x37{left:273.533314pt;}
.xbc{left:274.626648pt;}
.x9a{left:279.733314pt;}
.x54{left:283.693314pt;}
.x46{left:285.173314pt;}
.x5c{left:288.133314pt;}
.x3e{left:294.293314pt;}
.xa1{left:317.439981pt;}
.xc7{left:319.599981pt;}
.xa2{left:328.839981pt;}
.x24{left:330.866648pt;}
.x22{left:331.973314pt;}
.x21{left:334.239981pt;}
.xb7{left:335.839981pt;}
.x40{left:340.173314pt;}
.xc8{left:361.199981pt;}
.xaa{left:362.226648pt;}
.x23{left:374.506648pt;}
.xba{left:383.199981pt;}
.x2d{left:390.599981pt;}
.x9c{left:392.973314pt;}
.x6f{left:412.893314pt;}
.xad{left:424.239981pt;}
.x70{left:426.399981pt;}
.x25{left:431.133314pt;}
.x28{left:442.506648pt;}
.xbf{left:445.039981pt;}
.xa3{left:447.199981pt;}
.xe{left:453.973314pt;}
.x79{left:455.693314pt;}
.x26{left:498.839981pt;}
.x81{left:505.733314pt;}
.x4b{left:517.266648pt;}
.x4a{left:519.706648pt;}
.x7f{left:523.599981pt;}
.x57{left:529.466648pt;}
.x50{left:531.839981pt;}
.x78{left:533.893314pt;}
.x5a{left:536.173314pt;}
.x58{left:537.706648pt;}
.x51{left:540.066648pt;}
.x84{left:540.973314pt;}
.x99{left:543.026648pt;}
.x5b{left:544.439981pt;}
.x7c{left:546.106648pt;}
.xa8{left:548.293314pt;}
.x85{left:558.933314pt;}
.xc1{left:560.533314pt;}
.xc0{left:564.199981pt;}
.x7a{left:567.106648pt;}
.x3d{left:568.266648pt;}
.xc3{left:584.199981pt;}
.xc6{left:586.199981pt;}
.xc5{left:590.639981pt;}
.x20{left:616.759981pt;}
.xa5{left:618.626648pt;}
.xc{left:620.733314pt;}
.x1d{left:639.533314pt;}
.x88{left:650.093314pt;}
.xc2{left:655.866648pt;}
.x30{left:671.399981pt;}
.xa4{left:676.066648pt;}
.xbe{left:677.266648pt;}
.x47{left:690.133314pt;}
.x1c{left:691.559981pt;}
.x1e{left:694.226648pt;}
.x86{left:700.226648pt;}
.x29{left:701.693314pt;}
.x1f{left:713.559981pt;}
.x48{left:720.173314pt;}
.x31{left:731.439981pt;}
.x94{left:742.959981pt;}
.xa9{left:748.359981pt;}
.x14{left:764.626648pt;}
.x6b{left:770.293314pt;}
.x13{left:777.773314pt;}
.x72{left:779.426648pt;}
.x2e{left:784.333314pt;}
.x71{left:789.773314pt;}
.x33{left:809.000000pt;}
.xb1{left:811.106648pt;}
.x10{left:817.466648pt;}
.x8b{left:822.066648pt;}
.x69{left:830.426648pt;}
.x8a{left:842.759981pt;}
.xf{left:844.133314pt;}
.x87{left:850.839981pt;}
.x66{left:852.866648pt;}
.x67{left:860.693314pt;}
.x1b{left:870.466648pt;}
.x1a{left:873.839981pt;}
.x12{left:880.506648pt;}
.x11{left:887.173314pt;}
.x4{left:892.373314pt;}
.x3a{left:897.093314pt;}
.x68{left:898.559981pt;}
.x53{left:921.533314pt;}
.x55{left:929.466648pt;}
.x5e{left:931.599981pt;}
.x8c{left:942.239981pt;}
.x90{left:944.559981pt;}
.x2{left:946.933314pt;}
.x39{left:963.373314pt;}
.x2f{left:977.199981pt;}
.x36{left:985.039981pt;}
.x17{left:986.906648pt;}
.x16{left:991.799981pt;}
.x6a{left:995.626648pt;}
.x15{left:1007.599981pt;}
.xb3{left:1025.066648pt;}
.x18{left:1027.106648pt;}
.xb2{left:1028.333314pt;}
.x52{left:1034.173314pt;}
.x73{left:1042.706648pt;}
.x19{left:1050.333314pt;}
.x38{left:1052.399981pt;}
.x75{left:1082.506648pt;}
.x2a{left:1086.373314pt;}
.x60{left:1093.626648pt;}
.x3b{left:1095.839981pt;}
.x3{left:1100.359981pt;}
.xb0{left:1113.933314pt;}
.xaf{left:1137.866648pt;}
.x76{left:1147.533314pt;}
.x95{left:1189.066648pt;}
}




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