
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_bdfdcd4e1a66.woff")format("woff");}.ff1{font-family:ff1;line-height:1.281250;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("fonts/font_0001_59a4b1f1612d.woff")format("woff");}.ff2{font-family:ff2;line-height:0.850000;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("fonts/font_0002_cf30de8c4241.woff")format("woff");}.ff3{font-family:ff3;line-height:1.575000;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("fonts/font_0003_628e2f0e35c6.woff")format("woff");}.ff4{font-family:ff4;line-height:1.432129;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("fonts/font_0004_71e2ce243897.woff")format("woff");}.ff5{font-family:ff5;line-height:1.432129;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("fonts/font_0005_3052d4f25f21.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_b641ab6714fe.woff")format("woff");}.ff7{font-family:ff7;line-height:1.432129;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("fonts/font_0007_6d1432247081.woff")format("woff");}.ff8{font-family:ff8;line-height:1.575000;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("fonts/font_0008_73a0cda96fa3.woff")format("woff");}.ff9{font-family:ff9;line-height:1.575000;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("fonts/font_0009_a174e83743a5.woff")format("woff");}.ffa{font-family:ffa;line-height:1.592000;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("fonts/font_0010_8b4601701f74.woff")format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-88.559400px;}
.v5{vertical-align:-68.759400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v4{vertical-align:68.777280px;}
.v3{vertical-align:75.959640px;}
.ls2{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.122400px;}
.ls7{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.096192px;}
.ls60{letter-spacing:-0.090180px;}
.ls1e{letter-spacing:-0.086400px;}
.ls5c{letter-spacing:-0.084168px;}
.ls1d{letter-spacing:-0.079200px;}
.ls5e{letter-spacing:-0.078156px;}
.ls3e{letter-spacing:-0.078120px;}
.ls4c{letter-spacing:-0.072144px;}
.ls20{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.070308px;}
.ls4f{letter-spacing:-0.066132px;}
.ls1a{letter-spacing:-0.064800px;}
.ls4b{letter-spacing:-0.060120px;}
.ls38{letter-spacing:-0.057600px;}
.ls19{letter-spacing:-0.054684px;}
.ls4e{letter-spacing:-0.054108px;}
.ls1f{letter-spacing:-0.050400px;}
.ls48{letter-spacing:-0.048096px;}
.ls16{letter-spacing:-0.043200px;}
.ls49{letter-spacing:-0.042084px;}
.ls3f{letter-spacing:-0.039060px;}
.ls4d{letter-spacing:-0.036072px;}
.ls1b{letter-spacing:-0.036000px;}
.ls42{letter-spacing:-0.031248px;}
.ls51{letter-spacing:-0.030060px;}
.ls22{letter-spacing:-0.028800px;}
.ls47{letter-spacing:-0.025164px;}
.ls52{letter-spacing:-0.024048px;}
.ls15{letter-spacing:-0.021600px;}
.ls37{letter-spacing:-0.019764px;}
.ls5b{letter-spacing:-0.018036px;}
.ls3c{letter-spacing:-0.016776px;}
.ls18{letter-spacing:-0.014400px;}
.ls50{letter-spacing:-0.012024px;}
.ls3d{letter-spacing:-0.008388px;}
.ls14{letter-spacing:-0.007812px;}
.ls17{letter-spacing:-0.007200px;}
.ls5d{letter-spacing:-0.006012px;}
.ls1{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.006012px;}
.ls1c{letter-spacing:0.007200px;}
.ls9{letter-spacing:0.007812px;}
.ls53{letter-spacing:0.008388px;}
.ls58{letter-spacing:0.012024px;}
.ls12{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.015624px;}
.ls45{letter-spacing:0.018036px;}
.ls11{letter-spacing:0.021600px;}
.ls61{letter-spacing:0.024048px;}
.ls40{letter-spacing:0.028800px;}
.ls55{letter-spacing:0.030060px;}
.ls8{letter-spacing:0.031248px;}
.ls3a{letter-spacing:0.036000px;}
.ls57{letter-spacing:0.036072px;}
.ls24{letter-spacing:0.039060px;}
.ls36{letter-spacing:0.039528px;}
.lsf{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.046116px;}
.ls23{letter-spacing:0.046872px;}
.ls54{letter-spacing:0.048096px;}
.ls29{letter-spacing:0.050328px;}
.ls2c{letter-spacing:0.052704px;}
.ls5a{letter-spacing:0.054108px;}
.ls27{letter-spacing:0.057600px;}
.ls41{letter-spacing:0.058716px;}
.ls35{letter-spacing:0.059292px;}
.ls26{letter-spacing:0.062496px;}
.ls30{letter-spacing:0.065880px;}
.ls2f{letter-spacing:0.066132px;}
.ls28{letter-spacing:0.067104px;}
.ls3{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.072468px;}
.ls3b{letter-spacing:0.075492px;}
.ls34{letter-spacing:0.079056px;}
.ls25{letter-spacing:0.079200px;}
.ls33{letter-spacing:0.085644px;}
.ls2b{letter-spacing:0.085932px;}
.ls10{letter-spacing:0.086400px;}
.ls32{letter-spacing:0.092232px;}
.ls56{letter-spacing:0.096192px;}
.ls0{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.114228px;}
.ls2a{letter-spacing:0.117180px;}
.ls4a{letter-spacing:0.120240px;}
.ls31{letter-spacing:0.131760px;}
.lsd{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.151200px;}
.ls5{letter-spacing:0.216000px;}
.ls46{letter-spacing:63.907560px;}
.ls44{letter-spacing:185.694228px;}
.ls43{letter-spacing:192.398400px;}
.lse{letter-spacing:235.238400px;}
.lsb{letter-spacing:950.184000px;}
.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;}
}
.wsd6{word-spacing:-60.120000px;}
.wse3{word-spacing:-23.327028px;}
.wsc{word-spacing:-20.167200px;}
.wsb{word-spacing:-20.160000px;}
.ws7f{word-spacing:-20.008800px;}
.wse{word-spacing:-19.936800px;}
.ws29{word-spacing:-19.893600px;}
.ws5b{word-spacing:-18.387108px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws5c{word-spacing:-16.779492px;}
.wsd5{word-spacing:-13.827600px;}
.wse4{word-spacing:-13.755456px;}
.wsd{word-spacing:-4.536000px;}
.wsa{word-spacing:-1.620000px;}
.ws35{word-spacing:-0.523404px;}
.ws10{word-spacing:-0.468720px;}
.ws8{word-spacing:-0.432000px;}
.wsc3{word-spacing:-0.429660px;}
.wse5{word-spacing:-0.420840px;}
.wse9{word-spacing:-0.384768px;}
.ws11{word-spacing:-0.351540px;}
.ws14{word-spacing:-0.335916px;}
.ws12{word-spacing:-0.273420px;}
.ws8f{word-spacing:-0.242172px;}
.ws13{word-spacing:-0.218736px;}
.ws6{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.203112px;}
.ws2b{word-spacing:-0.148428px;}
.ws8a{word-spacing:-0.132804px;}
.ws7{word-spacing:-0.108000px;}
.ws3{word-spacing:-0.072000px;}
.wsba{word-spacing:-0.062496px;}
.wsfa{word-spacing:-0.054108px;}
.wse8{word-spacing:-0.042084px;}
.ws71{word-spacing:-0.032940px;}
.ws73{word-spacing:-0.026352px;}
.ws8e{word-spacing:-0.023436px;}
.ws74{word-spacing:-0.019764px;}
.wsdf{word-spacing:-0.018036px;}
.ws6f{word-spacing:-0.013176px;}
.wsee{word-spacing:-0.012024px;}
.ws6d{word-spacing:-0.006588px;}
.wse1{word-spacing:-0.006012px;}
.ws2{word-spacing:0.000000px;}
.wsdc{word-spacing:0.006012px;}
.ws6c{word-spacing:0.006588px;}
.wsd8{word-spacing:0.012024px;}
.ws70{word-spacing:0.013176px;}
.ws25{word-spacing:0.014400px;}
.ws88{word-spacing:0.016776px;}
.wsd9{word-spacing:0.018036px;}
.wsdd{word-spacing:0.024048px;}
.ws2a{word-spacing:0.025164px;}
.wsda{word-spacing:0.030060px;}
.wsde{word-spacing:0.036072px;}
.wsdb{word-spacing:0.042084px;}
.wsd4{word-spacing:0.043200px;}
.wsea{word-spacing:0.048096px;}
.wse6{word-spacing:0.054108px;}
.wsf3{word-spacing:0.060120px;}
.wsca{word-spacing:0.064800px;}
.ws21{word-spacing:0.115200px;}
.ws9b{word-spacing:0.129600px;}
.ws4{word-spacing:0.144000px;}
.ws61{word-spacing:0.158400px;}
.ws2e{word-spacing:0.165600px;}
.ws22{word-spacing:0.172800px;}
.ws1a{word-spacing:0.180000px;}
.ws28{word-spacing:0.187200px;}
.ws1c{word-spacing:0.194400px;}
.ws38{word-spacing:0.201600px;}
.ws94{word-spacing:0.208800px;}
.ws5{word-spacing:0.216000px;}
.ws1b{word-spacing:0.223200px;}
.ws24{word-spacing:0.237600px;}
.wsb1{word-spacing:0.280800px;}
.ws89{word-spacing:0.285192px;}
.wsa4{word-spacing:0.309600px;}
.ws9{word-spacing:0.324000px;}
.wsc9{word-spacing:0.352800px;}
.wsf5{word-spacing:0.378756px;}
.wsbd{word-spacing:0.532800px;}
.ws6b{word-spacing:0.554400px;}
.wsa9{word-spacing:0.856800px;}
.wsa8{word-spacing:1.029600px;}
.ws3b{word-spacing:1.238400px;}
.wsae{word-spacing:1.447200px;}
.ws17{word-spacing:1.605600px;}
.ws16{word-spacing:1.728000px;}
.wsad{word-spacing:1.972800px;}
.ws32{word-spacing:1.987200px;}
.ws15{word-spacing:2.001600px;}
.wsac{word-spacing:2.023200px;}
.ws31{word-spacing:2.088000px;}
.wsc1{word-spacing:2.340000px;}
.ws2c{word-spacing:2.404800px;}
.wsc2{word-spacing:2.419200px;}
.ws2d{word-spacing:2.484000px;}
.wsa6{word-spacing:3.787200px;}
.ws4d{word-spacing:3.794400px;}
.wsa7{word-spacing:3.808800px;}
.ws4c{word-spacing:3.895200px;}
.ws18{word-spacing:4.024800px;}
.ws19{word-spacing:4.075200px;}
.ws41{word-spacing:4.327200px;}
.ws40{word-spacing:4.492800px;}
.wsab{word-spacing:4.507200px;}
.wsaa{word-spacing:4.543200px;}
.wsb0{word-spacing:4.860000px;}
.wsaf{word-spacing:4.896000px;}
.ws30{word-spacing:4.924800px;}
.ws2f{word-spacing:4.946400px;}
.wsc0{word-spacing:5.198400px;}
.wsbe{word-spacing:5.220000px;}
.wsbf{word-spacing:5.385600px;}
.ws34{word-spacing:6.559200px;}
.ws33{word-spacing:6.624000px;}
.wsbc{word-spacing:6.645600px;}
.wsbb{word-spacing:6.717600px;}
.ws99{word-spacing:7.012800px;}
.ws9a{word-spacing:7.027200px;}
.ws37{word-spacing:7.401600px;}
.ws36{word-spacing:7.495200px;}
.ws9f{word-spacing:7.718400px;}
.wsa0{word-spacing:7.761600px;}
.wsa1{word-spacing:7.956000px;}
.ws45{word-spacing:8.467200px;}
.ws44{word-spacing:8.488800px;}
.ws84{word-spacing:9.511200px;}
.ws82{word-spacing:9.525600px;}
.ws78{word-spacing:9.540000px;}
.ws77{word-spacing:9.561600px;}
.ws83{word-spacing:9.568800px;}
.ws50{word-spacing:9.878400px;}
.ws51{word-spacing:9.900000px;}
.ws75{word-spacing:9.921600px;}
.ws76{word-spacing:10.022400px;}
.wsb6{word-spacing:10.634400px;}
.wsb7{word-spacing:10.641600px;}
.ws6a{word-spacing:10.972800px;}
.ws69{word-spacing:11.095200px;}
.ws53{word-spacing:11.678400px;}
.ws97{word-spacing:11.714400px;}
.ws96{word-spacing:11.743200px;}
.ws52{word-spacing:11.880000px;}
.ws27{word-spacing:12.024000px;}
.ws1e{word-spacing:12.074400px;}
.ws1f{word-spacing:12.088800px;}
.ws98{word-spacing:12.096000px;}
.ws20{word-spacing:12.110400px;}
.ws1d{word-spacing:12.117600px;}
.ws60{word-spacing:12.420000px;}
.ws5f{word-spacing:12.513600px;}
.ws7b{word-spacing:13.111200px;}
.ws7c{word-spacing:13.190400px;}
.wsa2{word-spacing:13.492800px;}
.wsa3{word-spacing:13.500000px;}
.wsd1{word-spacing:14.508000px;}
.wsd0{word-spacing:14.580000px;}
.ws68{word-spacing:15.645600px;}
.ws67{word-spacing:15.681600px;}
.ws3d{word-spacing:16.761600px;}
.ws3c{word-spacing:16.790400px;}
.ws23{word-spacing:17.712000px;}
.ws7a{word-spacing:17.805600px;}
.ws79{word-spacing:17.834400px;}
.ws3f{word-spacing:18.511200px;}
.ws3e{word-spacing:18.547200px;}
.ws5e{word-spacing:18.554400px;}
.ws46{word-spacing:18.561600px;}
.wsc7{word-spacing:21.333600px;}
.wsc8{word-spacing:21.412800px;}
.wsc6{word-spacing:21.420000px;}
.ws4f{word-spacing:21.744000px;}
.ws4e{word-spacing:21.772800px;}
.ws64{word-spacing:22.478400px;}
.ws65{word-spacing:22.492800px;}
.ws66{word-spacing:22.852800px;}
.ws81{word-spacing:23.536800px;}
.ws80{word-spacing:23.572800px;}
.ws86{word-spacing:23.918400px;}
.ws87{word-spacing:23.954400px;}
.ws85{word-spacing:24.076800px;}
.ws9e{word-spacing:25.372800px;}
.ws9d{word-spacing:25.488000px;}
.wsa5{word-spacing:25.761600px;}
.ws62{word-spacing:26.452800px;}
.ws63{word-spacing:26.510400px;}
.ws91{word-spacing:27.129600px;}
.ws90{word-spacing:27.158400px;}
.wsd2{word-spacing:28.771200px;}
.wsd3{word-spacing:29.066400px;}
.wsb4{word-spacing:30.031200px;}
.wsb5{word-spacing:30.081600px;}
.wsb3{word-spacing:30.513600px;}
.wsb2{word-spacing:30.528000px;}
.ws49{word-spacing:31.104000px;}
.ws47{word-spacing:31.168800px;}
.ws48{word-spacing:31.298400px;}
.ws4a{word-spacing:32.234400px;}
.ws4b{word-spacing:32.400000px;}
.ws8b{word-spacing:34.394400px;}
.wsb8{word-spacing:37.123200px;}
.wsb9{word-spacing:37.173600px;}
.ws26{word-spacing:39.016800px;}
.ws7e{word-spacing:42.660000px;}
.ws7d{word-spacing:42.688800px;}
.ws9c{word-spacing:44.481600px;}
.wscb{word-spacing:48.765600px;}
.wscc{word-spacing:48.780000px;}
.wscf{word-spacing:49.809600px;}
.wscd{word-spacing:49.860000px;}
.wsce{word-spacing:50.047200px;}
.ws5d{word-spacing:50.551200px;}
.wsd7{word-spacing:51.071940px;}
.ws92{word-spacing:51.184800px;}
.ws93{word-spacing:51.300000px;}
.ws56{word-spacing:53.546400px;}
.ws57{word-spacing:53.582400px;}
.ws42{word-spacing:58.420800px;}
.ws43{word-spacing:58.507200px;}
.ws72{word-spacing:59.384232px;}
.wsc4{word-spacing:62.460000px;}
.ws54{word-spacing:71.820000px;}
.ws55{word-spacing:71.964000px;}
.ws3a{word-spacing:74.887200px;}
.ws8c{word-spacing:75.052800px;}
.ws39{word-spacing:75.067200px;}
.ws8d{word-spacing:75.088800px;}
.ws5a{word-spacing:81.885600px;}
.ws58{word-spacing:82.252800px;}
.ws59{word-spacing:82.274400px;}
.wsc5{word-spacing:87.746400px;}
.wsf1{word-spacing:92.849328px;}
.wse0{word-spacing:114.137820px;}
.wsf0{word-spacing:120.155832px;}
.wsed{word-spacing:120.161844px;}
.wsef{word-spacing:120.203928px;}
.wsec{word-spacing:120.215952px;}
.wseb{word-spacing:120.221964px;}
.wse7{word-spacing:120.233988px;}
.wsf9{word-spacing:120.516552px;}
.wsf7{word-spacing:120.522564px;}
.wsf8{word-spacing:120.564648px;}
.wsf6{word-spacing:120.576672px;}
.wsf4{word-spacing:120.582684px;}
.wsf2{word-spacing:122.037588px;}
.ws95{word-spacing:522.871200px;}
.wse2{word-spacing:1073.911536px;}
.ws6e{word-spacing:1516.695948px;}
._18{margin-left:-1303.560552px;}
._1f{margin-left:-522.684000px;}
._2f{margin-left:-93.606768px;}
._1a{margin-left:-59.423760px;}
._2d{margin-left:-13.707360px;}
._7{margin-left:-11.880000px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.268800px;}
._9{width:4.564800px;}
._f{width:6.300000px;}
._6{width:8.539200px;}
._b{width:10.684800px;}
._3{width:11.880000px;}
._22{width:13.680000px;}
._20{width:18.000000px;}
._21{width:25.560000px;}
._12{width:30.240000px;}
._13{width:32.263200px;}
._14{width:36.000000px;}
._15{width:39.960000px;}
._11{width:46.440000px;}
._8{width:51.120000px;}
._1d{width:52.560000px;}
._10{width:55.008000px;}
._d{width:59.040000px;}
._4{width:63.000000px;}
._23{width:65.664000px;}
._5{width:71.280000px;}
._2{width:79.200000px;}
._e{width:83.160000px;}
._2a{width:85.755228px;}
._31{width:93.239364px;}
._27{width:114.154848px;}
._2e{width:120.239556px;}
._30{width:122.043156px;}
._24{width:192.240000px;}
._19{width:215.642484px;}
._29{width:302.746308px;}
._1c{width:323.636760px;}
._17{width:332.990268px;}
._c{width:362.851200px;}
._1e{width:522.705600px;}
._26{width:721.239672px;}
._25{width:945.726756px;}
._2c{width:969.846336px;}
._28{width:997.938144px;}
._2b{width:1112.040300px;}
._1b{width:1509.172452px;}
._16{width:1556.757576px;}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(13,27,67);}
.fc3{color:rgb(154,154,154);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.ydf{bottom:70.590300px;}
.y1d{bottom:86.580000px;}
.y173{bottom:96.423450px;}
.y1c{bottom:106.920000px;}
.y6c{bottom:111.000450px;}
.y172{bottom:113.703600px;}
.ydd{bottom:117.210600px;}
.yba{bottom:120.000450px;}
.y1b{bottom:127.260000px;}
.y171{bottom:130.893300px;}
.y6b{bottom:131.970450px;}
.y135{bottom:136.560450px;}
.yb9{bottom:140.970450px;}
.y1a{bottom:147.600000px;}
.y170{bottom:148.083150px;}
.ydc{bottom:152.670450px;}
.y134{bottom:155.820450px;}
.y6a{bottom:161.940450px;}
.y16f{bottom:165.263880px;}
.y19{bottom:168.120000px;}
.y133{bottom:173.100450px;}
.y98{bottom:182.100450px;}
.y16e{bottom:182.548380px;}
.ydb{bottom:182.640450px;}
.y69{bottom:183.000450px;}
.y18{bottom:188.460000px;}
.y132{bottom:191.010600px;}
.y16d{bottom:199.742700px;}
.y97{bottom:203.070450px;}
.y68{bottom:203.970450px;}
.y131{bottom:208.290600px;}
.y17{bottom:208.800000px;}
.yda{bottom:212.610450px;}
.y16c{bottom:216.932550px;}
.y96{bottom:224.130450px;}
.y67{bottom:224.940450px;}
.y130{bottom:226.196580px;}
.y16{bottom:229.140000px;}
.y16b{bottom:234.122400px;}
.yd9{bottom:242.670450px;}
.y12f{bottom:243.390900px;}
.y66{bottom:246.000450px;}
.y15{bottom:249.660000px;}
.y16a{bottom:251.402400px;}
.y95{bottom:254.289540px;}
.yb8{bottom:255.091890px;}
.y12e{bottom:260.666280px;}
.y65{bottom:266.970450px;}
.y169{bottom:268.587630px;}
.y14{bottom:270.000000px;}
.yd8{bottom:272.640450px;}
.y94{bottom:276.690450px;}
.yb7{bottom:277.590450px;}
.y12d{bottom:277.860600px;}
.y168{bottom:285.781950px;}
.y13{bottom:290.340000px;}
.y12c{bottom:295.050450px;}
.y64{bottom:296.940450px;}
.yd7{bottom:302.610450px;}
.y167{bottom:302.962830px;}
.y12{bottom:310.860000px;}
.y12b{bottom:313.050600px;}
.y93{bottom:316.920450px;}
.y43{bottom:317.730450px;}
.yb6{bottom:317.820450px;}
.y63{bottom:318.000450px;}
.y166{bottom:320.247330px;}
.y12a{bottom:330.240450px;}
.y11{bottom:331.200000px;}
.yd6{bottom:332.670450px;}
.y165{bottom:337.441650px;}
.y92{bottom:337.980450px;}
.y42{bottom:338.700450px;}
.yb5{bottom:338.790450px;}
.y62{bottom:347.970450px;}
.y129{bottom:348.150450px;}
.y10{bottom:351.540000px;}
.y164{bottom:354.626880px;}
.y91{bottom:358.950450px;}
.yb4{bottom:359.850450px;}
.yd5{bottom:362.640450px;}
.y128{bottom:365.430450px;}
.y41{bottom:368.760450px;}
.y61{bottom:368.940450px;}
.y163{bottom:371.821200px;}
.yf{bottom:371.880000px;}
.y90{bottom:379.920450px;}
.yb3{bottom:380.820450px;}
.y127{bottom:383.340600px;}
.y162{bottom:389.087640px;}
.y40{bottom:389.730450px;}
.y60{bottom:390.000450px;}
.ye{bottom:391.500000px;}
.yd4{bottom:392.610450px;}
.y126{bottom:400.620600px;}
.yb2{bottom:401.790450px;}
.y161{bottom:406.281960px;}
.y3f{bottom:410.700450px;}
.y5f{bottom:410.970450px;}
.yd{bottom:412.560000px;}
.y125{bottom:418.530600px;}
.yd3{bottom:422.670450px;}
.y160{bottom:423.476280px;}
.y8f{bottom:425.460300px;}
.y3e{bottom:431.760450px;}
.yb1{bottom:431.850450px;}
.y124{bottom:435.720450px;}
.y15f{bottom:440.670600px;}
.y5e{bottom:440.940450px;}
.yc{bottom:441.540000px;}
.yd2{bottom:443.640450px;}
.y8e{bottom:450.390900px;}
.yb0{bottom:452.820450px;}
.y123{bottom:453.721200px;}
.y15e{bottom:457.950600px;}
.y3d{bottom:461.730450px;}
.y5d{bottom:462.000450px;}
.yd1{bottom:464.610450px;}
.y122{bottom:470.911050px;}
.yaf{bottom:473.790450px;}
.y15d{bottom:475.140450px;}
.y8d{bottom:475.410450px;}
.yb{bottom:479.340000px;}
.y3c{bottom:482.700450px;}
.y5c{bottom:482.970450px;}
.yd0{bottom:485.670450px;}
.y121{bottom:488.100900px;}
.y15c{bottom:493.054500px;}
.y8c{bottom:499.530690px;}
.y3b{bottom:503.760450px;}
.yae{bottom:503.850450px;}
.y120{bottom:505.380750px;}
.y15b{bottom:510.334500px;}
.y5b{bottom:512.940450px;}
.ycf{bottom:515.640450px;}
.ya{bottom:517.140000px;}
.y8b{bottom:518.520600px;}
.y11f{bottom:522.570600px;}
.y3a{bottom:524.730450px;}
.yad{bottom:524.820450px;}
.y15a{bottom:527.524350px;}
.y5a{bottom:534.000450px;}
.yce{bottom:536.610450px;}
.y11e{bottom:539.760450px;}
.y8a{bottom:542.730450px;}
.y159{bottom:544.714050px;}
.y39{bottom:545.700450px;}
.yac{bottom:554.790450px;}
.y9{bottom:554.940000px;}
.y59{bottom:554.970450px;}
.y11d{bottom:557.762700px;}
.ycd{bottom:566.670450px;}
.y38{bottom:566.760450px;}
.y11c{bottom:574.952550px;}
.yab{bottom:575.850450px;}
.y58{bottom:575.940450px;}
.y158{bottom:579.183900px;}
.y84{bottom:580.531200px;}
.ycc{bottom:587.640450px;}
.y37{bottom:587.730450px;}
.y11b{bottom:592.137930px;}
.y8{bottom:592.740000px;}
.y157{bottom:596.369130px;}
.yaa{bottom:596.820450px;}
.y57{bottom:597.000450px;}
.y83{bottom:599.521200px;}
.y193{bottom:601.140450px;}
.ycb{bottom:608.610450px;}
.y11a{bottom:609.332250px;}
.y156{bottom:613.563450px;}
.y36{bottom:617.700450px;}
.y82{bottom:618.511050px;}
.y192{bottom:620.400600px;}
.yf8{bottom:622.470450px;}
.y7{bottom:626.580000px;}
.ya9{bottom:626.790450px;}
.y56{bottom:626.970450px;}
.y155{bottom:630.748800px;}
.y81{bottom:637.410450px;}
.y191{bottom:637.590450px;}
.y35{bottom:638.760450px;}
.yca{bottom:638.859540px;}
.y119{bottom:643.801950px;}
.ya8{bottom:647.850450px;}
.y55{bottom:647.940450px;}
.y154{bottom:648.033300px;}
.y88{bottom:650.461200px;}
.y6{bottom:651.780000px;}
.yf7{bottom:652.440450px;}
.y190{bottom:655.500450px;}
.y80{bottom:656.400300px;}
.y34{bottom:659.730450px;}
.y118{bottom:660.987330px;}
.yc9{bottom:661.260450px;}
.y153{bottom:665.218680px;}
.ya7{bottom:668.820450px;}
.y18f{bottom:672.780450px;}
.y7f{bottom:675.390300px;}
.y87{bottom:675.391950px;}
.y5{bottom:676.980000px;}
.y54{bottom:678.091890px;}
.y117{bottom:678.181650px;}
.y33{bottom:680.700450px;}
.y152{bottom:682.413000px;}
.yf6{bottom:688.350450px;}
.y18e{bottom:690.690900px;}
.y116{bottom:695.457030px;}
.ya6{bottom:698.979540px;}
.y151{bottom:699.598200px;}
.y7e{bottom:700.404870px;}
.y89{bottom:700.409850px;}
.y86{bottom:700.411500px;}
.y53{bottom:700.590450px;}
.y32{bottom:701.760450px;}
.yc8{bottom:702.030450px;}
.y4{bottom:702.180000px;}
.yf5{bottom:705.630450px;}
.y18d{bottom:707.876100px;}
.y115{bottom:712.651350px;}
.y150{bottom:716.882700px;}
.ya5{bottom:721.380450px;}
.y31{bottom:722.730450px;}
.y18c{bottom:725.160600px;}
.y7d{bottom:725.340450px;}
.y85{bottom:725.342100px;}
.y3{bottom:727.380000px;}
.y114{bottom:729.836730px;}
.y14f{bottom:734.063610px;}
.yc7{bottom:735.150450px;}
.y52{bottom:740.820450px;}
.yf3{bottom:741.540450px;}
.y18b{bottom:742.350450px;}
.y30{bottom:743.700450px;}
.y113{bottom:747.031050px;}
.y7c{bottom:749.460540px;}
.y14e{bottom:751.257930px;}
.y2{bottom:756.540000px;}
.yf2{bottom:758.730450px;}
.y18a{bottom:760.260600px;}
.ya4{bottom:761.610450px;}
.y51{bottom:761.790450px;}
.y112{bottom:764.306580px;}
.y2f{bottom:764.760450px;}
.yc6{bottom:767.820450px;}
.y7b{bottom:768.450450px;}
.y14d{bottom:768.452250px;}
.yf1{bottom:776.010450px;}
.y189{bottom:777.540600px;}
.y111{bottom:781.500900px;}
.ya3{bottom:782.670450px;}
.y50{bottom:782.850450px;}
.y14c{bottom:785.727630px;}
.y2e{bottom:785.730450px;}
.y7a{bottom:792.660450px;}
.yf4{bottom:793.200000px;}
.yf0{bottom:793.200450px;}
.y188{bottom:795.446100px;}
.yc5{bottom:797.790450px;}
.y110{bottom:798.690600px;}
.y14b{bottom:802.921950px;}
.ya2{bottom:803.640450px;}
.y2d{bottom:806.700450px;}
.y187{bottom:812.730600px;}
.y4f{bottom:813.009540px;}
.y10f{bottom:815.880450px;}
.y14a{bottom:820.111800px;}
.yc4{bottom:827.760450px;}
.yef{bottom:829.196130px;}
.y186{bottom:829.920450px;}
.y10e{bottom:833.160450px;}
.ya1{bottom:833.799540px;}
.y4e{bottom:835.410450px;}
.y2c{bottom:836.760450px;}
.y149{bottom:837.301650px;}
.y79{bottom:839.820450px;}
.yee{bottom:846.390450px;}
.y185{bottom:847.830600px;}
.yc3{bottom:848.820450px;}
.y109{bottom:851.071800px;}
.y148{bottom:854.577030px;}
.ya0{bottom:856.200450px;}
.y78{bottom:860.790450px;}
.y184{bottom:865.110600px;}
.y108{bottom:868.261650px;}
.yc2{bottom:869.790450px;}
.y147{bottom:871.771350px;}
.yeb{bottom:873.300450px;}
.y4d{bottom:875.640450px;}
.y183{bottom:883.020600px;}
.y107{bottom:885.541650px;}
.y146{bottom:888.961200px;}
.yea{bottom:890.580450px;}
.y77{bottom:890.760450px;}
.y4c{bottom:896.610450px;}
.y9f{bottom:897.060450px;}
.y2b{bottom:898.140450px;}
.y182{bottom:900.210450px;}
.y106{bottom:902.731350px;}
.y145{bottom:906.151050px;}
.ye9{bottom:907.770450px;}
.y76{bottom:911.820450px;}
.y181{bottom:918.212400px;}
.y105{bottom:919.921200px;}
.y144{bottom:923.340900px;}
.ye8{bottom:924.960450px;}
.y4b{bottom:926.859540px;}
.y2a{bottom:928.110450px;}
.y9e{bottom:930.180450px;}
.y75{bottom:932.790450px;}
.y180{bottom:935.402250px;}
.y104{bottom:937.097460px;}
.y143{bottom:940.620900px;}
.yc1{bottom:941.979540px;}
.ye7{bottom:942.150450px;}
.y4a{bottom:949.260450px;}
.y17f{bottom:952.591950px;}
.y103{bottom:954.381960px;}
.y10d{bottom:954.392550px;}
.y142{bottom:957.810600px;}
.y29{bottom:958.170450px;}
.ye6{bottom:959.430450px;}
.y74{bottom:962.760450px;}
.yc0{bottom:964.380450px;}
.y17e{bottom:969.867480px;}
.y102{bottom:971.576280px;}
.y10c{bottom:971.582400px;}
.y141{bottom:975.000450px;}
.y28{bottom:978.870450px;}
.y73{bottom:983.820450px;}
.ye5{bottom:985.620450px;}
.y17d{bottom:987.061800px;}
.y101{bottom:988.770600px;}
.y10b{bottom:988.772100px;}
.y49{bottom:989.490450px;}
.y9d{bottom:992.820450px;}
.y13f{bottom:993.000900px;}
.y27{bottom:999.570450px;}
.yec{bottom:1002.810450px;}
.y17c{bottom:1004.251650px;}
.ybf{bottom:1004.610450px;}
.y100{bottom:1005.960450px;}
.y10a{bottom:1005.961950px;}
.y140{bottom:1010.186130px;}
.y13e{bottom:1010.190600px;}
.y48{bottom:1010.460450px;}
.ye4{bottom:1011.810450px;}
.y72{bottom:1013.979540px;}
.y26{bottom:1020.270450px;}
.y17b{bottom:1021.441350px;}
.y9c{bottom:1022.790450px;}
.yfe{bottom:1023.960750px;}
.ybe{bottom:1025.670450px;}
.y13d{bottom:1027.380450px;}
.yed{bottom:1029.000000px;}
.ye3{bottom:1029.000450px;}
.y71{bottom:1036.380450px;}
.y17a{bottom:1038.721350px;}
.y47{bottom:1040.709540px;}
.y25{bottom:1040.970450px;}
.yff{bottom:1041.146130px;}
.yfd{bottom:1041.150600px;}
.y9b{bottom:1043.760450px;}
.y13c{bottom:1044.660450px;}
.ybd{bottom:1046.640450px;}
.y179{bottom:1055.911200px;}
.yfc{bottom:1058.340450px;}
.y139{bottom:1062.570600px;}
.y46{bottom:1063.110450px;}
.y9a{bottom:1064.820450px;}
.ye2{bottom:1065.000450px;}
.y13b{bottom:1067.070600px;}
.ybc{bottom:1067.610450px;}
.y24{bottom:1071.118350px;}
.y178{bottom:1073.096580px;}
.y70{bottom:1076.610450px;}
.y138{bottom:1079.760450px;}
.yfb{bottom:1080.840450px;}
.y13a{bottom:1084.255950px;}
.y99{bottom:1085.790450px;}
.ybb{bottom:1088.670450px;}
.y177{bottom:1090.290900px;}
.y23{bottom:1093.548630px;}
.y6f{bottom:1097.670450px;}
.ye1{bottom:1101.270450px;}
.y137{bottom:1101.540450px;}
.y45{bottom:1103.880450px;}
.y176{bottom:1107.570900px;}
.y22{bottom:1115.949540px;}
.yfa{bottom:1117.200450px;}
.y6e{bottom:1118.640450px;}
.y136{bottom:1123.950450px;}
.y175{bottom:1124.760600px;}
.ye0{bottom:1132.680450px;}
.y44{bottom:1137.000450px;}
.yf9{bottom:1137.090450px;}
.y21{bottom:1138.350450px;}
.y6d{bottom:1139.610450px;}
.y174{bottom:1141.950450px;}
.yde{bottom:1193.610450px;}
.y20{bottom:1195.140450px;}
.y1{bottom:1247.400000px;}
.h5{height:50.832000px;}
.h7{height:59.722560px;}
.h8{height:62.703281px;}
.h10{height:64.148040px;}
.h11{height:65.170080px;}
.hc{height:68.710781px;}
.h14{height:70.293960px;}
.h3{height:70.628906px;}
.ha{height:75.093750px;}
.h4{height:76.248000px;}
.h9{height:81.476719px;}
.he{height:87.447859px;}
.hb{height:87.484219px;}
.hf{height:100.250156px;}
.h6{height:115.992000px;}
.h12{height:132.925320px;}
.h13{height:133.268040px;}
.hd{height:144.670421px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x9{left:106.380000px;}
.x5{left:125.827650px;}
.x3e{left:146.609550px;}
.x11{left:148.950000px;}
.x37{left:152.009700px;}
.x8{left:159.480000px;}
.x38{left:173.609400px;}
.x12{left:175.680000px;}
.x1e{left:177.848010px;}
.x6{left:181.097550px;}
.x4{left:184.320000px;}
.x3f{left:200.603280px;}
.x26{left:202.500000px;}
.x29{left:238.050450px;}
.x1c{left:246.420000px;}
.x40{left:251.099550px;}
.x2b{left:252.450750px;}
.xd{left:263.330820px;}
.x2a{left:266.131050px;}
.x16{left:271.618500px;}
.x23{left:288.817470px;}
.x15{left:292.506840px;}
.x17{left:298.617900px;}
.x1d{left:309.421620px;}
.x10{left:326.705670px;}
.x22{left:331.559700px;}
.x2c{left:344.970900px;}
.x20{left:346.235670px;}
.x7{left:360.900450px;}
.x2e{left:362.791950px;}
.x2d{left:366.211350px;}
.x19{left:374.397930px;}
.xf{left:375.472080px;}
.xe{left:378.714060px;}
.xb{left:384.659250px;}
.x1a{left:386.369820px;}
.x1f{left:388.537650px;}
.x13{left:412.383780px;}
.x21{left:416.700000px;}
.x1b{left:419.670000px;}
.xa{left:422.550000px;}
.x3{left:423.810000px;}
.xc{left:427.500000px;}
.x31{left:428.581350px;}
.x27{left:429.930000px;}
.x30{left:433.166940px;}
.x2f{left:435.601800px;}
.x25{left:446.490000px;}
.x24{left:531.180000px;}
.x34{left:546.840300px;}
.x32{left:549.270750px;}
.x3a{left:555.118800px;}
.x39{left:558.178950px;}
.x33{left:562.948050px;}
.x18{left:628.378500px;}
.x3b{left:686.159400px;}
.x36{left:697.140300px;}
.x28{left:701.819700px;}
.x35{left:711.089700px;}
.x3c{left:713.159250px;}
.x3d{left:716.578650px;}
.x14{left:728.367960px;}
@media print{
.v2{vertical-align:-78.719467pt;}
.v5{vertical-align:-61.119467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v4{vertical-align:61.135360pt;}
.v3{vertical-align:67.519680pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.108800pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.085504pt;}
.ls60{letter-spacing:-0.080160pt;}
.ls1e{letter-spacing:-0.076800pt;}
.ls5c{letter-spacing:-0.074816pt;}
.ls1d{letter-spacing:-0.070400pt;}
.ls5e{letter-spacing:-0.069472pt;}
.ls3e{letter-spacing:-0.069440pt;}
.ls4c{letter-spacing:-0.064128pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.062496pt;}
.ls4f{letter-spacing:-0.058784pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls4b{letter-spacing:-0.053440pt;}
.ls38{letter-spacing:-0.051200pt;}
.ls19{letter-spacing:-0.048608pt;}
.ls4e{letter-spacing:-0.048096pt;}
.ls1f{letter-spacing:-0.044800pt;}
.ls48{letter-spacing:-0.042752pt;}
.ls16{letter-spacing:-0.038400pt;}
.ls49{letter-spacing:-0.037408pt;}
.ls3f{letter-spacing:-0.034720pt;}
.ls4d{letter-spacing:-0.032064pt;}
.ls1b{letter-spacing:-0.032000pt;}
.ls42{letter-spacing:-0.027776pt;}
.ls51{letter-spacing:-0.026720pt;}
.ls22{letter-spacing:-0.025600pt;}
.ls47{letter-spacing:-0.022368pt;}
.ls52{letter-spacing:-0.021376pt;}
.ls15{letter-spacing:-0.019200pt;}
.ls37{letter-spacing:-0.017568pt;}
.ls5b{letter-spacing:-0.016032pt;}
.ls3c{letter-spacing:-0.014912pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls50{letter-spacing:-0.010688pt;}
.ls3d{letter-spacing:-0.007456pt;}
.ls14{letter-spacing:-0.006944pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls5d{letter-spacing:-0.005344pt;}
.ls1{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.005344pt;}
.ls1c{letter-spacing:0.006400pt;}
.ls9{letter-spacing:0.006944pt;}
.ls53{letter-spacing:0.007456pt;}
.ls58{letter-spacing:0.010688pt;}
.ls12{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.013888pt;}
.ls45{letter-spacing:0.016032pt;}
.ls11{letter-spacing:0.019200pt;}
.ls61{letter-spacing:0.021376pt;}
.ls40{letter-spacing:0.025600pt;}
.ls55{letter-spacing:0.026720pt;}
.ls8{letter-spacing:0.027776pt;}
.ls3a{letter-spacing:0.032000pt;}
.ls57{letter-spacing:0.032064pt;}
.ls24{letter-spacing:0.034720pt;}
.ls36{letter-spacing:0.035136pt;}
.lsf{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.040992pt;}
.ls23{letter-spacing:0.041664pt;}
.ls54{letter-spacing:0.042752pt;}
.ls29{letter-spacing:0.044736pt;}
.ls2c{letter-spacing:0.046848pt;}
.ls5a{letter-spacing:0.048096pt;}
.ls27{letter-spacing:0.051200pt;}
.ls41{letter-spacing:0.052192pt;}
.ls35{letter-spacing:0.052704pt;}
.ls26{letter-spacing:0.055552pt;}
.ls30{letter-spacing:0.058560pt;}
.ls2f{letter-spacing:0.058784pt;}
.ls28{letter-spacing:0.059648pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.064416pt;}
.ls3b{letter-spacing:0.067104pt;}
.ls34{letter-spacing:0.070272pt;}
.ls25{letter-spacing:0.070400pt;}
.ls33{letter-spacing:0.076128pt;}
.ls2b{letter-spacing:0.076384pt;}
.ls10{letter-spacing:0.076800pt;}
.ls32{letter-spacing:0.081984pt;}
.ls56{letter-spacing:0.085504pt;}
.ls0{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.101536pt;}
.ls2a{letter-spacing:0.104160pt;}
.ls4a{letter-spacing:0.106880pt;}
.ls31{letter-spacing:0.117120pt;}
.lsd{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.134400pt;}
.ls5{letter-spacing:0.192000pt;}
.ls46{letter-spacing:56.806720pt;}
.ls44{letter-spacing:165.061536pt;}
.ls43{letter-spacing:171.020800pt;}
.lse{letter-spacing:209.100800pt;}
.lsb{letter-spacing:844.608000pt;}
.wsd6{word-spacing:-53.440000pt;}
.wse3{word-spacing:-20.735136pt;}
.wsc{word-spacing:-17.926400pt;}
.wsb{word-spacing:-17.920000pt;}
.ws7f{word-spacing:-17.785600pt;}
.wse{word-spacing:-17.721600pt;}
.ws29{word-spacing:-17.683200pt;}
.ws5b{word-spacing:-16.344096pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5c{word-spacing:-14.915104pt;}
.wsd5{word-spacing:-12.291200pt;}
.wse4{word-spacing:-12.227072pt;}
.wsd{word-spacing:-4.032000pt;}
.wsa{word-spacing:-1.440000pt;}
.ws35{word-spacing:-0.465248pt;}
.ws10{word-spacing:-0.416640pt;}
.ws8{word-spacing:-0.384000pt;}
.wsc3{word-spacing:-0.381920pt;}
.wse5{word-spacing:-0.374080pt;}
.wse9{word-spacing:-0.342016pt;}
.ws11{word-spacing:-0.312480pt;}
.ws14{word-spacing:-0.298592pt;}
.ws12{word-spacing:-0.243040pt;}
.ws8f{word-spacing:-0.215264pt;}
.ws13{word-spacing:-0.194432pt;}
.ws6{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.180544pt;}
.ws2b{word-spacing:-0.131936pt;}
.ws8a{word-spacing:-0.118048pt;}
.ws7{word-spacing:-0.096000pt;}
.ws3{word-spacing:-0.064000pt;}
.wsba{word-spacing:-0.055552pt;}
.wsfa{word-spacing:-0.048096pt;}
.wse8{word-spacing:-0.037408pt;}
.ws71{word-spacing:-0.029280pt;}
.ws73{word-spacing:-0.023424pt;}
.ws8e{word-spacing:-0.020832pt;}
.ws74{word-spacing:-0.017568pt;}
.wsdf{word-spacing:-0.016032pt;}
.ws6f{word-spacing:-0.011712pt;}
.wsee{word-spacing:-0.010688pt;}
.ws6d{word-spacing:-0.005856pt;}
.wse1{word-spacing:-0.005344pt;}
.ws2{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.005344pt;}
.ws6c{word-spacing:0.005856pt;}
.wsd8{word-spacing:0.010688pt;}
.ws70{word-spacing:0.011712pt;}
.ws25{word-spacing:0.012800pt;}
.ws88{word-spacing:0.014912pt;}
.wsd9{word-spacing:0.016032pt;}
.wsdd{word-spacing:0.021376pt;}
.ws2a{word-spacing:0.022368pt;}
.wsda{word-spacing:0.026720pt;}
.wsde{word-spacing:0.032064pt;}
.wsdb{word-spacing:0.037408pt;}
.wsd4{word-spacing:0.038400pt;}
.wsea{word-spacing:0.042752pt;}
.wse6{word-spacing:0.048096pt;}
.wsf3{word-spacing:0.053440pt;}
.wsca{word-spacing:0.057600pt;}
.ws21{word-spacing:0.102400pt;}
.ws9b{word-spacing:0.115200pt;}
.ws4{word-spacing:0.128000pt;}
.ws61{word-spacing:0.140800pt;}
.ws2e{word-spacing:0.147200pt;}
.ws22{word-spacing:0.153600pt;}
.ws1a{word-spacing:0.160000pt;}
.ws28{word-spacing:0.166400pt;}
.ws1c{word-spacing:0.172800pt;}
.ws38{word-spacing:0.179200pt;}
.ws94{word-spacing:0.185600pt;}
.ws5{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.198400pt;}
.ws24{word-spacing:0.211200pt;}
.wsb1{word-spacing:0.249600pt;}
.ws89{word-spacing:0.253504pt;}
.wsa4{word-spacing:0.275200pt;}
.ws9{word-spacing:0.288000pt;}
.wsc9{word-spacing:0.313600pt;}
.wsf5{word-spacing:0.336672pt;}
.wsbd{word-spacing:0.473600pt;}
.ws6b{word-spacing:0.492800pt;}
.wsa9{word-spacing:0.761600pt;}
.wsa8{word-spacing:0.915200pt;}
.ws3b{word-spacing:1.100800pt;}
.wsae{word-spacing:1.286400pt;}
.ws17{word-spacing:1.427200pt;}
.ws16{word-spacing:1.536000pt;}
.wsad{word-spacing:1.753600pt;}
.ws32{word-spacing:1.766400pt;}
.ws15{word-spacing:1.779200pt;}
.wsac{word-spacing:1.798400pt;}
.ws31{word-spacing:1.856000pt;}
.wsc1{word-spacing:2.080000pt;}
.ws2c{word-spacing:2.137600pt;}
.wsc2{word-spacing:2.150400pt;}
.ws2d{word-spacing:2.208000pt;}
.wsa6{word-spacing:3.366400pt;}
.ws4d{word-spacing:3.372800pt;}
.wsa7{word-spacing:3.385600pt;}
.ws4c{word-spacing:3.462400pt;}
.ws18{word-spacing:3.577600pt;}
.ws19{word-spacing:3.622400pt;}
.ws41{word-spacing:3.846400pt;}
.ws40{word-spacing:3.993600pt;}
.wsab{word-spacing:4.006400pt;}
.wsaa{word-spacing:4.038400pt;}
.wsb0{word-spacing:4.320000pt;}
.wsaf{word-spacing:4.352000pt;}
.ws30{word-spacing:4.377600pt;}
.ws2f{word-spacing:4.396800pt;}
.wsc0{word-spacing:4.620800pt;}
.wsbe{word-spacing:4.640000pt;}
.wsbf{word-spacing:4.787200pt;}
.ws34{word-spacing:5.830400pt;}
.ws33{word-spacing:5.888000pt;}
.wsbc{word-spacing:5.907200pt;}
.wsbb{word-spacing:5.971200pt;}
.ws99{word-spacing:6.233600pt;}
.ws9a{word-spacing:6.246400pt;}
.ws37{word-spacing:6.579200pt;}
.ws36{word-spacing:6.662400pt;}
.ws9f{word-spacing:6.860800pt;}
.wsa0{word-spacing:6.899200pt;}
.wsa1{word-spacing:7.072000pt;}
.ws45{word-spacing:7.526400pt;}
.ws44{word-spacing:7.545600pt;}
.ws84{word-spacing:8.454400pt;}
.ws82{word-spacing:8.467200pt;}
.ws78{word-spacing:8.480000pt;}
.ws77{word-spacing:8.499200pt;}
.ws83{word-spacing:8.505600pt;}
.ws50{word-spacing:8.780800pt;}
.ws51{word-spacing:8.800000pt;}
.ws75{word-spacing:8.819200pt;}
.ws76{word-spacing:8.908800pt;}
.wsb6{word-spacing:9.452800pt;}
.wsb7{word-spacing:9.459200pt;}
.ws6a{word-spacing:9.753600pt;}
.ws69{word-spacing:9.862400pt;}
.ws53{word-spacing:10.380800pt;}
.ws97{word-spacing:10.412800pt;}
.ws96{word-spacing:10.438400pt;}
.ws52{word-spacing:10.560000pt;}
.ws27{word-spacing:10.688000pt;}
.ws1e{word-spacing:10.732800pt;}
.ws1f{word-spacing:10.745600pt;}
.ws98{word-spacing:10.752000pt;}
.ws20{word-spacing:10.764800pt;}
.ws1d{word-spacing:10.771200pt;}
.ws60{word-spacing:11.040000pt;}
.ws5f{word-spacing:11.123200pt;}
.ws7b{word-spacing:11.654400pt;}
.ws7c{word-spacing:11.724800pt;}
.wsa2{word-spacing:11.993600pt;}
.wsa3{word-spacing:12.000000pt;}
.wsd1{word-spacing:12.896000pt;}
.wsd0{word-spacing:12.960000pt;}
.ws68{word-spacing:13.907200pt;}
.ws67{word-spacing:13.939200pt;}
.ws3d{word-spacing:14.899200pt;}
.ws3c{word-spacing:14.924800pt;}
.ws23{word-spacing:15.744000pt;}
.ws7a{word-spacing:15.827200pt;}
.ws79{word-spacing:15.852800pt;}
.ws3f{word-spacing:16.454400pt;}
.ws3e{word-spacing:16.486400pt;}
.ws5e{word-spacing:16.492800pt;}
.ws46{word-spacing:16.499200pt;}
.wsc7{word-spacing:18.963200pt;}
.wsc8{word-spacing:19.033600pt;}
.wsc6{word-spacing:19.040000pt;}
.ws4f{word-spacing:19.328000pt;}
.ws4e{word-spacing:19.353600pt;}
.ws64{word-spacing:19.980800pt;}
.ws65{word-spacing:19.993600pt;}
.ws66{word-spacing:20.313600pt;}
.ws81{word-spacing:20.921600pt;}
.ws80{word-spacing:20.953600pt;}
.ws86{word-spacing:21.260800pt;}
.ws87{word-spacing:21.292800pt;}
.ws85{word-spacing:21.401600pt;}
.ws9e{word-spacing:22.553600pt;}
.ws9d{word-spacing:22.656000pt;}
.wsa5{word-spacing:22.899200pt;}
.ws62{word-spacing:23.513600pt;}
.ws63{word-spacing:23.564800pt;}
.ws91{word-spacing:24.115200pt;}
.ws90{word-spacing:24.140800pt;}
.wsd2{word-spacing:25.574400pt;}
.wsd3{word-spacing:25.836800pt;}
.wsb4{word-spacing:26.694400pt;}
.wsb5{word-spacing:26.739200pt;}
.wsb3{word-spacing:27.123200pt;}
.wsb2{word-spacing:27.136000pt;}
.ws49{word-spacing:27.648000pt;}
.ws47{word-spacing:27.705600pt;}
.ws48{word-spacing:27.820800pt;}
.ws4a{word-spacing:28.652800pt;}
.ws4b{word-spacing:28.800000pt;}
.ws8b{word-spacing:30.572800pt;}
.wsb8{word-spacing:32.998400pt;}
.wsb9{word-spacing:33.043200pt;}
.ws26{word-spacing:34.681600pt;}
.ws7e{word-spacing:37.920000pt;}
.ws7d{word-spacing:37.945600pt;}
.ws9c{word-spacing:39.539200pt;}
.wscb{word-spacing:43.347200pt;}
.wscc{word-spacing:43.360000pt;}
.wscf{word-spacing:44.275200pt;}
.wscd{word-spacing:44.320000pt;}
.wsce{word-spacing:44.486400pt;}
.ws5d{word-spacing:44.934400pt;}
.wsd7{word-spacing:45.397280pt;}
.ws92{word-spacing:45.497600pt;}
.ws93{word-spacing:45.600000pt;}
.ws56{word-spacing:47.596800pt;}
.ws57{word-spacing:47.628800pt;}
.ws42{word-spacing:51.929600pt;}
.ws43{word-spacing:52.006400pt;}
.ws72{word-spacing:52.785984pt;}
.wsc4{word-spacing:55.520000pt;}
.ws54{word-spacing:63.840000pt;}
.ws55{word-spacing:63.968000pt;}
.ws3a{word-spacing:66.566400pt;}
.ws8c{word-spacing:66.713600pt;}
.ws39{word-spacing:66.726400pt;}
.ws8d{word-spacing:66.745600pt;}
.ws5a{word-spacing:72.787200pt;}
.ws58{word-spacing:73.113600pt;}
.ws59{word-spacing:73.132800pt;}
.wsc5{word-spacing:77.996800pt;}
.wsf1{word-spacing:82.532736pt;}
.wse0{word-spacing:101.455840pt;}
.wsf0{word-spacing:106.805184pt;}
.wsed{word-spacing:106.810528pt;}
.wsef{word-spacing:106.847936pt;}
.wsec{word-spacing:106.858624pt;}
.wseb{word-spacing:106.863968pt;}
.wse7{word-spacing:106.874656pt;}
.wsf9{word-spacing:107.125824pt;}
.wsf7{word-spacing:107.131168pt;}
.wsf8{word-spacing:107.168576pt;}
.wsf6{word-spacing:107.179264pt;}
.wsf4{word-spacing:107.184608pt;}
.wsf2{word-spacing:108.477856pt;}
.ws95{word-spacing:464.774400pt;}
.wse2{word-spacing:954.588032pt;}
.ws6e{word-spacing:1348.174176pt;}
._18{margin-left:-1158.720491pt;}
._1f{margin-left:-464.608000pt;}
._2f{margin-left:-83.206016pt;}
._1a{margin-left:-52.821120pt;}
._2d{margin-left:-12.184320pt;}
._7{margin-left:-10.560000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:2.905600pt;}
._9{width:4.057600pt;}
._f{width:5.600000pt;}
._6{width:7.590400pt;}
._b{width:9.497600pt;}
._3{width:10.560000pt;}
._22{width:12.160000pt;}
._20{width:16.000000pt;}
._21{width:22.720000pt;}
._12{width:26.880000pt;}
._13{width:28.678400pt;}
._14{width:32.000000pt;}
._15{width:35.520000pt;}
._11{width:41.280000pt;}
._8{width:45.440000pt;}
._1d{width:46.720000pt;}
._10{width:48.896000pt;}
._d{width:52.480000pt;}
._4{width:56.000000pt;}
._23{width:58.368000pt;}
._5{width:63.360000pt;}
._2{width:70.400000pt;}
._e{width:73.920000pt;}
._2a{width:76.226869pt;}
._31{width:82.879435pt;}
._27{width:101.470976pt;}
._2e{width:106.879605pt;}
._30{width:108.482805pt;}
._24{width:170.880000pt;}
._19{width:191.682208pt;}
._29{width:269.107829pt;}
._1c{width:287.677120pt;}
._17{width:295.991349pt;}
._c{width:322.534400pt;}
._1e{width:464.627200pt;}
._26{width:641.101931pt;}
._25{width:840.646005pt;}
._2c{width:862.085632pt;}
._28{width:887.056128pt;}
._2b{width:988.480267pt;}
._1b{width:1341.486624pt;}
._16{width:1383.784512pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.ydf{bottom:62.746933pt;}
.y1d{bottom:76.960000pt;}
.y173{bottom:85.709733pt;}
.y1c{bottom:95.040000pt;}
.y6c{bottom:98.667067pt;}
.y172{bottom:101.069867pt;}
.ydd{bottom:104.187200pt;}
.yba{bottom:106.667067pt;}
.y1b{bottom:113.120000pt;}
.y171{bottom:116.349600pt;}
.y6b{bottom:117.307067pt;}
.y135{bottom:121.387067pt;}
.yb9{bottom:125.307067pt;}
.y1a{bottom:131.200000pt;}
.y170{bottom:131.629467pt;}
.ydc{bottom:135.707067pt;}
.y134{bottom:138.507067pt;}
.y6a{bottom:143.947067pt;}
.y16f{bottom:146.901227pt;}
.y19{bottom:149.440000pt;}
.y133{bottom:153.867067pt;}
.y98{bottom:161.867067pt;}
.y16e{bottom:162.265227pt;}
.ydb{bottom:162.347067pt;}
.y69{bottom:162.667067pt;}
.y18{bottom:167.520000pt;}
.y132{bottom:169.787200pt;}
.y16d{bottom:177.549067pt;}
.y97{bottom:180.507067pt;}
.y68{bottom:181.307067pt;}
.y131{bottom:185.147200pt;}
.y17{bottom:185.600000pt;}
.yda{bottom:188.987067pt;}
.y16c{bottom:192.828933pt;}
.y96{bottom:199.227067pt;}
.y67{bottom:199.947067pt;}
.y130{bottom:201.063627pt;}
.y16{bottom:203.680000pt;}
.y16b{bottom:208.108800pt;}
.yd9{bottom:215.707067pt;}
.y12f{bottom:216.347467pt;}
.y66{bottom:218.667067pt;}
.y15{bottom:221.920000pt;}
.y16a{bottom:223.468800pt;}
.y95{bottom:226.035147pt;}
.yb8{bottom:226.748347pt;}
.y12e{bottom:231.703360pt;}
.y65{bottom:237.307067pt;}
.y169{bottom:238.744560pt;}
.y14{bottom:240.000000pt;}
.yd8{bottom:242.347067pt;}
.y94{bottom:245.947067pt;}
.yb7{bottom:246.747067pt;}
.y12d{bottom:246.987200pt;}
.y168{bottom:254.028400pt;}
.y13{bottom:258.080000pt;}
.y12c{bottom:262.267067pt;}
.y64{bottom:263.947067pt;}
.yd7{bottom:268.987067pt;}
.y167{bottom:269.300293pt;}
.y12{bottom:276.320000pt;}
.y12b{bottom:278.267200pt;}
.y93{bottom:281.707067pt;}
.y43{bottom:282.427067pt;}
.yb6{bottom:282.507067pt;}
.y63{bottom:282.667067pt;}
.y166{bottom:284.664293pt;}
.y12a{bottom:293.547067pt;}
.y11{bottom:294.400000pt;}
.yd6{bottom:295.707067pt;}
.y165{bottom:299.948133pt;}
.y92{bottom:300.427067pt;}
.y42{bottom:301.067067pt;}
.yb5{bottom:301.147067pt;}
.y62{bottom:309.307067pt;}
.y129{bottom:309.467067pt;}
.y10{bottom:312.480000pt;}
.y164{bottom:315.223893pt;}
.y91{bottom:319.067067pt;}
.yb4{bottom:319.867067pt;}
.yd5{bottom:322.347067pt;}
.y128{bottom:324.827067pt;}
.y41{bottom:327.787067pt;}
.y61{bottom:327.947067pt;}
.y163{bottom:330.507733pt;}
.yf{bottom:330.560000pt;}
.y90{bottom:337.707067pt;}
.yb3{bottom:338.507067pt;}
.y127{bottom:340.747200pt;}
.y162{bottom:345.855680pt;}
.y40{bottom:346.427067pt;}
.y60{bottom:346.667067pt;}
.ye{bottom:348.000000pt;}
.yd4{bottom:348.987067pt;}
.y126{bottom:356.107200pt;}
.yb2{bottom:357.147067pt;}
.y161{bottom:361.139520pt;}
.y3f{bottom:365.067067pt;}
.y5f{bottom:365.307067pt;}
.yd{bottom:366.720000pt;}
.y125{bottom:372.027200pt;}
.yd3{bottom:375.707067pt;}
.y160{bottom:376.423360pt;}
.y8f{bottom:378.186933pt;}
.y3e{bottom:383.787067pt;}
.yb1{bottom:383.867067pt;}
.y124{bottom:387.307067pt;}
.y15f{bottom:391.707200pt;}
.y5e{bottom:391.947067pt;}
.yc{bottom:392.480000pt;}
.yd2{bottom:394.347067pt;}
.y8e{bottom:400.347467pt;}
.yb0{bottom:402.507067pt;}
.y123{bottom:403.307733pt;}
.y15e{bottom:407.067200pt;}
.y3d{bottom:410.427067pt;}
.y5d{bottom:410.667067pt;}
.yd1{bottom:412.987067pt;}
.y122{bottom:418.587600pt;}
.yaf{bottom:421.147067pt;}
.y15d{bottom:422.347067pt;}
.y8d{bottom:422.587067pt;}
.yb{bottom:426.080000pt;}
.y3c{bottom:429.067067pt;}
.y5c{bottom:429.307067pt;}
.yd0{bottom:431.707067pt;}
.y121{bottom:433.867467pt;}
.y15c{bottom:438.270667pt;}
.y8c{bottom:444.027280pt;}
.y3b{bottom:447.787067pt;}
.yae{bottom:447.867067pt;}
.y120{bottom:449.227333pt;}
.y15b{bottom:453.630667pt;}
.y5b{bottom:455.947067pt;}
.ycf{bottom:458.347067pt;}
.ya{bottom:459.680000pt;}
.y8b{bottom:460.907200pt;}
.y11f{bottom:464.507200pt;}
.y3a{bottom:466.427067pt;}
.yad{bottom:466.507067pt;}
.y15a{bottom:468.910533pt;}
.y5a{bottom:474.667067pt;}
.yce{bottom:476.987067pt;}
.y11e{bottom:479.787067pt;}
.y8a{bottom:482.427067pt;}
.y159{bottom:484.190267pt;}
.y39{bottom:485.067067pt;}
.yac{bottom:493.147067pt;}
.y9{bottom:493.280000pt;}
.y59{bottom:493.307067pt;}
.y11d{bottom:495.789067pt;}
.ycd{bottom:503.707067pt;}
.y38{bottom:503.787067pt;}
.y11c{bottom:511.068933pt;}
.yab{bottom:511.867067pt;}
.y58{bottom:511.947067pt;}
.y158{bottom:514.830133pt;}
.y84{bottom:516.027733pt;}
.ycc{bottom:522.347067pt;}
.y37{bottom:522.427067pt;}
.y11b{bottom:526.344827pt;}
.y8{bottom:526.880000pt;}
.y157{bottom:530.105893pt;}
.yaa{bottom:530.507067pt;}
.y57{bottom:530.667067pt;}
.y83{bottom:532.907733pt;}
.y193{bottom:534.347067pt;}
.ycb{bottom:540.987067pt;}
.y11a{bottom:541.628667pt;}
.y156{bottom:545.389733pt;}
.y36{bottom:549.067067pt;}
.y82{bottom:549.787600pt;}
.y192{bottom:551.467200pt;}
.yf8{bottom:553.307067pt;}
.y7{bottom:556.960000pt;}
.ya9{bottom:557.147067pt;}
.y56{bottom:557.307067pt;}
.y155{bottom:560.665600pt;}
.y81{bottom:566.587067pt;}
.y191{bottom:566.747067pt;}
.y35{bottom:567.787067pt;}
.yca{bottom:567.875147pt;}
.y119{bottom:572.268400pt;}
.ya8{bottom:575.867067pt;}
.y55{bottom:575.947067pt;}
.y154{bottom:576.029600pt;}
.y88{bottom:578.187733pt;}
.y6{bottom:579.360000pt;}
.yf7{bottom:579.947067pt;}
.y190{bottom:582.667067pt;}
.y80{bottom:583.466933pt;}
.y34{bottom:586.427067pt;}
.y118{bottom:587.544293pt;}
.yc9{bottom:587.787067pt;}
.y153{bottom:591.305493pt;}
.ya7{bottom:594.507067pt;}
.y18f{bottom:598.027067pt;}
.y7f{bottom:600.346933pt;}
.y87{bottom:600.348400pt;}
.y5{bottom:601.760000pt;}
.y54{bottom:602.748347pt;}
.y117{bottom:602.828133pt;}
.y33{bottom:605.067067pt;}
.y152{bottom:606.589333pt;}
.yf6{bottom:611.867067pt;}
.y18e{bottom:613.947467pt;}
.y116{bottom:618.184027pt;}
.ya6{bottom:621.315147pt;}
.y151{bottom:621.865067pt;}
.y7e{bottom:622.582107pt;}
.y89{bottom:622.586533pt;}
.y86{bottom:622.588000pt;}
.y53{bottom:622.747067pt;}
.y32{bottom:623.787067pt;}
.yc8{bottom:624.027067pt;}
.y4{bottom:624.160000pt;}
.yf5{bottom:627.227067pt;}
.y18d{bottom:629.223200pt;}
.y115{bottom:633.467867pt;}
.y150{bottom:637.229067pt;}
.ya5{bottom:641.227067pt;}
.y31{bottom:642.427067pt;}
.y18c{bottom:644.587200pt;}
.y7d{bottom:644.747067pt;}
.y85{bottom:644.748533pt;}
.y3{bottom:646.560000pt;}
.y114{bottom:648.743760pt;}
.y14f{bottom:652.500987pt;}
.yc7{bottom:653.467067pt;}
.y52{bottom:658.507067pt;}
.yf3{bottom:659.147067pt;}
.y18b{bottom:659.867067pt;}
.y30{bottom:661.067067pt;}
.y113{bottom:664.027600pt;}
.y7c{bottom:666.187147pt;}
.y14e{bottom:667.784827pt;}
.y2{bottom:672.480000pt;}
.yf2{bottom:674.427067pt;}
.y18a{bottom:675.787200pt;}
.ya4{bottom:676.987067pt;}
.y51{bottom:677.147067pt;}
.y112{bottom:679.383627pt;}
.y2f{bottom:679.787067pt;}
.yc6{bottom:682.507067pt;}
.y7b{bottom:683.067067pt;}
.y14d{bottom:683.068667pt;}
.yf1{bottom:689.787067pt;}
.y189{bottom:691.147200pt;}
.y111{bottom:694.667467pt;}
.ya3{bottom:695.707067pt;}
.y50{bottom:695.867067pt;}
.y14c{bottom:698.424560pt;}
.y2e{bottom:698.427067pt;}
.y7a{bottom:704.587067pt;}
.yf4{bottom:705.066667pt;}
.yf0{bottom:705.067067pt;}
.y188{bottom:707.063200pt;}
.yc5{bottom:709.147067pt;}
.y110{bottom:709.947200pt;}
.y14b{bottom:713.708400pt;}
.ya2{bottom:714.347067pt;}
.y2d{bottom:717.067067pt;}
.y187{bottom:722.427200pt;}
.y4f{bottom:722.675147pt;}
.y10f{bottom:725.227067pt;}
.y14a{bottom:728.988267pt;}
.yc4{bottom:735.787067pt;}
.yef{bottom:737.063227pt;}
.y186{bottom:737.707067pt;}
.y10e{bottom:740.587067pt;}
.ya1{bottom:741.155147pt;}
.y4e{bottom:742.587067pt;}
.y2c{bottom:743.787067pt;}
.y149{bottom:744.268133pt;}
.y79{bottom:746.507067pt;}
.yee{bottom:752.347067pt;}
.y185{bottom:753.627200pt;}
.yc3{bottom:754.507067pt;}
.y109{bottom:756.508267pt;}
.y148{bottom:759.624027pt;}
.ya0{bottom:761.067067pt;}
.y78{bottom:765.147067pt;}
.y184{bottom:768.987200pt;}
.y108{bottom:771.788133pt;}
.yc2{bottom:773.147067pt;}
.y147{bottom:774.907867pt;}
.yeb{bottom:776.267067pt;}
.y4d{bottom:778.347067pt;}
.y183{bottom:784.907200pt;}
.y107{bottom:787.148133pt;}
.y146{bottom:790.187733pt;}
.yea{bottom:791.627067pt;}
.y77{bottom:791.787067pt;}
.y4c{bottom:796.987067pt;}
.y9f{bottom:797.387067pt;}
.y2b{bottom:798.347067pt;}
.y182{bottom:800.187067pt;}
.y106{bottom:802.427867pt;}
.y145{bottom:805.467600pt;}
.ye9{bottom:806.907067pt;}
.y76{bottom:810.507067pt;}
.y181{bottom:816.188800pt;}
.y105{bottom:817.707733pt;}
.y144{bottom:820.747467pt;}
.ye8{bottom:822.187067pt;}
.y4b{bottom:823.875147pt;}
.y2a{bottom:824.987067pt;}
.y9e{bottom:826.827067pt;}
.y75{bottom:829.147067pt;}
.y180{bottom:831.468667pt;}
.y104{bottom:832.975520pt;}
.y143{bottom:836.107467pt;}
.yc1{bottom:837.315147pt;}
.ye7{bottom:837.467067pt;}
.y4a{bottom:843.787067pt;}
.y17f{bottom:846.748400pt;}
.y103{bottom:848.339520pt;}
.y10d{bottom:848.348933pt;}
.y142{bottom:851.387200pt;}
.y29{bottom:851.707067pt;}
.ye6{bottom:852.827067pt;}
.y74{bottom:855.787067pt;}
.yc0{bottom:857.227067pt;}
.y17e{bottom:862.104427pt;}
.y102{bottom:863.623360pt;}
.y10c{bottom:863.628800pt;}
.y141{bottom:866.667067pt;}
.y28{bottom:870.107067pt;}
.y73{bottom:874.507067pt;}
.ye5{bottom:876.107067pt;}
.y17d{bottom:877.388267pt;}
.y101{bottom:878.907200pt;}
.y10b{bottom:878.908533pt;}
.y49{bottom:879.547067pt;}
.y9d{bottom:882.507067pt;}
.y13f{bottom:882.667467pt;}
.y27{bottom:888.507067pt;}
.yec{bottom:891.387067pt;}
.y17c{bottom:892.668133pt;}
.ybf{bottom:892.987067pt;}
.y100{bottom:894.187067pt;}
.y10a{bottom:894.188400pt;}
.y140{bottom:897.943227pt;}
.y13e{bottom:897.947200pt;}
.y48{bottom:898.187067pt;}
.ye4{bottom:899.387067pt;}
.y72{bottom:901.315147pt;}
.y26{bottom:906.907067pt;}
.y17b{bottom:907.947867pt;}
.y9c{bottom:909.147067pt;}
.yfe{bottom:910.187333pt;}
.ybe{bottom:911.707067pt;}
.y13d{bottom:913.227067pt;}
.yed{bottom:914.666667pt;}
.ye3{bottom:914.667067pt;}
.y71{bottom:921.227067pt;}
.y17a{bottom:923.307867pt;}
.y47{bottom:925.075147pt;}
.y25{bottom:925.307067pt;}
.yff{bottom:925.463227pt;}
.yfd{bottom:925.467200pt;}
.y9b{bottom:927.787067pt;}
.y13c{bottom:928.587067pt;}
.ybd{bottom:930.347067pt;}
.y179{bottom:938.587733pt;}
.yfc{bottom:940.747067pt;}
.y139{bottom:944.507200pt;}
.y46{bottom:944.987067pt;}
.y9a{bottom:946.507067pt;}
.ye2{bottom:946.667067pt;}
.y13b{bottom:948.507200pt;}
.ybc{bottom:948.987067pt;}
.y24{bottom:952.105200pt;}
.y178{bottom:953.863627pt;}
.y70{bottom:956.987067pt;}
.y138{bottom:959.787067pt;}
.yfb{bottom:960.747067pt;}
.y13a{bottom:963.783067pt;}
.y99{bottom:965.147067pt;}
.ybb{bottom:967.707067pt;}
.y177{bottom:969.147467pt;}
.y23{bottom:972.043227pt;}
.y6f{bottom:975.707067pt;}
.ye1{bottom:978.907067pt;}
.y137{bottom:979.147067pt;}
.y45{bottom:981.227067pt;}
.y176{bottom:984.507467pt;}
.y22{bottom:991.955147pt;}
.yfa{bottom:993.067067pt;}
.y6e{bottom:994.347067pt;}
.y136{bottom:999.067067pt;}
.y175{bottom:999.787200pt;}
.ye0{bottom:1006.827067pt;}
.y44{bottom:1010.667067pt;}
.yf9{bottom:1010.747067pt;}
.y21{bottom:1011.867067pt;}
.y6d{bottom:1012.987067pt;}
.y174{bottom:1015.067067pt;}
.yde{bottom:1060.987067pt;}
.y20{bottom:1062.347067pt;}
.y1{bottom:1108.800000pt;}
.h5{height:45.184000pt;}
.h7{height:53.086720pt;}
.h8{height:55.736250pt;}
.h10{height:57.020480pt;}
.h11{height:57.928960pt;}
.hc{height:61.076250pt;}
.h14{height:62.483520pt;}
.h3{height:62.781250pt;}
.ha{height:66.750000pt;}
.h4{height:67.776000pt;}
.h9{height:72.423750pt;}
.he{height:77.731430pt;}
.hb{height:77.763750pt;}
.hf{height:89.111250pt;}
.h6{height:103.104000pt;}
.h12{height:118.155840pt;}
.h13{height:118.460480pt;}
.hd{height:128.595930pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x9{left:94.560000pt;}
.x5{left:111.846800pt;}
.x3e{left:130.319600pt;}
.x11{left:132.400000pt;}
.x37{left:135.119733pt;}
.x8{left:141.760000pt;}
.x38{left:154.319467pt;}
.x12{left:156.160000pt;}
.x1e{left:158.087120pt;}
.x6{left:160.975600pt;}
.x4{left:163.840000pt;}
.x3f{left:178.314027pt;}
.x26{left:180.000000pt;}
.x29{left:211.600400pt;}
.x1c{left:219.040000pt;}
.x40{left:223.199600pt;}
.x2b{left:224.400667pt;}
.xd{left:234.071840pt;}
.x2a{left:236.560933pt;}
.x16{left:241.438667pt;}
.x23{left:256.726640pt;}
.x15{left:260.006080pt;}
.x17{left:265.438133pt;}
.x1d{left:275.041440pt;}
.x10{left:290.405040pt;}
.x22{left:294.719733pt;}
.x2c{left:306.640800pt;}
.x20{left:307.765040pt;}
.x7{left:320.800400pt;}
.x2e{left:322.481733pt;}
.x2d{left:325.521200pt;}
.x19{left:332.798160pt;}
.xf{left:333.752960pt;}
.xe{left:336.634720pt;}
.xb{left:341.919333pt;}
.x1a{left:343.439840pt;}
.x1f{left:345.366800pt;}
.x13{left:366.563360pt;}
.x21{left:370.400000pt;}
.x1b{left:373.040000pt;}
.xa{left:375.600000pt;}
.x3{left:376.720000pt;}
.xc{left:380.000000pt;}
.x31{left:380.961200pt;}
.x27{left:382.160000pt;}
.x30{left:385.037280pt;}
.x2f{left:387.201600pt;}
.x25{left:396.880000pt;}
.x24{left:472.160000pt;}
.x34{left:486.080267pt;}
.x32{left:488.240667pt;}
.x3a{left:493.438933pt;}
.x39{left:496.159067pt;}
.x33{left:500.398267pt;}
.x18{left:558.558667pt;}
.x3b{left:609.919467pt;}
.x36{left:619.680267pt;}
.x28{left:623.839733pt;}
.x35{left:632.079733pt;}
.x3c{left:633.919333pt;}
.x3d{left:636.958800pt;}
.x14{left:647.438187pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
