
    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_e4a3dc15c0b5aa9ae8e3fa00.woff2')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_177ba8df4615ed6c6482b86a.woff2')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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2725b158c08f311d40ed4b73.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_6fd8d812f4991b19a0e71812.woff2')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_227198b3d04c3a26acf3b983.woff2')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_58b2764d69e2ac75833d6bf0.woff2')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_510050fec696238207ccd527.woff2')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_ae3079815d96f003d6d46324.woff2')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_3e4a33b5efd9b6f23ed6de60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5fadd578ed0c1058f19d3834.woff2')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_794b95c2ac943459c2e56afc.woff2')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_516bda6e96b4eb50d5bb9a2c.woff2')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_00139216b6865edcede8e84e.woff2')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_6dbe639a0dc9c64f1d28d699.woff2')format("woff");}.fff{font-family:fff;line-height:0.950684;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_54751a99771e05bc0ae93fcc.woff2')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_d4ba50f65d5b600c83e75849.woff2')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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,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);}
.m7{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);}
.m8{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);}
.m9{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);}
.m6{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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls1{letter-spacing:0.073080px;}
.ls3{letter-spacing:0.195300px;}
.ls5{letter-spacing:1.182805px;}
.ls4{letter-spacing:1.782179px;}
.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;}
}
.ws1{word-spacing:-22.407831px;}
.ws2{word-spacing:-19.151992px;}
.ws0{word-spacing:-17.999993px;}
.ws6{word-spacing:-15.179034px;}
.ws7{word-spacing:-14.939994px;}
.ws9{word-spacing:-13.715995px;}
.ws5{word-spacing:-13.013995px;}
.ws3{word-spacing:-10.342076px;}
.ws4{word-spacing:-8.114397px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{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;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._c{margin-left:-3.601494px;}
._d{margin-left:-2.525793px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._e{width:2.767186px;}
._15{width:4.521068px;}
._16{width:5.583254px;}
._12{width:6.965387px;}
._11{width:8.330965px;}
._f{width:10.074511px;}
._10{width:11.265754px;}
._17{width:14.375321px;}
._18{width:15.877016px;}
._1d{width:16.948191px;}
._26{width:18.164730px;}
._2b{width:19.443144px;}
._22{width:20.792494px;}
._2e{width:21.875721px;}
._14{width:22.988063px;}
._19{width:24.428359px;}
._1a{width:25.635301px;}
._33{width:26.784420px;}
._2d{width:27.921612px;}
._2c{width:29.482706px;}
._2f{width:30.716014px;}
._28{width:32.250082px;}
._25{width:33.683829px;}
._31{width:35.041807px;}
._34{width:36.781223px;}
._30{width:37.999276px;}
._1c{width:39.454492px;}
._1f{width:40.526175px;}
._20{width:41.579491px;}
._36{width:42.698290px;}
._1b{width:43.874591px;}
._21{width:45.796223px;}
._29{width:46.968702px;}
._32{width:48.155333px;}
._27{width:49.368151px;}
._35{width:50.609248px;}
._23{width:61.524958px;}
._24{width:62.703104px;}
._1e{width:63.843891px;}
._3a{width:68.004975px;}
._38{width:69.199304px;}
._37{width:82.370737px;}
._39{width:90.977516px;}
._2a{width:107.923183px;}
._13{width:372.005369px;}
.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);}
.fsc{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsb{font-size:23.759990px;}
.fs8{font-size:33.119987px;}
.fs7{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fsf{font-size:51.119980px;}
.fsa{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y4d{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.878921px;}
.y144{bottom:3.058953px;}
.y146{bottom:3.058960px;}
.y148{bottom:3.058967px;}
.y14a{bottom:3.058973px;}
.y14c{bottom:3.058980px;}
.y14e{bottom:3.058986px;}
.y150{bottom:3.058993px;}
.y152{bottom:3.059000px;}
.y7f{bottom:3.059052px;}
.y81{bottom:3.059059px;}
.y83{bottom:3.059066px;}
.y85{bottom:3.059072px;}
.y87{bottom:3.059079px;}
.y89{bottom:3.059086px;}
.y102{bottom:3.059094px;}
.y104{bottom:3.059104px;}
.y24{bottom:3.059125px;}
.y2c{bottom:3.059169px;}
.yed{bottom:3.059197px;}
.yef{bottom:3.059207px;}
.yf1{bottom:3.059216px;}
.y15{bottom:3.239032px;}
.y29{bottom:3.419157px;}
.y48{bottom:3.778940px;}
.yc{bottom:4.138945px;}
.y39{bottom:4.139261px;}
.y7{bottom:4.140028px;}
.y26{bottom:4.319125px;}
.y4{bottom:4.320028px;}
.y17{bottom:4.859040px;}
.y1e{bottom:4.859070px;}
.yab{bottom:58.440277px;}
.y8{bottom:58.620277px;}
.yaa{bottom:74.640240px;}
.y6{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.ya9{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.ya8{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.yd8{bottom:117.840253px;}
.y142{bottom:118.740253px;}
.y11e{bottom:120.000252px;}
.y43{bottom:123.779950px;}
.y45{bottom:123.780250px;}
.ya6{bottom:130.080248px;}
.y7a{bottom:130.620248px;}
.y190{bottom:131.159948px;}
.y178{bottom:132.420247px;}
.yd7{bottom:140.880244px;}
.y141{bottom:141.960243px;}
.y11d{bottom:143.040243px;}
.y42{bottom:146.639941px;}
.y44{bottom:146.640241px;}
.ya5{bottom:153.299939px;}
.y79{bottom:153.479939px;}
.y18f{bottom:155.279938px;}
.y177{bottom:155.459938px;}
.yd6{bottom:163.919934px;}
.y140{bottom:165.359934px;}
.y11c{bottom:166.079934px;}
.y41{bottom:169.679932px;}
.y78{bottom:176.519929px;}
.ya4{bottom:176.699929px;}
.y176{bottom:178.499929px;}
.y18e{bottom:179.399928px;}
.yd5{bottom:186.959925px;}
.y13f{bottom:188.759924px;}
.y11b{bottom:189.119924px;}
.y40{bottom:192.719923px;}
.y77{bottom:199.559920px;}
.ya3{bottom:199.919920px;}
.y175{bottom:201.359919px;}
.y18d{bottom:203.519919px;}
.yd4{bottom:209.999916px;}
.y11a{bottom:211.979915px;}
.y3f{bottom:215.759914px;}
.ya2{bottom:222.059911px;}
.y76{bottom:222.599911px;}
.y174{bottom:224.399910px;}
.y18c{bottom:227.639909px;}
.yfc{bottom:232.859907px;}
.yd3{bottom:233.039907px;}
.y119{bottom:235.019906px;}
.y13e{bottom:235.379906px;}
.y3e{bottom:238.799904px;}
.ya1{bottom:244.559902px;}
.y75{bottom:245.639902px;}
.y173{bottom:247.439901px;}
.y18b{bottom:251.579899px;}
.yfb{bottom:255.899898px;}
.yd2{bottom:256.079898px;}
.y118{bottom:258.059897px;}
.y13d{bottom:258.599897px;}
.y3d{bottom:261.839895px;}
.ya0{bottom:267.599893px;}
.y74{bottom:268.679893px;}
.y172{bottom:270.479892px;}
.y18a{bottom:274.259890px;}
.yfa{bottom:278.939888px;}
.yd1{bottom:279.479888px;}
.y117{bottom:281.099888px;}
.y13c{bottom:281.999887px;}
.y3c{bottom:284.699886px;}
.y9f{bottom:290.639884px;}
.y73{bottom:291.539883px;}
.y171{bottom:293.519883px;}
.y189{bottom:297.119881px;}
.yf9{bottom:300.719880px;}
.yd0{bottom:302.699879px;}
.y116{bottom:304.139878px;}
.y13b{bottom:305.399878px;}
.y3b{bottom:307.739877px;}
.y9e{bottom:313.679875px;}
.y72{bottom:314.579874px;}
.y170{bottom:316.379873px;}
.y188{bottom:321.239872px;}
.yf8{bottom:322.319871px;}
.ycf{bottom:326.099870px;}
.y115{bottom:327.179869px;}
.y13a{bottom:328.619869px;}
.y3a{bottom:330.779868px;}
.y9d{bottom:336.539865px;}
.y71{bottom:337.619865px;}
.y16f{bottom:339.419864px;}
.y38{bottom:342.840600px;}
.yf7{bottom:345.359862px;}
.y37{bottom:346.979861px;}
.yce{bottom:349.499860px;}
.y114{bottom:350.039860px;}
.y36{bottom:350.759860px;}
.y139{bottom:352.019859px;}
.y9c{bottom:359.579856px;}
.y70{bottom:360.659856px;}
.y16e{bottom:362.459855px;}
.yf6{bottom:368.399853px;}
.y187{bottom:369.479852px;}
.y35{bottom:371.279851px;}
.ycd{bottom:372.719851px;}
.y113{bottom:373.079851px;}
.y138{bottom:375.239850px;}
.y9b{bottom:382.619847px;}
.y6f{bottom:383.699847px;}
.y16d{bottom:385.499846px;}
.yf5{bottom:391.439843px;}
.y186{bottom:393.599843px;}
.y34{bottom:394.319842px;}
.ycc{bottom:396.119842px;}
.y137{bottom:398.639841px;}
.y9a{bottom:402.959839px;}
.y6e{bottom:406.739837px;}
.y16c{bottom:408.539837px;}
.yf4{bottom:414.479834px;}
.y185{bottom:416.819833px;}
.y33{bottom:417.179833px;}
.y112{bottom:419.159832px;}
.ycb{bottom:419.339832px;}
.y136{bottom:422.039831px;}
.y99{bottom:423.479831px;}
.y6d{bottom:429.599828px;}
.y16b{bottom:431.579827px;}
.yf3{bottom:437.519825px;}
.y32{bottom:440.219824px;}
.y184{bottom:440.399824px;}
.y111{bottom:442.199823px;}
.yca{bottom:442.739823px;}
.y135{bottom:445.259822px;}
.y98{bottom:446.519821px;}
.y6c{bottom:452.639819px;}
.y16a{bottom:454.439818px;}
.yf0{bottom:457.320600px;}
.yf2{bottom:460.379816px;}
.y31{bottom:463.259815px;}
.y183{bottom:464.519814px;}
.y110{bottom:465.239814px;}
.yc9{bottom:466.139814px;}
.y134{bottom:468.659813px;}
.y97{bottom:469.559812px;}
.y6b{bottom:475.679810px;}
.y169{bottom:477.479809px;}
.yee{bottom:480.360600px;}
.y30{bottom:486.299805px;}
.y10f{bottom:488.099805px;}
.y182{bottom:488.639805px;}
.yc8{bottom:489.359804px;}
.y133{bottom:491.879803px;}
.y96{bottom:492.599803px;}
.y6a{bottom:498.719801px;}
.y168{bottom:500.519800px;}
.yec{bottom:503.400600px;}
.y2f{bottom:509.339796px;}
.y10e{bottom:511.139796px;}
.yc7{bottom:512.759795px;}
.y132{bottom:515.279794px;}
.y95{bottom:515.639794px;}
.y69{bottom:521.759791px;}
.y167{bottom:523.559791px;}
.y2e{bottom:532.379787px;}
.y10d{bottom:534.179786px;}
.yc6{bottom:535.979786px;}
.y181{bottom:536.699785px;}
.y94{bottom:538.499785px;}
.y131{bottom:538.679785px;}
.y68{bottom:544.799782px;}
.y166{bottom:546.599781px;}
.y2d{bottom:555.239778px;}
.y10c{bottom:557.219777px;}
.yc5{bottom:559.379776px;}
.y180{bottom:560.819776px;}
.y93{bottom:561.539775px;}
.y130{bottom:561.899775px;}
.y67{bottom:567.659773px;}
.y165{bottom:569.639772px;}
.y2b{bottom:575.220600px;}
.y10b{bottom:580.259768px;}
.yc4{bottom:582.779767px;}
.y92{bottom:584.579766px;}
.y17f{bottom:584.939766px;}
.y12f{bottom:585.299766px;}
.y66{bottom:590.699764px;}
.y164{bottom:592.499763px;}
.y10a{bottom:603.299759px;}
.y28{bottom:603.300600px;}
.yc3{bottom:605.999758px;}
.y2a{bottom:606.719757px;}
.y91{bottom:607.619757px;}
.y12e{bottom:608.519757px;}
.y17e{bottom:609.059756px;}
.y65{bottom:613.739755px;}
.y163{bottom:615.539754px;}
.y109{bottom:626.159750px;}
.yc2{bottom:629.399748px;}
.y90{bottom:630.659748px;}
.y12d{bottom:631.919747px;}
.y17d{bottom:633.179747px;}
.y64{bottom:636.779745px;}
.y162{bottom:638.579745px;}
.y27{bottom:644.519742px;}
.y108{bottom:649.199740px;}
.yc1{bottom:652.619739px;}
.y8f{bottom:653.699739px;}
.y12c{bottom:655.319738px;}
.y17c{bottom:657.299737px;}
.y63{bottom:659.819736px;}
.y161{bottom:661.619735px;}
.y107{bottom:672.239731px;}
.yc0{bottom:676.019730px;}
.y8e{bottom:676.559729px;}
.y12b{bottom:678.539729px;}
.y17b{bottom:681.419727px;}
.y62{bottom:682.679727px;}
.y25{bottom:684.120600px;}
.y160{bottom:684.659726px;}
.y23{bottom:685.380600px;}
.y106{bottom:695.279722px;}
.ybf{bottom:699.419720px;}
.y8d{bottom:699.599720px;}
.y12a{bottom:701.939719px;}
.y22{bottom:704.459718px;}
.y17a{bottom:705.359718px;}
.y61{bottom:705.719718px;}
.y15f{bottom:707.699717px;}
.yeb{bottom:708.239717px;}
.y105{bottom:718.319713px;}
.y8c{bottom:722.639711px;}
.y129{bottom:725.159710px;}
.y60{bottom:728.759708px;}
.y179{bottom:729.479708px;}
.y15e{bottom:730.559708px;}
.yea{bottom:731.099708px;}
.y21{bottom:732.539707px;}
.y103{bottom:738.120600px;}
.y8b{bottom:745.679702px;}
.ybe{bottom:746.039702px;}
.y128{bottom:748.559701px;}
.y5f{bottom:751.799699px;}
.y15d{bottom:753.599699px;}
.ye9{bottom:754.139698px;}
.y101{bottom:761.160600px;}
.y8a{bottom:768.719693px;}
.y20{bottom:769.079692px;}
.ybd{bottom:769.259692px;}
.y127{bottom:771.959691px;}
.y5e{bottom:774.839690px;}
.y15c{bottom:776.639689px;}
.ye8{bottom:777.179689px;}
.y88{bottom:782.940600px;}
.ybc{bottom:792.659683px;}
.y1f{bottom:793.739683px;}
.y126{bottom:795.179682px;}
.y5d{bottom:797.879681px;}
.y86{bottom:799.500600px;}
.y15b{bottom:799.679680px;}
.ye7{bottom:800.219680px;}
.y84{bottom:815.880600px;}
.ybb{bottom:816.059674px;}
.y125{bottom:818.579673px;}
.y1d{bottom:819.660600px;}
.y5c{bottom:820.739672px;}
.y15a{bottom:822.719671px;}
.ye6{bottom:823.259671px;}
.y1c{bottom:830.459668px;}
.y82{bottom:832.440600px;}
.yba{bottom:839.279664px;}
.y124{bottom:841.799663px;}
.y1b{bottom:842.339663px;}
.y5b{bottom:843.779662px;}
.y159{bottom:845.579662px;}
.ye5{bottom:846.119662px;}
.y80{bottom:848.820600px;}
.yb9{bottom:862.679655px;}
.y123{bottom:865.199654px;}
.y7e{bottom:866.460600px;}
.y5a{bottom:866.819653px;}
.y158{bottom:868.619653px;}
.ye4{bottom:869.159652px;}
.y19{bottom:869.699652px;}
.y1a{bottom:874.919650px;}
.yb8{bottom:885.899646px;}
.y122{bottom:888.599645px;}
.y59{bottom:889.859644px;}
.y157{bottom:891.659643px;}
.ye3{bottom:892.199643px;}
.y7d{bottom:894.899642px;}
.y16{bottom:895.440600px;}
.y18{bottom:905.519638px;}
.yb7{bottom:909.299636px;}
.y121{bottom:911.819635px;}
.y58{bottom:912.899635px;}
.y156{bottom:914.699634px;}
.ye2{bottom:915.239634px;}
.y14{bottom:915.780600px;}
.y7c{bottom:917.939633px;}
.yb6{bottom:932.699627px;}
.y120{bottom:935.219626px;}
.y57{bottom:935.939626px;}
.y155{bottom:937.739625px;}
.ye1{bottom:938.279625px;}
.y7b{bottom:938.459625px;}
.y13{bottom:949.259620px;}
.yb5{bottom:955.919618px;}
.y11f{bottom:958.439617px;}
.y56{bottom:958.799616px;}
.y154{bottom:960.779616px;}
.ye0{bottom:961.319615px;}
.yb4{bottom:979.319608px;}
.y100{bottom:981.659607px;}
.y55{bottom:981.839607px;}
.y153{bottom:983.639607px;}
.ydf{bottom:984.179606px;}
.y12{bottom:990.119604px;}
.y151{bottom:998.040600px;}
.yb3{bottom:1002.539599px;}
.yff{bottom:1004.699598px;}
.y54{bottom:1004.879598px;}
.yde{bottom:1007.219597px;}
.y11{bottom:1013.519595px;}
.y14f{bottom:1014.600600px;}
.yb2{bottom:1025.939590px;}
.yfe{bottom:1027.739589px;}
.y53{bottom:1027.919589px;}
.y10{bottom:1029.899588px;}
.yf{bottom:1030.259588px;}
.y14d{bottom:1030.980600px;}
.y14b{bottom:1047.540600px;}
.yb1{bottom:1049.339580px;}
.yfd{bottom:1050.779580px;}
.y52{bottom:1050.959580px;}
.ydd{bottom:1052.039579px;}
.y149{bottom:1063.920600px;}
.yb0{bottom:1072.559571px;}
.y4c{bottom:1073.280600px;}
.ydc{bottom:1073.819570px;}
.y51{bottom:1073.999570px;}
.y147{bottom:1080.300600px;}
.y4b{bottom:1082.279567px;}
.yaf{bottom:1095.959562px;}
.ydb{bottom:1096.679561px;}
.y50{bottom:1096.859561px;}
.y145{bottom:1096.860600px;}
.y4a{bottom:1103.519559px;}
.y143{bottom:1114.500600px;}
.yae{bottom:1119.179552px;}
.yda{bottom:1119.719552px;}
.y4f{bottom:1119.899552px;}
.y49{bottom:1124.939550px;}
.ye{bottom:1127.099549px;}
.yd{bottom:1127.459549px;}
.yb{bottom:1134.300600px;}
.yad{bottom:1142.579543px;}
.yd9{bottom:1142.759543px;}
.y4e{bottom:1142.939543px;}
.y47{bottom:1145.280600px;}
.y46{bottom:1149.059540px;}
.ya7{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.yac{bottom:1195.680600px;}
.y9{bottom:1195.860600px;}
.h2a{height:2.880000px;}
.he{height:8.187887px;}
.h11{height:13.500000px;}
.h1b{height:15.120000px;}
.h2d{height:15.300000px;}
.h30{height:15.480000px;}
.h22{height:15.894134px;}
.h1d{height:16.380000px;}
.h20{height:17.100000px;}
.h25{height:17.460000px;}
.h4{height:19.800000px;}
.h13{height:20.160000px;}
.h17{height:20.340000px;}
.h2{height:20.520000px;}
.ha{height:20.700000px;}
.h7{height:20.880000px;}
.h28{height:21.780000px;}
.h16{height:22.171632px;}
.h19{height:24.439209px;}
.h23{height:25.913662px;}
.h14{height:26.008583px;}
.h2c{height:31.585065px;}
.h12{height:32.269909px;}
.h1f{height:33.588971px;}
.h2f{height:36.486196px;}
.h15{height:36.886626px;}
.h2e{height:38.664477px;}
.h1a{height:40.005336px;}
.h1c{height:40.842757px;}
.h29{height:41.290999px;}
.h26{height:41.493499px;}
.h24{height:43.185920px;}
.h21{height:45.199318px;}
.hb{height:47.988262px;}
.h5{height:48.164043px;}
.h18{height:48.199199px;}
.h2b{height:49.907793px;}
.h1e{height:50.132792px;}
.hd{height:54.457009px;}
.h27{height:55.054665px;}
.h8{height:56.351931px;}
.hf{height:64.058178px;}
.h10{height:67.696970px;}
.h6{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.hc{height:78.468719px;}
.h9{height:84.898091px;}
.h0{height:1263.000000px;}
.w5f{width:2.880000px;}
.w18{width:3.240000px;}
.w1f{width:3.600000px;}
.we{width:4.320000px;}
.w12{width:4.500000px;}
.w2{width:4.680000px;}
.wf{width:5.040000px;}
.w2f{width:5.400000px;}
.w1{width:6.480000px;}
.w60{width:6.840000px;}
.w36{width:7.560000px;}
.w1b{width:7.740000px;}
.w16{width:7.920000px;}
.w8{width:8.280000px;}
.wa{width:9.360000px;}
.w22{width:9.900000px;}
.w21{width:10.620000px;}
.w6{width:11.160000px;}
.w7{width:11.340000px;}
.w32{width:12.060000px;}
.w25{width:14.220000px;}
.w2c{width:15.480000px;}
.w27{width:15.840000px;}
.w4{width:16.020000px;}
.w3f{width:16.380000px;}
.w45{width:23.040000px;}
.w51{width:23.760000px;}
.w4a{width:24.480000px;}
.w50{width:24.660000px;}
.w41{width:25.200000px;}
.w56{width:25.380000px;}
.w55{width:25.560000px;}
.w4e{width:25.740000px;}
.w4b{width:25.920000px;}
.w42{width:26.100000px;}
.w46{width:26.280000px;}
.w3e{width:28.260000px;}
.w19{width:28.440000px;}
.w54{width:28.620000px;}
.wb{width:28.800000px;}
.w4f{width:30.240000px;}
.w49{width:30.960000px;}
.w40{width:31.140000px;}
.w5{width:33.480000px;}
.w28{width:34.020000px;}
.w1a{width:34.380000px;}
.w3a{width:36.180000px;}
.w5b{width:39.960000px;}
.w5a{width:42.300000px;}
.w2e{width:42.840000px;}
.w59{width:43.020000px;}
.w35{width:46.620000px;}
.w52{width:46.980000px;}
.w26{width:48.600000px;}
.w43{width:54.180000px;}
.w4c{width:54.360000px;}
.w3d{width:54.720000px;}
.w47{width:55.980000px;}
.w57{width:57.240000px;}
.w5c{width:58.140000px;}
.w11{width:60.120000px;}
.w17{width:60.480000px;}
.w39{width:61.380000px;}
.w23{width:63.000000px;}
.w1c{width:65.700000px;}
.w58{width:68.040000px;}
.w38{width:68.760000px;}
.w29{width:70.560000px;}
.w3c{width:75.780000px;}
.w14{width:77.940000px;}
.w5e{width:88.020000px;}
.w2d{width:89.280000px;}
.w10{width:91.620000px;}
.w3b{width:93.240000px;}
.w5d{width:95.040000px;}
.w2b{width:106.200000px;}
.w2a{width:111.960000px;}
.w24{width:113.760000px;}
.w53{width:117.720000px;}
.w3{width:119.700000px;}
.w30{width:120.240000px;}
.w4d{width:130.500000px;}
.w44{width:133.920000px;}
.w48{width:135.360000px;}
.w15{width:135.900000px;}
.w1e{width:136.620000px;}
.w9{width:137.340000px;}
.w31{width:138.240000px;}
.w34{width:144.180000px;}
.wc{width:149.580000px;}
.wd{width:158.220000px;}
.w20{width:235.620000px;}
.w37{width:269.820000px;}
.w1d{width:300.060000px;}
.w33{width:324.000000px;}
.w13{width:672.480000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x20{left:109.259956px;}
.x34{left:113.400000px;}
.x77{left:116.280000px;}
.x7{left:120.240000px;}
.x2{left:137.699962px;}
.x3{left:155.700000px;}
.x55{left:162.360000px;}
.x4{left:171.899931px;}
.x3d{left:174.599930px;}
.x56{left:176.760000px;}
.xc{left:185.219926px;}
.x35{left:187.200000px;}
.x78{left:189.180000px;}
.x36{left:191.520000px;}
.x62{left:201.240000px;}
.x7f{left:203.040000px;}
.x72{left:225.720000px;}
.x6e{left:238.500000px;}
.x8{left:239.940000px;}
.x6c{left:241.920000px;}
.x6d{left:243.360000px;}
.x23{left:246.599901px;}
.x24{left:251.460000px;}
.xd{left:259.740316px;}
.x25{left:260.820000px;}
.x5{left:269.460000px;}
.x6{left:274.139890px;}
.x32{left:277.739889px;}
.x80{left:279.180000px;}
.x33{left:287.639885px;}
.x26{left:289.440000px;}
.x57{left:292.500000px;}
.x79{left:301.680000px;}
.x6f{left:310.320000px;}
.x63{left:315.000000px;}
.x37{left:327.420000px;}
.x64{left:331.380000px;}
.x38{left:335.160000px;}
.x44{left:342.539863px;}
.x7a{left:344.700000px;}
.x58{left:353.880000px;}
.x81{left:367.200000px;}
.x82{left:376.560000px;}
.x59{left:384.480000px;}
.x39{left:395.640000px;}
.x3a{left:400.140000px;}
.x3b{left:403.380000px;}
.x65{left:405.000000px;}
.x73{left:406.260000px;}
.x3e{left:409.140000px;}
.x41{left:410.760000px;}
.x42{left:415.259834px;}
.x5a{left:420.660000px;}
.xe{left:427.680106px;}
.xf{left:432.180102px;}
.x74{left:434.880000px;}
.x46{left:435.959826px;}
.x27{left:438.839824px;}
.x7b{left:441.720000px;}
.x28{left:443.700000px;}
.x5b{left:456.840000px;}
.x43{left:462.600512px;}
.x83{left:464.580000px;}
.x3c{left:474.120000px;}
.x5c{left:475.380000px;}
.x4b{left:476.820000px;}
.x4c{left:478.440000px;}
.x21{left:500.939800px;}
.x7c{left:502.020000px;}
.x51{left:505.620000px;}
.x66{left:509.400000px;}
.x52{left:511.020000px;}
.x10{left:516.060050px;}
.x49{left:525.600000px;}
.x11{left:529.380042px;}
.x67{left:534.600000px;}
.x12{left:542.700033px;}
.x3f{left:545.760000px;}
.x40{left:549.360000px;}
.x48{left:556.199778px;}
.x13{left:564.659960px;}
.x84{left:566.100000px;}
.x14{left:569.159957px;}
.x85{left:581.220000px;}
.x15{left:582.479948px;}
.x5d{left:587.340000px;}
.x47{left:589.679764px;}
.x16{left:595.619941px;}
.x29{left:601.919759px;}
.x7d{left:603.720000px;}
.x2a{left:606.780000px;}
.x17{left:608.939932px;}
.x2b{left:611.100000px;}
.x68{left:612.180000px;}
.x18{left:613.439928px;}
.x2c{left:616.140000px;}
.x4a{left:617.940000px;}
.x19{left:631.079858px;}
.x1a{left:635.399856px;}
.x70{left:637.200000px;}
.x69{left:638.280000px;}
.x7e{left:646.740000px;}
.x1b{left:648.719847px;}
.x4d{left:651.960000px;}
.x1c{left:653.039845px;}
.x4e{left:655.200000px;}
.x1d{left:657.539841px;}
.x5e{left:663.120000px;}
.x1e{left:666.359733px;}
.x86{left:669.240000px;}
.x5f{left:687.240000px;}
.x9{left:697.320000px;}
.x75{left:701.820000px;}
.x6a{left:703.260000px;}
.x2d{left:707.760000px;}
.x2e{left:712.800000px;}
.x22{left:716.759713px;}
.x50{left:724.140000px;}
.x4f{left:725.760000px;}
.xa{left:730.800000px;}
.xb{left:741.960000px;}
.x60{left:745.200000px;}
.x71{left:753.840000px;}
.x6b{left:757.440000px;}
.x76{left:759.060000px;}
.x53{left:769.320000px;}
.x2f{left:772.379691px;}
.x61{left:773.460000px;}
.x54{left:774.720000px;}
.x30{left:777.060000px;}
.x45{left:779.580000px;}
.x31{left:781.560000px;}
.x1f{left:783.539686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls1{letter-spacing:0.064960pt;}
.ls3{letter-spacing:0.173600pt;}
.ls5{letter-spacing:1.051382pt;}
.ls4{letter-spacing:1.584159pt;}
.ws1{word-spacing:-19.918072pt;}
.ws2{word-spacing:-17.023993pt;}
.ws0{word-spacing:-15.999994pt;}
.ws6{word-spacing:-13.492475pt;}
.ws7{word-spacing:-13.279995pt;}
.ws9{word-spacing:-12.191995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws3{word-spacing:-9.192956pt;}
.ws4{word-spacing:-7.212797pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{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;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._c{margin-left:-3.201328pt;}
._d{margin-left:-2.245150pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._e{width:2.459721pt;}
._15{width:4.018727pt;}
._16{width:4.962892pt;}
._12{width:6.191455pt;}
._11{width:7.405302pt;}
._f{width:8.955121pt;}
._10{width:10.014004pt;}
._17{width:12.778063pt;}
._18{width:14.112903pt;}
._1d{width:15.065059pt;}
._26{width:16.146427pt;}
._2b{width:17.282795pt;}
._22{width:18.482216pt;}
._2e{width:19.445086pt;}
._14{width:20.433834pt;}
._19{width:21.714097pt;}
._1a{width:22.786934pt;}
._33{width:23.808373pt;}
._2d{width:24.819210pt;}
._2c{width:26.206849pt;}
._2f{width:27.303124pt;}
._28{width:28.666739pt;}
._25{width:29.941181pt;}
._31{width:31.148273pt;}
._34{width:32.694420pt;}
._30{width:33.777134pt;}
._1c{width:35.070660pt;}
._1f{width:36.023267pt;}
._20{width:36.959547pt;}
._36{width:37.954035pt;}
._1b{width:38.999637pt;}
._21{width:40.707754pt;}
._29{width:41.749958pt;}
._32{width:42.804741pt;}
._27{width:43.882801pt;}
._35{width:44.985998pt;}
._23{width:54.688851pt;}
._24{width:55.736092pt;}
._1e{width:56.750125pt;}
._3a{width:60.448867pt;}
._38{width:61.510492pt;}
._37{width:73.218433pt;}
._39{width:80.868903pt;}
._2a{width:95.931718pt;}
._13{width:330.671439pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs8{font-size:29.439988pt;}
.fs7{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fsf{font-size:45.439982pt;}
.fsa{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y4d{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.559040pt;}
.y144{bottom:2.719069pt;}
.y146{bottom:2.719076pt;}
.y148{bottom:2.719081pt;}
.y14a{bottom:2.719087pt;}
.y14c{bottom:2.719093pt;}
.y14e{bottom:2.719099pt;}
.y150{bottom:2.719105pt;}
.y152{bottom:2.719111pt;}
.y7f{bottom:2.719158pt;}
.y81{bottom:2.719164pt;}
.y83{bottom:2.719170pt;}
.y85{bottom:2.719175pt;}
.y87{bottom:2.719181pt;}
.y89{bottom:2.719187pt;}
.y102{bottom:2.719195pt;}
.y104{bottom:2.719203pt;}
.y24{bottom:2.719222pt;}
.y2c{bottom:2.719261pt;}
.yed{bottom:2.719287pt;}
.yef{bottom:2.719295pt;}
.yf1{bottom:2.719303pt;}
.y15{bottom:2.879140pt;}
.y29{bottom:3.039251pt;}
.y48{bottom:3.359058pt;}
.yc{bottom:3.679062pt;}
.y39{bottom:3.679343pt;}
.y7{bottom:3.680025pt;}
.y26{bottom:3.839222pt;}
.y4{bottom:3.840025pt;}
.y17{bottom:4.319147pt;}
.y1e{bottom:4.319174pt;}
.yab{bottom:51.946913pt;}
.y8{bottom:52.106912pt;}
.yaa{bottom:66.346880pt;}
.y6{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.ya9{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.ya8{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.yd8{bottom:104.746891pt;}
.y142{bottom:105.546891pt;}
.y11e{bottom:106.666891pt;}
.y43{bottom:110.026623pt;}
.y45{bottom:110.026889pt;}
.ya6{bottom:115.626887pt;}
.y7a{bottom:116.106887pt;}
.y190{bottom:116.586620pt;}
.y178{bottom:117.706886pt;}
.yd7{bottom:125.226883pt;}
.y141{bottom:126.186883pt;}
.y11d{bottom:127.146882pt;}
.y42{bottom:130.346615pt;}
.y44{bottom:130.346881pt;}
.ya5{bottom:136.266612pt;}
.y79{bottom:136.426612pt;}
.y18f{bottom:138.026611pt;}
.y177{bottom:138.186611pt;}
.yd6{bottom:145.706608pt;}
.y140{bottom:146.986608pt;}
.y11c{bottom:147.626608pt;}
.y41{bottom:150.826606pt;}
.y78{bottom:156.906604pt;}
.ya4{bottom:157.066604pt;}
.y176{bottom:158.666603pt;}
.y18e{bottom:159.466603pt;}
.yd5{bottom:166.186600pt;}
.y13f{bottom:167.786600pt;}
.y11b{bottom:168.106599pt;}
.y40{bottom:171.306598pt;}
.y77{bottom:177.386596pt;}
.ya3{bottom:177.706596pt;}
.y175{bottom:178.986595pt;}
.y18d{bottom:180.906594pt;}
.yd4{bottom:186.666592pt;}
.y11a{bottom:188.426591pt;}
.y3f{bottom:191.786590pt;}
.ya2{bottom:197.386588pt;}
.y76{bottom:197.866588pt;}
.y174{bottom:199.466587pt;}
.y18c{bottom:202.346586pt;}
.yfc{bottom:206.986584pt;}
.yd3{bottom:207.146584pt;}
.y119{bottom:208.906583pt;}
.y13e{bottom:209.226583pt;}
.y3e{bottom:212.266582pt;}
.ya1{bottom:217.386580pt;}
.y75{bottom:218.346579pt;}
.y173{bottom:219.946579pt;}
.y18b{bottom:223.626577pt;}
.yfb{bottom:227.466576pt;}
.yd2{bottom:227.626576pt;}
.y118{bottom:229.386575pt;}
.y13d{bottom:229.866575pt;}
.y3d{bottom:232.746574pt;}
.ya0{bottom:237.866572pt;}
.y74{bottom:238.826571pt;}
.y172{bottom:240.426570pt;}
.y18a{bottom:243.786569pt;}
.yfa{bottom:247.946567pt;}
.yd1{bottom:248.426567pt;}
.y117{bottom:249.866567pt;}
.y13c{bottom:250.666566pt;}
.y3c{bottom:253.066565pt;}
.y9f{bottom:258.346563pt;}
.y73{bottom:259.146563pt;}
.y171{bottom:260.906562pt;}
.y189{bottom:264.106561pt;}
.yf9{bottom:267.306560pt;}
.yd0{bottom:269.066559pt;}
.y116{bottom:270.346559pt;}
.y13b{bottom:271.466558pt;}
.y3b{bottom:273.546557pt;}
.y9e{bottom:278.826555pt;}
.y72{bottom:279.626555pt;}
.y170{bottom:281.226554pt;}
.y188{bottom:285.546552pt;}
.yf8{bottom:286.506552pt;}
.ycf{bottom:289.866551pt;}
.y115{bottom:290.826550pt;}
.y13a{bottom:292.106550pt;}
.y3a{bottom:294.026549pt;}
.y9d{bottom:299.146547pt;}
.y71{bottom:300.106547pt;}
.y16f{bottom:301.706546pt;}
.y38{bottom:304.747200pt;}
.yf7{bottom:306.986544pt;}
.y37{bottom:308.426543pt;}
.yce{bottom:310.666542pt;}
.y114{bottom:311.146542pt;}
.y36{bottom:311.786542pt;}
.y139{bottom:312.906542pt;}
.y9c{bottom:319.626539pt;}
.y70{bottom:320.586538pt;}
.y16e{bottom:322.186538pt;}
.yf6{bottom:327.466536pt;}
.y187{bottom:328.426535pt;}
.y35{bottom:330.026535pt;}
.ycd{bottom:331.306534pt;}
.y113{bottom:331.626534pt;}
.y138{bottom:333.546533pt;}
.y9b{bottom:340.106531pt;}
.y6f{bottom:341.066530pt;}
.y16d{bottom:342.666530pt;}
.yf5{bottom:347.946527pt;}
.y186{bottom:349.866527pt;}
.y34{bottom:350.506526pt;}
.ycc{bottom:352.106526pt;}
.y137{bottom:354.346525pt;}
.y9a{bottom:358.186523pt;}
.y6e{bottom:361.546522pt;}
.y16c{bottom:363.146521pt;}
.yf4{bottom:368.426519pt;}
.y185{bottom:370.506518pt;}
.y33{bottom:370.826518pt;}
.y112{bottom:372.586518pt;}
.ycb{bottom:372.746518pt;}
.y136{bottom:375.146517pt;}
.y99{bottom:376.426516pt;}
.y6d{bottom:381.866514pt;}
.y16b{bottom:383.626513pt;}
.yf3{bottom:388.906511pt;}
.y32{bottom:391.306510pt;}
.y184{bottom:391.466510pt;}
.y111{bottom:393.066509pt;}
.yca{bottom:393.546509pt;}
.y135{bottom:395.786508pt;}
.y98{bottom:396.906508pt;}
.y6c{bottom:402.346506pt;}
.y16a{bottom:403.946505pt;}
.yf0{bottom:406.507200pt;}
.yf2{bottom:409.226503pt;}
.y31{bottom:411.786502pt;}
.y183{bottom:412.906502pt;}
.y110{bottom:413.546501pt;}
.yc9{bottom:414.346501pt;}
.y134{bottom:416.586500pt;}
.y97{bottom:417.386500pt;}
.y6b{bottom:422.826498pt;}
.y169{bottom:424.426497pt;}
.yee{bottom:426.987200pt;}
.y30{bottom:432.266494pt;}
.y10f{bottom:433.866493pt;}
.y182{bottom:434.346493pt;}
.yc8{bottom:434.986493pt;}
.y133{bottom:437.226492pt;}
.y96{bottom:437.866492pt;}
.y6a{bottom:443.306489pt;}
.y168{bottom:444.906489pt;}
.yec{bottom:447.467200pt;}
.y2f{bottom:452.746486pt;}
.y10e{bottom:454.346485pt;}
.yc7{bottom:455.786484pt;}
.y132{bottom:458.026483pt;}
.y95{bottom:458.346483pt;}
.y69{bottom:463.786481pt;}
.y167{bottom:465.386481pt;}
.y2e{bottom:473.226477pt;}
.y10d{bottom:474.826477pt;}
.yc6{bottom:476.426476pt;}
.y181{bottom:477.066476pt;}
.y94{bottom:478.666475pt;}
.y131{bottom:478.826475pt;}
.y68{bottom:484.266473pt;}
.y166{bottom:485.866472pt;}
.y2d{bottom:493.546469pt;}
.y10c{bottom:495.306469pt;}
.yc5{bottom:497.226468pt;}
.y180{bottom:498.506467pt;}
.y93{bottom:499.146467pt;}
.y130{bottom:499.466467pt;}
.y67{bottom:504.586465pt;}
.y165{bottom:506.346464pt;}
.y2b{bottom:511.307200pt;}
.y10b{bottom:515.786460pt;}
.yc4{bottom:518.026459pt;}
.y92{bottom:519.626459pt;}
.y17f{bottom:519.946459pt;}
.y12f{bottom:520.266459pt;}
.y66{bottom:525.066457pt;}
.y164{bottom:526.666456pt;}
.y10a{bottom:536.266452pt;}
.y28{bottom:536.267200pt;}
.yc3{bottom:538.666451pt;}
.y2a{bottom:539.306451pt;}
.y91{bottom:540.106451pt;}
.y12e{bottom:540.906450pt;}
.y17e{bottom:541.386450pt;}
.y65{bottom:545.546448pt;}
.y163{bottom:547.146448pt;}
.y109{bottom:556.586444pt;}
.yc2{bottom:559.466443pt;}
.y90{bottom:560.586442pt;}
.y12d{bottom:561.706442pt;}
.y17d{bottom:562.826442pt;}
.y64{bottom:566.026440pt;}
.y162{bottom:567.626440pt;}
.y27{bottom:572.906438pt;}
.y108{bottom:577.066436pt;}
.yc1{bottom:580.106435pt;}
.y8f{bottom:581.066434pt;}
.y12c{bottom:582.506434pt;}
.y17c{bottom:584.266433pt;}
.y63{bottom:586.506432pt;}
.y161{bottom:588.106431pt;}
.y107{bottom:597.546428pt;}
.yc0{bottom:600.906426pt;}
.y8e{bottom:601.386426pt;}
.y12b{bottom:603.146425pt;}
.y17b{bottom:605.706424pt;}
.y62{bottom:606.826424pt;}
.y25{bottom:608.107200pt;}
.y160{bottom:608.586423pt;}
.y23{bottom:609.227200pt;}
.y106{bottom:618.026419pt;}
.ybf{bottom:621.706418pt;}
.y8d{bottom:621.866418pt;}
.y12a{bottom:623.946417pt;}
.y22{bottom:626.186416pt;}
.y17a{bottom:626.986416pt;}
.y61{bottom:627.306416pt;}
.y15f{bottom:629.066415pt;}
.yeb{bottom:629.546415pt;}
.y105{bottom:638.506411pt;}
.y8c{bottom:642.346410pt;}
.y129{bottom:644.586409pt;}
.y60{bottom:647.786408pt;}
.y179{bottom:648.426407pt;}
.y15e{bottom:649.386407pt;}
.yea{bottom:649.866407pt;}
.y21{bottom:651.146406pt;}
.y103{bottom:656.107200pt;}
.y8b{bottom:662.826402pt;}
.ybe{bottom:663.146401pt;}
.y128{bottom:665.386401pt;}
.y5f{bottom:668.266399pt;}
.y15d{bottom:669.866399pt;}
.ye9{bottom:670.346399pt;}
.y101{bottom:676.587200pt;}
.y8a{bottom:683.306393pt;}
.y20{bottom:683.626393pt;}
.ybd{bottom:683.786393pt;}
.y127{bottom:686.186392pt;}
.y5e{bottom:688.746391pt;}
.y15c{bottom:690.346391pt;}
.ye8{bottom:690.826390pt;}
.y88{bottom:695.947200pt;}
.ybc{bottom:704.586385pt;}
.y1f{bottom:705.546384pt;}
.y126{bottom:706.826384pt;}
.y5d{bottom:709.226383pt;}
.y86{bottom:710.667200pt;}
.y15b{bottom:710.826382pt;}
.ye7{bottom:711.306382pt;}
.y84{bottom:725.227200pt;}
.ybb{bottom:725.386377pt;}
.y125{bottom:727.626376pt;}
.y1d{bottom:728.587200pt;}
.y5c{bottom:729.546375pt;}
.y15a{bottom:731.306374pt;}
.ye6{bottom:731.786374pt;}
.y1c{bottom:738.186371pt;}
.y82{bottom:739.947200pt;}
.yba{bottom:746.026368pt;}
.y124{bottom:748.266367pt;}
.y1b{bottom:748.746367pt;}
.y5b{bottom:750.026367pt;}
.y159{bottom:751.626366pt;}
.ye5{bottom:752.106366pt;}
.y80{bottom:754.507200pt;}
.yb9{bottom:766.826360pt;}
.y123{bottom:769.066359pt;}
.y7e{bottom:770.187200pt;}
.y5a{bottom:770.506358pt;}
.y158{bottom:772.106358pt;}
.ye4{bottom:772.586358pt;}
.y19{bottom:773.066357pt;}
.y1a{bottom:777.706356pt;}
.yb8{bottom:787.466352pt;}
.y122{bottom:789.866351pt;}
.y59{bottom:790.986350pt;}
.y157{bottom:792.586350pt;}
.ye3{bottom:793.066349pt;}
.y7d{bottom:795.466348pt;}
.y16{bottom:795.947200pt;}
.y18{bottom:804.906345pt;}
.yb7{bottom:808.266343pt;}
.y121{bottom:810.506342pt;}
.y58{bottom:811.466342pt;}
.y156{bottom:813.066341pt;}
.ye2{bottom:813.546341pt;}
.y14{bottom:814.027200pt;}
.y7c{bottom:815.946340pt;}
.yb6{bottom:829.066335pt;}
.y120{bottom:831.306334pt;}
.y57{bottom:831.946334pt;}
.y155{bottom:833.546333pt;}
.ye1{bottom:834.026333pt;}
.y7b{bottom:834.186333pt;}
.y13{bottom:843.786329pt;}
.yb5{bottom:849.706327pt;}
.y11f{bottom:851.946326pt;}
.y56{bottom:852.266326pt;}
.y154{bottom:854.026325pt;}
.ye0{bottom:854.506325pt;}
.yb4{bottom:870.506318pt;}
.y100{bottom:872.586318pt;}
.y55{bottom:872.746318pt;}
.y153{bottom:874.346317pt;}
.ydf{bottom:874.826317pt;}
.y12{bottom:880.106315pt;}
.y151{bottom:887.147200pt;}
.yb3{bottom:891.146310pt;}
.yff{bottom:893.066309pt;}
.y54{bottom:893.226309pt;}
.yde{bottom:895.306309pt;}
.y11{bottom:900.906306pt;}
.y14f{bottom:901.867200pt;}
.yb2{bottom:911.946302pt;}
.yfe{bottom:913.546301pt;}
.y53{bottom:913.706301pt;}
.y10{bottom:915.466300pt;}
.yf{bottom:915.786300pt;}
.y14d{bottom:916.427200pt;}
.y14b{bottom:931.147200pt;}
.yb1{bottom:932.746294pt;}
.yfd{bottom:934.026293pt;}
.y52{bottom:934.186293pt;}
.ydd{bottom:935.146293pt;}
.y149{bottom:945.707200pt;}
.yb0{bottom:953.386285pt;}
.y4c{bottom:954.027200pt;}
.ydc{bottom:954.506285pt;}
.y51{bottom:954.666285pt;}
.y147{bottom:960.267200pt;}
.y4b{bottom:962.026282pt;}
.yaf{bottom:974.186277pt;}
.ydb{bottom:974.826277pt;}
.y50{bottom:974.986277pt;}
.y145{bottom:974.987200pt;}
.y4a{bottom:980.906274pt;}
.y143{bottom:990.667200pt;}
.yae{bottom:994.826269pt;}
.yda{bottom:995.306269pt;}
.y4f{bottom:995.466268pt;}
.y49{bottom:999.946267pt;}
.ye{bottom:1001.866266pt;}
.yd{bottom:1002.186266pt;}
.yb{bottom:1008.267200pt;}
.yad{bottom:1015.626260pt;}
.yd9{bottom:1015.786260pt;}
.y4e{bottom:1015.946260pt;}
.y47{bottom:1018.027200pt;}
.y46{bottom:1021.386258pt;}
.ya7{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.yac{bottom:1062.827200pt;}
.y9{bottom:1062.987200pt;}
.h2a{height:2.560000pt;}
.he{height:7.278122pt;}
.h11{height:12.000000pt;}
.h1b{height:13.440000pt;}
.h2d{height:13.600000pt;}
.h30{height:13.760000pt;}
.h22{height:14.128119pt;}
.h1d{height:14.560000pt;}
.h20{height:15.200000pt;}
.h25{height:15.520000pt;}
.h4{height:17.600000pt;}
.h13{height:17.920000pt;}
.h17{height:18.080000pt;}
.h2{height:18.240000pt;}
.ha{height:18.400000pt;}
.h7{height:18.560000pt;}
.h28{height:19.360000pt;}
.h16{height:19.708117pt;}
.h19{height:21.723741pt;}
.h23{height:23.034366pt;}
.h14{height:23.118741pt;}
.h2c{height:28.075614pt;}
.h12{height:28.684364pt;}
.h1f{height:29.856863pt;}
.h2f{height:32.432175pt;}
.h15{height:32.788112pt;}
.h2e{height:34.368424pt;}
.h1a{height:35.560298pt;}
.h1c{height:36.304673pt;}
.h29{height:36.703110pt;}
.h26{height:36.883110pt;}
.h24{height:38.387485pt;}
.h21{height:40.177171pt;}
.hb{height:42.656233pt;}
.h5{height:42.812483pt;}
.h18{height:42.843733pt;}
.h2b{height:44.362482pt;}
.h1e{height:44.562482pt;}
.hd{height:48.406231pt;}
.h27{height:48.937480pt;}
.h8{height:50.090605pt;}
.hf{height:56.940602pt;}
.h10{height:60.175084pt;}
.h6{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.hc{height:69.749972pt;}
.h9{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w5f{width:2.560000pt;}
.w18{width:2.880000pt;}
.w1f{width:3.200000pt;}
.we{width:3.840000pt;}
.w12{width:4.000000pt;}
.w2{width:4.160000pt;}
.wf{width:4.480000pt;}
.w2f{width:4.800000pt;}
.w1{width:5.760000pt;}
.w60{width:6.080000pt;}
.w36{width:6.720000pt;}
.w1b{width:6.880000pt;}
.w16{width:7.040000pt;}
.w8{width:7.360000pt;}
.wa{width:8.320000pt;}
.w22{width:8.800000pt;}
.w21{width:9.440000pt;}
.w6{width:9.920000pt;}
.w7{width:10.080000pt;}
.w32{width:10.720000pt;}
.w25{width:12.640000pt;}
.w2c{width:13.760000pt;}
.w27{width:14.080000pt;}
.w4{width:14.240000pt;}
.w3f{width:14.560000pt;}
.w45{width:20.480000pt;}
.w51{width:21.120000pt;}
.w4a{width:21.760000pt;}
.w50{width:21.920000pt;}
.w41{width:22.400000pt;}
.w56{width:22.560000pt;}
.w55{width:22.720000pt;}
.w4e{width:22.880000pt;}
.w4b{width:23.040000pt;}
.w42{width:23.200000pt;}
.w46{width:23.360000pt;}
.w3e{width:25.120000pt;}
.w19{width:25.280000pt;}
.w54{width:25.440000pt;}
.wb{width:25.600000pt;}
.w4f{width:26.880000pt;}
.w49{width:27.520000pt;}
.w40{width:27.680000pt;}
.w5{width:29.760000pt;}
.w28{width:30.240000pt;}
.w1a{width:30.560000pt;}
.w3a{width:32.160000pt;}
.w5b{width:35.520000pt;}
.w5a{width:37.600000pt;}
.w2e{width:38.080000pt;}
.w59{width:38.240000pt;}
.w35{width:41.440000pt;}
.w52{width:41.760000pt;}
.w26{width:43.200000pt;}
.w43{width:48.160000pt;}
.w4c{width:48.320000pt;}
.w3d{width:48.640000pt;}
.w47{width:49.760000pt;}
.w57{width:50.880000pt;}
.w5c{width:51.680000pt;}
.w11{width:53.440000pt;}
.w17{width:53.760000pt;}
.w39{width:54.560000pt;}
.w23{width:56.000000pt;}
.w1c{width:58.400000pt;}
.w58{width:60.480000pt;}
.w38{width:61.120000pt;}
.w29{width:62.720000pt;}
.w3c{width:67.360000pt;}
.w14{width:69.280000pt;}
.w5e{width:78.240000pt;}
.w2d{width:79.360000pt;}
.w10{width:81.440000pt;}
.w3b{width:82.880000pt;}
.w5d{width:84.480000pt;}
.w2b{width:94.400000pt;}
.w2a{width:99.520000pt;}
.w24{width:101.120000pt;}
.w53{width:104.640000pt;}
.w3{width:106.400000pt;}
.w30{width:106.880000pt;}
.w4d{width:116.000000pt;}
.w44{width:119.040000pt;}
.w48{width:120.320000pt;}
.w15{width:120.800000pt;}
.w1e{width:121.440000pt;}
.w9{width:122.080000pt;}
.w31{width:122.880000pt;}
.w34{width:128.160000pt;}
.wc{width:132.960000pt;}
.wd{width:140.640000pt;}
.w20{width:209.440000pt;}
.w37{width:239.840000pt;}
.w1d{width:266.720000pt;}
.w33{width:288.000000pt;}
.w13{width:597.760000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x20{left:97.119961pt;}
.x34{left:100.800000pt;}
.x77{left:103.360000pt;}
.x7{left:106.880000pt;}
.x2{left:122.399966pt;}
.x3{left:138.400000pt;}
.x55{left:144.320000pt;}
.x4{left:152.799939pt;}
.x3d{left:155.199938pt;}
.x56{left:157.120000pt;}
.xc{left:164.639934pt;}
.x35{left:166.400000pt;}
.x78{left:168.160000pt;}
.x36{left:170.240000pt;}
.x62{left:178.880000pt;}
.x7f{left:180.480000pt;}
.x72{left:200.640000pt;}
.x6e{left:212.000000pt;}
.x8{left:213.280000pt;}
.x6c{left:215.040000pt;}
.x6d{left:216.320000pt;}
.x23{left:219.199912pt;}
.x24{left:223.520000pt;}
.xd{left:230.880281pt;}
.x25{left:231.840000pt;}
.x5{left:239.520000pt;}
.x6{left:243.679903pt;}
.x32{left:246.879901pt;}
.x80{left:248.160000pt;}
.x33{left:255.679898pt;}
.x26{left:257.280000pt;}
.x57{left:260.000000pt;}
.x79{left:268.160000pt;}
.x6f{left:275.840000pt;}
.x63{left:280.000000pt;}
.x37{left:291.040000pt;}
.x64{left:294.560000pt;}
.x38{left:297.920000pt;}
.x44{left:304.479878pt;}
.x7a{left:306.400000pt;}
.x58{left:314.560000pt;}
.x81{left:326.400000pt;}
.x82{left:334.720000pt;}
.x59{left:341.760000pt;}
.x39{left:351.680000pt;}
.x3a{left:355.680000pt;}
.x3b{left:358.560000pt;}
.x65{left:360.000000pt;}
.x73{left:361.120000pt;}
.x3e{left:363.680000pt;}
.x41{left:365.120000pt;}
.x42{left:369.119852pt;}
.x5a{left:373.920000pt;}
.xe{left:380.160094pt;}
.xf{left:384.160091pt;}
.x74{left:386.560000pt;}
.x46{left:387.519845pt;}
.x27{left:390.079844pt;}
.x7b{left:392.640000pt;}
.x28{left:394.400000pt;}
.x5b{left:406.080000pt;}
.x43{left:411.200455pt;}
.x83{left:412.960000pt;}
.x3c{left:421.440000pt;}
.x5c{left:422.560000pt;}
.x4b{left:423.840000pt;}
.x4c{left:425.280000pt;}
.x21{left:445.279822pt;}
.x7c{left:446.240000pt;}
.x51{left:449.440000pt;}
.x66{left:452.800000pt;}
.x52{left:454.240000pt;}
.x10{left:458.720045pt;}
.x49{left:467.200000pt;}
.x11{left:470.560037pt;}
.x67{left:475.200000pt;}
.x12{left:482.400029pt;}
.x3f{left:485.120000pt;}
.x40{left:488.320000pt;}
.x48{left:494.399802pt;}
.x13{left:501.919965pt;}
.x84{left:503.200000pt;}
.x14{left:505.919962pt;}
.x85{left:516.640000pt;}
.x15{left:517.759954pt;}
.x5d{left:522.080000pt;}
.x47{left:524.159790pt;}
.x16{left:529.439947pt;}
.x29{left:535.039786pt;}
.x7d{left:536.640000pt;}
.x2a{left:539.360000pt;}
.x17{left:541.279939pt;}
.x2b{left:543.200000pt;}
.x68{left:544.160000pt;}
.x18{left:545.279936pt;}
.x2c{left:547.680000pt;}
.x4a{left:549.280000pt;}
.x19{left:560.959873pt;}
.x1a{left:564.799872pt;}
.x70{left:566.400000pt;}
.x69{left:567.360000pt;}
.x7e{left:574.880000pt;}
.x1b{left:576.639864pt;}
.x4d{left:579.520000pt;}
.x1c{left:580.479862pt;}
.x4e{left:582.400000pt;}
.x1d{left:584.479859pt;}
.x5e{left:589.440000pt;}
.x1e{left:592.319763pt;}
.x86{left:594.880000pt;}
.x5f{left:610.880000pt;}
.x9{left:619.840000pt;}
.x75{left:623.840000pt;}
.x6a{left:625.120000pt;}
.x2d{left:629.120000pt;}
.x2e{left:633.600000pt;}
.x22{left:637.119745pt;}
.x50{left:643.680000pt;}
.x4f{left:645.120000pt;}
.xa{left:649.600000pt;}
.xb{left:659.520000pt;}
.x60{left:662.400000pt;}
.x71{left:670.080000pt;}
.x6b{left:673.280000pt;}
.x76{left:674.720000pt;}
.x53{left:683.840000pt;}
.x2f{left:686.559725pt;}
.x61{left:687.520000pt;}
.x54{left:688.640000pt;}
.x30{left:690.720000pt;}
.x45{left:692.960000pt;}
.x31{left:694.720000pt;}
.x1f{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; }
  