
    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_7fd9378a763c7ee3dd6c8826.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_29bb92bd22e1748145119257.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_ad7d095f8103a381173fd4c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_039a09e46592b10cd0c7a3bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_2db8120f9849b5cc2a03bb68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_03980a9005621436b900b2a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_f0b6d83d5425af4f595f1c98.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.769531;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_f4aa51dff79680a330df01b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.234767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234767,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v8{vertical-align:-84.239870px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.319960px;}
.v1{vertical-align:23.759996px;}
.v7{vertical-align:30.240009px;}
.v3{vertical-align:35.279982px;}
.v6{vertical-align:53.279987px;}
.v4{vertical-align:71.279982px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.145856px;}
.ls7{letter-spacing:0.179554px;}
.ls2{letter-spacing:0.214214px;}
.ls5{letter-spacing:139.143190px;}
.ls3{letter-spacing:167.905784px;}
.ls6{letter-spacing:535.992680px;}
.ls8{letter-spacing:850.637021px;}
.ls1{letter-spacing:851.939685px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-45.001798px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.wsa{word-spacing:-11.336823px;}
.ws5{word-spacing:-10.564954px;}
.ws4{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws6{word-spacing:-6.622816px;}
.ws9{word-spacing:0.000000px;}
._5d{margin-left:-11.710398px;}
._3a{margin-left:-10.511394px;}
._59{margin-left:-6.776898px;}
._5c{margin-left:-4.922100px;}
._21{margin-left:-3.298770px;}
._5{margin-left:-2.193468px;}
._0{margin-left:-1.070693px;}
._1{width:1.123241px;}
._8{width:2.283784px;}
._7{width:3.488028px;}
._6{width:4.699068px;}
._a{width:5.835130px;}
._d{width:7.773314px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._20{width:12.229684px;}
._c{width:13.723258px;}
._b{width:14.761991px;}
._16{width:15.825576px;}
._1d{width:17.576615px;}
._10{width:19.586171px;}
._1e{width:21.587182px;}
._1c{width:22.752900px;}
._1b{width:23.890545px;}
._18{width:25.668299px;}
._17{width:27.019069px;}
._1f{width:28.554889px;}
._1a{width:30.033828px;}
._19{width:31.114591px;}
._22{width:32.489868px;}
._f{width:33.898937px;}
._e{width:35.881292px;}
._4c{width:36.954751px;}
._58{width:38.054225px;}
._4b{width:39.065240px;}
._2e{width:40.409868px;}
._13{width:42.935202px;}
._50{width:52.631804px;}
._51{width:53.886091px;}
._52{width:64.573699px;}
._38{width:65.608848px;}
._5f{width:71.523239px;}
._5e{width:72.748634px;}
._2a{width:74.726548px;}
._2f{width:76.415599px;}
._57{width:78.864129px;}
._35{width:80.235487px;}
._56{width:81.320083px;}
._9{width:84.645578px;}
._60{width:94.020962px;}
._53{width:97.143344px;}
._12{width:98.220305px;}
._42{width:99.532207px;}
._41{width:100.641768px;}
._40{width:106.421411px;}
._23{width:107.479880px;}
._54{width:109.740721px;}
._39{width:114.767242px;}
._43{width:118.573699px;}
._25{width:120.556258px;}
._24{width:122.525199px;}
._2b{width:124.906340px;}
._4a{width:126.076532px;}
._49{width:127.144397px;}
._44{width:142.896879px;}
._45{width:144.896260px;}
._27{width:148.584744px;}
._55{width:153.650133px;}
._2c{width:155.058519px;}
._4f{width:156.737608px;}
._2d{width:159.561179px;}
._30{width:160.956752px;}
._47{width:161.991297px;}
._3f{width:164.465204px;}
._4d{width:166.627177px;}
._46{width:179.121803px;}
._4e{width:186.502799px;}
._48{width:187.901811px;}
._5a{width:192.379394px;}
._5b{width:194.420675px;}
._14{width:196.221987px;}
._26{width:198.733521px;}
._15{width:202.036658px;}
._3d{width:203.251611px;}
._34{width:209.369412px;}
._3e{width:211.163266px;}
._28{width:222.877116px;}
._37{width:226.552400px;}
._33{width:234.937566px;}
._36{width:238.073283px;}
._32{width:241.450209px;}
._3b{width:253.462417px;}
._29{width:262.966052px;}
._3c{width:275.267711px;}
._31{width:359.883828px;}
._11{width:370.679384px;}
._4{width:1196.879058px;}
.fc7{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(34,34,34);}
.fc3{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:18.000720px;}
.fs11{font-size:27.361080px;}
.fs12{font-size:30.241170px;}
.fs13{font-size:36.001395px;}
.fsc{font-size:38.881485px;}
.fs6{font-size:41.760000px;}
.fs10{font-size:41.761620px;}
.fsf{font-size:45.361800px;}
.fs1{font-size:48.241800px;}
.fs0{font-size:50.985391px;}
.fse{font-size:54.002250px;}
.fsd{font-size:56.882250px;}
.fs3{font-size:59.762250px;}
.fs15{font-size:63.362250px;}
.fsb{font-size:66.242700px;}
.fsa{font-size:72.002705px;}
.fs2{font-size:74.882700px;}
.fs4{font-size:77.763154px;}
.fs14{font-size:81.363150px;}
.fs7{font-size:95.763600px;}
.fs8{font-size:108.004050px;}
.fs5{font-size:180.007191px;}
.yda{bottom:-9.360009px;}
.yea{bottom:-9.360008px;}
.ycf{bottom:-9.359940px;}
.ye3{bottom:-9.180038px;}
.yd6{bottom:-9.179971px;}
.yf9{bottom:-9.179970px;}
.y0{bottom:0.000000px;}
.y11{bottom:2.525251px;}
.y57{bottom:2.879998px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.ydd{bottom:6.479943px;}
.yd1{bottom:6.479976px;}
.yd3{bottom:6.480010px;}
.ye6{bottom:6.480011px;}
.y168{bottom:7.200010px;}
.y1a{bottom:14.760132px;}
.y19{bottom:28.620072px;}
.y18{bottom:42.660049px;}
.y17{bottom:42.665942px;}
.y16{bottom:55.076440px;}
.y15{bottom:67.500066px;}
.y14{bottom:79.923692px;}
.yf{bottom:84.960022px;}
.y13{bottom:92.334190px;}
.y12{bottom:104.757816px;}
.y19c{bottom:108.720016px;}
.yb2{bottom:109.440033px;}
.y1b7{bottom:114.300041px;}
.y10{bottom:114.656190px;}
.y1f9{bottom:122.040047px;}
.y12d{bottom:122.760064px;}
.ye{bottom:129.420043px;}
.y19b{bottom:129.780052px;}
.yb1{bottom:130.500068px;}
.y10a{bottom:134.460091px;}
.y1f8{bottom:135.360077px;}
.y265{bottom:135.540047px;}
.y165{bottom:137.160049px;}
.y1b6{bottom:138.600083px;}
.y12c{bottom:143.820099px;}
.y1db{bottom:144.720085px;}
.y1f7{bottom:148.680039px;}
.y19a{bottom:151.020058px;}
.yb0{bottom:151.560036px;}
.y109{bottom:155.520058px;}
.y164{bottom:158.400055px;}
.y264{bottom:162.000068px;}
.y1b5{bottom:162.900055px;}
.y1da{bottom:169.020058px;}
.y199{bottom:172.080093px;}
.yaf{bottom:172.800041px;}
.y55{bottom:174.780052px;}
.y108{bottom:176.760064px;}
.y163{bottom:179.460091px;}
.y1f6{bottom:181.980079px;}
.y127{bottom:183.960091px;}
.y1b4{bottom:187.200096px;}
.y263{bottom:188.280052px;}
.y54{bottom:189.540047px;}
.y198{bottom:193.140060px;}
.y1d9{bottom:193.320099px;}
.y236{bottom:193.680039px;}
.yae{bottom:193.860077px;}
.y12b{bottom:197.280052px;}
.y107{bottom:197.820099px;}
.y162{bottom:200.700096px;}
.y53{bottom:205.560036px;}
.y235{bottom:207.900055px;}
.y262{bottom:210.060036px;}
.y126{bottom:210.600083px;}
.y1b3{bottom:211.500068px;}
.y197{bottom:214.380066px;}
.yad{bottom:215.100083px;}
.y1f5{bottom:215.460091px;}
.y1d8{bottom:217.620072px;}
.y106{bottom:219.060036px;}
.y52{bottom:221.220085px;}
.y161{bottom:221.760064px;}
.y234{bottom:222.120072px;}
.y12a{bottom:224.100083px;}
.y261{bottom:224.280052px;}
.y51{bottom:235.260064px;}
.y196{bottom:235.440033px;}
.y1b2{bottom:235.800041px;}
.yac{bottom:236.160049px;}
.y233{bottom:236.340088px;}
.y1f4{bottom:236.520058px;}
.y123{bottom:237.420043px;}
.y260{bottom:238.500068px;}
.y105{bottom:240.120072px;}
.y1d7{bottom:241.920043px;}
.y160{bottom:243.000068px;}
.y232{bottom:250.560036px;}
.y129{bottom:250.740074px;}
.y50{bottom:250.920043px;}
.y1f3{bottom:256.320099px;}
.y195{bottom:256.680039px;}
.yab{bottom:257.220085px;}
.y1b1{bottom:260.100083px;}
.y104{bottom:261.180039px;}
.y125{bottom:264.060036px;}
.y1d6{bottom:266.220085px;}
.y4f{bottom:267.840088px;}
.y1f2{bottom:269.640060px;}
.y25f{bottom:274.320099px;}
.y7e{bottom:277.020058px;}
.y128{bottom:277.380066px;}
.y194{bottom:277.740074px;}
.yaa{bottom:278.460091px;}
.y103{bottom:282.420043px;}
.y4e{bottom:282.960091px;}
.y231{bottom:283.500068px;}
.y1b0{bottom:284.400055px;}
.y15f{bottom:285.120072px;}
.y25e{bottom:288.540047px;}
.y1d5{bottom:290.520058px;}
.y124{bottom:290.700096px;}
.y7d{bottom:291.240074px;}
.y1f1{bottom:296.280052px;}
.y4d{bottom:297.900055px;}
.y193{bottom:298.800041px;}
.ya9{bottom:299.520058px;}
.y102{bottom:303.480079px;}
.y7c{bottom:304.560036px;}
.y1af{bottom:308.700096px;}
.y1f0{bottom:309.600083px;}
.y25d{bottom:310.320099px;}
.y4c{bottom:312.840088px;}
.y1d4{bottom:314.820099px;}
.y230{bottom:318.960091px;}
.y192{bottom:320.040047px;}
.ya8{bottom:320.760064px;}
.y1ef{bottom:322.920043px;}
.y15e{bottom:323.640060px;}
.y101{bottom:324.720085px;}
.y7b{bottom:326.520058px;}
.y4b{bottom:327.960091px;}
.y25c{bottom:332.100083px;}
.y22f{bottom:332.280052px;}
.y1ae{bottom:333.000068px;}
.y1ee{bottom:336.240074px;}
.y15d{bottom:337.320099px;}
.y11e{bottom:339.120072px;}
.y7a{bottom:339.300041px;}
.y191{bottom:341.100083px;}
.ya7{bottom:341.820099px;}
.y4a{bottom:342.900055px;}
.y15a{bottom:345.240074px;}
.y22e{bottom:345.600083px;}
.y100{bottom:345.780052px;}
.y1ed{bottom:349.560036px;}
.y122{bottom:352.440033px;}
.y25b{bottom:353.700096px;}
.y1ad{bottom:357.300041px;}
.y49{bottom:357.840088px;}
.y22d{bottom:358.920043px;}
.y79{bottom:361.260064px;}
.y190{bottom:362.160049px;}
.ya6{bottom:362.880066px;}
.y1d3{bottom:363.420043px;}
.y11d{bottom:365.760064px;}
.y15c{bottom:366.300041px;}
.yff{bottom:366.840088px;}
.y25a{bottom:367.920043px;}
.y159{bottom:372.060036px;}
.y22c{bottom:372.240074px;}
.y48{bottom:372.960091px;}
.y121{bottom:379.260064px;}
.y15b{bottom:379.980079px;}
.y1ac{bottom:381.600083px;}
.y78{bottom:383.040047px;}
.ya5{bottom:384.120072px;}
.y22b{bottom:385.560036px;}
.y1d2{bottom:387.720085px;}
.y47{bottom:387.900055px;}
.yfe{bottom:388.080093px;}
.y259{bottom:389.700096px;}
.y11a{bottom:392.580093px;}
.y1ec{bottom:398.520058px;}
.y22a{bottom:399.060036px;}
.y18f{bottom:400.680039px;}
.y46{bottom:402.840088px;}
.y77{bottom:404.820099px;}
.ya4{bottom:405.180039px;}
.y120{bottom:405.900055px;}
.y158{bottom:408.780052px;}
.yfd{bottom:409.140060px;}
.y258{bottom:411.480079px;}
.y1d1{bottom:412.020058px;}
.y229{bottom:412.380066px;}
.y18e{bottom:414.360077px;}
.y45{bottom:417.960091px;}
.y11c{bottom:419.220085px;}
.y18b{bottom:422.460091px;}
.y157{bottom:422.640060px;}
.y1eb{bottom:423.000068px;}
.y228{bottom:425.700096px;}
.ya3{bottom:426.420043px;}
.y76{bottom:426.780052px;}
.y1ab{bottom:430.200096px;}
.yfc{bottom:430.380066px;}
.y154{bottom:430.560036px;}
.y11f{bottom:432.540047px;}
.y44{bottom:432.900055px;}
.y1d0{bottom:436.320099px;}
.y227{bottom:439.020058px;}
.y18d{bottom:443.340088px;}
.y1ea{bottom:444.060036px;}
.y11b{bottom:445.860077px;}
.y257{bottom:447.300041px;}
.ya2{bottom:447.480079px;}
.y43{bottom:447.840088px;}
.y75{bottom:448.560036px;}
.yfb{bottom:448.740074px;}
.y18a{bottom:449.100083px;}
.y156{bottom:451.440033px;}
.y226{bottom:452.340088px;}
.yfa{bottom:452.880066px;}
.y1aa{bottom:454.500068px;}
.y18c{bottom:457.020058px;}
.y153{bottom:457.200096px;}
.y1cf{bottom:460.620072px;}
.y256{bottom:461.520058px;}
.y42{bottom:462.960091px;}
.y155{bottom:465.120072px;}
.y1e9{bottom:465.300041px;}
.y225{bottom:465.660049px;}
.yf8{bottom:466.560036px;}
.ya1{bottom:468.540047px;}
.yf6{bottom:469.980079px;}
.y74{bottom:470.340088px;}
.yf7{bottom:474.120072px;}
.y41{bottom:477.900055px;}
.y1a9{bottom:478.800041px;}
.y224{bottom:478.980079px;}
.y255{bottom:483.300041px;}
.y1ce{bottom:484.920043px;}
.y189{bottom:486.000068px;}
.y1e8{bottom:486.360077px;}
.ya0{bottom:489.780052px;}
.yf4{bottom:491.400055px;}
.y73{bottom:492.300041px;}
.y40{bottom:492.840088px;}
.y152{bottom:494.100083px;}
.y119{bottom:494.280052px;}
.yf5{bottom:495.360077px;}
.y223{bottom:497.340088px;}
.y254{bottom:497.520058px;}
.y188{bottom:499.680039px;}
.y1a8{bottom:503.100083px;}
.y1e7{bottom:507.420043px;}
.y185{bottom:507.600083px;}
.y151{bottom:507.780052px;}
.y3f{bottom:507.960091px;}
.y1cd{bottom:509.220085px;}
.y9f{bottom:510.840088px;}
.y253{bottom:511.740074px;}
.yf2{bottom:512.640060px;}
.y72{bottom:514.080093px;}
.y14e{bottom:515.700096px;}
.yf3{bottom:516.780052px;}
.yf1{bottom:519.120072px;}
.y118{bottom:521.100083px;}
.y3e{bottom:522.900055px;}
.y1a7{bottom:527.400055px;}
.y187{bottom:528.480079px;}
.y1e6{bottom:528.660049px;}
.y222{bottom:529.560036px;}
.y9e{bottom:532.080093px;}
.y1cc{bottom:533.520058px;}
.yef{bottom:533.880066px;}
.y184{bottom:534.240074px;}
.y71{bottom:536.220085px;}
.y150{bottom:536.580093px;}
.y3d{bottom:537.840088px;}
.yf0{bottom:538.020058px;}
.y186{bottom:542.160049px;}
.y14d{bottom:542.340088px;}
.y115{bottom:547.740074px;}
.y221{bottom:547.920043px;}
.y1e5{bottom:549.720085px;}
.y14f{bottom:550.440033px;}
.y1a6{bottom:551.700096px;}
.yee{bottom:551.880066px;}
.y9d{bottom:553.140060px;}
.y3c{bottom:553.320099px;}
.y252{bottom:555.120072px;}
.yec{bottom:555.300041px;}
.y1cb{bottom:557.820099px;}
.y70{bottom:558.540047px;}
.yed{bottom:559.260064px;}
.y220{bottom:565.200096px;}
.y251{bottom:569.340088px;}
.ycc{bottom:569.880066px;}
.y3b{bottom:570.780052px;}
.y1e4{bottom:570.960091px;}
.y183{bottom:571.140060px;}
.ye9{bottom:573.120072px;}
.y9c{bottom:574.200096px;}
.y117{bottom:574.380066px;}
.y1a5{bottom:576.000068px;}
.ye7{bottom:576.540047px;}
.y21f{bottom:578.520058px;}
.y14c{bottom:579.240074px;}
.yeb{bottom:580.680039px;}
.y6f{bottom:581.220085px;}
.ye8{bottom:581.580093px;}
.y1ca{bottom:582.120072px;}
.y250{bottom:583.560036px;}
.y182{bottom:584.820099px;}
.y3a{bottom:588.060036px;}
.y21e{bottom:591.840088px;}
.y1e3{bottom:592.020058px;}
.y17f{bottom:592.740074px;}
.y14b{bottom:592.920043px;}
.ye2{bottom:594.360077px;}
.y9b{bottom:595.440033px;}
.ye5{bottom:597.780052px;}
.y1a4{bottom:600.300041px;}
.y148{bottom:600.840088px;}
.y116{bottom:601.020058px;}
.ye1{bottom:601.920043px;}
.ye4{bottom:602.820099px;}
.y6e{bottom:604.080093px;}
.y39{bottom:604.260064px;}
.y21d{bottom:605.160049px;}
.y24f{bottom:605.340088px;}
.y1c9{bottom:606.420043px;}
.y1e2{bottom:613.080093px;}
.y181{bottom:613.800041px;}
.ydf{bottom:615.780052px;}
.y9a{bottom:616.500068px;}
.y21c{bottom:618.480079px;}
.ydc{bottom:619.200096px;}
.y17e{bottom:619.560036px;}
.y38{bottom:621.180039px;}
.y14a{bottom:621.900055px;}
.ye0{bottom:623.160049px;}
.yde{bottom:624.240074px;}
.y1a3{bottom:624.600083px;}
.y6d{bottom:625.860077px;}
.y180{bottom:627.480079px;}
.y147{bottom:627.660049px;}
.y1c8{bottom:630.720085px;}
.y21b{bottom:631.800041px;}
.y24e{bottom:633.780052px;}
.y1e1{bottom:634.320099px;}
.y149{bottom:635.580093px;}
.y37{bottom:636.120072px;}
.yd9{bottom:637.020058px;}
.y99{bottom:637.740074px;}
.ydb{bottom:640.440033px;}
.yd8{bottom:644.580093px;}
.y21a{bottom:645.120072px;}
.y6c{bottom:645.300041px;}
.y1a2{bottom:648.900055px;}
.y114{bottom:649.440033px;}
.y36{bottom:651.240074px;}
.y1c7{bottom:655.020058px;}
.y1e0{bottom:655.380066px;}
.y17d{bottom:656.280052px;}
.yd5{bottom:658.260064px;}
.y219{bottom:658.440033px;}
.y98{bottom:658.800041px;}
.yd2{bottom:661.680039px;}
.y6b{bottom:662.760064px;}
.y146{bottom:664.380066px;}
.yd7{bottom:665.820099px;}
.y35{bottom:666.180039px;}
.yd4{bottom:666.720085px;}
.y24d{bottom:669.600083px;}
.y17c{bottom:669.960091px;}
.y218{bottom:671.760064px;}
.y1a1{bottom:673.200096px;}
.y113{bottom:676.260064px;}
.y1df{bottom:676.620072px;}
.y179{bottom:678.060036px;}
.y145{bottom:678.240074px;}
.y1c6{bottom:679.320099px;}
.yce{bottom:679.680039px;}
.y97{bottom:679.860077px;}
.y34{bottom:681.120072px;}
.yd0{bottom:683.100083px;}
.y217{bottom:685.080093px;}
.y142{bottom:686.160049px;}
.ycd{bottom:687.060070px;}
.y10f{bottom:689.580059px;}
.y6a{bottom:691.200061px;}
.y24c{bottom:691.380066px;}
.y33{bottom:696.240074px;}
.y1a0{bottom:697.500068px;}
.y1de{bottom:697.680073px;}
.y216{bottom:698.400055px;}
.y17b{bottom:698.940067px;}
.y69{bottom:700.560070px;}
.ycb{bottom:700.920078px;}
.y96{bottom:701.100083px;}
.y112{bottom:702.900055px;}
.y1c5{bottom:703.620072px;}
.y178{bottom:704.700061px;}
.y144{bottom:707.040081px;}
.yc9{bottom:709.920078px;}
.y32{bottom:711.180073px;}
.y17a{bottom:712.620072px;}
.y141{bottom:712.800076px;}
.y68{bottom:712.980079px;}
.y24b{bottom:713.160049px;}
.y10e{bottom:716.220051px;}
.y215{bottom:716.760064px;}
.yca{bottom:718.740074px;}
.y1dd{bottom:718.920078px;}
.y143{bottom:720.720051px;}
.y19f{bottom:721.800076px;}
.y67{bottom:725.760064px;}
.y31{bottom:726.120072px;}
.y24a{bottom:727.380066px;}
.yc6{bottom:727.560070px;}
.y1c4{bottom:727.920078px;}
.y111{bottom:729.540081px;}
.y214{bottom:734.040081px;}
.yc5{bottom:736.560070px;}
.y66{bottom:739.980079px;}
.y95{bottom:740.160049px;}
.y30{bottom:741.240074px;}
.y177{bottom:741.600083px;}
.yc8{bottom:745.380066px;}
.y19e{bottom:746.100083px;}
.y213{bottom:747.360077px;}
.y249{bottom:748.980079px;}
.y140{bottom:749.700061px;}
.y1c3{bottom:752.220051px;}
.y65{bottom:754.200061px;}
.y176{bottom:755.280052px;}
.y2f{bottom:756.180073px;}
.y110{bottom:756.360077px;}
.y212{bottom:760.680073px;}
.y1dc{bottom:761.040081px;}
.yc7{bottom:763.200061px;}
.y13f{bottom:763.380066px;}
.y64{bottom:768.420078px;}
.y2e{bottom:771.120072px;}
.y13d{bottom:771.300076px;}
.y211{bottom:774.000068px;}
.y1c2{bottom:776.520058px;}
.y248{bottom:777.420078px;}
.y94{bottom:782.280052px;}
.y175{bottom:784.080059px;}
.y19d{bottom:785.160049px;}
.yc4{bottom:785.700061px;}
.y2d{bottom:786.240074px;}
.y63{bottom:787.140060px;}
.y210{bottom:787.320065px;}
.y173{bottom:789.840054px;}
.y13e{bottom:792.180073px;}
.y62{bottom:796.860077px;}
.y174{bottom:797.760064px;}
.y13c{bottom:797.940067px;}
.y247{bottom:799.200061px;}
.y20f{bottom:800.640060px;}
.y1c1{bottom:800.820065px;}
.y2c{bottom:801.180073px;}
.y93{bottom:803.340054px;}
.y10d{bottom:804.240074px;}
.yc3{bottom:806.040081px;}
.y61{bottom:811.080059px;}
.y2b{bottom:816.120072px;}
.y20e{bottom:819.000068px;}
.y246{bottom:820.980079px;}
.y92{bottom:824.580059px;}
.y1c0{bottom:825.120072px;}
.y60{bottom:825.300076px;}
.y172{bottom:826.740074px;}
.yc2{bottom:827.280052px;}
.y10c{bottom:830.880066px;}
.y2a{bottom:831.240074px;}
.y13b{bottom:834.840054px;}
.y245{bottom:835.200061px;}
.y5f{bottom:839.520058px;}
.y171{bottom:840.420078px;}
.y91{bottom:845.640060px;}
.y29{bottom:846.180073px;}
.yc1{bottom:848.340054px;}
.y1bf{bottom:849.420078px;}
.y20d{bottom:851.220051px;}
.y5e{bottom:853.740074px;}
.y13a{bottom:856.080059px;}
.y244{bottom:856.800076px;}
.y138{bottom:859.140060px;}
.y28{bottom:861.120072px;}
.y20c{bottom:864.540081px;}
.y90{bottom:866.700061px;}
.y170{bottom:869.400055px;}
.yc0{bottom:869.580059px;}
.y243{bottom:871.020058px;}
.y5d{bottom:872.460056px;}
.y1be{bottom:873.720051px;}
.y16e{bottom:875.160049px;}
.y10b{bottom:875.520058px;}
.y27{bottom:876.240074px;}
.y139{bottom:877.500068px;}
.y20b{bottom:877.860077px;}
.y5c{bottom:882.540081px;}
.y16f{bottom:883.080059px;}
.y242{bottom:885.240074px;}
.y8f{bottom:887.940067px;}
.ybf{bottom:890.640060px;}
.y26{bottom:891.180073px;}
.y137{bottom:897.120072px;}
.y1bd{bottom:898.020058px;}
.y5b{bottom:901.260064px;}
.y20a{bottom:904.500068px;}
.y25{bottom:906.120072px;}
.y241{bottom:907.020058px;}
.y8e{bottom:909.000068px;}
.y5a{bottom:910.620072px;}
.ybe{bottom:911.700061px;}
.y16d{bottom:911.880066px;}
.y136{bottom:917.820065px;}
.y24{bottom:921.240074px;}
.y1bc{bottom:922.320065px;}
.y59{bottom:923.400055px;}
.y8d{bottom:930.240074px;}
.y209{bottom:931.140060px;}
.ybd{bottom:932.940067px;}
.y16c{bottom:933.300076px;}
.y16a{bottom:936.360077px;}
.y23{bottom:936.720051px;}
.y58{bottom:937.260064px;}
.y135{bottom:938.340054px;}
.y240{bottom:943.020058px;}
.y1bb{bottom:946.620072px;}
.y56{bottom:948.240074px;}
.y208{bottom:949.500068px;}
.y8c{bottom:951.300076px;}
.y22{bottom:954.000068px;}
.y16b{bottom:954.540081px;}
.y134{bottom:956.160049px;}
.y23f{bottom:957.240074px;}
.y1ba{bottom:970.920078px;}
.y8b{bottom:972.360077px;}
.y169{bottom:973.800076px;}
.ybc{bottom:975.240074px;}
.y23e{bottom:978.840070px;}
.y21{bottom:981.180073px;}
.y207{bottom:981.720068px;}
.y167{bottom:986.580059px;}
.y23d{bottom:993.060070px;}
.y8a{bottom:993.600065px;}
.y166{bottom:993.780069px;}
.y1b9{bottom:995.220068px;}
.ybb{bottom:996.300058px;}
.y133{bottom:998.640060px;}
.y206{bottom:1008.540064px;}
.y20{bottom:1009.440067px;}
.y89{bottom:1014.660067px;}
.y23c{bottom:1014.840070px;}
.yba{bottom:1017.540064px;}
.y1b8{bottom:1019.520058px;}
.y205{bottom:1021.860060px;}
.y1f{bottom:1029.060070px;}
.y204{bottom:1035.180073px;}
.y88{bottom:1035.900072px;}
.yb9{bottom:1038.600065px;}
.y132{bottom:1043.820065px;}
.y203{bottom:1048.500068px;}
.y1e{bottom:1049.040064px;}
.y23b{bottom:1050.840070px;}
.y87{bottom:1056.960074px;}
.yb8{bottom:1059.660067px;}
.y202{bottom:1061.820065px;}
.y1d{bottom:1067.220068px;}
.y131{bottom:1068.120072px;}
.y23a{bottom:1072.440067px;}
.y201{bottom:1075.140060px;}
.y1c{bottom:1077.480063px;}
.y86{bottom:1078.020058px;}
.yb7{bottom:1080.900072px;}
.y239{bottom:1086.660067px;}
.y200{bottom:1088.460074px;}
.y130{bottom:1092.420061px;}
.y85{bottom:1099.260064px;}
.y1ff{bottom:1101.780069px;}
.yb6{bottom:1101.960074px;}
.y1b{bottom:1106.460074px;}
.y238{bottom:1108.440067px;}
.y1fe{bottom:1115.100065px;}
.y12f{bottom:1116.720068px;}
.y84{bottom:1120.320065px;}
.y237{bottom:1122.660067px;}
.yb5{bottom:1123.200061px;}
.y1fd{bottom:1128.420069px;}
.yd{bottom:1131.840063px;}
.y12e{bottom:1141.020066px;}
.y1fc{bottom:1141.740066px;}
.yb4{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y1fb{bottom:1155.060070px;}
.y83{bottom:1159.560070px;}
.yb3{bottom:1165.320065px;}
.y1fa{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.y82{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y3{bottom:1201.680064px;}
.y81{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y80{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y7f{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h29{height:1.980010px;}
.h2e{height:1.980011px;}
.h2b{height:2.159980px;}
.h30{height:2.159981px;}
.h33{height:2.160049px;}
.h27{height:11.339985px;}
.hc{height:12.247501px;}
.h16{height:13.319997px;}
.h2a{height:16.379997px;}
.h31{height:16.379998px;}
.h2d{height:16.380065px;}
.h10{height:17.136685px;}
.h3a{height:19.980011px;}
.h9{height:22.499995px;}
.h7{height:22.500000px;}
.h1c{height:25.401375px;}
.h19{height:25.582610px;}
.h1b{height:28.275494px;}
.h5{height:33.496015px;}
.h1a{height:34.464336px;}
.h12{height:36.354188px;}
.hd{height:39.045600px;}
.h18{height:39.047115px;}
.h1d{height:40.634056px;}
.h15{height:42.413283px;}
.h17{height:44.137031px;}
.h4{height:45.106083px;}
.h24{height:45.829710px;}
.h1f{height:45.926194px;}
.h3{height:46.891030px;}
.h2{height:47.671340px;}
.h1e{height:48.538092px;}
.h2c{height:49.429656px;}
.h2f{height:49.429930px;}
.h28{height:50.149670px;}
.h32{height:50.149809px;}
.h14{height:50.492104px;}
.h22{height:51.302138px;}
.h21{height:54.038138px;}
.h13{height:55.346429px;}
.h3d{height:56.774138px;}
.h3e{height:58.148669px;}
.h11{height:61.936925px;}
.h3f{height:62.665265px;}
.h6{height:71.288330px;}
.h8{height:72.860867px;}
.h37{height:76.069580px;}
.h36{height:76.069714px;}
.h35{height:76.069719px;}
.h39{height:76.069850px;}
.h38{height:76.069854px;}
.h3b{height:76.789728px;}
.h3c{height:76.789732px;}
.ha{height:76.907760px;}
.h20{height:77.294993px;}
.h23{height:81.109692px;}
.he{height:91.166947px;}
.h34{height:99.109697px;}
.hf{height:102.819856px;}
.h25{height:117.109692px;}
.hb{height:127.007027px;}
.h26{height:153.109692px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wb{width:4.500000px;}
.w4{width:4.676470px;}
.w6{width:5.579991px;}
.w7{width:5.759994px;}
.w9{width:5.939998px;}
.we{width:5.939999px;}
.wa{width:5.940016px;}
.w2{width:8.100014px;}
.wf{width:28.079990px;}
.w8{width:28.619969px;}
.wc{width:28.800007px;}
.w10{width:31.500000px;}
.w12{width:41.220017px;}
.w13{width:45.540012px;}
.w11{width:46.439999px;}
.wd{width:49.680004px;}
.w14{width:54.540012px;}
.w5{width:81.360008px;}
.w3{width:135.538641px;}
.w15{width:631.260012px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x31{left:62.100001px;}
.xb{left:81.719999px;}
.x1{left:89.640000px;}
.x13{left:95.219999px;}
.x14{left:100.620002px;}
.x7{left:102.959997px;}
.x37{left:137.879998px;}
.x12{left:163.800007px;}
.x26{left:167.580008px;}
.x34{left:174.599997px;}
.x27{left:188.819996px;}
.x16{left:191.340002px;}
.x18{left:196.560001px;}
.x17{left:213.300007px;}
.x3b{left:219.060001px;}
.x28{left:226.439999px;}
.x39{left:228.599997px;}
.x3c{left:233.819996px;}
.x8{left:244.263664px;}
.x19{left:254.159998px;}
.x36{left:261.719999px;}
.xe{left:266.400003px;}
.x35{left:277.740006px;}
.x29{left:279.539996px;}
.x21{left:284.219999px;}
.x3a{left:309.600013px;}
.x1a{left:324.720017px;}
.xd{left:326.699993px;}
.x33{left:334.079990px;}
.x2a{left:349.019989px;}
.xf{left:350.100014px;}
.x1e{left:353.339985px;}
.x22{left:356.220017px;}
.x38{left:357.300007px;}
.x9{left:379.802305px;}
.x1b{left:388.259994px;}
.x30{left:408.420010px;}
.x24{left:429.480011px;}
.x23{left:434.699993px;}
.x2d{left:437.579990px;}
.x25{left:442.800007px;}
.x11{left:446.399987px;}
.x2e{left:449.819996px;}
.x15{left:456.120002px;}
.xc{left:458.100014px;}
.x2c{left:466.379998px;}
.x2b{left:469.259994px;}
.x3d{left:485.100014px;}
.x1f{left:517.139992px;}
.x32{left:536.939999px;}
.x10{left:552.600014px;}
.x2{left:561.600014px;}
.x3{left:584.820030px;}
.x20{left:594.720017px;}
.x5{left:625.860008px;}
.x2f{left:628.379998px;}
.x1c{left:630.000000px;}
.x1d{left:695.879998px;}
.xa{left:718.379998px;}
.x4{left:803.340019px;}
@media print{
.v8{vertical-align:-74.879884pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.839964pt;}
.v1{vertical-align:21.119996pt;}
.v7{vertical-align:26.880008pt;}
.v3{vertical-align:31.359984pt;}
.v6{vertical-align:47.359988pt;}
.v4{vertical-align:63.359984pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.129650pt;}
.ls7{letter-spacing:0.159604pt;}
.ls2{letter-spacing:0.190413pt;}
.ls5{letter-spacing:123.682836pt;}
.ls3{letter-spacing:149.249586pt;}
.ls6{letter-spacing:476.437938pt;}
.ls8{letter-spacing:756.121797pt;}
.ls1{letter-spacing:757.279720pt;}
.ws2{word-spacing:-40.001598pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.wsa{word-spacing:-10.077176pt;}
.ws5{word-spacing:-9.391070pt;}
.ws4{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws6{word-spacing:-5.886948pt;}
.ws9{word-spacing:0.000000pt;}
._5d{margin-left:-10.409243pt;}
._3a{margin-left:-9.343462pt;}
._59{margin-left:-6.023910pt;}
._5c{margin-left:-4.375200pt;}
._21{margin-left:-2.932240pt;}
._5{margin-left:-1.949749pt;}
._0{margin-left:-0.951727pt;}
._1{width:0.998436pt;}
._8{width:2.030030pt;}
._7{width:3.100469pt;}
._6{width:4.176949pt;}
._a{width:5.186782pt;}
._d{width:6.909612pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._20{width:10.870830pt;}
._c{width:12.198451pt;}
._b{width:13.121770pt;}
._16{width:14.067179pt;}
._1d{width:15.623658pt;}
._10{width:17.409930pt;}
._1e{width:19.188606pt;}
._1c{width:20.224800pt;}
._1b{width:21.236040pt;}
._18{width:22.816266pt;}
._17{width:24.016950pt;}
._1f{width:25.382124pt;}
._1a{width:26.696736pt;}
._19{width:27.657414pt;}
._22{width:28.879883pt;}
._f{width:30.132388pt;}
._e{width:31.894482pt;}
._4c{width:32.848668pt;}
._58{width:33.825978pt;}
._4b{width:34.724658pt;}
._2e{width:35.919882pt;}
._13{width:38.164624pt;}
._50{width:46.783826pt;}
._51{width:47.898747pt;}
._52{width:57.398843pt;}
._38{width:58.318976pt;}
._5f{width:63.576213pt;}
._5e{width:64.665453pt;}
._2a{width:66.423598pt;}
._2f{width:67.924977pt;}
._57{width:70.101448pt;}
._35{width:71.320433pt;}
._56{width:72.284518pt;}
._9{width:75.240513pt;}
._60{width:83.574189pt;}
._53{width:86.349640pt;}
._12{width:87.306938pt;}
._42{width:88.473073pt;}
._41{width:89.459350pt;}
._40{width:94.596810pt;}
._23{width:95.537671pt;}
._54{width:97.547308pt;}
._39{width:102.015326pt;}
._43{width:105.398843pt;}
._25{width:107.161118pt;}
._24{width:108.911288pt;}
._2b{width:111.027858pt;}
._4a{width:112.068029pt;}
._49{width:113.017242pt;}
._44{width:127.019448pt;}
._45{width:128.796675pt;}
._27{width:132.075328pt;}
._55{width:136.577896pt;}
._2c{width:137.829794pt;}
._4f{width:139.322318pt;}
._2d{width:141.832159pt;}
._30{width:143.072669pt;}
._47{width:143.992264pt;}
._3f{width:146.191292pt;}
._4d{width:148.113046pt;}
._46{width:159.219381pt;}
._4e{width:165.780266pt;}
._48{width:167.023832pt;}
._5a{width:171.003906pt;}
._5b{width:172.818378pt;}
._14{width:174.419544pt;}
._26{width:176.652018pt;}
._15{width:179.588141pt;}
._3d{width:180.668099pt;}
._34{width:186.106144pt;}
._3e{width:187.700681pt;}
._28{width:198.112992pt;}
._37{width:201.379911pt;}
._33{width:208.833392pt;}
._36{width:211.620696pt;}
._32{width:214.622408pt;}
._3b{width:225.299926pt;}
._29{width:233.747602pt;}
._3c{width:244.682410pt;}
._31{width:319.896736pt;}
._11{width:329.492786pt;}
._4{width:1063.892496pt;}
.fs9{font-size:16.000640pt;}
.fs11{font-size:24.320960pt;}
.fs12{font-size:26.881040pt;}
.fs13{font-size:32.001240pt;}
.fsc{font-size:34.561320pt;}
.fs6{font-size:37.120000pt;}
.fs10{font-size:37.121440pt;}
.fsf{font-size:40.321600pt;}
.fs1{font-size:42.881600pt;}
.fs0{font-size:45.320347pt;}
.fse{font-size:48.002000pt;}
.fsd{font-size:50.562000pt;}
.fs3{font-size:53.122000pt;}
.fs15{font-size:56.322000pt;}
.fsb{font-size:58.882400pt;}
.fsa{font-size:64.002404pt;}
.fs2{font-size:66.562400pt;}
.fs4{font-size:69.122804pt;}
.fs14{font-size:72.322800pt;}
.fs7{font-size:85.123200pt;}
.fs8{font-size:96.003600pt;}
.fs5{font-size:160.006392pt;}
.yda{bottom:-8.320008pt;}
.yea{bottom:-8.320007pt;}
.ycf{bottom:-8.319947pt;}
.ye3{bottom:-8.160034pt;}
.yd6{bottom:-8.159974pt;}
.yf9{bottom:-8.159973pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:2.244668pt;}
.y57{bottom:2.559998pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.ydd{bottom:5.759949pt;}
.yd1{bottom:5.759979pt;}
.yd3{bottom:5.760009pt;}
.ye6{bottom:5.760010pt;}
.y168{bottom:6.400009pt;}
.y1a{bottom:13.120118pt;}
.y19{bottom:25.440064pt;}
.y18{bottom:37.920044pt;}
.y17{bottom:37.925281pt;}
.y16{bottom:48.956836pt;}
.y15{bottom:60.000059pt;}
.y14{bottom:71.043281pt;}
.yf{bottom:75.520020pt;}
.y13{bottom:82.074836pt;}
.y12{bottom:93.118059pt;}
.y19c{bottom:96.640015pt;}
.yb2{bottom:97.280030pt;}
.y1b7{bottom:101.600037pt;}
.y10{bottom:101.916613pt;}
.y1f9{bottom:108.480042pt;}
.y12d{bottom:109.120057pt;}
.ye{bottom:115.040039pt;}
.y19b{bottom:115.360047pt;}
.yb1{bottom:116.000061pt;}
.y10a{bottom:119.520081pt;}
.y1f8{bottom:120.320069pt;}
.y265{bottom:120.480042pt;}
.y165{bottom:121.920044pt;}
.y1b6{bottom:123.200074pt;}
.y12c{bottom:127.840088pt;}
.y1db{bottom:128.640076pt;}
.y1f7{bottom:132.160035pt;}
.y19a{bottom:134.240052pt;}
.yb0{bottom:134.720032pt;}
.y109{bottom:138.240052pt;}
.y164{bottom:140.800049pt;}
.y264{bottom:144.000061pt;}
.y1b5{bottom:144.800049pt;}
.y1da{bottom:150.240052pt;}
.y199{bottom:152.960083pt;}
.yaf{bottom:153.600037pt;}
.y55{bottom:155.360047pt;}
.y108{bottom:157.120057pt;}
.y163{bottom:159.520081pt;}
.y1f6{bottom:161.760071pt;}
.y127{bottom:163.520081pt;}
.y1b4{bottom:166.400086pt;}
.y263{bottom:167.360047pt;}
.y54{bottom:168.480042pt;}
.y198{bottom:171.680054pt;}
.y1d9{bottom:171.840088pt;}
.y236{bottom:172.160035pt;}
.yae{bottom:172.320069pt;}
.y12b{bottom:175.360047pt;}
.y107{bottom:175.840088pt;}
.y162{bottom:178.400086pt;}
.y53{bottom:182.720032pt;}
.y235{bottom:184.800049pt;}
.y262{bottom:186.720032pt;}
.y126{bottom:187.200074pt;}
.y1b3{bottom:188.000061pt;}
.y197{bottom:190.560059pt;}
.yad{bottom:191.200074pt;}
.y1f5{bottom:191.520081pt;}
.y1d8{bottom:193.440064pt;}
.y106{bottom:194.720032pt;}
.y52{bottom:196.640076pt;}
.y161{bottom:197.120057pt;}
.y234{bottom:197.440064pt;}
.y12a{bottom:199.200074pt;}
.y261{bottom:199.360047pt;}
.y51{bottom:209.120057pt;}
.y196{bottom:209.280030pt;}
.y1b2{bottom:209.600037pt;}
.yac{bottom:209.920044pt;}
.y233{bottom:210.080079pt;}
.y1f4{bottom:210.240052pt;}
.y123{bottom:211.040039pt;}
.y260{bottom:212.000061pt;}
.y105{bottom:213.440064pt;}
.y1d7{bottom:215.040039pt;}
.y160{bottom:216.000061pt;}
.y232{bottom:222.720032pt;}
.y129{bottom:222.880066pt;}
.y50{bottom:223.040039pt;}
.y1f3{bottom:227.840088pt;}
.y195{bottom:228.160035pt;}
.yab{bottom:228.640076pt;}
.y1b1{bottom:231.200074pt;}
.y104{bottom:232.160035pt;}
.y125{bottom:234.720032pt;}
.y1d6{bottom:236.640076pt;}
.y4f{bottom:238.080079pt;}
.y1f2{bottom:239.680054pt;}
.y25f{bottom:243.840088pt;}
.y7e{bottom:246.240052pt;}
.y128{bottom:246.560059pt;}
.y194{bottom:246.880066pt;}
.yaa{bottom:247.520081pt;}
.y103{bottom:251.040039pt;}
.y4e{bottom:251.520081pt;}
.y231{bottom:252.000061pt;}
.y1b0{bottom:252.800049pt;}
.y15f{bottom:253.440064pt;}
.y25e{bottom:256.480042pt;}
.y1d5{bottom:258.240052pt;}
.y124{bottom:258.400086pt;}
.y7d{bottom:258.880066pt;}
.y1f1{bottom:263.360047pt;}
.y4d{bottom:264.800049pt;}
.y193{bottom:265.600037pt;}
.ya9{bottom:266.240052pt;}
.y102{bottom:269.760071pt;}
.y7c{bottom:270.720032pt;}
.y1af{bottom:274.400086pt;}
.y1f0{bottom:275.200074pt;}
.y25d{bottom:275.840088pt;}
.y4c{bottom:278.080079pt;}
.y1d4{bottom:279.840088pt;}
.y230{bottom:283.520081pt;}
.y192{bottom:284.480042pt;}
.ya8{bottom:285.120057pt;}
.y1ef{bottom:287.040039pt;}
.y15e{bottom:287.680054pt;}
.y101{bottom:288.640076pt;}
.y7b{bottom:290.240052pt;}
.y4b{bottom:291.520081pt;}
.y25c{bottom:295.200074pt;}
.y22f{bottom:295.360047pt;}
.y1ae{bottom:296.000061pt;}
.y1ee{bottom:298.880066pt;}
.y15d{bottom:299.840088pt;}
.y11e{bottom:301.440064pt;}
.y7a{bottom:301.600037pt;}
.y191{bottom:303.200074pt;}
.ya7{bottom:303.840088pt;}
.y4a{bottom:304.800049pt;}
.y15a{bottom:306.880066pt;}
.y22e{bottom:307.200074pt;}
.y100{bottom:307.360047pt;}
.y1ed{bottom:310.720032pt;}
.y122{bottom:313.280030pt;}
.y25b{bottom:314.400086pt;}
.y1ad{bottom:317.600037pt;}
.y49{bottom:318.080079pt;}
.y22d{bottom:319.040039pt;}
.y79{bottom:321.120057pt;}
.y190{bottom:321.920044pt;}
.ya6{bottom:322.560059pt;}
.y1d3{bottom:323.040039pt;}
.y11d{bottom:325.120057pt;}
.y15c{bottom:325.600037pt;}
.yff{bottom:326.080079pt;}
.y25a{bottom:327.040039pt;}
.y159{bottom:330.720032pt;}
.y22c{bottom:330.880066pt;}
.y48{bottom:331.520081pt;}
.y121{bottom:337.120057pt;}
.y15b{bottom:337.760071pt;}
.y1ac{bottom:339.200074pt;}
.y78{bottom:340.480042pt;}
.ya5{bottom:341.440064pt;}
.y22b{bottom:342.720032pt;}
.y1d2{bottom:344.640076pt;}
.y47{bottom:344.800049pt;}
.yfe{bottom:344.960083pt;}
.y259{bottom:346.400086pt;}
.y11a{bottom:348.960083pt;}
.y1ec{bottom:354.240052pt;}
.y22a{bottom:354.720032pt;}
.y18f{bottom:356.160035pt;}
.y46{bottom:358.080079pt;}
.y77{bottom:359.840088pt;}
.ya4{bottom:360.160035pt;}
.y120{bottom:360.800049pt;}
.y158{bottom:363.360047pt;}
.yfd{bottom:363.680054pt;}
.y258{bottom:365.760071pt;}
.y1d1{bottom:366.240052pt;}
.y229{bottom:366.560059pt;}
.y18e{bottom:368.320069pt;}
.y45{bottom:371.520081pt;}
.y11c{bottom:372.640076pt;}
.y18b{bottom:375.520081pt;}
.y157{bottom:375.680054pt;}
.y1eb{bottom:376.000061pt;}
.y228{bottom:378.400086pt;}
.ya3{bottom:379.040039pt;}
.y76{bottom:379.360047pt;}
.y1ab{bottom:382.400086pt;}
.yfc{bottom:382.560059pt;}
.y154{bottom:382.720032pt;}
.y11f{bottom:384.480042pt;}
.y44{bottom:384.800049pt;}
.y1d0{bottom:387.840088pt;}
.y227{bottom:390.240052pt;}
.y18d{bottom:394.080079pt;}
.y1ea{bottom:394.720032pt;}
.y11b{bottom:396.320069pt;}
.y257{bottom:397.600037pt;}
.ya2{bottom:397.760071pt;}
.y43{bottom:398.080079pt;}
.y75{bottom:398.720032pt;}
.yfb{bottom:398.880066pt;}
.y18a{bottom:399.200074pt;}
.y156{bottom:401.280030pt;}
.y226{bottom:402.080079pt;}
.yfa{bottom:402.560059pt;}
.y1aa{bottom:404.000061pt;}
.y18c{bottom:406.240052pt;}
.y153{bottom:406.400086pt;}
.y1cf{bottom:409.440064pt;}
.y256{bottom:410.240052pt;}
.y42{bottom:411.520081pt;}
.y155{bottom:413.440064pt;}
.y1e9{bottom:413.600037pt;}
.y225{bottom:413.920044pt;}
.yf8{bottom:414.720032pt;}
.ya1{bottom:416.480042pt;}
.yf6{bottom:417.760071pt;}
.y74{bottom:418.080079pt;}
.yf7{bottom:421.440064pt;}
.y41{bottom:424.800049pt;}
.y1a9{bottom:425.600037pt;}
.y224{bottom:425.760071pt;}
.y255{bottom:429.600037pt;}
.y1ce{bottom:431.040039pt;}
.y189{bottom:432.000061pt;}
.y1e8{bottom:432.320069pt;}
.ya0{bottom:435.360047pt;}
.yf4{bottom:436.800049pt;}
.y73{bottom:437.600037pt;}
.y40{bottom:438.080079pt;}
.y152{bottom:439.200074pt;}
.y119{bottom:439.360047pt;}
.yf5{bottom:440.320069pt;}
.y223{bottom:442.080079pt;}
.y254{bottom:442.240052pt;}
.y188{bottom:444.160035pt;}
.y1a8{bottom:447.200074pt;}
.y1e7{bottom:451.040039pt;}
.y185{bottom:451.200074pt;}
.y151{bottom:451.360047pt;}
.y3f{bottom:451.520081pt;}
.y1cd{bottom:452.640076pt;}
.y9f{bottom:454.080079pt;}
.y253{bottom:454.880066pt;}
.yf2{bottom:455.680054pt;}
.y72{bottom:456.960083pt;}
.y14e{bottom:458.400086pt;}
.yf3{bottom:459.360047pt;}
.yf1{bottom:461.440064pt;}
.y118{bottom:463.200074pt;}
.y3e{bottom:464.800049pt;}
.y1a7{bottom:468.800049pt;}
.y187{bottom:469.760071pt;}
.y1e6{bottom:469.920044pt;}
.y222{bottom:470.720032pt;}
.y9e{bottom:472.960083pt;}
.y1cc{bottom:474.240052pt;}
.yef{bottom:474.560059pt;}
.y184{bottom:474.880066pt;}
.y71{bottom:476.640076pt;}
.y150{bottom:476.960083pt;}
.y3d{bottom:478.080079pt;}
.yf0{bottom:478.240052pt;}
.y186{bottom:481.920044pt;}
.y14d{bottom:482.080079pt;}
.y115{bottom:486.880066pt;}
.y221{bottom:487.040039pt;}
.y1e5{bottom:488.640076pt;}
.y14f{bottom:489.280030pt;}
.y1a6{bottom:490.400086pt;}
.yee{bottom:490.560059pt;}
.y9d{bottom:491.680054pt;}
.y3c{bottom:491.840088pt;}
.y252{bottom:493.440064pt;}
.yec{bottom:493.600037pt;}
.y1cb{bottom:495.840088pt;}
.y70{bottom:496.480042pt;}
.yed{bottom:497.120057pt;}
.y220{bottom:502.400086pt;}
.y251{bottom:506.080079pt;}
.ycc{bottom:506.560059pt;}
.y3b{bottom:507.360047pt;}
.y1e4{bottom:507.520081pt;}
.y183{bottom:507.680054pt;}
.ye9{bottom:509.440064pt;}
.y9c{bottom:510.400086pt;}
.y117{bottom:510.560059pt;}
.y1a5{bottom:512.000061pt;}
.ye7{bottom:512.480042pt;}
.y21f{bottom:514.240052pt;}
.y14c{bottom:514.880066pt;}
.yeb{bottom:516.160035pt;}
.y6f{bottom:516.640076pt;}
.ye8{bottom:516.960083pt;}
.y1ca{bottom:517.440064pt;}
.y250{bottom:518.720032pt;}
.y182{bottom:519.840088pt;}
.y3a{bottom:522.720032pt;}
.y21e{bottom:526.080079pt;}
.y1e3{bottom:526.240052pt;}
.y17f{bottom:526.880066pt;}
.y14b{bottom:527.040039pt;}
.ye2{bottom:528.320069pt;}
.y9b{bottom:529.280030pt;}
.ye5{bottom:531.360047pt;}
.y1a4{bottom:533.600037pt;}
.y148{bottom:534.080079pt;}
.y116{bottom:534.240052pt;}
.ye1{bottom:535.040039pt;}
.ye4{bottom:535.840088pt;}
.y6e{bottom:536.960083pt;}
.y39{bottom:537.120057pt;}
.y21d{bottom:537.920044pt;}
.y24f{bottom:538.080079pt;}
.y1c9{bottom:539.040039pt;}
.y1e2{bottom:544.960083pt;}
.y181{bottom:545.600037pt;}
.ydf{bottom:547.360047pt;}
.y9a{bottom:548.000061pt;}
.y21c{bottom:549.760071pt;}
.ydc{bottom:550.400086pt;}
.y17e{bottom:550.720032pt;}
.y38{bottom:552.160035pt;}
.y14a{bottom:552.800049pt;}
.ye0{bottom:553.920044pt;}
.yde{bottom:554.880066pt;}
.y1a3{bottom:555.200074pt;}
.y6d{bottom:556.320069pt;}
.y180{bottom:557.760071pt;}
.y147{bottom:557.920044pt;}
.y1c8{bottom:560.640076pt;}
.y21b{bottom:561.600037pt;}
.y24e{bottom:563.360047pt;}
.y1e1{bottom:563.840088pt;}
.y149{bottom:564.960083pt;}
.y37{bottom:565.440064pt;}
.yd9{bottom:566.240052pt;}
.y99{bottom:566.880066pt;}
.ydb{bottom:569.280030pt;}
.yd8{bottom:572.960083pt;}
.y21a{bottom:573.440064pt;}
.y6c{bottom:573.600037pt;}
.y1a2{bottom:576.800049pt;}
.y114{bottom:577.280030pt;}
.y36{bottom:578.880066pt;}
.y1c7{bottom:582.240052pt;}
.y1e0{bottom:582.560059pt;}
.y17d{bottom:583.360047pt;}
.yd5{bottom:585.120057pt;}
.y219{bottom:585.280030pt;}
.y98{bottom:585.600037pt;}
.yd2{bottom:588.160035pt;}
.y6b{bottom:589.120057pt;}
.y146{bottom:590.560059pt;}
.yd7{bottom:591.840088pt;}
.y35{bottom:592.160035pt;}
.yd4{bottom:592.640076pt;}
.y24d{bottom:595.200074pt;}
.y17c{bottom:595.520081pt;}
.y218{bottom:597.120057pt;}
.y1a1{bottom:598.400086pt;}
.y113{bottom:601.120057pt;}
.y1df{bottom:601.440064pt;}
.y179{bottom:602.720032pt;}
.y145{bottom:602.880066pt;}
.y1c6{bottom:603.840088pt;}
.yce{bottom:604.160035pt;}
.y97{bottom:604.320069pt;}
.y34{bottom:605.440064pt;}
.yd0{bottom:607.200074pt;}
.y217{bottom:608.960083pt;}
.y142{bottom:609.920044pt;}
.ycd{bottom:610.720063pt;}
.y10f{bottom:612.960053pt;}
.y6a{bottom:614.400055pt;}
.y24c{bottom:614.560059pt;}
.y33{bottom:618.880066pt;}
.y1a0{bottom:620.000061pt;}
.y1de{bottom:620.160065pt;}
.y216{bottom:620.800049pt;}
.y17b{bottom:621.280060pt;}
.y69{bottom:622.720063pt;}
.ycb{bottom:623.040070pt;}
.y96{bottom:623.200074pt;}
.y112{bottom:624.800049pt;}
.y1c5{bottom:625.440064pt;}
.y178{bottom:626.400055pt;}
.y144{bottom:628.480072pt;}
.yc9{bottom:631.040070pt;}
.y32{bottom:632.160065pt;}
.y17a{bottom:633.440064pt;}
.y141{bottom:633.600068pt;}
.y68{bottom:633.760071pt;}
.y24b{bottom:633.920044pt;}
.y10e{bottom:636.640046pt;}
.y215{bottom:637.120057pt;}
.yca{bottom:638.880066pt;}
.y1dd{bottom:639.040070pt;}
.y143{bottom:640.640046pt;}
.y19f{bottom:641.600068pt;}
.y67{bottom:645.120057pt;}
.y31{bottom:645.440064pt;}
.y24a{bottom:646.560059pt;}
.yc6{bottom:646.720063pt;}
.y1c4{bottom:647.040070pt;}
.y111{bottom:648.480072pt;}
.y214{bottom:652.480072pt;}
.yc5{bottom:654.720063pt;}
.y66{bottom:657.760071pt;}
.y95{bottom:657.920044pt;}
.y30{bottom:658.880066pt;}
.y177{bottom:659.200074pt;}
.yc8{bottom:662.560059pt;}
.y19e{bottom:663.200074pt;}
.y213{bottom:664.320069pt;}
.y249{bottom:665.760071pt;}
.y140{bottom:666.400055pt;}
.y1c3{bottom:668.640046pt;}
.y65{bottom:670.400055pt;}
.y176{bottom:671.360047pt;}
.y2f{bottom:672.160065pt;}
.y110{bottom:672.320069pt;}
.y212{bottom:676.160065pt;}
.y1dc{bottom:676.480072pt;}
.yc7{bottom:678.400055pt;}
.y13f{bottom:678.560059pt;}
.y64{bottom:683.040070pt;}
.y2e{bottom:685.440064pt;}
.y13d{bottom:685.600068pt;}
.y211{bottom:688.000061pt;}
.y1c2{bottom:690.240052pt;}
.y248{bottom:691.040070pt;}
.y94{bottom:695.360047pt;}
.y175{bottom:696.960053pt;}
.y19d{bottom:697.920044pt;}
.yc4{bottom:698.400055pt;}
.y2d{bottom:698.880066pt;}
.y63{bottom:699.680054pt;}
.y210{bottom:699.840058pt;}
.y173{bottom:702.080048pt;}
.y13e{bottom:704.160065pt;}
.y62{bottom:708.320069pt;}
.y174{bottom:709.120057pt;}
.y13c{bottom:709.280060pt;}
.y247{bottom:710.400055pt;}
.y20f{bottom:711.680054pt;}
.y1c1{bottom:711.840058pt;}
.y2c{bottom:712.160065pt;}
.y93{bottom:714.080048pt;}
.y10d{bottom:714.880066pt;}
.yc3{bottom:716.480072pt;}
.y61{bottom:720.960053pt;}
.y2b{bottom:725.440064pt;}
.y20e{bottom:728.000061pt;}
.y246{bottom:729.760071pt;}
.y92{bottom:732.960053pt;}
.y1c0{bottom:733.440064pt;}
.y60{bottom:733.600068pt;}
.y172{bottom:734.880066pt;}
.yc2{bottom:735.360047pt;}
.y10c{bottom:738.560059pt;}
.y2a{bottom:738.880066pt;}
.y13b{bottom:742.080048pt;}
.y245{bottom:742.400055pt;}
.y5f{bottom:746.240052pt;}
.y171{bottom:747.040070pt;}
.y91{bottom:751.680054pt;}
.y29{bottom:752.160065pt;}
.yc1{bottom:754.080048pt;}
.y1bf{bottom:755.040070pt;}
.y20d{bottom:756.640046pt;}
.y5e{bottom:758.880066pt;}
.y13a{bottom:760.960053pt;}
.y244{bottom:761.600068pt;}
.y138{bottom:763.680054pt;}
.y28{bottom:765.440064pt;}
.y20c{bottom:768.480072pt;}
.y90{bottom:770.400055pt;}
.y170{bottom:772.800049pt;}
.yc0{bottom:772.960053pt;}
.y243{bottom:774.240052pt;}
.y5d{bottom:775.520050pt;}
.y1be{bottom:776.640046pt;}
.y16e{bottom:777.920044pt;}
.y10b{bottom:778.240052pt;}
.y27{bottom:778.880066pt;}
.y139{bottom:780.000061pt;}
.y20b{bottom:780.320069pt;}
.y5c{bottom:784.480072pt;}
.y16f{bottom:784.960053pt;}
.y242{bottom:786.880066pt;}
.y8f{bottom:789.280060pt;}
.ybf{bottom:791.680054pt;}
.y26{bottom:792.160065pt;}
.y137{bottom:797.440064pt;}
.y1bd{bottom:798.240052pt;}
.y5b{bottom:801.120057pt;}
.y20a{bottom:804.000061pt;}
.y25{bottom:805.440064pt;}
.y241{bottom:806.240052pt;}
.y8e{bottom:808.000061pt;}
.y5a{bottom:809.440064pt;}
.ybe{bottom:810.400055pt;}
.y16d{bottom:810.560059pt;}
.y136{bottom:815.840058pt;}
.y24{bottom:818.880066pt;}
.y1bc{bottom:819.840058pt;}
.y59{bottom:820.800049pt;}
.y8d{bottom:826.880066pt;}
.y209{bottom:827.680054pt;}
.ybd{bottom:829.280060pt;}
.y16c{bottom:829.600068pt;}
.y16a{bottom:832.320069pt;}
.y23{bottom:832.640046pt;}
.y58{bottom:833.120057pt;}
.y135{bottom:834.080048pt;}
.y240{bottom:838.240052pt;}
.y1bb{bottom:841.440064pt;}
.y56{bottom:842.880066pt;}
.y208{bottom:844.000061pt;}
.y8c{bottom:845.600068pt;}
.y22{bottom:848.000061pt;}
.y16b{bottom:848.480072pt;}
.y134{bottom:849.920044pt;}
.y23f{bottom:850.880066pt;}
.y1ba{bottom:863.040070pt;}
.y8b{bottom:864.320069pt;}
.y169{bottom:865.600068pt;}
.ybc{bottom:866.880066pt;}
.y23e{bottom:870.080063pt;}
.y21{bottom:872.160065pt;}
.y207{bottom:872.640061pt;}
.y167{bottom:876.960053pt;}
.y23d{bottom:882.720063pt;}
.y8a{bottom:883.200058pt;}
.y166{bottom:883.360062pt;}
.y1b9{bottom:884.640061pt;}
.ybb{bottom:885.600052pt;}
.y133{bottom:887.680054pt;}
.y206{bottom:896.480057pt;}
.y20{bottom:897.280060pt;}
.y89{bottom:901.920060pt;}
.y23c{bottom:902.080063pt;}
.yba{bottom:904.480057pt;}
.y1b8{bottom:906.240052pt;}
.y205{bottom:908.320054pt;}
.y1f{bottom:914.720063pt;}
.y204{bottom:920.160065pt;}
.y88{bottom:920.800064pt;}
.yb9{bottom:923.200058pt;}
.y132{bottom:927.840058pt;}
.y203{bottom:932.000061pt;}
.y1e{bottom:932.480057pt;}
.y23b{bottom:934.080063pt;}
.y87{bottom:939.520066pt;}
.yb8{bottom:941.920060pt;}
.y202{bottom:943.840058pt;}
.y1d{bottom:948.640061pt;}
.y131{bottom:949.440064pt;}
.y23a{bottom:953.280060pt;}
.y201{bottom:955.680054pt;}
.y1c{bottom:957.760056pt;}
.y86{bottom:958.240052pt;}
.yb7{bottom:960.800064pt;}
.y239{bottom:965.920060pt;}
.y200{bottom:967.520066pt;}
.y130{bottom:971.040055pt;}
.y85{bottom:977.120057pt;}
.y1ff{bottom:979.360062pt;}
.yb6{bottom:979.520066pt;}
.y1b{bottom:983.520066pt;}
.y238{bottom:985.280060pt;}
.y1fe{bottom:991.200058pt;}
.y12f{bottom:992.640061pt;}
.y84{bottom:995.840058pt;}
.y237{bottom:997.920060pt;}
.yb5{bottom:998.400055pt;}
.y1fd{bottom:1003.040062pt;}
.yd{bottom:1006.080056pt;}
.y12e{bottom:1014.240059pt;}
.y1fc{bottom:1014.880059pt;}
.yb4{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y1fb{bottom:1026.720063pt;}
.y83{bottom:1030.720063pt;}
.yb3{bottom:1035.840058pt;}
.y1fa{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.y82{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y3{bottom:1068.160057pt;}
.y81{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y80{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y7f{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h29{height:1.760009pt;}
.h2e{height:1.760010pt;}
.h2b{height:1.919982pt;}
.h30{height:1.919983pt;}
.h33{height:1.920044pt;}
.h27{height:10.079987pt;}
.hc{height:10.886668pt;}
.h16{height:11.839997pt;}
.h2a{height:14.559997pt;}
.h31{height:14.559998pt;}
.h2d{height:14.560058pt;}
.h10{height:15.232609pt;}
.h3a{height:17.760010pt;}
.h9{height:19.999996pt;}
.h7{height:20.000000pt;}
.h1c{height:22.579000pt;}
.h19{height:22.740098pt;}
.h1b{height:25.133772pt;}
.h5{height:29.774236pt;}
.h1a{height:30.634966pt;}
.h12{height:32.314834pt;}
.hd{height:34.707200pt;}
.h18{height:34.708546pt;}
.h1d{height:36.119161pt;}
.h15{height:37.700696pt;}
.h17{height:39.232917pt;}
.h4{height:40.094296pt;}
.h24{height:40.737520pt;}
.h1f{height:40.823283pt;}
.h3{height:41.680915pt;}
.h2{height:42.374525pt;}
.h1e{height:43.144971pt;}
.h2c{height:43.937472pt;}
.h2f{height:43.937716pt;}
.h28{height:44.577484pt;}
.h32{height:44.577608pt;}
.h14{height:44.881870pt;}
.h22{height:45.601900pt;}
.h21{height:48.033900pt;}
.h13{height:49.196826pt;}
.h3d{height:50.465900pt;}
.h3e{height:51.687706pt;}
.h11{height:55.055044pt;}
.h3f{height:55.702458pt;}
.h6{height:63.367405pt;}
.h8{height:64.765215pt;}
.h37{height:67.617404pt;}
.h36{height:67.617524pt;}
.h35{height:67.617528pt;}
.h39{height:67.617644pt;}
.h38{height:67.617648pt;}
.h3b{height:68.257536pt;}
.h3c{height:68.257540pt;}
.ha{height:68.362453pt;}
.h20{height:68.706660pt;}
.h23{height:72.097504pt;}
.he{height:81.037286pt;}
.h34{height:88.097508pt;}
.hf{height:91.395427pt;}
.h25{height:104.097504pt;}
.hb{height:112.895135pt;}
.h26{height:136.097504pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wb{width:4.000000pt;}
.w4{width:4.156862pt;}
.w6{width:4.959992pt;}
.w7{width:5.119995pt;}
.w9{width:5.279998pt;}
.we{width:5.279999pt;}
.wa{width:5.280014pt;}
.w2{width:7.200012pt;}
.wf{width:24.959991pt;}
.w8{width:25.439972pt;}
.wc{width:25.600006pt;}
.w10{width:28.000000pt;}
.w12{width:36.640015pt;}
.w13{width:40.480011pt;}
.w11{width:41.279999pt;}
.wd{width:44.160004pt;}
.w14{width:48.480011pt;}
.w5{width:72.320007pt;}
.w3{width:120.478792pt;}
.w15{width:561.120011pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x31{left:55.200001pt;}
.xb{left:72.639999pt;}
.x1{left:79.680000pt;}
.x13{left:84.639999pt;}
.x14{left:89.440002pt;}
.x7{left:91.519997pt;}
.x37{left:122.559998pt;}
.x12{left:145.600006pt;}
.x26{left:148.960007pt;}
.x34{left:155.199997pt;}
.x27{left:167.839996pt;}
.x16{left:170.080002pt;}
.x18{left:174.720001pt;}
.x17{left:189.600006pt;}
.x3b{left:194.720001pt;}
.x28{left:201.279999pt;}
.x39{left:203.199997pt;}
.x3c{left:207.839996pt;}
.x8{left:217.123257pt;}
.x19{left:225.919998pt;}
.x36{left:232.639999pt;}
.xe{left:236.800003pt;}
.x35{left:246.880005pt;}
.x29{left:248.479996pt;}
.x21{left:252.639999pt;}
.x3a{left:275.200012pt;}
.x1a{left:288.640015pt;}
.xd{left:290.399994pt;}
.x33{left:296.959991pt;}
.x2a{left:310.239990pt;}
.xf{left:311.200012pt;}
.x1e{left:314.079987pt;}
.x22{left:316.640015pt;}
.x38{left:317.600006pt;}
.x9{left:337.602049pt;}
.x1b{left:345.119995pt;}
.x30{left:363.040009pt;}
.x24{left:381.760010pt;}
.x23{left:386.399994pt;}
.x2d{left:388.959991pt;}
.x25{left:393.600006pt;}
.x11{left:396.799988pt;}
.x2e{left:399.839996pt;}
.x15{left:405.440002pt;}
.xc{left:407.200012pt;}
.x2c{left:414.559998pt;}
.x2b{left:417.119995pt;}
.x3d{left:431.200012pt;}
.x1f{left:459.679993pt;}
.x32{left:477.279999pt;}
.x10{left:491.200012pt;}
.x2{left:499.200012pt;}
.x3{left:519.840027pt;}
.x20{left:528.640015pt;}
.x5{left:556.320007pt;}
.x2f{left:558.559998pt;}
.x1c{left:560.000000pt;}
.x1d{left:618.559998pt;}
.xa{left:638.559998pt;}
.x4{left:714.080017pt;}
}




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