
    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_e66072f83a599b87aa70b357.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_1d37df0ae8fdb508c9c09264.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_87cb8b79a5e21d7360cbc57e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_3f84610de88124297b6aec00.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_26813b48313e20d30dbd3667.woff')format("woff");}.ff5{font-family:ff5;line-height:1.079102;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_a7d132a2eb353e5a5c624ed3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_242b571439a9fd2f9df67ad3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.163086;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_128de41df6b99a231ceb790d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.163086;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_9a56d6edcd2216cf40793f59.woff')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_e0fc376b09b756c7bdeed5fe.woff')format("woff");}.ffa{font-family:ffa;line-height:1.007812;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_0735f14bb9004fa65cf2bbf1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_68e223f1db57bea694e5dff2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.856000;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_a80e3f4f42620a878f730679.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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);}
.v9{vertical-align:-29.424000px;}
.v3{vertical-align:-26.364000px;}
.v6{vertical-align:-24.666000px;}
.v5{vertical-align:-22.788000px;}
.v8{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.532000px;}
.v7{vertical-align:39.630000px;}
.v4{vertical-align:42.690000px;}
.v2{vertical-align:91.842000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.179940px;}
.lsa{letter-spacing:0.252006px;}
.lsb{letter-spacing:0.258006px;}
.lsf{letter-spacing:0.269910px;}
.ls13{letter-spacing:0.418632px;}
.ls9{letter-spacing:0.696000px;}
.ls12{letter-spacing:59.099304px;}
.ls3{letter-spacing:63.252252px;}
.ls1{letter-spacing:63.258252px;}
.ls11{letter-spacing:63.426252px;}
.lsc{letter-spacing:64.104252px;}
.lsd{letter-spacing:65.995560px;}
.ls5{letter-spacing:67.747200px;}
.lse{letter-spacing:70.170840px;}
.ls10{letter-spacing:70.176840px;}
.ls7{letter-spacing:74.078850px;}
.ls8{letter-spacing:75.448500px;}
.ls6{letter-spacing:77.034000px;}
.ls4{letter-spacing:77.208000px;}
.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;}
}
.wsc{word-spacing:-59.832000px;}
.ws16{word-spacing:-54.275472px;}
.wsb{word-spacing:-53.188986px;}
.ws12{word-spacing:-50.130792px;}
.ws8{word-spacing:-46.545972px;}
.ws6{word-spacing:-43.202028px;}
.ws14{word-spacing:-41.787144px;}
.ws2{word-spacing:-39.902958px;}
.ws13{word-spacing:-38.064726px;}
.wsd{word-spacing:-36.559014px;}
.ws11{word-spacing:-33.380856px;}
.ws9{word-spacing:-33.261606px;}
.ws10{word-spacing:-30.407274px;}
.wsa{word-spacing:-29.916000px;}
.ws3{word-spacing:-26.570394px;}
.ws0{word-spacing:-24.921690px;}
.ws7{word-spacing:-23.272986px;}
.wsf{word-spacing:-21.624282px;}
.ws5{word-spacing:-19.929042px;}
.ws4{word-spacing:-16.629972px;}
.ws17{word-spacing:-0.095922px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:197.448000px;}
.ws15{word-spacing:718.020000px;}
._2{margin-left:-16.467528px;}
._c{margin-left:-13.861920px;}
._a{margin-left:-11.965878px;}
._7{margin-left:-10.941216px;}
._9{margin-left:-9.448164px;}
._8{margin-left:-8.010444px;}
._1{margin-left:-6.889476px;}
._5{margin-left:-5.871684px;}
._4{margin-left:-3.882426px;}
._6{margin-left:-2.375064px;}
._0{margin-left:-1.176252px;}
._3{width:1.259580px;}
._d{width:3.035256px;}
._10{width:4.378416px;}
._f{width:233.328000px;}
._b{width:676.396200px;}
._e{width:1350.717648px;}
.fcd{color:rgb(47,79,79);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(128,128,128);}
.fc3{color:rgb(25,25,112);}
.fc7{color:rgb(206,24,30);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(27,106,203);}
.fce{color:rgb(0,0,205);}
.fca{color:rgb(52,101,164);}
.fc0{color:rgb(192,192,192);}
.fc8{color:rgb(105,105,105);}
.fcc{color:rgb(0,135,183);}
.fc6{color:rgb(0,0,139);}
.fc5{color:transparent;}
.fcb{color:rgb(0,0,255);}
.fs15{font-size:40.140000px;}
.fs12{font-size:43.200000px;}
.fs13{font-size:46.260000px;}
.fsd{font-size:48.642000px;}
.fs16{font-size:54.084000px;}
.fs9{font-size:60.036000px;}
.fs5{font-size:62.928000px;}
.fs8{font-size:71.946000px;}
.fsc{font-size:78.066000px;}
.fsb{font-size:84.018000px;}
.fs3{font-size:89.970000px;}
.fs2{font-size:95.922000px;}
.fs14{font-size:102.048000px;}
.fs1{font-size:108.000000px;}
.fs7{font-size:120.078000px;}
.fse{font-size:131.982000px;}
.fs4{font-size:144.054000px;}
.fs6{font-size:155.964000px;}
.fs0{font-size:168.036000px;}
.fsa{font-size:192.018000px;}
.fsf{font-size:216.000000px;}
.fs11{font-size:239.982000px;}
.fs10{font-size:576.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y12d{bottom:24.108000px;}
.ybe{bottom:30.868500px;}
.y1c2{bottom:31.635000px;}
.y197{bottom:35.376000px;}
.y63{bottom:36.736500px;}
.ye{bottom:37.630500px;}
.y137{bottom:40.606500px;}
.y39{bottom:40.947000px;}
.y110{bottom:44.815500px;}
.y55{bottom:50.088000px;}
.yb0{bottom:52.468500px;}
.y8e{bottom:52.936500px;}
.y141{bottom:54.127500px;}
.y11b{bottom:54.723000px;}
.yc5{bottom:54.892500px;}
.y156{bottom:59.358000px;}
.y170{bottom:61.611000px;}
.y62{bottom:61.780500px;}
.y1a0{bottom:64.332000px;}
.y49{bottom:66.415500px;}
.y35{bottom:67.011000px;}
.yef{bottom:67.947000px;}
.y17b{bottom:70.158000px;}
.y9a{bottom:70.923000px;}
.y1c1{bottom:71.092500px;}
.y38{bottom:71.220000px;}
.y8c{bottom:71.518500px;}
.y14b{bottom:72.114000px;}
.y54{bottom:73.644000px;}
.y8d{bottom:73.941000px;}
.y185{bottom:77.514000px;}
.ybd{bottom:78.108000px;}
.y196{bottom:78.279000px;}
.y166{bottom:81.595500px;}
.y136{bottom:85.932000px;}
.y61{bottom:86.824500px;}
.y3b{bottom:87.888000px;}
.yf5{bottom:89.206500px;}
.y155{bottom:89.547000px;}
.y6d{bottom:90.141000px;}
.y78{bottom:90.736500px;}
.y1a9{bottom:91.630500px;}
.y48{bottom:92.523000px;}
.y16f{bottom:93.714000px;}
.yaf{bottom:94.011000px;}
.y37{bottom:94.308000px;}
.yb1{bottom:94.606500px;}
.ycf{bottom:95.839500px;}
.y140{bottom:97.030500px;}
.y34{bottom:97.327500px;}
.y12c{bottom:98.518500px;}
.y1a{bottom:98.688000px;}
.y82{bottom:99.114000px;}
.y1c0{bottom:99.708000px;}
.y14a{bottom:102.259500px;}
.y26{bottom:103.791000px;}
.y6a{bottom:107.235000px;}
.y53{bottom:107.659500px;}
.yc{bottom:108.127500px;}
.y99{bottom:108.424500px;}
.yed{bottom:109.786500px;}
.yee{bottom:112.167000px;}
.y122{bottom:112.762500px;}
.y184{bottom:115.015500px;}
.y195{bottom:115.780500px;}
.y154{bottom:119.820000px;}
.y1af{bottom:120.586500px;}
.yff{bottom:121.308000px;}
.y47{bottom:122.244000px;}
.ybc{bottom:122.541000px;}
.y3a{bottom:125.391000px;}
.yd{bottom:125.688000px;}
.y165{bottom:126.879000px;}
.y1bf{bottom:128.536500px;}
.y189{bottom:129.259500px;}
.y135{bottom:131.215500px;}
.y52{bottom:131.386500px;}
.y36{bottom:131.811000px;}
.y8b{bottom:132.576000px;}
.y15d{bottom:133.936500px;}
.yd7{bottom:134.362500px;}
.ye7{bottom:135.297000px;}
.yae{bottom:135.595500px;}
.y77{bottom:136.020000px;}
.y84{bottom:137.380500px;}
.y10f{bottom:138.274500px;}
.y19{bottom:138.571500px;}
.y11a{bottom:138.741000px;}
.y85{bottom:139.464000px;}
.y17a{bottom:139.762500px;}
.y13f{bottom:139.932000px;}
.y6c{bottom:140.358000px;}
.ye0{bottom:141.591000px;}
.yce{bottom:142.780500px;}
.y25{bottom:143.674500px;}
.y81{bottom:144.567000px;}
.y19f{bottom:144.736500px;}
.y98{bottom:145.927500px;}
.y194{bottom:147.883500px;}
.y1a8{bottom:149.074500px;}
.y153{bottom:149.967000px;}
.y121{bottom:150.264000px;}
.y183{bottom:152.518500px;}
.y12b{bottom:152.815500px;}
.y109{bottom:153.580500px;}
.yb{bottom:154.474500px;}
.y60{bottom:156.259500px;}
.yfe{bottom:156.558000px;}
.y1be{bottom:157.195500px;}
.y69{bottom:157.323000px;}
.yf4{bottom:157.918500px;}
.y8a{bottom:162.892500px;}
.ybb{bottom:164.211000px;}
.yec{bottom:164.508000px;}
.y3e{bottom:165.274500px;}
.y10e{bottom:168.420000px;}
.y16e{bottom:168.718500px;}
.y164{bottom:172.162500px;}
.y188{bottom:174.586500px;}
.y76{bottom:174.714000px;}
.y134{bottom:176.541000px;}
.y19e{bottom:176.839500px;}
.y179{bottom:177.264000px;}
.ydf{bottom:177.435000px;}
.y1ae{bottom:178.030500px;}
.y18{bottom:178.497000px;}
.y15c{bottom:179.220000px;}
.ye6{bottom:179.815500px;}
.y152{bottom:180.283500px;}
.yd6{bottom:181.347000px;}
.y2b{bottom:182.367000px;}
.y13e{bottom:182.835000px;}
.y80{bottom:183.132000px;}
.y97{bottom:183.430500px;}
.y24{bottom:183.558000px;}
.y193{bottom:185.386500px;}
.y1bd{bottom:185.980500px;}
.y5f{bottom:186.874500px;}
.y120{bottom:187.767000px;}
.y182{bottom:190.020000px;}
.y6b{bottom:190.488000px;}
.y1a7{bottom:191.976000px;}
.y149{bottom:193.039500px;}
.ya{bottom:195.123000px;}
.ycd{bottom:196.483500px;}
.y108{bottom:198.864000px;}
.y51{bottom:202.180500px;}
.y3d{bottom:202.776000px;}
.y68{bottom:207.580500px;}
.yad{bottom:207.708000px;}
.yeb{bottom:209.835000px;}
.y151{bottom:210.558000px;}
.yba{bottom:211.492500px;}
.y16d{bottom:211.791000px;}
.y119{bottom:213.747000px;}
.y1bc{bottom:214.171500px;}
.y163{bottom:217.488000px;}
.y5e{bottom:217.615500px;}
.y17{bottom:218.508000px;}
.yde{bottom:218.976000px;}
.y19d{bottom:219.741000px;}
.y2a{bottom:220.039500px;}
.y178{bottom:220.167000px;}
.yf1{bottom:220.762500px;}
.y96{bottom:220.932000px;}
.y148{bottom:223.314000px;}
.y23{bottom:223.611000px;}
.ye5{bottom:224.376000px;}
.y15b{bottom:224.547000px;}
.yf3{bottom:224.844000px;}
.y75{bottom:226.630500px;}
.y181{bottom:227.523000px;}
.y192{bottom:228.288000px;}
.y133{bottom:228.586500px;}
.y13d{bottom:231.859500px;}
.y89{bottom:232.158000px;}
.y12a{bottom:234.114000px;}
.ya3{bottom:234.580500px;}
.yd5{bottom:234.879000px;}
.y7f{bottom:235.176000px;}
.ya4{bottom:235.771500px;}
.ycc{bottom:236.835000px;}
.yf7{bottom:238.024500px;}
.y1bb{bottom:239.215500px;}
.y3c{bottom:240.279000px;}
.y150{bottom:240.747000px;}
.y1a6{bottom:242.235000px;}
.y102{bottom:242.958000px;}
.yc4{bottom:243.723000px;}
.y107{bottom:244.191000px;}
.y5d{bottom:248.230500px;}
.y118{bottom:251.206500px;}
.y19c{bottom:251.844000px;}
.y177{bottom:252.268500px;}
.y147{bottom:253.459500px;}
.ya7{bottom:254.991000px;}
.y50{bottom:255.415500px;}
.yb9{bottom:255.883500px;}
.y67{bottom:257.668500px;}
.y10d{bottom:258.136500px;}
.y16{bottom:258.435000px;}
.y191{bottom:260.391000px;}
.ydd{bottom:260.688000px;}
.y129{bottom:261.879000px;}
.y88{bottom:262.347000px;}
.y162{bottom:262.941000px;}
.y22{bottom:263.536500px;}
.y1ba{bottom:264.132000px;}
.y15a{bottom:269.958000px;}
.y180{bottom:270.424500px;}
.y14f{bottom:271.020000px;}
.y1ad{bottom:271.191000px;}
.yf2{bottom:271.488000px;}
.y74{bottom:271.914000px;}
.yf0{bottom:273.444000px;}
.y132{bottom:273.868500px;}
.yac{bottom:274.762500px;}
.yf6{bottom:274.932000px;}
.y9c{bottom:275.059500px;}
.yd4{bottom:275.230500px;}
.y101{bottom:278.376000px;}
.ya1{bottom:279.864000px;}
.y7e{bottom:280.459500px;}
.ya2{bottom:281.097000px;}
.y16c{bottom:281.224500px;}
.ycb{bottom:283.776000px;}
.y113{bottom:284.244000px;}
.y10c{bottom:288.411000px;}
.y30{bottom:288.708000px;}
.y1b9{bottom:289.176000px;}
.y176{bottom:289.771500px;}
.yc3{bottom:290.962500px;}
.ya6{bottom:291.558000px;}
.y11d{bottom:291.897000px;}
.y1a5{bottom:292.323000px;}
.y43{bottom:294.279000px;}
.y19b{bottom:294.747000px;}
.y95{bottom:295.936500px;}
.y33{bottom:297.297000px;}
.y15{bottom:298.488000px;}
.y14e{bottom:301.167000px;}
.y46{bottom:302.697000px;}
.yb8{bottom:303.123000px;}
.y190{bottom:303.292500px;}
.y21{bottom:303.591000px;}
.y66{bottom:307.927500px;}
.y161{bottom:308.224500px;}
.y5c{bottom:309.586500px;}
.y73{bottom:310.606500px;}
.y13c{bottom:311.541000px;}
.y1b2{bottom:312.264000px;}
.y131{bottom:312.562500px;}
.ye4{bottom:313.497000px;}
.y100{bottom:313.795500px;}
.y146{bottom:313.923000px;}
.y1b8{bottom:314.220000px;}
.y159{bottom:315.283500px;}
.y112{bottom:319.492500px;}
.y128{bottom:319.620000px;}
.y1ac{bottom:321.279000px;}
.y16b{bottom:324.297000px;}
.y9f{bottom:325.191000px;}
.y7d{bottom:325.786500px;}
.y117{bottom:326.211000px;}
.ya0{bottom:326.380500px;}
.y19a{bottom:326.806500px;}
.yc2{bottom:326.976000px;}
.y11c{bottom:327.274500px;}
.y2f{bottom:328.635000px;}
.yd3{bottom:328.932000px;}
.y14d{bottom:331.483500px;}
.y175{bottom:332.674500px;}
.y42{bottom:334.162500px;}
.y106{bottom:334.927500px;}
.y18f{bottom:335.395500px;}
.y32{bottom:337.180500px;}
.yca{bottom:337.308000px;}
.y14{bottom:338.371500px;}
.y8{bottom:338.668500px;}
.y17f{bottom:340.030500px;}
.y9{bottom:340.624500px;}
.y94{bottom:341.986500px;}
.y1a4{bottom:342.580500px;}
.y45{bottom:342.708000px;}
.y20{bottom:343.474500px;}
.ydc{bottom:343.771500px;}
.y145{bottom:344.239500px;}
.y4f{bottom:348.576000px;}
.yb7{bottom:353.211000px;}
.y160{bottom:353.508000px;}
.y111{bottom:354.868500px;}
.y16a{bottom:356.230500px;}
.y5b{bottom:357.292500px;}
.ye3{bottom:358.015500px;}
.y13b{bottom:360.567000px;}
.y14c{bottom:361.630500px;}
.y187{bottom:362.523000px;}
.y72{bottom:362.692500px;}
.y116{bottom:363.714000px;}
.y1b7{bottom:364.180500px;}
.y87{bottom:364.479000px;}
.y174{bottom:364.776000px;}
.y2e{bottom:368.688000px;}
.yd2{bottom:369.283500px;}
.y199{bottom:369.708000px;}
.y7c{bottom:371.239500px;}
.y41{bottom:374.215500px;}
.y144{bottom:374.386500px;}
.y65{bottom:375.108000px;}
.y31{bottom:377.064000px;}
.y17e{bottom:377.532000px;}
.yc9{bottom:377.659500px;}
.y18e{bottom:378.297000px;}
.y13{bottom:378.424500px;}
.y1ab{bottom:378.723000px;}
.y93{bottom:379.488000px;}
.y105{bottom:380.211000px;}
.y44{bottom:382.635000px;}
.y1f{bottom:383.527500px;}
.y127{bottom:383.824500px;}
.ydb{bottom:385.314000px;}
.y5a{bottom:387.864000px;}
.yab{bottom:388.630500px;}
.y1b6{bottom:389.224500px;}
.ye9{bottom:391.011000px;}
.y169{bottom:393.732000px;}
.y6{bottom:394.795500px;}
.yfd{bottom:395.391000px;}
.y7{bottom:396.708000px;}
.y13a{bottom:397.347000px;}
.yb6{bottom:397.644000px;}
.y15f{bottom:398.835000px;}
.y1a3{bottom:400.024500px;}
.yfa{bottom:400.492500px;}
.y4e{bottom:401.386500px;}
.y9d{bottom:401.811000px;}
.y173{bottom:402.279000px;}
.ye2{bottom:402.747000px;}
.y130{bottom:403.171500px;}
.y9e{bottom:403.341000px;}
.y1b1{bottom:403.767000px;}
.y158{bottom:405.892500px;}
.y71{bottom:407.976000px;}
.y18d{bottom:410.358000px;}
.y10b{bottom:410.697000px;}
.y1b5{bottom:414.141000px;}
.yc1{bottom:415.758000px;}
.yd1{bottom:416.224500px;}
.y7b{bottom:416.523000px;}
.y143{bottom:416.991000px;}
.y124{bottom:417.586500px;}
.y91{bottom:417.714000px;}
.y12{bottom:418.308000px;}
.y59{bottom:418.479000px;}
.y92{bottom:419.244000px;}
.y11f{bottom:419.839500px;}
.y17d{bottom:420.435000px;}
.y1e{bottom:423.411000px;}
.yc8{bottom:424.771500px;}
.y64{bottom:425.239500px;}
.y104{bottom:425.536500px;}
.yda{bottom:426.897000px;}
.y115{bottom:428.215500px;}
.yaa{bottom:430.171500px;}
.yfc{bottom:430.639500px;}
.y186{bottom:436.039500px;}
.y168{bottom:436.762500px;}
.y1b4{bottom:439.186500px;}
.y10a{bottom:440.844000px;}
.ye8{bottom:443.395500px;}
.y198{bottom:444.714000px;}
.yb5{bottom:444.883500px;}
.y172{bottom:445.180500px;}
.y139{bottom:446.541000px;}
.y86{bottom:447.435000px;}
.y58{bottom:449.220000px;}
.y157{bottom:451.176000px;}
.y142{bottom:451.644000px;}
.y123{bottom:452.962500px;}
.y70{bottom:453.259500px;}
.ye1{bottom:453.430500px;}
.y12f{bottom:455.215500px;}
.y2d{bottom:455.386500px;}
.y11e{bottom:457.341000px;}
.y40{bottom:457.639500px;}
.y11{bottom:458.362500px;}
.y126{bottom:459.297000px;}
.y7a{bottom:461.806500px;}
.y1aa{bottom:463.039500px;}
.y1d{bottom:463.464000px;}
.y1b3{bottom:464.230500px;}
.y114{bottom:465.888000px;}
.yfb{bottom:466.015500px;}
.yd0{bottom:469.758000px;}
.y103{bottom:470.820000px;}
.ya9{bottom:471.714000px;}
.y8f{bottom:473.074500px;}
.yd9{bottom:474.264000px;}
.y90{bottom:474.562500px;}
.yc7{bottom:478.347000px;}
.y15e{bottom:478.941000px;}
.y4{bottom:481.492500px;}
.y5{bottom:483.406500px;}
.y1b0{bottom:484.171500px;}
.y1a2{bottom:484.341000px;}
.yc0{bottom:486.424500px;}
.y17c{bottom:488.211000px;}
.y138{bottom:489.444000px;}
.ya5{bottom:490.167000px;}
.y18c{bottom:493.780500px;}
.y2c{bottom:493.908000px;}
.yb4{bottom:494.971500px;}
.y125{bottom:495.141000px;}
.y3f{bottom:496.035000px;}
.y10{bottom:498.288000px;}
.y6f{bottom:498.586500px;}
.y12e{bottom:500.541000px;}
.y1c{bottom:503.391000px;}
.y167{bottom:504.580500px;}
.y79{bottom:507.132000px;}
.y171{bottom:513.127500px;}
.y1c5{bottom:513.424500px;}
.y1c6{bottom:521.206500px;}
.yf9{bottom:523.162500px;}
.y57{bottom:529.497000px;}
.y18b{bottom:531.411000px;}
.y4d{bottom:534.897000px;}
.y2{bottom:537.576000px;}
.y3{bottom:539.532000px;}
.y27{bottom:540.723000px;}
.yb3{bottom:550.758000px;}
.y1c4{bottom:561.132000px;}
.y4b{bottom:562.323000px;}
.y29{bottom:564.406500px;}
.yf{bottom:564.576000px;}
.y1b{bottom:567.892500px;}
.y56{bottom:576.268500px;}
.y4c{bottom:580.479000px;}
.ybf{bottom:582.264000px;}
.y1a1{bottom:584.220000px;}
.yf8{bottom:584.688000px;}
.yc6{bottom:584.815500px;}
.yd8{bottom:584.986500px;}
.yea{bottom:586.644000px;}
.y18a{bottom:587.664000px;}
.y9b{bottom:590.683500px;}
.y6e{bottom:590.811000px;}
.ya8{bottom:600.718500px;}
.y4a{bottom:609.136500px;}
.yb2{bottom:609.732000px;}
.y83{bottom:610.030500px;}
.y28{bottom:611.220000px;}
.y1c3{bottom:612.580500px;}
.he{height:53.440248px;}
.h8{height:56.014523px;}
.h3b{height:57.801601px;}
.h3a{height:57.807601px;}
.h39{height:57.975601px;}
.h3c{height:58.485601px;}
.hd{height:64.041776px;}
.h35{height:65.492672px;}
.h36{height:65.498672px;}
.h23{height:66.149300px;}
.h22{height:66.155300px;}
.h38{height:66.344672px;}
.h18{height:66.614250px;}
.h1a{height:66.782250px;}
.h17{height:67.292250px;}
.h14{height:67.697859px;}
.h34{height:69.086766px;}
.h32{height:69.092766px;}
.h33{height:69.260766px;}
.h2b{height:69.447609px;}
.h1e{height:69.489413px;}
.hb{height:69.505980px;}
.h16{height:69.770766px;}
.h29{height:69.957609px;}
.h12{height:72.859359px;}
.h42{height:72.878238px;}
.h24{height:73.610578px;}
.h27{height:73.778578px;}
.h26{height:73.784578px;}
.h2f{height:74.787507px;}
.h3d{height:77.461837px;}
.h3f{height:78.020859px;}
.h3e{height:78.139837px;}
.h30{height:78.257812px;}
.h6{height:80.085601px;}
.hc{height:83.182359px;}
.h5{height:85.383694px;}
.h20{height:88.943300px;}
.hf{height:90.573776px;}
.h37{height:90.836672px;}
.h41{height:91.993351px;}
.h19{height:93.656250px;}
.h2a{height:94.623609px;}
.h4{height:96.134766px;}
.h25{height:100.142578px;}
.h2e{height:100.275387px;}
.h15{height:104.130141px;}
.ha{height:106.885837px;}
.h2d{height:111.341856px;}
.h1b{height:117.482024px;}
.h40{height:118.496086px;}
.h28{height:122.379794px;}
.h31{height:122.812359px;}
.h3{height:127.667977px;}
.h7{height:128.227755px;}
.h1f{height:133.573509px;}
.h9{height:138.829283px;}
.h13{height:149.575014px;}
.h2c{height:155.810725px;}
.h11{height:164.701359px;}
.h10{height:170.922272px;}
.h1c{height:192.269531px;}
.h21{height:213.616790px;}
.h1d{height:542.236828px;}
.h2{height:669.727500px;}
.h1{height:669.750000px;}
.h0{height:669.770079px;}
.w2{width:1190.593500px;}
.w0{width:1190.636220px;}
.w1{width:1191.000000px;}
.x0{left:0.000000px;}
.x25{left:25.341000px;}
.x12{left:28.360500px;}
.xc{left:39.883500px;}
.x2d{left:42.009000px;}
.xd{left:44.859000px;}
.x73{left:46.048500px;}
.x62{left:48.769500px;}
.x21{left:50.386500px;}
.x40{left:52.512000px;}
.x3d{left:54.765000px;}
.x16{left:57.741000px;}
.x7d{left:58.932000px;}
.x1d{left:60.888000px;}
.x6c{left:62.419500px;}
.x34{left:65.565000px;}
.xa2{left:70.030500px;}
.x74{left:71.560500px;}
.x69{left:74.707500px;}
.x65{left:76.068000px;}
.x20{left:78.619500px;}
.x3e{left:80.235000px;}
.x33{left:82.191000px;}
.x15{left:83.551500px;}
.x22{left:86.868000px;}
.x6d{left:87.888000px;}
.x96{left:90.907500px;}
.xa6{left:92.395500px;}
.x2e{left:94.521000px;}
.xa3{left:95.541000px;}
.x37{left:96.903000px;}
.x36{left:98.986500px;}
.x6a{left:100.219500px;}
.x85{left:102.430500px;}
.x64{left:103.492500px;}
.x93{left:105.151500px;}
.x9b{left:108.000000px;}
.x9a{left:109.191000px;}
.x99{left:110.253000px;}
.x63{left:113.569500px;}
.x86{left:114.888000px;}
.x38{left:119.268000px;}
.x9d{left:120.586500px;}
.x95{left:121.947000px;}
.x52{left:123.307500px;}
.x70{left:125.859000px;}
.x23{left:127.813500px;}
.x3a{left:130.492500px;}
.x98{left:131.556000px;}
.x8f{left:134.235000px;}
.x3b{left:136.360500px;}
.x6b{left:138.912000px;}
.x87{left:141.165000px;}
.x8e{left:145.035000px;}
.x9c{left:146.097000px;}
.xa5{left:148.351500px;}
.x28{left:150.604500px;}
.x4e{left:152.391000px;}
.x4{left:155.536500px;}
.x3{left:157.492500px;}
.x26{left:158.980500px;}
.x91{left:160.341000px;}
.x31{left:164.721000px;}
.x90{left:171.609000px;}
.x1b{left:172.800000px;}
.x1a{left:176.712000px;}
.x32{left:178.965000px;}
.x8{left:181.219500px;}
.x7{left:183.132000px;}
.x18{left:185.259000px;}
.x3c{left:187.341000px;}
.x29{left:188.703000px;}
.x13{left:192.912000px;}
.x27{left:197.121000px;}
.xf{left:204.009000px;}
.x39{left:214.936500px;}
.xa4{left:216.765000px;}
.x2a{left:229.947000px;}
.x24{left:237.600000px;}
.x2{left:242.830500px;}
.x1{left:244.786500px;}
.x61{left:248.400000px;}
.x76{left:252.312000px;}
.x19{left:253.332000px;}
.x72{left:256.521000px;}
.x35{left:259.795500px;}
.x17{left:261.921000px;}
.x5f{left:266.259000px;}
.x4f{left:271.360500px;}
.x3f{left:276.165000px;}
.x51{left:280.800000px;}
.x30{left:283.819500px;}
.xa7{left:284.839500px;}
.x41{left:295.213500px;}
.x53{left:297.000000px;}
.x14{left:300.912000px;}
.xe{left:308.863500px;}
.x50{left:311.244000px;}
.x2c{left:313.369500px;}
.x94{left:318.769500px;}
.x77{left:323.703000px;}
.x67{left:327.912000px;}
.x97{left:329.995500px;}
.x92{left:331.186500px;}
.x7e{left:347.853000px;}
.x8d{left:355.932000px;}
.x6{left:367.030500px;}
.x5{left:368.986500px;}
.x7f{left:371.112000px;}
.x7c{left:382.932000px;}
.x9e{left:386.844000px;}
.xa9{left:393.604500px;}
.x68{left:407.253000px;}
.x80{left:409.039500px;}
.x60{left:411.292500px;}
.x66{left:413.121000px;}
.x9{left:414.439500px;}
.x84{left:452.536500px;}
.x82{left:454.195500px;}
.x78{left:459.297000px;}
.x83{left:463.932000px;}
.x81{left:464.995500px;}
.x75{left:467.844000px;}
.x7a{left:486.297000px;}
.x43{left:488.083500px;}
.x42{left:490.209000px;}
.xb{left:499.819500px;}
.x7b{left:505.048500px;}
.x79{left:510.747000px;}
.xa{left:522.013500px;}
.xa8{left:529.795500px;}
.x8c{left:574.186500px;}
.x88{left:630.736500px;}
.x89{left:637.200000px;}
.x2b{left:640.048500px;}
.x9f{left:644.683500px;}
.x2f{left:655.059000px;}
.x1f{left:662.839500px;}
.x8a{left:664.795500px;}
.xa0{left:670.195500px;}
.x8b{left:675.595500px;}
.x1c{left:678.316500px;}
.x11{left:689.413500px;}
.x4c{left:702.169500px;}
.x4b{left:704.551500px;}
.x58{left:711.736500px;}
.x57{left:712.969500px;}
.x5a{left:718.668000px;}
.x59{left:719.859000px;}
.x5c{left:727.639500px;}
.x5b{left:728.830500px;}
.x47{left:738.439500px;}
.x56{left:740.991000px;}
.x55{left:742.521000px;}
.x1e{left:756.000000px;}
.x48{left:773.263500px;}
.x44{left:783.595500px;}
.x10{left:822.288000px;}
.x4a{left:829.219500px;}
.x49{left:830.536500px;}
.xa1{left:857.239500px;}
.x46{left:872.419500px;}
.x45{left:891.169500px;}
.x5d{left:986.116500px;}
.x54{left:1011.883500px;}
.x71{left:1015.200000px;}
.x6f{left:1022.088000px;}
.x5e{left:1029.019500px;}
.x4d{left:1038.459000px;}
.x6e{left:1042.668000px;}
@media print{
.v9{vertical-align:-26.154667pt;}
.v3{vertical-align:-23.434667pt;}
.v6{vertical-align:-21.925333pt;}
.v5{vertical-align:-20.256000pt;}
.v8{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.584000pt;}
.v7{vertical-align:35.226667pt;}
.v4{vertical-align:37.946667pt;}
.v2{vertical-align:81.637333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.159947pt;}
.lsa{letter-spacing:0.224005pt;}
.lsb{letter-spacing:0.229339pt;}
.lsf{letter-spacing:0.239920pt;}
.ls13{letter-spacing:0.372117pt;}
.ls9{letter-spacing:0.618667pt;}
.ls12{letter-spacing:52.532715pt;}
.ls3{letter-spacing:56.224224pt;}
.ls1{letter-spacing:56.229557pt;}
.ls11{letter-spacing:56.378891pt;}
.lsc{letter-spacing:56.981557pt;}
.lsd{letter-spacing:58.662720pt;}
.ls5{letter-spacing:60.219733pt;}
.lse{letter-spacing:62.374080pt;}
.ls10{letter-spacing:62.379413pt;}
.ls7{letter-spacing:65.847867pt;}
.ls8{letter-spacing:67.065333pt;}
.ls6{letter-spacing:68.474667pt;}
.ls4{letter-spacing:68.629333pt;}
.wsc{word-spacing:-53.184000pt;}
.ws16{word-spacing:-48.244864pt;}
.wsb{word-spacing:-47.279099pt;}
.ws12{word-spacing:-44.560704pt;}
.ws8{word-spacing:-41.374197pt;}
.ws6{word-spacing:-38.401803pt;}
.ws14{word-spacing:-37.144128pt;}
.ws2{word-spacing:-35.469296pt;}
.ws13{word-spacing:-33.835312pt;}
.wsd{word-spacing:-32.496901pt;}
.ws11{word-spacing:-29.671872pt;}
.ws9{word-spacing:-29.565872pt;}
.ws10{word-spacing:-27.028688pt;}
.wsa{word-spacing:-26.592000pt;}
.ws3{word-spacing:-23.618128pt;}
.ws0{word-spacing:-22.152613pt;}
.ws7{word-spacing:-20.687099pt;}
.wsf{word-spacing:-19.221584pt;}
.ws5{word-spacing:-17.714704pt;}
.ws4{word-spacing:-14.782197pt;}
.ws17{word-spacing:-0.085264pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:175.509333pt;}
.ws15{word-spacing:638.240000pt;}
._2{margin-left:-14.637803pt;}
._c{margin-left:-12.321707pt;}
._a{margin-left:-10.636336pt;}
._7{margin-left:-9.725525pt;}
._9{margin-left:-8.398368pt;}
._8{margin-left:-7.120395pt;}
._1{margin-left:-6.123979pt;}
._5{margin-left:-5.219275pt;}
._4{margin-left:-3.451045pt;}
._6{margin-left:-2.111168pt;}
._0{margin-left:-1.045557pt;}
._3{width:1.119627pt;}
._d{width:2.698005pt;}
._10{width:3.891925pt;}
._f{width:207.402667pt;}
._b{width:601.241067pt;}
._e{width:1200.637909pt;}
.fs15{font-size:35.680000pt;}
.fs12{font-size:38.400000pt;}
.fs13{font-size:41.120000pt;}
.fsd{font-size:43.237333pt;}
.fs16{font-size:48.074667pt;}
.fs9{font-size:53.365333pt;}
.fs5{font-size:55.936000pt;}
.fs8{font-size:63.952000pt;}
.fsc{font-size:69.392000pt;}
.fsb{font-size:74.682667pt;}
.fs3{font-size:79.973333pt;}
.fs2{font-size:85.264000pt;}
.fs14{font-size:90.709333pt;}
.fs1{font-size:96.000000pt;}
.fs7{font-size:106.736000pt;}
.fse{font-size:117.317333pt;}
.fs4{font-size:128.048000pt;}
.fs6{font-size:138.634667pt;}
.fs0{font-size:149.365333pt;}
.fsa{font-size:170.682667pt;}
.fsf{font-size:192.000000pt;}
.fs11{font-size:213.317333pt;}
.fs10{font-size:512.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y12d{bottom:21.429333pt;}
.ybe{bottom:27.438667pt;}
.y1c2{bottom:28.120000pt;}
.y197{bottom:31.445333pt;}
.y63{bottom:32.654667pt;}
.ye{bottom:33.449333pt;}
.y137{bottom:36.094667pt;}
.y39{bottom:36.397333pt;}
.y110{bottom:39.836000pt;}
.y55{bottom:44.522667pt;}
.yb0{bottom:46.638667pt;}
.y8e{bottom:47.054667pt;}
.y141{bottom:48.113333pt;}
.y11b{bottom:48.642667pt;}
.yc5{bottom:48.793333pt;}
.y156{bottom:52.762667pt;}
.y170{bottom:54.765333pt;}
.y62{bottom:54.916000pt;}
.y1a0{bottom:57.184000pt;}
.y49{bottom:59.036000pt;}
.y35{bottom:59.565333pt;}
.yef{bottom:60.397333pt;}
.y17b{bottom:62.362667pt;}
.y9a{bottom:63.042667pt;}
.y1c1{bottom:63.193333pt;}
.y38{bottom:63.306667pt;}
.y8c{bottom:63.572000pt;}
.y14b{bottom:64.101333pt;}
.y54{bottom:65.461333pt;}
.y8d{bottom:65.725333pt;}
.y185{bottom:68.901333pt;}
.ybd{bottom:69.429333pt;}
.y196{bottom:69.581333pt;}
.y166{bottom:72.529333pt;}
.y136{bottom:76.384000pt;}
.y61{bottom:77.177333pt;}
.y3b{bottom:78.122667pt;}
.yf5{bottom:79.294667pt;}
.y155{bottom:79.597333pt;}
.y6d{bottom:80.125333pt;}
.y78{bottom:80.654667pt;}
.y1a9{bottom:81.449333pt;}
.y48{bottom:82.242667pt;}
.y16f{bottom:83.301333pt;}
.yaf{bottom:83.565333pt;}
.y37{bottom:83.829333pt;}
.yb1{bottom:84.094667pt;}
.ycf{bottom:85.190667pt;}
.y140{bottom:86.249333pt;}
.y34{bottom:86.513333pt;}
.y12c{bottom:87.572000pt;}
.y1a{bottom:87.722667pt;}
.y82{bottom:88.101333pt;}
.y1c0{bottom:88.629333pt;}
.y14a{bottom:90.897333pt;}
.y26{bottom:92.258667pt;}
.y6a{bottom:95.320000pt;}
.y53{bottom:95.697333pt;}
.yc{bottom:96.113333pt;}
.y99{bottom:96.377333pt;}
.yed{bottom:97.588000pt;}
.yee{bottom:99.704000pt;}
.y122{bottom:100.233333pt;}
.y184{bottom:102.236000pt;}
.y195{bottom:102.916000pt;}
.y154{bottom:106.506667pt;}
.y1af{bottom:107.188000pt;}
.yff{bottom:107.829333pt;}
.y47{bottom:108.661333pt;}
.ybc{bottom:108.925333pt;}
.y3a{bottom:111.458667pt;}
.yd{bottom:111.722667pt;}
.y165{bottom:112.781333pt;}
.y1bf{bottom:114.254667pt;}
.y189{bottom:114.897333pt;}
.y135{bottom:116.636000pt;}
.y52{bottom:116.788000pt;}
.y36{bottom:117.165333pt;}
.y8b{bottom:117.845333pt;}
.y15d{bottom:119.054667pt;}
.yd7{bottom:119.433333pt;}
.ye7{bottom:120.264000pt;}
.yae{bottom:120.529333pt;}
.y77{bottom:120.906667pt;}
.y84{bottom:122.116000pt;}
.y10f{bottom:122.910667pt;}
.y19{bottom:123.174667pt;}
.y11a{bottom:123.325333pt;}
.y85{bottom:123.968000pt;}
.y17a{bottom:124.233333pt;}
.y13f{bottom:124.384000pt;}
.y6c{bottom:124.762667pt;}
.ye0{bottom:125.858667pt;}
.yce{bottom:126.916000pt;}
.y25{bottom:127.710667pt;}
.y81{bottom:128.504000pt;}
.y19f{bottom:128.654667pt;}
.y98{bottom:129.713333pt;}
.y194{bottom:131.452000pt;}
.y1a8{bottom:132.510667pt;}
.y153{bottom:133.304000pt;}
.y121{bottom:133.568000pt;}
.y183{bottom:135.572000pt;}
.y12b{bottom:135.836000pt;}
.y109{bottom:136.516000pt;}
.yb{bottom:137.310667pt;}
.y60{bottom:138.897333pt;}
.yfe{bottom:139.162667pt;}
.y1be{bottom:139.729333pt;}
.y69{bottom:139.842667pt;}
.yf4{bottom:140.372000pt;}
.y8a{bottom:144.793333pt;}
.ybb{bottom:145.965333pt;}
.yec{bottom:146.229333pt;}
.y3e{bottom:146.910667pt;}
.y10e{bottom:149.706667pt;}
.y16e{bottom:149.972000pt;}
.y164{bottom:153.033333pt;}
.y188{bottom:155.188000pt;}
.y76{bottom:155.301333pt;}
.y134{bottom:156.925333pt;}
.y19e{bottom:157.190667pt;}
.y179{bottom:157.568000pt;}
.ydf{bottom:157.720000pt;}
.y1ae{bottom:158.249333pt;}
.y18{bottom:158.664000pt;}
.y15c{bottom:159.306667pt;}
.ye6{bottom:159.836000pt;}
.y152{bottom:160.252000pt;}
.yd6{bottom:161.197333pt;}
.y2b{bottom:162.104000pt;}
.y13e{bottom:162.520000pt;}
.y80{bottom:162.784000pt;}
.y97{bottom:163.049333pt;}
.y24{bottom:163.162667pt;}
.y193{bottom:164.788000pt;}
.y1bd{bottom:165.316000pt;}
.y5f{bottom:166.110667pt;}
.y120{bottom:166.904000pt;}
.y182{bottom:168.906667pt;}
.y6b{bottom:169.322667pt;}
.y1a7{bottom:170.645333pt;}
.y149{bottom:171.590667pt;}
.ya{bottom:173.442667pt;}
.ycd{bottom:174.652000pt;}
.y108{bottom:176.768000pt;}
.y51{bottom:179.716000pt;}
.y3d{bottom:180.245333pt;}
.y68{bottom:184.516000pt;}
.yad{bottom:184.629333pt;}
.yeb{bottom:186.520000pt;}
.y151{bottom:187.162667pt;}
.yba{bottom:187.993333pt;}
.y16d{bottom:188.258667pt;}
.y119{bottom:189.997333pt;}
.y1bc{bottom:190.374667pt;}
.y163{bottom:193.322667pt;}
.y5e{bottom:193.436000pt;}
.y17{bottom:194.229333pt;}
.yde{bottom:194.645333pt;}
.y19d{bottom:195.325333pt;}
.y2a{bottom:195.590667pt;}
.y178{bottom:195.704000pt;}
.yf1{bottom:196.233333pt;}
.y96{bottom:196.384000pt;}
.y148{bottom:198.501333pt;}
.y23{bottom:198.765333pt;}
.ye5{bottom:199.445333pt;}
.y15b{bottom:199.597333pt;}
.yf3{bottom:199.861333pt;}
.y75{bottom:201.449333pt;}
.y181{bottom:202.242667pt;}
.y192{bottom:202.922667pt;}
.y133{bottom:203.188000pt;}
.y13d{bottom:206.097333pt;}
.y89{bottom:206.362667pt;}
.y12a{bottom:208.101333pt;}
.ya3{bottom:208.516000pt;}
.yd5{bottom:208.781333pt;}
.y7f{bottom:209.045333pt;}
.ya4{bottom:209.574667pt;}
.ycc{bottom:210.520000pt;}
.yf7{bottom:211.577333pt;}
.y1bb{bottom:212.636000pt;}
.y3c{bottom:213.581333pt;}
.y150{bottom:213.997333pt;}
.y1a6{bottom:215.320000pt;}
.y102{bottom:215.962667pt;}
.yc4{bottom:216.642667pt;}
.y107{bottom:217.058667pt;}
.y5d{bottom:220.649333pt;}
.y118{bottom:223.294667pt;}
.y19c{bottom:223.861333pt;}
.y177{bottom:224.238667pt;}
.y147{bottom:225.297333pt;}
.ya7{bottom:226.658667pt;}
.y50{bottom:227.036000pt;}
.yb9{bottom:227.452000pt;}
.y67{bottom:229.038667pt;}
.y10d{bottom:229.454667pt;}
.y16{bottom:229.720000pt;}
.y191{bottom:231.458667pt;}
.ydd{bottom:231.722667pt;}
.y129{bottom:232.781333pt;}
.y88{bottom:233.197333pt;}
.y162{bottom:233.725333pt;}
.y22{bottom:234.254667pt;}
.y1ba{bottom:234.784000pt;}
.y15a{bottom:239.962667pt;}
.y180{bottom:240.377333pt;}
.y14f{bottom:240.906667pt;}
.y1ad{bottom:241.058667pt;}
.yf2{bottom:241.322667pt;}
.y74{bottom:241.701333pt;}
.yf0{bottom:243.061333pt;}
.y132{bottom:243.438667pt;}
.yac{bottom:244.233333pt;}
.yf6{bottom:244.384000pt;}
.y9c{bottom:244.497333pt;}
.yd4{bottom:244.649333pt;}
.y101{bottom:247.445333pt;}
.ya1{bottom:248.768000pt;}
.y7e{bottom:249.297333pt;}
.ya2{bottom:249.864000pt;}
.y16c{bottom:249.977333pt;}
.ycb{bottom:252.245333pt;}
.y113{bottom:252.661333pt;}
.y10c{bottom:256.365333pt;}
.y30{bottom:256.629333pt;}
.y1b9{bottom:257.045333pt;}
.y176{bottom:257.574667pt;}
.yc3{bottom:258.633333pt;}
.ya6{bottom:259.162667pt;}
.y11d{bottom:259.464000pt;}
.y1a5{bottom:259.842667pt;}
.y43{bottom:261.581333pt;}
.y19b{bottom:261.997333pt;}
.y95{bottom:263.054667pt;}
.y33{bottom:264.264000pt;}
.y15{bottom:265.322667pt;}
.y14e{bottom:267.704000pt;}
.y46{bottom:269.064000pt;}
.yb8{bottom:269.442667pt;}
.y190{bottom:269.593333pt;}
.y21{bottom:269.858667pt;}
.y66{bottom:273.713333pt;}
.y161{bottom:273.977333pt;}
.y5c{bottom:275.188000pt;}
.y73{bottom:276.094667pt;}
.y13c{bottom:276.925333pt;}
.y1b2{bottom:277.568000pt;}
.y131{bottom:277.833333pt;}
.ye4{bottom:278.664000pt;}
.y100{bottom:278.929333pt;}
.y146{bottom:279.042667pt;}
.y1b8{bottom:279.306667pt;}
.y159{bottom:280.252000pt;}
.y112{bottom:283.993333pt;}
.y128{bottom:284.106667pt;}
.y1ac{bottom:285.581333pt;}
.y16b{bottom:288.264000pt;}
.y9f{bottom:289.058667pt;}
.y7d{bottom:289.588000pt;}
.y117{bottom:289.965333pt;}
.ya0{bottom:290.116000pt;}
.y19a{bottom:290.494667pt;}
.yc2{bottom:290.645333pt;}
.y11c{bottom:290.910667pt;}
.y2f{bottom:292.120000pt;}
.yd3{bottom:292.384000pt;}
.y14d{bottom:294.652000pt;}
.y175{bottom:295.710667pt;}
.y42{bottom:297.033333pt;}
.y106{bottom:297.713333pt;}
.y18f{bottom:298.129333pt;}
.y32{bottom:299.716000pt;}
.yca{bottom:299.829333pt;}
.y14{bottom:300.774667pt;}
.y8{bottom:301.038667pt;}
.y17f{bottom:302.249333pt;}
.y9{bottom:302.777333pt;}
.y94{bottom:303.988000pt;}
.y1a4{bottom:304.516000pt;}
.y45{bottom:304.629333pt;}
.y20{bottom:305.310667pt;}
.ydc{bottom:305.574667pt;}
.y145{bottom:305.990667pt;}
.y4f{bottom:309.845333pt;}
.yb7{bottom:313.965333pt;}
.y160{bottom:314.229333pt;}
.y111{bottom:315.438667pt;}
.y16a{bottom:316.649333pt;}
.y5b{bottom:317.593333pt;}
.ye3{bottom:318.236000pt;}
.y13b{bottom:320.504000pt;}
.y14c{bottom:321.449333pt;}
.y187{bottom:322.242667pt;}
.y72{bottom:322.393333pt;}
.y116{bottom:323.301333pt;}
.y1b7{bottom:323.716000pt;}
.y87{bottom:323.981333pt;}
.y174{bottom:324.245333pt;}
.y2e{bottom:327.722667pt;}
.yd2{bottom:328.252000pt;}
.y199{bottom:328.629333pt;}
.y7c{bottom:329.990667pt;}
.y41{bottom:332.636000pt;}
.y144{bottom:332.788000pt;}
.y65{bottom:333.429333pt;}
.y31{bottom:335.168000pt;}
.y17e{bottom:335.584000pt;}
.yc9{bottom:335.697333pt;}
.y18e{bottom:336.264000pt;}
.y13{bottom:336.377333pt;}
.y1ab{bottom:336.642667pt;}
.y93{bottom:337.322667pt;}
.y105{bottom:337.965333pt;}
.y44{bottom:340.120000pt;}
.y1f{bottom:340.913333pt;}
.y127{bottom:341.177333pt;}
.ydb{bottom:342.501333pt;}
.y5a{bottom:344.768000pt;}
.yab{bottom:345.449333pt;}
.y1b6{bottom:345.977333pt;}
.ye9{bottom:347.565333pt;}
.y169{bottom:349.984000pt;}
.y6{bottom:350.929333pt;}
.yfd{bottom:351.458667pt;}
.y7{bottom:352.629333pt;}
.y13a{bottom:353.197333pt;}
.yb6{bottom:353.461333pt;}
.y15f{bottom:354.520000pt;}
.y1a3{bottom:355.577333pt;}
.yfa{bottom:355.993333pt;}
.y4e{bottom:356.788000pt;}
.y9d{bottom:357.165333pt;}
.y173{bottom:357.581333pt;}
.ye2{bottom:357.997333pt;}
.y130{bottom:358.374667pt;}
.y9e{bottom:358.525333pt;}
.y1b1{bottom:358.904000pt;}
.y158{bottom:360.793333pt;}
.y71{bottom:362.645333pt;}
.y18d{bottom:364.762667pt;}
.y10b{bottom:365.064000pt;}
.y1b5{bottom:368.125333pt;}
.yc1{bottom:369.562667pt;}
.yd1{bottom:369.977333pt;}
.y7b{bottom:370.242667pt;}
.y143{bottom:370.658667pt;}
.y124{bottom:371.188000pt;}
.y91{bottom:371.301333pt;}
.y12{bottom:371.829333pt;}
.y59{bottom:371.981333pt;}
.y92{bottom:372.661333pt;}
.y11f{bottom:373.190667pt;}
.y17d{bottom:373.720000pt;}
.y1e{bottom:376.365333pt;}
.yc8{bottom:377.574667pt;}
.y64{bottom:377.990667pt;}
.y104{bottom:378.254667pt;}
.yda{bottom:379.464000pt;}
.y115{bottom:380.636000pt;}
.yaa{bottom:382.374667pt;}
.yfc{bottom:382.790667pt;}
.y186{bottom:387.590667pt;}
.y168{bottom:388.233333pt;}
.y1b4{bottom:390.388000pt;}
.y10a{bottom:391.861333pt;}
.ye8{bottom:394.129333pt;}
.y198{bottom:395.301333pt;}
.yb5{bottom:395.452000pt;}
.y172{bottom:395.716000pt;}
.y139{bottom:396.925333pt;}
.y86{bottom:397.720000pt;}
.y58{bottom:399.306667pt;}
.y157{bottom:401.045333pt;}
.y142{bottom:401.461333pt;}
.y123{bottom:402.633333pt;}
.y70{bottom:402.897333pt;}
.ye1{bottom:403.049333pt;}
.y12f{bottom:404.636000pt;}
.y2d{bottom:404.788000pt;}
.y11e{bottom:406.525333pt;}
.y40{bottom:406.790667pt;}
.y11{bottom:407.433333pt;}
.y126{bottom:408.264000pt;}
.y7a{bottom:410.494667pt;}
.y1aa{bottom:411.590667pt;}
.y1d{bottom:411.968000pt;}
.y1b3{bottom:412.649333pt;}
.y114{bottom:414.122667pt;}
.yfb{bottom:414.236000pt;}
.yd0{bottom:417.562667pt;}
.y103{bottom:418.506667pt;}
.ya9{bottom:419.301333pt;}
.y8f{bottom:420.510667pt;}
.yd9{bottom:421.568000pt;}
.y90{bottom:421.833333pt;}
.yc7{bottom:425.197333pt;}
.y15e{bottom:425.725333pt;}
.y4{bottom:427.993333pt;}
.y5{bottom:429.694667pt;}
.y1b0{bottom:430.374667pt;}
.y1a2{bottom:430.525333pt;}
.yc0{bottom:432.377333pt;}
.y17c{bottom:433.965333pt;}
.y138{bottom:435.061333pt;}
.ya5{bottom:435.704000pt;}
.y18c{bottom:438.916000pt;}
.y2c{bottom:439.029333pt;}
.yb4{bottom:439.974667pt;}
.y125{bottom:440.125333pt;}
.y3f{bottom:440.920000pt;}
.y10{bottom:442.922667pt;}
.y6f{bottom:443.188000pt;}
.y12e{bottom:444.925333pt;}
.y1c{bottom:447.458667pt;}
.y167{bottom:448.516000pt;}
.y79{bottom:450.784000pt;}
.y171{bottom:456.113333pt;}
.y1c5{bottom:456.377333pt;}
.y1c6{bottom:463.294667pt;}
.yf9{bottom:465.033333pt;}
.y57{bottom:470.664000pt;}
.y18b{bottom:472.365333pt;}
.y4d{bottom:475.464000pt;}
.y2{bottom:477.845333pt;}
.y3{bottom:479.584000pt;}
.y27{bottom:480.642667pt;}
.yb3{bottom:489.562667pt;}
.y1c4{bottom:498.784000pt;}
.y4b{bottom:499.842667pt;}
.y29{bottom:501.694667pt;}
.yf{bottom:501.845333pt;}
.y1b{bottom:504.793333pt;}
.y56{bottom:512.238667pt;}
.y4c{bottom:515.981333pt;}
.ybf{bottom:517.568000pt;}
.y1a1{bottom:519.306667pt;}
.yf8{bottom:519.722667pt;}
.yc6{bottom:519.836000pt;}
.yd8{bottom:519.988000pt;}
.yea{bottom:521.461333pt;}
.y18a{bottom:522.368000pt;}
.y9b{bottom:525.052000pt;}
.y6e{bottom:525.165333pt;}
.ya8{bottom:533.972000pt;}
.y4a{bottom:541.454667pt;}
.yb2{bottom:541.984000pt;}
.y83{bottom:542.249333pt;}
.y28{bottom:543.306667pt;}
.y1c3{bottom:544.516000pt;}
.he{height:47.502443pt;}
.h8{height:49.790687pt;}
.h3b{height:51.379201pt;}
.h3a{height:51.384534pt;}
.h39{height:51.533867pt;}
.h3c{height:51.987201pt;}
.hd{height:56.926023pt;}
.h35{height:58.215708pt;}
.h36{height:58.221042pt;}
.h23{height:58.799378pt;}
.h22{height:58.804711pt;}
.h38{height:58.973042pt;}
.h18{height:59.212667pt;}
.h1a{height:59.362000pt;}
.h17{height:59.815333pt;}
.h14{height:60.175875pt;}
.h34{height:61.410458pt;}
.h32{height:61.415792pt;}
.h33{height:61.565125pt;}
.h2b{height:61.731208pt;}
.h1e{height:61.768367pt;}
.hb{height:61.783094pt;}
.h16{height:62.018458pt;}
.h29{height:62.184542pt;}
.h12{height:64.763875pt;}
.h42{height:64.780656pt;}
.h24{height:65.431625pt;}
.h27{height:65.580958pt;}
.h26{height:65.586292pt;}
.h2f{height:66.477784pt;}
.h3d{height:68.854966pt;}
.h3f{height:69.351875pt;}
.h3e{height:69.457633pt;}
.h30{height:69.562500pt;}
.h6{height:71.187201pt;}
.hc{height:73.939875pt;}
.h5{height:75.896617pt;}
.h20{height:79.060711pt;}
.hf{height:80.510023pt;}
.h37{height:80.743708pt;}
.h41{height:81.771867pt;}
.h19{height:83.250000pt;}
.h2a{height:84.109875pt;}
.h4{height:85.453125pt;}
.h25{height:89.015625pt;}
.h2e{height:89.133677pt;}
.h15{height:92.560125pt;}
.ha{height:95.009633pt;}
.h2d{height:98.970539pt;}
.h1b{height:104.428466pt;}
.h40{height:105.329854pt;}
.h28{height:108.782039pt;}
.h31{height:109.166542pt;}
.h3{height:113.482646pt;}
.h7{height:113.980227pt;}
.h1f{height:118.732008pt;}
.h9{height:123.403807pt;}
.h13{height:132.955568pt;}
.h2c{height:138.498422pt;}
.h11{height:146.401208pt;}
.h10{height:151.930909pt;}
.h1c{height:170.906250pt;}
.h21{height:189.881591pt;}
.h1d{height:481.988292pt;}
.h2{height:595.313333pt;}
.h1{height:595.333333pt;}
.h0{height:595.351181pt;}
.w2{width:1058.305333pt;}
.w0{width:1058.343307pt;}
.w1{width:1058.666667pt;}
.x0{left:0.000000pt;}
.x25{left:22.525333pt;}
.x12{left:25.209333pt;}
.xc{left:35.452000pt;}
.x2d{left:37.341333pt;}
.xd{left:39.874667pt;}
.x73{left:40.932000pt;}
.x62{left:43.350667pt;}
.x21{left:44.788000pt;}
.x40{left:46.677333pt;}
.x3d{left:48.680000pt;}
.x16{left:51.325333pt;}
.x7d{left:52.384000pt;}
.x1d{left:54.122667pt;}
.x6c{left:55.484000pt;}
.x34{left:58.280000pt;}
.xa2{left:62.249333pt;}
.x74{left:63.609333pt;}
.x69{left:66.406667pt;}
.x65{left:67.616000pt;}
.x20{left:69.884000pt;}
.x3e{left:71.320000pt;}
.x33{left:73.058667pt;}
.x15{left:74.268000pt;}
.x22{left:77.216000pt;}
.x6d{left:78.122667pt;}
.x96{left:80.806667pt;}
.xa6{left:82.129333pt;}
.x2e{left:84.018667pt;}
.xa3{left:84.925333pt;}
.x37{left:86.136000pt;}
.x36{left:87.988000pt;}
.x6a{left:89.084000pt;}
.x85{left:91.049333pt;}
.x64{left:91.993333pt;}
.x93{left:93.468000pt;}
.x9b{left:96.000000pt;}
.x9a{left:97.058667pt;}
.x99{left:98.002667pt;}
.x63{left:100.950667pt;}
.x86{left:102.122667pt;}
.x38{left:106.016000pt;}
.x9d{left:107.188000pt;}
.x95{left:108.397333pt;}
.x52{left:109.606667pt;}
.x70{left:111.874667pt;}
.x23{left:113.612000pt;}
.x3a{left:115.993333pt;}
.x98{left:116.938667pt;}
.x8f{left:119.320000pt;}
.x3b{left:121.209333pt;}
.x6b{left:123.477333pt;}
.x87{left:125.480000pt;}
.x8e{left:128.920000pt;}
.x9c{left:129.864000pt;}
.xa5{left:131.868000pt;}
.x28{left:133.870667pt;}
.x4e{left:135.458667pt;}
.x4{left:138.254667pt;}
.x3{left:139.993333pt;}
.x26{left:141.316000pt;}
.x91{left:142.525333pt;}
.x31{left:146.418667pt;}
.x90{left:152.541333pt;}
.x1b{left:153.600000pt;}
.x1a{left:157.077333pt;}
.x32{left:159.080000pt;}
.x8{left:161.084000pt;}
.x7{left:162.784000pt;}
.x18{left:164.674667pt;}
.x3c{left:166.525333pt;}
.x29{left:167.736000pt;}
.x13{left:171.477333pt;}
.x27{left:175.218667pt;}
.xf{left:181.341333pt;}
.x39{left:191.054667pt;}
.xa4{left:192.680000pt;}
.x2a{left:204.397333pt;}
.x24{left:211.200000pt;}
.x2{left:215.849333pt;}
.x1{left:217.588000pt;}
.x61{left:220.800000pt;}
.x76{left:224.277333pt;}
.x19{left:225.184000pt;}
.x72{left:228.018667pt;}
.x35{left:230.929333pt;}
.x17{left:232.818667pt;}
.x5f{left:236.674667pt;}
.x4f{left:241.209333pt;}
.x3f{left:245.480000pt;}
.x51{left:249.600000pt;}
.x30{left:252.284000pt;}
.xa7{left:253.190667pt;}
.x41{left:262.412000pt;}
.x53{left:264.000000pt;}
.x14{left:267.477333pt;}
.xe{left:274.545333pt;}
.x50{left:276.661333pt;}
.x2c{left:278.550667pt;}
.x94{left:283.350667pt;}
.x77{left:287.736000pt;}
.x67{left:291.477333pt;}
.x97{left:293.329333pt;}
.x92{left:294.388000pt;}
.x7e{left:309.202667pt;}
.x8d{left:316.384000pt;}
.x6{left:326.249333pt;}
.x5{left:327.988000pt;}
.x7f{left:329.877333pt;}
.x7c{left:340.384000pt;}
.x9e{left:343.861333pt;}
.xa9{left:349.870667pt;}
.x68{left:362.002667pt;}
.x80{left:363.590667pt;}
.x60{left:365.593333pt;}
.x66{left:367.218667pt;}
.x9{left:368.390667pt;}
.x84{left:402.254667pt;}
.x82{left:403.729333pt;}
.x78{left:408.264000pt;}
.x83{left:412.384000pt;}
.x81{left:413.329333pt;}
.x75{left:415.861333pt;}
.x7a{left:432.264000pt;}
.x43{left:433.852000pt;}
.x42{left:435.741333pt;}
.xb{left:444.284000pt;}
.x7b{left:448.932000pt;}
.x79{left:453.997333pt;}
.xa{left:464.012000pt;}
.xa8{left:470.929333pt;}
.x8c{left:510.388000pt;}
.x88{left:560.654667pt;}
.x89{left:566.400000pt;}
.x2b{left:568.932000pt;}
.x9f{left:573.052000pt;}
.x2f{left:582.274667pt;}
.x1f{left:589.190667pt;}
.x8a{left:590.929333pt;}
.xa0{left:595.729333pt;}
.x8b{left:600.529333pt;}
.x1c{left:602.948000pt;}
.x11{left:612.812000pt;}
.x4c{left:624.150667pt;}
.x4b{left:626.268000pt;}
.x58{left:632.654667pt;}
.x57{left:633.750667pt;}
.x5a{left:638.816000pt;}
.x59{left:639.874667pt;}
.x5c{left:646.790667pt;}
.x5b{left:647.849333pt;}
.x47{left:656.390667pt;}
.x56{left:658.658667pt;}
.x55{left:660.018667pt;}
.x1e{left:672.000000pt;}
.x48{left:687.345333pt;}
.x44{left:696.529333pt;}
.x10{left:730.922667pt;}
.x4a{left:737.084000pt;}
.x49{left:738.254667pt;}
.xa1{left:761.990667pt;}
.x46{left:775.484000pt;}
.x45{left:792.150667pt;}
.x5d{left:876.548000pt;}
.x54{left:899.452000pt;}
.x71{left:902.400000pt;}
.x6f{left:908.522667pt;}
.x5e{left:914.684000pt;}
.x4d{left:923.074667pt;}
.x6e{left:926.816000pt;}
}




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