
    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_d4c998997dc6d69f86dc962e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f6f0b854af7bf857ba226452.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a7fbd297313400336bb5739d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_dfc606b50c5aecb229dca42e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_a6dcc2f917dadd917efc9c45.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_94b1a91053716374cb9eab59.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_68816518edaad7dcfd543f9c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_85b8c27684bfd2d43b1166ac.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_23ff421a0f859b7115fc6291.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8a6317f9855a250876328d32.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0fecd9082685b7bc46cd516b.woff')format("woff");}.fff{font-family:fff;line-height:0.957520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_21109dd5cb20c8cd257a4b87.woff')format("woff");}.ff10{font-family:ff10;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_275dfb2f9c4c4ca89dc2b784.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_75be13591184bf433d94917c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6959e8d90eac22082fe69a9b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.lsc{letter-spacing:0.055440px;}
.ls2{letter-spacing:0.073080px;}
.ls8{letter-spacing:0.233340px;}
.ls1{letter-spacing:0.340926px;}
.ls9{letter-spacing:0.341340px;}
.ls5{letter-spacing:0.953760px;}
.ls6{letter-spacing:1.362359px;}
.ls7{letter-spacing:1.674179px;}
.lsa{letter-spacing:1.749059px;}
.lsb{letter-spacing:1.782179px;}
.ls4{letter-spacing:6.455577px;}
.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;}
}
.ws7{word-spacing:-41.957983px;}
.ws1{word-spacing:-22.407831px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.179034px;}
.ws8{word-spacing:-13.715995px;}
.ws5{word-spacing:-13.013995px;}
.ws2{word-spacing:-10.342076px;}
.ws6{word-spacing:-8.675997px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-670.683089px;}
._3{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._2{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._32{margin-left:-2.458883px;}
._1{margin-left:-1.187579px;}
._0{width:1.077428px;}
._e{width:2.196641px;}
._12{width:3.286928px;}
._f{width:4.346158px;}
._1b{width:6.185088px;}
._1f{width:7.328585px;}
._11{width:8.999897px;}
._10{width:10.263947px;}
._15{width:11.496541px;}
._44{width:12.532944px;}
._13{width:14.182702px;}
._18{width:15.685757px;}
._29{width:16.766480px;}
._21{width:17.856624px;}
._20{width:18.893756px;}
._14{width:20.118683px;}
._26{width:21.325052px;}
._27{width:22.429311px;}
._1c{width:23.875007px;}
._23{width:25.580931px;}
._24{width:26.794767px;}
._19{width:28.056783px;}
._1a{width:29.197464px;}
._33{width:30.833506px;}
._1d{width:31.912344px;}
._1e{width:33.150768px;}
._2a{width:34.450346px;}
._22{width:36.122127px;}
._16{width:38.011182px;}
._17{width:39.102201px;}
._35{width:40.421979px;}
._25{width:41.555006px;}
._39{width:42.853774px;}
._30{width:43.860815px;}
._2d{width:44.906970px;}
._2c{width:46.135237px;}
._c{width:47.398901px;}
._2e{width:49.692850px;}
._34{width:50.717589px;}
._43{width:51.939694px;}
._3e{width:53.388595px;}
._3d{width:56.366698px;}
._2f{width:57.603713px;}
._2b{width:59.543454px;}
._28{width:60.990022px;}
._38{width:64.996914px;}
._3a{width:67.591040px;}
._3b{width:72.885760px;}
._31{width:74.402372px;}
._45{width:79.111911px;}
._46{width:80.168358px;}
._36{width:83.153365px;}
._37{width:101.207219px;}
._41{width:107.866521px;}
._42{width:108.925478px;}
._3f{width:121.823907px;}
._40{width:123.273920px;}
._d{width:311.489689px;}
._3c{width:350.441393px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsa{font-size:23.759990px;}
.fs7{font-size:33.119987px;}
.fsd{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fs8{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y46{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y75{bottom:3.058953px;}
.y78{bottom:3.058966px;}
.y7b{bottom:3.058973px;}
.y7e{bottom:3.058979px;}
.y81{bottom:3.058986px;}
.y83{bottom:3.058993px;}
.yd2{bottom:3.059045px;}
.yd4{bottom:3.059052px;}
.yd7{bottom:3.059059px;}
.yda{bottom:3.059065px;}
.ydd{bottom:3.059072px;}
.ydf{bottom:3.059078px;}
.y20{bottom:3.059112px;}
.y28{bottom:3.059156px;}
.y13{bottom:3.239032px;}
.y25{bottom:3.419145px;}
.y41{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y22{bottom:4.319112px;}
.y4{bottom:4.320028px;}
.y15{bottom:4.859040px;}
.y1a{bottom:4.859058px;}
.y6{bottom:58.620277px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.y194{bottom:116.579953px;}
.yfd{bottom:118.379953px;}
.y112{bottom:119.279952px;}
.y168{bottom:119.819952px;}
.yaa{bottom:127.019949px;}
.y13a{bottom:129.539948px;}
.yd0{bottom:129.899948px;}
.y73{bottom:130.619948px;}
.y3e{bottom:131.339947px;}
.y193{bottom:139.619944px;}
.yfc{bottom:141.419943px;}
.y167{bottom:141.959943px;}
.y111{bottom:142.319943px;}
.ya9{bottom:150.059940px;}
.y139{bottom:152.579939px;}
.ycf{bottom:152.939939px;}
.y72{bottom:153.479939px;}
.y3d{bottom:154.199938px;}
.y192{bottom:163.019935px;}
.y166{bottom:164.099934px;}
.yfb{bottom:164.459934px;}
.y110{bottom:165.359934px;}
.ya8{bottom:172.919931px;}
.y138{bottom:175.619930px;}
.yce{bottom:175.979930px;}
.y71{bottom:176.519929px;}
.y3c{bottom:177.239929px;}
.y191{bottom:186.239926px;}
.y165{bottom:186.419925px;}
.yfa{bottom:187.319925px;}
.y10f{bottom:188.399925px;}
.ya7{bottom:195.959922px;}
.y137{bottom:198.659921px;}
.ycd{bottom:199.019920px;}
.y70{bottom:199.559920px;}
.y3b{bottom:200.279920px;}
.y164{bottom:208.559917px;}
.y190{bottom:209.639916px;}
.yf9{bottom:210.359916px;}
.y10e{bottom:211.259915px;}
.ya6{bottom:218.999912px;}
.y136{bottom:221.699911px;}
.ycc{bottom:221.879911px;}
.y6f{bottom:222.599911px;}
.y3a{bottom:223.319911px;}
.y163{bottom:230.879908px;}
.y18f{bottom:233.039907px;}
.yf8{bottom:233.399907px;}
.y10d{bottom:234.299906px;}
.ya5{bottom:242.039903px;}
.y135{bottom:244.739902px;}
.ycb{bottom:244.919902px;}
.y6e{bottom:245.639902px;}
.y39{bottom:246.359901px;}
.y162{bottom:253.019899px;}
.y18e{bottom:256.259897px;}
.yf7{bottom:256.439897px;}
.y10c{bottom:257.339897px;}
.y38{bottom:262.559895px;}
.ya4{bottom:265.079894px;}
.y37{bottom:266.339893px;}
.y134{bottom:267.599893px;}
.yca{bottom:267.959893px;}
.y6d{bottom:268.679893px;}
.y161{bottom:275.339890px;}
.yf6{bottom:279.479888px;}
.y18d{bottom:279.659888px;}
.y10b{bottom:280.379888px;}
.y36{bottom:286.679885px;}
.ya3{bottom:288.119885px;}
.y133{bottom:290.639884px;}
.yc9{bottom:290.999884px;}
.y6c{bottom:291.539883px;}
.y160{bottom:297.659881px;}
.yf5{bottom:302.339879px;}
.y18c{bottom:302.879879px;}
.y10a{bottom:303.419879px;}
.y35{bottom:309.719876px;}
.ya2{bottom:310.979876px;}
.y132{bottom:313.679875px;}
.yc8{bottom:314.039874px;}
.y6b{bottom:314.579874px;}
.y15f{bottom:319.799872px;}
.yf4{bottom:325.379870px;}
.y18b{bottom:326.279869px;}
.y109{bottom:326.459869px;}
.y34{bottom:332.759867px;}
.ya1{bottom:334.019866px;}
.y131{bottom:336.719865px;}
.yc7{bottom:337.079865px;}
.y6a{bottom:337.619865px;}
.y15e{bottom:342.119863px;}
.yf3{bottom:348.419861px;}
.y108{bottom:349.319860px;}
.y18a{bottom:349.679860px;}
.y33{bottom:355.799858px;}
.ya0{bottom:357.059857px;}
.y130{bottom:359.759856px;}
.yc6{bottom:359.939856px;}
.y69{bottom:360.659856px;}
.y15d{bottom:364.259854px;}
.yf2{bottom:371.459851px;}
.y107{bottom:372.359851px;}
.y189{bottom:372.899851px;}
.y32{bottom:378.839848px;}
.y9f{bottom:380.099848px;}
.y12f{bottom:382.619847px;}
.yc5{bottom:382.979847px;}
.y68{bottom:383.699847px;}
.y15c{bottom:386.579845px;}
.yf1{bottom:394.499842px;}
.y106{bottom:395.399842px;}
.y188{bottom:396.299841px;}
.y31{bottom:401.879839px;}
.y9e{bottom:403.139839px;}
.y12e{bottom:405.659838px;}
.yc4{bottom:406.019838px;}
.y67{bottom:406.739837px;}
.y15b{bottom:408.719837px;}
.yf0{bottom:417.539833px;}
.y105{bottom:418.439833px;}
.y187{bottom:419.519832px;}
.y30{bottom:424.739830px;}
.y9d{bottom:426.179830px;}
.y12d{bottom:428.699829px;}
.yc3{bottom:429.059828px;}
.y66{bottom:429.599828px;}
.y15a{bottom:431.039828px;}
.yef{bottom:440.579824px;}
.y104{bottom:441.479823px;}
.y186{bottom:442.919823px;}
.y2f{bottom:447.779821px;}
.y9c{bottom:449.039820px;}
.y12c{bottom:451.739819px;}
.yc2{bottom:452.099819px;}
.y65{bottom:452.639819px;}
.y159{bottom:453.179819px;}
.yee{bottom:463.799814px;}
.y103{bottom:464.519814px;}
.y185{bottom:466.319813px;}
.y2e{bottom:470.819812px;}
.y9b{bottom:472.079811px;}
.y12b{bottom:474.779810px;}
.yc1{bottom:475.139810px;}
.y158{bottom:475.499810px;}
.y64{bottom:475.679810px;}
.yed{bottom:486.839805px;}
.y102{bottom:487.379805px;}
.y184{bottom:489.539804px;}
.y2d{bottom:493.859802px;}
.y9a{bottom:495.119802px;}
.y12a{bottom:497.819801px;}
.yc0{bottom:497.999801px;}
.y63{bottom:498.719801px;}
.yec{bottom:509.879796px;}
.y101{bottom:510.419796px;}
.y183{bottom:512.939795px;}
.y2c{bottom:516.899793px;}
.y99{bottom:518.159793px;}
.y157{bottom:519.959792px;}
.y129{bottom:520.679792px;}
.ybf{bottom:521.039792px;}
.y62{bottom:521.759791px;}
.yeb{bottom:532.919787px;}
.y100{bottom:533.459787px;}
.y182{bottom:536.159786px;}
.y2b{bottom:539.939784px;}
.y98{bottom:541.199784px;}
.y156{bottom:542.279783px;}
.y128{bottom:543.719783px;}
.ybe{bottom:544.079782px;}
.y61{bottom:544.799782px;}
.yea{bottom:555.959778px;}
.yff{bottom:556.499777px;}
.y181{bottom:559.559776px;}
.y2a{bottom:562.799775px;}
.y97{bottom:564.059774px;}
.y155{bottom:564.419774px;}
.y127{bottom:566.759773px;}
.ybd{bottom:567.119773px;}
.y60{bottom:567.659773px;}
.ye9{bottom:579.359768px;}
.yfe{bottom:579.539768px;}
.y180{bottom:582.959767px;}
.y29{bottom:585.839766px;}
.y154{bottom:586.739765px;}
.y96{bottom:587.099765px;}
.y126{bottom:589.799764px;}
.ybc{bottom:590.159764px;}
.y5f{bottom:590.699764px;}
.ye8{bottom:602.579759px;}
.y27{bottom:605.820600px;}
.y17f{bottom:606.179758px;}
.y153{bottom:608.879756px;}
.y95{bottom:610.139756px;}
.y125{bottom:612.839755px;}
.ybb{bottom:613.019755px;}
.y5e{bottom:613.739755px;}
.ye7{bottom:625.439750px;}
.y17e{bottom:629.579748px;}
.y152{bottom:631.199748px;}
.y94{bottom:633.179747px;}
.y24{bottom:633.900600px;}
.y124{bottom:635.879746px;}
.yba{bottom:636.059746px;}
.y5d{bottom:636.779745px;}
.y26{bottom:637.319745px;}
.ye6{bottom:648.479741px;}
.y17d{bottom:652.799739px;}
.y151{bottom:653.519739px;}
.y93{bottom:656.219738px;}
.y123{bottom:658.739737px;}
.yb9{bottom:659.099736px;}
.y5c{bottom:659.819736px;}
.ye5{bottom:671.519731px;}
.y23{bottom:675.119730px;}
.y150{bottom:675.659730px;}
.y17c{bottom:676.199730px;}
.y92{bottom:679.259728px;}
.y122{bottom:681.779727px;}
.yb8{bottom:682.139727px;}
.y5b{bottom:682.679727px;}
.ye4{bottom:694.559722px;}
.y14f{bottom:697.979721px;}
.y17b{bottom:699.599720px;}
.y91{bottom:702.119719px;}
.y121{bottom:704.819718px;}
.yb7{bottom:705.179718px;}
.y5a{bottom:705.719718px;}
.y21{bottom:714.720600px;}
.y1f{bottom:715.980600px;}
.ye3{bottom:717.599713px;}
.y14e{bottom:720.119712px;}
.y17a{bottom:722.819711px;}
.y90{bottom:725.159710px;}
.y120{bottom:727.859709px;}
.yb6{bottom:728.219709px;}
.y59{bottom:728.759708px;}
.y1e{bottom:735.059706px;}
.ye2{bottom:740.459704px;}
.y14d{bottom:742.439703px;}
.y179{bottom:746.219702px;}
.y8f{bottom:748.199701px;}
.y11f{bottom:750.899700px;}
.yb5{bottom:751.079700px;}
.y58{bottom:751.799699px;}
.ye1{bottom:763.499695px;}
.y14c{bottom:764.579694px;}
.y1d{bottom:769.079692px;}
.y178{bottom:769.439692px;}
.y8e{bottom:771.239692px;}
.y11e{bottom:773.939690px;}
.yb4{bottom:774.119690px;}
.y57{bottom:774.839690px;}
.ye0{bottom:786.539685px;}
.y14b{bottom:786.899685px;}
.y177{bottom:792.839683px;}
.y1c{bottom:793.739683px;}
.y8d{bottom:794.279682px;}
.y11d{bottom:796.799681px;}
.yb3{bottom:797.159681px;}
.y56{bottom:797.879681px;}
.yde{bottom:800.940600px;}
.y14a{bottom:809.219676px;}
.y176{bottom:816.239674px;}
.y8c{bottom:817.319673px;}
.ydc{bottom:817.320600px;}
.y11c{bottom:819.839672px;}
.yb2{bottom:820.199672px;}
.y55{bottom:820.739672px;}
.y1b{bottom:830.279668px;}
.y149{bottom:831.359667px;}
.yd9{bottom:833.880600px;}
.y175{bottom:839.459664px;}
.y8b{bottom:840.179664px;}
.ydb{bottom:840.719664px;}
.y11b{bottom:842.879663px;}
.yb1{bottom:843.239663px;}
.y54{bottom:843.779662px;}
.y19{bottom:850.080600px;}
.yd6{bottom:850.260600px;}
.y148{bottom:853.679659px;}
.yd8{bottom:857.099657px;}
.y18{bottom:860.879656px;}
.y174{bottom:862.859655px;}
.y8a{bottom:863.219655px;}
.y11a{bottom:865.919654px;}
.yb0{bottom:866.279653px;}
.y53{bottom:866.819653px;}
.yd3{bottom:866.820600px;}
.y17{bottom:872.759651px;}
.yd5{bottom:873.659651px;}
.y147{bottom:875.819650px;}
.yd1{bottom:884.280600px;}
.y173{bottom:886.079646px;}
.y89{bottom:886.259645px;}
.y119{bottom:888.959644px;}
.yaf{bottom:889.139644px;}
.y52{bottom:889.859644px;}
.y14{bottom:895.440600px;}
.y146{bottom:898.139641px;}
.y16{bottom:905.519638px;}
.y88{bottom:909.299636px;}
.y172{bottom:909.479636px;}
.y118{bottom:911.999635px;}
.yae{bottom:912.179635px;}
.y51{bottom:912.899635px;}
.y12{bottom:915.780600px;}
.y145{bottom:920.279632px;}
.y87{bottom:932.339627px;}
.y171{bottom:932.879627px;}
.yad{bottom:935.399626px;}
.y50{bottom:935.939626px;}
.y144{bottom:942.599623px;}
.y11{bottom:949.259620px;}
.y86{bottom:955.379618px;}
.y170{bottom:956.099618px;}
.yac{bottom:958.619617px;}
.y4f{bottom:958.799616px;}
.y143{bottom:964.739614px;}
.y85{bottom:978.239609px;}
.y16f{bottom:979.499608px;}
.y117{bottom:981.479607px;}
.yab{bottom:981.659607px;}
.y4e{bottom:981.839607px;}
.y142{bottom:987.059605px;}
.y10{bottom:990.119604px;}
.y84{bottom:1001.279599px;}
.y16e{bottom:1002.719599px;}
.y116{bottom:1004.519598px;}
.y4d{bottom:1004.879598px;}
.y141{bottom:1009.379596px;}
.yf{bottom:1013.519595px;}
.y82{bottom:1015.680600px;}
.y16d{bottom:1026.119590px;}
.y115{bottom:1027.559589px;}
.y4c{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y140{bottom:1031.519587px;}
.y80{bottom:1032.060600px;}
.y7d{bottom:1048.620600px;}
.y16c{bottom:1049.519580px;}
.y114{bottom:1050.599580px;}
.y4b{bottom:1050.959580px;}
.y13f{bottom:1053.839578px;}
.y7f{bottom:1055.459578px;}
.y7a{bottom:1065.000600px;}
.y7c{bottom:1071.839571px;}
.y16b{bottom:1072.739571px;}
.y45{bottom:1073.280600px;}
.y113{bottom:1073.819570px;}
.y4a{bottom:1073.999570px;}
.y13e{bottom:1075.979570px;}
.y77{bottom:1081.560600px;}
.y44{bottom:1082.279567px;}
.y79{bottom:1088.399565px;}
.y16a{bottom:1096.139562px;}
.y49{bottom:1096.859561px;}
.y13d{bottom:1098.299561px;}
.y76{bottom:1102.079559px;}
.y43{bottom:1103.519559px;}
.y74{bottom:1114.500600px;}
.y169{bottom:1119.359552px;}
.y48{bottom:1119.899552px;}
.y13c{bottom:1120.439552px;}
.y42{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y13b{bottom:1142.759543px;}
.y47{bottom:1142.939543px;}
.y40{bottom:1145.280600px;}
.y3f{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y7{bottom:1195.860600px;}
.h25{height:2.880000px;}
.hb{height:8.169958px;}
.hd{height:13.500000px;}
.h18{height:15.120000px;}
.h28{height:15.300000px;}
.h1f{height:15.859330px;}
.h1a{height:16.380000px;}
.h1d{height:17.100000px;}
.hf{height:20.160000px;}
.h14{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h23{height:21.780000px;}
.h13{height:22.171632px;}
.h16{height:24.439209px;}
.h20{height:25.913662px;}
.h11{height:25.951630px;}
.h29{height:27.228505px;}
.he{height:32.199245px;}
.h1c{height:33.588971px;}
.h12{height:36.886626px;}
.h17{height:40.005336px;}
.h27{height:40.499984px;}
.h19{height:40.842757px;}
.h24{height:41.290999px;}
.h21{height:43.185920px;}
.h1e{height:45.199318px;}
.h8{height:47.988262px;}
.h10{height:48.058575px;}
.h15{height:48.199199px;}
.h26{height:49.907793px;}
.h1b{height:50.132792px;}
.ha{height:54.457009px;}
.h22{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w1f{width:3.240000px;}
.w35{width:3.420000px;}
.wd{width:4.500000px;}
.w29{width:5.040000px;}
.w2d{width:6.300000px;}
.w1{width:6.480000px;}
.w16{width:6.840000px;}
.wf{width:7.740000px;}
.w28{width:8.100000px;}
.w7{width:8.280000px;}
.w25{width:8.640000px;}
.w21{width:8.820000px;}
.w1b{width:9.360000px;}
.w32{width:9.540000px;}
.w13{width:9.900000px;}
.w12{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.w2c{width:12.780000px;}
.wb{width:12.960000px;}
.w2b{width:13.860000px;}
.w3{width:16.020000px;}
.w22{width:22.860000px;}
.w31{width:23.760000px;}
.w43{width:23.940000px;}
.w20{width:24.120000px;}
.w27{width:24.300000px;}
.w26{width:24.480000px;}
.w39{width:24.840000px;}
.w1d{width:25.200000px;}
.w2a{width:25.380000px;}
.w1a{width:25.560000px;}
.w40{width:25.920000px;}
.w2f{width:26.100000px;}
.w1e{width:26.280000px;}
.w30{width:26.460000px;}
.w23{width:26.820000px;}
.w1c{width:27.540000px;}
.w24{width:27.720000px;}
.w4{width:33.480000px;}
.w36{width:34.020000px;}
.w3a{width:36.000000px;}
.w41{width:36.360000px;}
.w3d{width:37.440000px;}
.w3b{width:38.520000px;}
.w44{width:39.960000px;}
.w42{width:40.500000px;}
.w3e{width:41.220000px;}
.w3c{width:41.940000px;}
.w2e{width:42.120000px;}
.w3f{width:42.300000px;}
.w33{width:55.980000px;}
.w14{width:63.000000px;}
.w10{width:65.700000px;}
.w38{width:68.580000px;}
.w19{width:76.860000px;}
.wc{width:77.940000px;}
.w17{width:78.660000px;}
.w34{width:81.180000px;}
.w15{width:86.760000px;}
.w18{width:91.440000px;}
.w37{width:93.780000px;}
.w2{width:119.700000px;}
.w9{width:176.220000px;}
.w8{width:188.460000px;}
.we{width:495.360000px;}
.wa{width:595.440000px;}
.w11{width:675.720000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x22{left:113.400000px;}
.x29{left:116.459953px;}
.x5{left:120.240000px;}
.x2{left:137.699962px;}
.x53{left:146.520000px;}
.x5c{left:150.120000px;}
.x3{left:155.700000px;}
.x4{left:171.899931px;}
.x28{left:174.599930px;}
.xa{left:185.219926px;}
.x24{left:187.200000px;}
.x25{left:191.700000px;}
.x30{left:207.720000px;}
.x32{left:216.533913px;}
.x3b{left:237.420000px;}
.x6{left:239.940000px;}
.x54{left:248.760000px;}
.x5d{left:251.280000px;}
.x55{left:253.800000px;}
.xb{left:259.740316px;}
.x3c{left:264.960000px;}
.x77{left:268.020000px;}
.x70{left:274.500000px;}
.x71{left:287.280000px;}
.x31{left:294.480000px;}
.x65{left:296.279881px;}
.x1f{left:297.719881px;}
.x66{left:301.500000px;}
.x5f{left:308.880000px;}
.x20{left:315.720000px;}
.x33{left:325.620000px;}
.x35{left:330.473868px;}
.x2b{left:342.539863px;}
.x3d{left:352.620000px;}
.x4a{left:353.700000px;}
.x56{left:358.200000px;}
.x57{left:372.060000px;}
.x4b{left:376.560000px;}
.x3e{left:377.820000px;}
.x6e{left:391.140000px;}
.x67{left:392.580000px;}
.x78{left:398.700000px;}
.x34{left:404.280000px;}
.x72{left:418.680000px;}
.x79{left:424.800000px;}
.xc{left:427.680106px;}
.x68{left:431.100000px;}
.xd{left:432.180102px;}
.x60{left:433.620000px;}
.x2d{left:435.959826px;}
.x36{left:437.400000px;}
.x37{left:455.759818px;}
.x2a{left:462.600512px;}
.x3f{left:470.160000px;}
.x58{left:476.460000px;}
.x59{left:490.320000px;}
.x21{left:491.939803px;}
.x40{left:496.440000px;}
.x61{left:502.200000px;}
.xe{left:516.060050px;}
.x69{left:525.600000px;}
.xf{left:529.380042px;}
.x7a{left:537.120000px;}
.x10{left:542.700033px;}
.x2f{left:556.199778px;}
.x7b{left:561.060000px;}
.x11{left:564.659960px;}
.x6a{left:567.539773px;}
.x12{left:569.159957px;}
.x38{left:571.320000px;}
.x6b{left:572.760000px;}
.x13{left:582.479948px;}
.x2e{left:589.679764px;}
.x41{left:591.480000px;}
.x4c{left:594.180000px;}
.x14{left:595.619941px;}
.x5e{left:597.060000px;}
.x5a{left:603.540000px;}
.x15{left:608.939932px;}
.x16{left:613.439928px;}
.x42{left:616.680000px;}
.x4f{left:618.659753px;}
.x43{left:619.920000px;}
.x4d{left:620.999752px;}
.x44{left:623.159751px;}
.x4e{left:625.680000px;}
.x45{left:628.380000px;}
.x17{left:631.079858px;}
.x18{left:635.399856px;}
.x62{left:644.040000px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x6c{left:664.560000px;}
.x1c{left:666.359733px;}
.x73{left:671.400000px;}
.x74{left:685.260000px;}
.x26{left:687.060000px;}
.x6f{left:690.480000px;}
.x6d{left:692.100000px;}
.x7{left:697.320000px;}
.x7c{left:698.400000px;}
.x23{left:708.300000px;}
.x46{left:710.100000px;}
.x50{left:712.260000px;}
.x39{left:715.320000px;}
.x5b{left:724.860000px;}
.x8{left:730.800000px;}
.x47{left:734.220000px;}
.x48{left:737.460000px;}
.x51{left:739.079704px;}
.x3a{left:740.880000px;}
.x9{left:741.960000px;}
.x52{left:743.760000px;}
.x49{left:745.920000px;}
.x63{left:748.080000px;}
.x75{left:753.480000px;}
.x76{left:767.340000px;}
.x64{left:772.920000px;}
.x2c{left:779.580000px;}
.x27{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.lsc{letter-spacing:0.049280pt;}
.ls2{letter-spacing:0.064960pt;}
.ls8{letter-spacing:0.207413pt;}
.ls1{letter-spacing:0.303046pt;}
.ls9{letter-spacing:0.303413pt;}
.ls5{letter-spacing:0.847786pt;}
.ls6{letter-spacing:1.210986pt;}
.ls7{letter-spacing:1.488159pt;}
.lsa{letter-spacing:1.554719pt;}
.lsb{letter-spacing:1.584159pt;}
.ls4{letter-spacing:5.738291pt;}
.ws7{word-spacing:-37.295985pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.492475pt;}
.ws8{word-spacing:-12.191995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws2{word-spacing:-9.192956pt;}
.ws6{word-spacing:-7.711997pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-596.162746pt;}
._3{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._2{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._32{margin-left:-2.185674pt;}
._1{margin-left:-1.055625pt;}
._0{width:0.957713pt;}
._e{width:1.952570pt;}
._12{width:2.921714pt;}
._f{width:3.863251pt;}
._1b{width:5.497856pt;}
._1f{width:6.514298pt;}
._11{width:7.999908pt;}
._10{width:9.123508pt;}
._15{width:10.219148pt;}
._44{width:11.140395pt;}
._13{width:12.606847pt;}
._18{width:13.942895pt;}
._29{width:14.903538pt;}
._21{width:15.872555pt;}
._20{width:16.794450pt;}
._14{width:17.883274pt;}
._26{width:18.955601pt;}
._27{width:19.937165pt;}
._1c{width:21.222228pt;}
._23{width:22.738605pt;}
._24{width:23.817571pt;}
._19{width:24.939363pt;}
._1a{width:25.953301pt;}
._33{width:27.407561pt;}
._1d{width:28.366528pt;}
._1e{width:29.467349pt;}
._2a{width:30.622530pt;}
._22{width:32.108558pt;}
._16{width:33.787717pt;}
._17{width:34.757512pt;}
._35{width:35.930648pt;}
._25{width:36.937783pt;}
._39{width:38.092243pt;}
._30{width:38.987391pt;}
._2d{width:39.917307pt;}
._2c{width:41.009100pt;}
._c{width:42.132356pt;}
._2e{width:44.171422pt;}
._34{width:45.082301pt;}
._43{width:46.168617pt;}
._3e{width:47.456529pt;}
._3d{width:50.103731pt;}
._2f{width:51.203300pt;}
._2b{width:52.927515pt;}
._28{width:54.213353pt;}
._38{width:57.775035pt;}
._3a{width:60.080924pt;}
._3b{width:64.787342pt;}
._31{width:66.135441pt;}
._45{width:70.321698pt;}
._46{width:71.260762pt;}
._36{width:73.914102pt;}
._37{width:89.961972pt;}
._41{width:95.881352pt;}
._42{width:96.822647pt;}
._3f{width:108.287917pt;}
._40{width:109.576818pt;}
._d{width:276.879724pt;}
._3c{width:311.503461pt;}
.fsb{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsa{font-size:21.119992pt;}
.fs7{font-size:29.439988pt;}
.fsd{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fs8{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y46{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y75{bottom:2.719069pt;}
.y78{bottom:2.719081pt;}
.y7b{bottom:2.719087pt;}
.y7e{bottom:2.719093pt;}
.y81{bottom:2.719099pt;}
.y83{bottom:2.719104pt;}
.yd2{bottom:2.719151pt;}
.yd4{bottom:2.719157pt;}
.yd7{bottom:2.719163pt;}
.yda{bottom:2.719169pt;}
.ydd{bottom:2.719175pt;}
.ydf{bottom:2.719181pt;}
.y20{bottom:2.719211pt;}
.y28{bottom:2.719250pt;}
.y13{bottom:2.879140pt;}
.y25{bottom:3.039240pt;}
.y41{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y22{bottom:3.839211pt;}
.y4{bottom:3.840025pt;}
.y15{bottom:4.319147pt;}
.y1a{bottom:4.319163pt;}
.y6{bottom:52.106912pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.y194{bottom:103.626625pt;}
.yfd{bottom:105.226625pt;}
.y112{bottom:106.026624pt;}
.y168{bottom:106.506624pt;}
.yaa{bottom:112.906622pt;}
.y13a{bottom:115.146621pt;}
.yd0{bottom:115.466620pt;}
.y73{bottom:116.106620pt;}
.y3e{bottom:116.746620pt;}
.y193{bottom:124.106617pt;}
.yfc{bottom:125.706616pt;}
.y167{bottom:126.186616pt;}
.y111{bottom:126.506616pt;}
.ya9{bottom:133.386613pt;}
.y139{bottom:135.626612pt;}
.ycf{bottom:135.946612pt;}
.y72{bottom:136.426612pt;}
.y3d{bottom:137.066612pt;}
.y192{bottom:144.906609pt;}
.y166{bottom:145.866608pt;}
.yfb{bottom:146.186608pt;}
.y110{bottom:146.986608pt;}
.ya8{bottom:153.706605pt;}
.y138{bottom:156.106604pt;}
.yce{bottom:156.426604pt;}
.y71{bottom:156.906604pt;}
.y3c{bottom:157.546604pt;}
.y191{bottom:165.546600pt;}
.y165{bottom:165.706600pt;}
.yfa{bottom:166.506600pt;}
.y10f{bottom:167.466600pt;}
.ya7{bottom:174.186597pt;}
.y137{bottom:176.586596pt;}
.ycd{bottom:176.906596pt;}
.y70{bottom:177.386596pt;}
.y3b{bottom:178.026595pt;}
.y164{bottom:185.386593pt;}
.y190{bottom:186.346592pt;}
.yf9{bottom:186.986592pt;}
.y10e{bottom:187.786592pt;}
.ya6{bottom:194.666589pt;}
.y136{bottom:197.066588pt;}
.ycc{bottom:197.226588pt;}
.y6f{bottom:197.866588pt;}
.y3a{bottom:198.506587pt;}
.y163{bottom:205.226585pt;}
.y18f{bottom:207.146584pt;}
.yf8{bottom:207.466584pt;}
.y10d{bottom:208.266583pt;}
.ya5{bottom:215.146581pt;}
.y135{bottom:217.546580pt;}
.ycb{bottom:217.706580pt;}
.y6e{bottom:218.346579pt;}
.y39{bottom:218.986579pt;}
.y162{bottom:224.906577pt;}
.y18e{bottom:227.786576pt;}
.yf7{bottom:227.946575pt;}
.y10c{bottom:228.746575pt;}
.y38{bottom:233.386573pt;}
.ya4{bottom:235.626572pt;}
.y37{bottom:236.746572pt;}
.y134{bottom:237.866572pt;}
.yca{bottom:238.186571pt;}
.y6d{bottom:238.826571pt;}
.y161{bottom:244.746569pt;}
.yf6{bottom:248.426567pt;}
.y18d{bottom:248.586567pt;}
.y10b{bottom:249.226567pt;}
.y36{bottom:254.826565pt;}
.ya3{bottom:256.106564pt;}
.y133{bottom:258.346563pt;}
.yc9{bottom:258.666563pt;}
.y6c{bottom:259.146563pt;}
.y160{bottom:264.586561pt;}
.yf5{bottom:268.746559pt;}
.y18c{bottom:269.226559pt;}
.y10a{bottom:269.706559pt;}
.y35{bottom:275.306557pt;}
.ya2{bottom:276.426556pt;}
.y132{bottom:278.826555pt;}
.yc8{bottom:279.146555pt;}
.y6b{bottom:279.626555pt;}
.y15f{bottom:284.266553pt;}
.yf4{bottom:289.226551pt;}
.y18b{bottom:290.026551pt;}
.y109{bottom:290.186551pt;}
.y34{bottom:295.786548pt;}
.ya1{bottom:296.906548pt;}
.y131{bottom:299.306547pt;}
.yc7{bottom:299.626547pt;}
.y6a{bottom:300.106547pt;}
.y15e{bottom:304.106545pt;}
.yf3{bottom:309.706543pt;}
.y108{bottom:310.506542pt;}
.y18a{bottom:310.826542pt;}
.y33{bottom:316.266540pt;}
.ya0{bottom:317.386540pt;}
.y130{bottom:319.786539pt;}
.yc6{bottom:319.946539pt;}
.y69{bottom:320.586538pt;}
.y15d{bottom:323.786537pt;}
.yf2{bottom:330.186535pt;}
.y107{bottom:330.986534pt;}
.y189{bottom:331.466534pt;}
.y32{bottom:336.746532pt;}
.y9f{bottom:337.866532pt;}
.y12f{bottom:340.106531pt;}
.yc5{bottom:340.426530pt;}
.y68{bottom:341.066530pt;}
.y15c{bottom:343.626529pt;}
.yf1{bottom:350.666526pt;}
.y106{bottom:351.466526pt;}
.y188{bottom:352.266526pt;}
.y31{bottom:357.226524pt;}
.y9e{bottom:358.346523pt;}
.y12e{bottom:360.586522pt;}
.yc4{bottom:360.906522pt;}
.y67{bottom:361.546522pt;}
.y15b{bottom:363.306521pt;}
.yf0{bottom:371.146518pt;}
.y105{bottom:371.946518pt;}
.y187{bottom:372.906518pt;}
.y30{bottom:377.546516pt;}
.y9d{bottom:378.826515pt;}
.y12d{bottom:381.066514pt;}
.yc3{bottom:381.386514pt;}
.y66{bottom:381.866514pt;}
.y15a{bottom:383.146513pt;}
.yef{bottom:391.626510pt;}
.y104{bottom:392.426510pt;}
.y186{bottom:393.706509pt;}
.y2f{bottom:398.026507pt;}
.y9c{bottom:399.146507pt;}
.y12c{bottom:401.546506pt;}
.yc2{bottom:401.866506pt;}
.y65{bottom:402.346506pt;}
.y159{bottom:402.826506pt;}
.yee{bottom:412.266502pt;}
.y103{bottom:412.906502pt;}
.y185{bottom:414.506501pt;}
.y2e{bottom:418.506499pt;}
.y9b{bottom:419.626499pt;}
.y12b{bottom:422.026498pt;}
.yc1{bottom:422.346498pt;}
.y158{bottom:422.666498pt;}
.y64{bottom:422.826498pt;}
.yed{bottom:432.746494pt;}
.y102{bottom:433.226493pt;}
.y184{bottom:435.146493pt;}
.y2d{bottom:438.986491pt;}
.y9a{bottom:440.106491pt;}
.y12a{bottom:442.506490pt;}
.yc0{bottom:442.666490pt;}
.y63{bottom:443.306489pt;}
.yec{bottom:453.226485pt;}
.y101{bottom:453.706485pt;}
.y183{bottom:455.946484pt;}
.y2c{bottom:459.466483pt;}
.y99{bottom:460.586482pt;}
.y157{bottom:462.186482pt;}
.y129{bottom:462.826482pt;}
.ybf{bottom:463.146481pt;}
.y62{bottom:463.786481pt;}
.yeb{bottom:473.706477pt;}
.y100{bottom:474.186477pt;}
.y182{bottom:476.586476pt;}
.y2b{bottom:479.946475pt;}
.y98{bottom:481.066474pt;}
.y156{bottom:482.026474pt;}
.y128{bottom:483.306473pt;}
.ybe{bottom:483.626473pt;}
.y61{bottom:484.266473pt;}
.yea{bottom:494.186469pt;}
.yff{bottom:494.666469pt;}
.y181{bottom:497.386468pt;}
.y2a{bottom:500.266467pt;}
.y97{bottom:501.386466pt;}
.y155{bottom:501.706466pt;}
.y127{bottom:503.786465pt;}
.ybd{bottom:504.106465pt;}
.y60{bottom:504.586465pt;}
.ye9{bottom:514.986461pt;}
.yfe{bottom:515.146461pt;}
.y180{bottom:518.186459pt;}
.y29{bottom:520.746458pt;}
.y154{bottom:521.546458pt;}
.y96{bottom:521.866458pt;}
.y126{bottom:524.266457pt;}
.ybc{bottom:524.586457pt;}
.y5f{bottom:525.066457pt;}
.ye8{bottom:535.626452pt;}
.y27{bottom:538.507200pt;}
.y17f{bottom:538.826451pt;}
.y153{bottom:541.226450pt;}
.y95{bottom:542.346450pt;}
.y125{bottom:544.746449pt;}
.ybb{bottom:544.906449pt;}
.y5e{bottom:545.546448pt;}
.ye7{bottom:555.946444pt;}
.y17e{bottom:559.626443pt;}
.y152{bottom:561.066442pt;}
.y94{bottom:562.826442pt;}
.y24{bottom:563.467200pt;}
.y124{bottom:565.226441pt;}
.yba{bottom:565.386441pt;}
.y5d{bottom:566.026440pt;}
.y26{bottom:566.506440pt;}
.ye6{bottom:576.426436pt;}
.y17d{bottom:580.266435pt;}
.y151{bottom:580.906434pt;}
.y93{bottom:583.306433pt;}
.y123{bottom:585.546432pt;}
.yb9{bottom:585.866432pt;}
.y5c{bottom:586.506432pt;}
.ye5{bottom:596.906428pt;}
.y23{bottom:600.106427pt;}
.y150{bottom:600.586426pt;}
.y17c{bottom:601.066426pt;}
.y92{bottom:603.786425pt;}
.y122{bottom:606.026424pt;}
.yb8{bottom:606.346424pt;}
.y5b{bottom:606.826424pt;}
.ye4{bottom:617.386420pt;}
.y14f{bottom:620.426418pt;}
.y17b{bottom:621.866418pt;}
.y91{bottom:624.106417pt;}
.y121{bottom:626.506416pt;}
.yb7{bottom:626.826416pt;}
.y5a{bottom:627.306416pt;}
.y21{bottom:635.307200pt;}
.y1f{bottom:636.427200pt;}
.ye3{bottom:637.866412pt;}
.y14e{bottom:640.106411pt;}
.y17a{bottom:642.506410pt;}
.y90{bottom:644.586409pt;}
.y120{bottom:646.986408pt;}
.yb6{bottom:647.306408pt;}
.y59{bottom:647.786408pt;}
.y1e{bottom:653.386405pt;}
.ye2{bottom:658.186403pt;}
.y14d{bottom:659.946403pt;}
.y179{bottom:663.306401pt;}
.y8f{bottom:665.066401pt;}
.y11f{bottom:667.466400pt;}
.yb5{bottom:667.626400pt;}
.y58{bottom:668.266399pt;}
.ye1{bottom:678.666395pt;}
.y14c{bottom:679.626395pt;}
.y1d{bottom:683.626393pt;}
.y178{bottom:683.946393pt;}
.y8e{bottom:685.546392pt;}
.y11e{bottom:687.946391pt;}
.yb4{bottom:688.106391pt;}
.y57{bottom:688.746391pt;}
.ye0{bottom:699.146387pt;}
.y14b{bottom:699.466387pt;}
.y177{bottom:704.746385pt;}
.y1c{bottom:705.546384pt;}
.y8d{bottom:706.026384pt;}
.y11d{bottom:708.266383pt;}
.yb3{bottom:708.586383pt;}
.y56{bottom:709.226383pt;}
.yde{bottom:711.947200pt;}
.y14a{bottom:719.306379pt;}
.y176{bottom:725.546376pt;}
.y8c{bottom:726.506376pt;}
.ydc{bottom:726.507200pt;}
.y11c{bottom:728.746375pt;}
.yb2{bottom:729.066375pt;}
.y55{bottom:729.546375pt;}
.y1b{bottom:738.026371pt;}
.y149{bottom:738.986371pt;}
.yd9{bottom:741.227200pt;}
.y175{bottom:746.186368pt;}
.y8b{bottom:746.826368pt;}
.ydb{bottom:747.306368pt;}
.y11b{bottom:749.226367pt;}
.yb1{bottom:749.546367pt;}
.y54{bottom:750.026367pt;}
.y19{bottom:755.627200pt;}
.yd6{bottom:755.787200pt;}
.y148{bottom:758.826363pt;}
.yd8{bottom:761.866362pt;}
.y18{bottom:765.226361pt;}
.y174{bottom:766.986360pt;}
.y8a{bottom:767.306360pt;}
.y11a{bottom:769.706359pt;}
.yb0{bottom:770.026359pt;}
.y53{bottom:770.506358pt;}
.yd3{bottom:770.507200pt;}
.y17{bottom:775.786356pt;}
.yd5{bottom:776.586356pt;}
.y147{bottom:778.506355pt;}
.yd1{bottom:786.027200pt;}
.y173{bottom:787.626352pt;}
.y89{bottom:787.786352pt;}
.y119{bottom:790.186351pt;}
.yaf{bottom:790.346351pt;}
.y52{bottom:790.986350pt;}
.y14{bottom:795.947200pt;}
.y146{bottom:798.346347pt;}
.y16{bottom:804.906345pt;}
.y88{bottom:808.266343pt;}
.y172{bottom:808.426343pt;}
.y118{bottom:810.666342pt;}
.yae{bottom:810.826342pt;}
.y51{bottom:811.466342pt;}
.y12{bottom:814.027200pt;}
.y145{bottom:818.026339pt;}
.y87{bottom:828.746335pt;}
.y171{bottom:829.226335pt;}
.yad{bottom:831.466334pt;}
.y50{bottom:831.946334pt;}
.y144{bottom:837.866332pt;}
.y11{bottom:843.786329pt;}
.y86{bottom:849.226327pt;}
.y170{bottom:849.866327pt;}
.yac{bottom:852.106326pt;}
.y4f{bottom:852.266326pt;}
.y143{bottom:857.546324pt;}
.y85{bottom:869.546319pt;}
.y16f{bottom:870.666318pt;}
.y117{bottom:872.426318pt;}
.yab{bottom:872.586318pt;}
.y4e{bottom:872.746318pt;}
.y142{bottom:877.386316pt;}
.y10{bottom:880.106315pt;}
.y84{bottom:890.026311pt;}
.y16e{bottom:891.306310pt;}
.y116{bottom:892.906310pt;}
.y4d{bottom:893.226309pt;}
.y141{bottom:897.226308pt;}
.yf{bottom:900.906306pt;}
.y82{bottom:902.827200pt;}
.y16d{bottom:912.106302pt;}
.y115{bottom:913.386301pt;}
.y4c{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y140{bottom:916.906300pt;}
.y80{bottom:917.387200pt;}
.y7d{bottom:932.107200pt;}
.y16c{bottom:932.906294pt;}
.y114{bottom:933.866293pt;}
.y4b{bottom:934.186293pt;}
.y13f{bottom:936.746292pt;}
.y7f{bottom:938.186291pt;}
.y7a{bottom:946.667200pt;}
.y7c{bottom:952.746286pt;}
.y16b{bottom:953.546285pt;}
.y45{bottom:954.027200pt;}
.y113{bottom:954.506285pt;}
.y4a{bottom:954.666285pt;}
.y13e{bottom:956.426284pt;}
.y77{bottom:961.387200pt;}
.y44{bottom:962.026282pt;}
.y79{bottom:967.466280pt;}
.y16a{bottom:974.346277pt;}
.y49{bottom:974.986277pt;}
.y13d{bottom:976.266276pt;}
.y76{bottom:979.626275pt;}
.y43{bottom:980.906274pt;}
.y74{bottom:990.667200pt;}
.y169{bottom:994.986269pt;}
.y48{bottom:995.466268pt;}
.y13c{bottom:995.946268pt;}
.y42{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y13b{bottom:1015.786260pt;}
.y47{bottom:1015.946260pt;}
.y40{bottom:1018.027200pt;}
.y3f{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y7{bottom:1062.987200pt;}
.h25{height:2.560000pt;}
.hb{height:7.262185pt;}
.hd{height:12.000000pt;}
.h18{height:13.440000pt;}
.h28{height:13.600000pt;}
.h1f{height:14.097182pt;}
.h1a{height:14.560000pt;}
.h1d{height:15.200000pt;}
.hf{height:17.920000pt;}
.h14{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h23{height:19.360000pt;}
.h13{height:19.708117pt;}
.h16{height:21.723741pt;}
.h20{height:23.034366pt;}
.h11{height:23.068116pt;}
.h29{height:24.203115pt;}
.he{height:28.621551pt;}
.h1c{height:29.856863pt;}
.h12{height:32.788112pt;}
.h17{height:35.560298pt;}
.h27{height:35.999986pt;}
.h19{height:36.304673pt;}
.h24{height:36.703110pt;}
.h21{height:38.387485pt;}
.h1e{height:40.177171pt;}
.h8{height:42.656233pt;}
.h10{height:42.718733pt;}
.h15{height:42.843733pt;}
.h26{height:44.362482pt;}
.h1b{height:44.562482pt;}
.ha{height:48.406231pt;}
.h22{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w1f{width:2.880000pt;}
.w35{width:3.040000pt;}
.wd{width:4.000000pt;}
.w29{width:4.480000pt;}
.w2d{width:5.600000pt;}
.w1{width:5.760000pt;}
.w16{width:6.080000pt;}
.wf{width:6.880000pt;}
.w28{width:7.200000pt;}
.w7{width:7.360000pt;}
.w25{width:7.680000pt;}
.w21{width:7.840000pt;}
.w1b{width:8.320000pt;}
.w32{width:8.480000pt;}
.w13{width:8.800000pt;}
.w12{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.w2c{width:11.360000pt;}
.wb{width:11.520000pt;}
.w2b{width:12.320000pt;}
.w3{width:14.240000pt;}
.w22{width:20.320000pt;}
.w31{width:21.120000pt;}
.w43{width:21.280000pt;}
.w20{width:21.440000pt;}
.w27{width:21.600000pt;}
.w26{width:21.760000pt;}
.w39{width:22.080000pt;}
.w1d{width:22.400000pt;}
.w2a{width:22.560000pt;}
.w1a{width:22.720000pt;}
.w40{width:23.040000pt;}
.w2f{width:23.200000pt;}
.w1e{width:23.360000pt;}
.w30{width:23.520000pt;}
.w23{width:23.840000pt;}
.w1c{width:24.480000pt;}
.w24{width:24.640000pt;}
.w4{width:29.760000pt;}
.w36{width:30.240000pt;}
.w3a{width:32.000000pt;}
.w41{width:32.320000pt;}
.w3d{width:33.280000pt;}
.w3b{width:34.240000pt;}
.w44{width:35.520000pt;}
.w42{width:36.000000pt;}
.w3e{width:36.640000pt;}
.w3c{width:37.280000pt;}
.w2e{width:37.440000pt;}
.w3f{width:37.600000pt;}
.w33{width:49.760000pt;}
.w14{width:56.000000pt;}
.w10{width:58.400000pt;}
.w38{width:60.960000pt;}
.w19{width:68.320000pt;}
.wc{width:69.280000pt;}
.w17{width:69.920000pt;}
.w34{width:72.160000pt;}
.w15{width:77.120000pt;}
.w18{width:81.280000pt;}
.w37{width:83.360000pt;}
.w2{width:106.400000pt;}
.w9{width:156.640000pt;}
.w8{width:167.520000pt;}
.we{width:440.320000pt;}
.wa{width:529.280000pt;}
.w11{width:600.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x22{left:100.800000pt;}
.x29{left:103.519959pt;}
.x5{left:106.880000pt;}
.x2{left:122.399966pt;}
.x53{left:130.240000pt;}
.x5c{left:133.440000pt;}
.x3{left:138.400000pt;}
.x4{left:152.799939pt;}
.x28{left:155.199938pt;}
.xa{left:164.639934pt;}
.x24{left:166.400000pt;}
.x25{left:170.400000pt;}
.x30{left:184.640000pt;}
.x32{left:192.474590pt;}
.x3b{left:211.040000pt;}
.x6{left:213.280000pt;}
.x54{left:221.120000pt;}
.x5d{left:223.360000pt;}
.x55{left:225.600000pt;}
.xb{left:230.880281pt;}
.x3c{left:235.520000pt;}
.x77{left:238.240000pt;}
.x70{left:244.000000pt;}
.x71{left:255.360000pt;}
.x31{left:261.760000pt;}
.x65{left:263.359895pt;}
.x1f{left:264.639894pt;}
.x66{left:268.000000pt;}
.x5f{left:274.560000pt;}
.x20{left:280.640000pt;}
.x33{left:289.440000pt;}
.x35{left:293.754549pt;}
.x2b{left:304.479878pt;}
.x3d{left:313.440000pt;}
.x4a{left:314.400000pt;}
.x56{left:318.400000pt;}
.x57{left:330.720000pt;}
.x4b{left:334.720000pt;}
.x3e{left:335.840000pt;}
.x6e{left:347.680000pt;}
.x67{left:348.960000pt;}
.x78{left:354.400000pt;}
.x34{left:359.360000pt;}
.x72{left:372.160000pt;}
.x79{left:377.600000pt;}
.xc{left:380.160094pt;}
.x68{left:383.200000pt;}
.xd{left:384.160091pt;}
.x60{left:385.440000pt;}
.x2d{left:387.519845pt;}
.x36{left:388.800000pt;}
.x37{left:405.119838pt;}
.x2a{left:411.200455pt;}
.x3f{left:417.920000pt;}
.x58{left:423.520000pt;}
.x59{left:435.840000pt;}
.x21{left:437.279825pt;}
.x40{left:441.280000pt;}
.x61{left:446.400000pt;}
.xe{left:458.720045pt;}
.x69{left:467.200000pt;}
.xf{left:470.560037pt;}
.x7a{left:477.440000pt;}
.x10{left:482.400029pt;}
.x2f{left:494.399802pt;}
.x7b{left:498.720000pt;}
.x11{left:501.919965pt;}
.x6a{left:504.479798pt;}
.x12{left:505.919962pt;}
.x38{left:507.840000pt;}
.x6b{left:509.120000pt;}
.x13{left:517.759954pt;}
.x2e{left:524.159790pt;}
.x41{left:525.760000pt;}
.x4c{left:528.160000pt;}
.x14{left:529.439947pt;}
.x5e{left:530.720000pt;}
.x5a{left:536.480000pt;}
.x15{left:541.279939pt;}
.x16{left:545.279936pt;}
.x42{left:548.160000pt;}
.x4f{left:549.919780pt;}
.x43{left:551.040000pt;}
.x4d{left:551.999779pt;}
.x44{left:553.919778pt;}
.x4e{left:556.160000pt;}
.x45{left:558.560000pt;}
.x17{left:560.959873pt;}
.x18{left:564.799872pt;}
.x62{left:572.480000pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x6c{left:590.720000pt;}
.x1c{left:592.319763pt;}
.x73{left:596.800000pt;}
.x74{left:609.120000pt;}
.x26{left:610.720000pt;}
.x6f{left:613.760000pt;}
.x6d{left:615.200000pt;}
.x7{left:619.840000pt;}
.x7c{left:620.800000pt;}
.x23{left:629.600000pt;}
.x46{left:631.200000pt;}
.x50{left:633.120000pt;}
.x39{left:635.840000pt;}
.x5b{left:644.320000pt;}
.x8{left:649.600000pt;}
.x47{left:652.640000pt;}
.x48{left:655.520000pt;}
.x51{left:656.959737pt;}
.x3a{left:658.560000pt;}
.x9{left:659.520000pt;}
.x52{left:661.120000pt;}
.x49{left:663.040000pt;}
.x63{left:664.960000pt;}
.x75{left:669.760000pt;}
.x76{left:682.080000pt;}
.x64{left:687.040000pt;}
.x2c{left:692.960000pt;}
.x27{left:694.719722pt;}
.x1d{left:696.479721pt;}
}




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